/* ============================================================
   CONTACT HERO — 2 Column Layout
   ============================================================ */
.contact-hero {
  position: relative;
  padding: 9rem 0 5.5rem 0;
  background: #0b0f1a;
  border-bottom: 1px solid var(--glass-border);
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: -150px;
  left: 30%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(212, 175, 55, 0.06) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* 2-column grid */
.contact-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* LEFT column */
.contact-hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-hero-title {
  font-family: var(--font-headings);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.08;
  margin: 0.75rem 0 0 0;
  letter-spacing: -0.025em;
}

.contact-hero-title .text-gold {
  color: #d4af37;
}

/* Gold divider (shared with AI/GEO page) */
.hero-gold-divider {
  width: 48px;
  height: 4px;
  background: linear-gradient(90deg, #d4af37, #aa7c11);
  border-radius: 2px;
  margin: 1.25rem 0 1.25rem 0;
}

.contact-hero-desc {
  font-size: 0.97rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 480px;
  margin: 0 0 2rem 0;
  line-height: 1.75;
}

/* Trust badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 50px;
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  transition: all 0.3s ease;
}

.trust-badge i {
  color: #d4af37;
  font-size: 0.82rem;
}

.trust-badge:hover {
  border-color: rgba(212, 175, 55, 0.35);
  background: rgba(212, 175, 55, 0.08);
  color: #ffffff;
}

/* RIGHT column — Hero Card */
.contact-hero-right {
  display: flex;
  flex-direction: column;
}

.hero-contact-card {
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 2.5rem 2.25rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.hero-card-header {
  margin-bottom: 1.75rem;
  text-align: center;
}

.hero-card-header h3 {
  font-family: var(--font-headings);
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 0.5rem 0;
}

.hero-card-header p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

.hero-quick-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Shared audit-field styles (used in AI/GEO & contact hero) */
.audit-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.audit-field label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
}

.audit-field input {
  width: 100%;
  background: #1a2235;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  color: #ffffff;
  font-size: 0.9rem;
  font-family: var(--font-body);
  outline: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.audit-field input::placeholder {
  color: rgba(255, 255, 255, 0.18);
}

.audit-field input:focus {
  border-color: rgba(212, 175, 55, 0.4);
  background: #1e2a3a;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.07);
}

.btn-audit-submit {
  width: 100%;
  padding: 0.95rem 1.5rem;
  background: linear-gradient(135deg, #d4af37 0%, #aa7c11 100%);
  color: #0b0f1a;
  font-weight: 800;
  font-size: 0.97rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 0.35rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
  font-family: var(--font-headings);
}

.btn-audit-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

/* "or reach us directly" divider */
.hero-card-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.5rem 0 1.1rem;
}

.hero-card-divider::before,
.hero-card-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
}

.hero-card-divider span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.25);
  white-space: nowrap;
  letter-spacing: 0.04em;
}

/* Quick channel buttons */
.hero-quick-channels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.quick-channel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.quick-channel.whatsapp {
  background: rgba(37, 211, 102, 0.08);
  color: #25d366;
  border-color: rgba(37, 211, 102, 0.15);
}

.quick-channel.whatsapp:hover {
  background: rgba(37, 211, 102, 0.15);
  border-color: rgba(37, 211, 102, 0.35);
}

.quick-channel.email {
  background: rgba(212, 175, 55, 0.08);
  color: #d4af37;
  border-color: rgba(212, 175, 55, 0.15);
}

.quick-channel.email:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.35);
}



/* ============================================================
   MAIN CONTACT GRID
   ============================================================ */
.contact-main-section {
  padding: 6rem 0;
  background: var(--bg-primary);
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

/* ---------- LEFT PANEL ---------- */
.contact-info-panel {
  position: sticky;
  top: 7rem;
}

.info-panel-title {
  font-family: var(--font-headings);
  font-size: 1.9rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 0.75rem 0;
  line-height: 1.2;
}

.info-panel-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin: 0 0 2rem 0;
}

/* Channel cards */
.contact-channels-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.channel-card {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 1.1rem 1.25rem;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.channel-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 14px;
}

.channel-whatsapp::before { background: rgba(37, 211, 102, 0.04); }
.channel-email::before { background: rgba(212, 175, 55, 0.04); }
.channel-call::before { background: rgba(139, 92, 246, 0.04); }

.channel-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateX(4px);
}

.channel-card:hover::before { opacity: 1; }

.channel-whatsapp:hover { border-color: rgba(37, 211, 102, 0.3); }
.channel-email:hover { border-color: rgba(212, 175, 55, 0.3); }
.channel-call:hover { border-color: rgba(139, 92, 246, 0.3); }

.channel-icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.channel-whatsapp .channel-icon-wrap { background: rgba(37, 211, 102, 0.1); color: #25d366; }
.channel-email .channel-icon-wrap { background: rgba(212, 175, 55, 0.1); color: #d4af37; }
.channel-call .channel-icon-wrap { background: rgba(139, 92, 246, 0.1); color: #8b5cf6; }

.channel-info {
  flex: 1;
}

.channel-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.15rem 0;
}

.channel-info p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0 0 0.35rem 0;
}

.channel-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.18rem 0.55rem;
  border-radius: 4px;
}

.channel-whatsapp .channel-badge { background: rgba(37, 211, 102, 0.1); color: #25d366; }
.channel-email .channel-badge { background: rgba(212, 175, 55, 0.1); color: #d4af37; }
.channel-call .channel-badge { background: rgba(139, 92, 246, 0.1); color: #8b5cf6; }

.channel-arrow {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.channel-card:hover .channel-arrow {
  color: rgba(255, 255, 255, 0.6);
  transform: translateX(3px);
}

/* What to Expect steps */
.what-to-expect {
  border-top: 1px solid var(--glass-border);
  padding-top: 2rem;
}

.expect-title {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin: 0 0 1.5rem 0;
}

.expect-steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.expect-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.expect-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: #020617;
  font-size: 0.72rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.25);
}

.expect-step strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.expect-step p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
  margin: 0;
}

/* ---------- RIGHT PANEL (Form) ---------- */
.contact-form-panel {
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 3rem 2.75rem;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}

.form-panel-header {
  margin-bottom: 2.25rem;
}

.form-panel-header h3 {
  font-family: var(--font-headings);
  font-size: 1.7rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 0.5rem 0;
}

.form-panel-header p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

.main-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group-styled {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group-styled label {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.03em;
}

.input-wrap {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.85rem;
  pointer-events: none;
  z-index: 1;
}

.input-wrap textarea ~ .input-icon,
.input-wrap textarea + .input-icon {
  top: 1rem;
  transform: none;
}

.input-wrap input,
.input-wrap textarea,
.input-wrap select {
  width: 100%;
  background: #1a2235;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 0.85rem 1rem 0.85rem 2.7rem;
  color: #ffffff;
  font-size: 0.9rem;
  font-family: var(--font-body);
  outline: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.input-wrap textarea {
  padding-top: 0.9rem;
  resize: vertical;
  min-height: 110px;
}

.input-wrap input::placeholder,
.input-wrap textarea::placeholder {
  color: rgba(255, 255, 255, 0.18);
}

.input-wrap input:focus,
.input-wrap textarea:focus,
.input-wrap select:focus {
  border-color: rgba(212, 175, 55, 0.4);
  background: #1e2a3a;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.07);
}

/* Select styling */
.select-wrap select {
  appearance: none;
  cursor: pointer;
  padding-right: 2.5rem;
}

.select-arrow {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.75rem;
  pointer-events: none;
}

.select-wrap select option {
  background: #1a2235;
  color: #ffffff;
}

/* Budget Pills */
.budget-pills {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.budget-pill {
  padding: 0.55rem 1.1rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: var(--font-body);
}

.budget-pill:hover {
  border-color: rgba(212, 175, 55, 0.3);
  color: rgba(255, 255, 255, 0.7);
}

.budget-pill.active {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.5);
  color: #d4af37;
}

/* Privacy checkbox */
.form-privacy {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.form-privacy input[type="checkbox"] {
  width: 17px;
  height: 17px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: #1a2235;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
  accent-color: #d4af37;
}

.form-privacy label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.6;
  cursor: pointer;
}

/* Submit Button */
.btn-submit-main {
  width: 100%;
  padding: 1.1rem 2rem;
  background: linear-gradient(135deg, #d4af37 0%, #aa7c11 100%);
  color: #0b0f1a;
  font-weight: 800;
  font-size: 1rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.35);
  font-family: var(--font-headings);
  letter-spacing: 0.01em;
}

.btn-submit-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 35px rgba(212, 175, 55, 0.5);
}

.btn-submit-main:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Success state */
.form-success-msg {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem;
  gap: 1rem;
}

.form-success-msg i {
  font-size: 3rem;
  color: #22c55e;
}

.form-success-msg h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.form-success-msg p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.contact-stats-section {
  padding: 5rem 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.contact-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.contact-stat {
  padding: 1.5rem;
}

.stat-num {
  font-family: var(--font-headings);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.6rem;
}

.stat-label {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.contact-faq-section {
  padding: 6rem 0;
  background: var(--bg-primary);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 3.5rem;
}

.faq-item {
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item:hover,
.faq-item.open {
  border-color: rgba(212, 175, 55, 0.25);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 1.5rem;
  cursor: pointer;
  user-select: none;
}

.faq-q span {
  font-size: 0.97rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.4;
}

.faq-icon {
  color: rgba(212, 175, 55, 0.6);
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 1.5rem 1.4rem;
}

.faq-a p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 1rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .contact-main-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 3.5rem;
  }
}

@media (max-width: 991px) {
  .contact-hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-hero-left {
    align-items: center;
    text-align: center;
  }

  .contact-hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .trust-badges {
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .contact-main-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-info-panel {
    position: static;
  }

  .contact-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .contact-form-panel {
    padding: 2rem 1.5rem;
  }

  .form-row-2 {
    grid-template-columns: 1fr;
  }

  .trust-badges {
    gap: 0.75rem;
  }

  .contact-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 400px) {
  .contact-stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .budget-pills {
    gap: 0.5rem;
  }

  .budget-pill {
    font-size: 0.75rem;
    padding: 0.45rem 0.85rem;
  }
}
