/* ================================
{{get_setting('site_name_short')}} – CONTACT PAGE ONLY
================================ */

:root {
  --ct-bg-main: #0c0c14;
  --ct-bg-card: #151522;
  --ct-violet: #7c3aed;
  --ct-pink: #c084fc;
  --ct-text-main: #e0e0e6;
  --ct-text-muted: #b3b3c2;
}

h1, h2, h3, h4, h5, h6, li, a {
  color: #fff;
  margin: 0;
}

p{
    color: white;
    font-size: 13px;
    line-height: 1.8;
}

/* BASE */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.ct-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.ct-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* HERO */
.ct-contact-hero {
  padding: 140px 0;
  text-align: center;
  background: linear-gradient(330deg, #7c3aed, #230952);
}

.ct-contact-badge {
  display: inline-block;
  padding: 8px 22px;
  border-radius: 30px;
  background: linear-gradient(135deg, #c084fc, #7c3aed);
  color: #1a0033;
  font-size: 14px;
  margin-bottom: 16px;
}

.ct-contact-hero h1 {
  color: #fff;
  font-size: 44px;
}

.ct-contact-hero p {
  max-width: 720px;
  margin: 14px auto 0;
  color: #e7dbff;
}

/* INFO CARDS */
.ct-contact-info {
  padding: 110px 0;
  background: var(--ct-bg-main);
}

.ct-contact-card {
  background: var(--ct-bg-card);
  border-radius: 26px;
  padding: 36px;
  text-align: center;
  transition: all 0.45s ease;
}

.ct-contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(124,58,237,0.4);
}

.ct-contact-card i {
  font-size: 26px;
  color: var(--ct-pink);
  margin-bottom: 12px;
}

.ct-contact-card a {
  color: var(--ct-pink);
  text-decoration: none;
}

/* FORM + MAP */
.ct-contact-main {
  padding: 120px 0;
}

.ct-contact-form {
  background: linear-gradient(145deg, #16162a, #1e1e3d);
  border-radius: 28px;
  padding: 46px;
}

.ct-contact-form h2 {
  color: #fff;
}

.ct-contact-form p {
  color: var(--ct-text-muted);
  margin-bottom: 28px;
}

.ct-input {
  position: relative;
  margin-bottom: 18px;
}

.ct-input i {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  color: var(--ct-pink);
}

.ct-input input,
.ct-input textarea {
  width: 100%;
  padding: 14px 16px 14px 46px;
  background: #0f0f1c;
  border: none;
  border-radius: 14px;
  color: var(--ct-text-main);
  outline: none;
}

.ct-textarea i {
  top: 18px;
  transform: none;
}

.ct-contact-form button {
  width: 100%;
  padding: 14px;
  border-radius: 30px;
  background: linear-gradient(135deg, #c084fc, #7c3aed);
  color: #1a0033;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.ct-contact-form button:hover {
  transform: translateY(-3px);
}

/* MAP */
.ct-map {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

.ct-map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: none;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .ct-grid-3 { grid-template-columns: repeat(2,1fr); }
  .ct-grid-2 { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .ct-contact-hero h1 { font-size: 32px; }
  .ct-grid-3 { grid-template-columns: 1fr; }
}


/* ================================
CONTACT EXTRA SECTION
================================ */

.ct-contact-extra {
  padding: 120px 0;
  background: linear-gradient(
    160deg,
    #0f0f1c,
    #14142b
  );
}

.ct-extra-header {
  text-align: center;
  margin-bottom: 60px;
}

.ct-extra-header h2 {
  color: #ffffff;
  font-size: 36px;
}

.ct-extra-header p {
  max-width: 640px;
  margin: 14px auto 0;
  color: #b8b8cf;
}

.ct-extra-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.ct-extra-card {
  position: relative;
  background: linear-gradient(
    145deg,
    #15152a,
    #1e1e3d
  );
  padding: 40px 32px;
  border-radius: 26px;
  text-align: center;
  transition: all 0.45s ease;
}

.ct-extra-card i {
  font-size: 28px;
  color: #c084fc;
  margin-bottom: 16px;
  transition: transform 0.4s ease;
}

.ct-extra-card h4 {
  color: #ffffff;
  margin-bottom: 10px;
}

.ct-extra-card p {
  color: #b5b5cc;
  font-size: 15px;
  line-height: 1.6;
}

/* Hover Effect */
.ct-extra-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 80px rgba(124, 58, 237, 0.45);
}

.ct-extra-card:hover i {
  transform: scale(1.2) rotate(-6deg);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .ct-extra-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .ct-extra-header h2 {
    font-size: 28px;
  }

  .ct-extra-grid {
    grid-template-columns: 1fr;
  }
}
