/* ═══════════════════════════════════════════════════
   CONTACT PAGE — Vedaa Saktee
   Premium WHITE / Cream Light Theme
   ═══════════════════════════════════════════════════ */

/* ── Design Tokens (white theme) ── */
.contact-page-wrap,
#contact-main {
  --cw-bg:           #F7F2E8;
  --cw-surface:      #FFFFFF;
  --cw-surface-2:    #F0EBE0;
  --cw-surface-3:    #EAE4D8;
  --cw-border:       rgba(7, 27, 17, 0.09);
  --cw-border-gold:  rgba(184, 148, 42, 0.35);
  --cw-text:         #071B11;
  --cw-text-muted:   rgba(7, 27, 17, 0.52);
  --cw-text-light:   rgba(7, 27, 17, 0.32);
  --cw-gold:         #9A7A20;
  --cw-gold-bright:  #B8942A;
  --cw-gold-bg:      rgba(184, 148, 42, 0.08);
  --cw-shadow-sm:    0 2px 12px rgba(7, 27, 17, 0.07);
  --cw-shadow:       0 6px 28px rgba(7, 27, 17, 0.10);
  --cw-shadow-lg:    0 16px 56px rgba(7, 27, 17, 0.13);
}

/* ── Global page reset ── */
#contact-main {
  overflow-x: hidden;
  background: var(--cw-bg);
  color: var(--cw-text);
}

/* ══════════════════════════
   HERO BANNER
   ══════════════════════════ */
.contact-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 160px 24px 100px;
  overflow: hidden;
  background: var(--cw-surface);
  border-bottom: 1px solid var(--cw-border);
}

/* Subtle decorative orbs on white */
.contact-hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.orb-a {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(229,197,127,0.25), transparent 65%);
  top: -160px; right: -120px;
  opacity: 1;
}
.orb-b {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(201,127,90,0.15), transparent 65%);
  bottom: -80px; left: -60px;
  opacity: 1;
}
.orb-c {
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(229,197,127,0.12), transparent 65%);
  top: 50%; left: 18%;
  opacity: 1;
}

/* Decorative top rule */
.contact-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--cw-gold-bright), var(--cw-gold-bright), transparent);
  opacity: 0.6;
}

.contact-eyebrow {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cw-gold);
  margin-bottom: 20px;
  padding: 6px 18px;
  border: 1px solid var(--cw-border-gold);
  border-radius: 30px;
  background: var(--cw-gold-bg);
  position: relative;
  z-index: 1;
}

.contact-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(46px, 8vw, 86px);
  font-weight: 700;
  color: var(--cw-text);
  line-height: 1.1;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.contact-hero-title em {
  font-style: italic;
  color: var(--cw-gold-bright);
}

.contact-hero-sub {
  font-size: 16px;
  line-height: 1.78;
  color: var(--cw-text-muted);
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.scroll-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(184,148,42,0.4);
  animation: scrollBounce 1.6s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%       { transform: translateY(10px); opacity: 0.3; }
}

/* ══════════════════════════
   CONTACT CHANNEL CARDS
   ══════════════════════════ */
.contact-channels {
  background: var(--cw-bg);
  padding: 0 24px;
  position: relative;
  z-index: 2;
}
.contact-channels-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  transform: translateY(-50px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--cw-shadow-lg);
  border: 1px solid var(--cw-border);
}

.channel-card {
  background: var(--cw-surface);
  border-right: 1px solid var(--cw-border);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.channel-card:last-child { border-right: none; }

/* Gold bottom bar on hover */
.channel-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cw-gold-bright), #E5C57F);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.channel-card:hover::before { transform: scaleX(1); }
.channel-card:hover { background: var(--cw-surface-2); }

/* Entrance animation */
.channel-card {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease,
              background 0.25s ease;
}
.channel-card.visible { opacity: 1; transform: translateY(0); }
.channel-card:nth-child(1) { transition-delay: 0s; }
.channel-card:nth-child(2) { transition-delay: 0.08s; }
.channel-card:nth-child(3) { transition-delay: 0.16s; }
.channel-card:nth-child(4) { transition-delay: 0.24s; }

.channel-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: var(--cw-gold-bg);
  border: 1px solid var(--cw-border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cw-gold-bright);
  transition: background 0.25s, transform 0.25s;
}
.channel-card:hover .channel-icon {
  background: rgba(184,148,42,0.16);
  transform: scale(1.08);
}

.channel-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.channel-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cw-gold);
}
.channel-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--cw-text);
  line-height: 1.4;
}
.channel-note {
  font-size: 11px;
  color: var(--cw-text-muted);
}
.channel-arrow {
  font-size: 18px;
  color: var(--cw-border-gold);
  align-self: flex-end;
  transition: color 0.25s, transform 0.25s;
}
.channel-card:hover .channel-arrow {
  color: var(--cw-gold-bright);
  transform: translateX(4px);
}

/* ══════════════════════════
   BODY: FORM + FAQ
   ══════════════════════════ */
.contact-body {
  background: var(--cw-bg);
  padding: 10px 24px 100px;
}
.contact-body-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* Shared column headings */
.section-eyebrow {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cw-gold);
  margin-bottom: 14px;
}
.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.5vw, 38px);
  color: var(--cw-text);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 14px;
}
.section-sub {
  font-size: 14px;
  line-height: 1.75;
  color: var(--cw-text-muted);
  margin-bottom: 36px;
}

/* ── Contact Form ── */
.contact-form-col {
  position: sticky;
  top: 100px;
}
.form-col-header { margin-bottom: 0; }

.contact-form {
  background: var(--cw-surface);
  border: 1px solid var(--cw-border);
  border-radius: 24px;
  padding: 36px 32px;
  box-shadow: var(--cw-shadow);
  display: flex;
  flex-direction: column;
}

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cf-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.cf-group.visible { opacity: 1; transform: translateY(0); }
.cf-group:nth-child(1) { transition-delay: 0s; }
.cf-group:nth-child(2) { transition-delay: 0.07s; }
.cf-group:nth-child(3) { transition-delay: 0.14s; }
.cf-group:nth-child(4) { transition-delay: 0.21s; }
.cf-group:nth-child(5) { transition-delay: 0.28s; }

.cf-group label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cw-text-muted);
}

.cf-group input,
.cf-group select,
.cf-group textarea {
  background: var(--cw-surface-2);
  border: 1.5px solid var(--cw-border);
  border-radius: 12px;
  padding: 13px 16px;
  color: var(--cw-text);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
  width: 100%;
  resize: none;
  -webkit-appearance: none;
  appearance: none;
}
.cf-group input::placeholder,
.cf-group textarea::placeholder { color: var(--cw-text-light); }

.cf-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23071B11' stroke-opacity='.35' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}
.cf-group select option { background: #fff; color: #071B11; }
.cf-group textarea { min-height: 130px; line-height: 1.65; }

.cf-group input:focus,
.cf-group select:focus,
.cf-group textarea:focus {
  border-color: var(--cw-gold-bright);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(184,148,42,0.12);
}

/* Error shake */
@keyframes errorShake {
  0%, 100% { transform: translateX(0); }
  20%, 60%  { transform: translateX(-6px); border-color: #c0392b !important; }
  40%, 80%  { transform: translateX(6px);  border-color: #c0392b !important; }
}
.error-shake { animation: errorShake 0.4s ease; }

/* Phone wrap */
.cf-phone-wrap {
  display: flex;
  align-items: center;
  background: var(--cw-surface-2);
  border: 1.5px solid var(--cw-border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.cf-phone-wrap:focus-within {
  border-color: var(--cw-gold-bright);
  box-shadow: 0 0 0 3px rgba(184,148,42,0.12);
  background: #fff;
}
.cf-phone-prefix {
  padding: 13px 10px 13px 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--cw-text-muted);
  border-right: 1.5px solid var(--cw-border);
  background: var(--cw-surface-3);
  white-space: nowrap;
}
.cf-phone-wrap input {
  background: transparent;
  border: none;
  border-radius: 0;
  flex: 1;
}
.cf-phone-wrap input:focus { box-shadow: none; background: transparent; }

/* Submit button */
.cf-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 28px;
  background: var(--cw-text);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
  box-shadow: 0 6px 22px rgba(7,27,17,0.18);
  margin-top: 4px;
}
.cf-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(7,27,17,0.26);
  background: #0D3020;
}
.cf-submit-btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }

/* Success box */
.cf-success {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(42,127,42,0.07);
  border: 1.5px solid rgba(42,127,42,0.25);
  border-radius: 14px;
  padding: 18px 20px;
  margin-top: 14px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.cf-success.hidden { display: none; }
.cf-success.show { opacity: 1; transform: translateY(0); display: flex; }
.cf-success-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(42,127,42,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2a7f2a;
  flex-shrink: 0;
}
.cf-success strong { font-size: 14px; color: var(--cw-text); display: block; margin-bottom: 3px; }
.cf-success p { font-size: 13px; color: var(--cw-text-muted); line-height: 1.5; }

/* ══════════════════════════
   FAQ SECTION
   ══════════════════════════ */
.faq-col-header { margin-bottom: 8px; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--cw-surface);
  border: 1.5px solid var(--cw-border);
  border-radius: 16px;
  overflow: hidden;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.5s ease, transform 0.5s ease,
              border-color 0.3s ease, background 0.3s ease,
              box-shadow 0.3s ease;
}
.faq-item.visible { opacity: 1; transform: translateX(0); }
.faq-item:nth-child(1) { transition-delay: 0s; }
.faq-item:nth-child(2) { transition-delay: 0.06s; }
.faq-item:nth-child(3) { transition-delay: 0.12s; }
.faq-item:nth-child(4) { transition-delay: 0.18s; }
.faq-item:nth-child(5) { transition-delay: 0.24s; }
.faq-item:nth-child(6) { transition-delay: 0.30s; }
.faq-item:nth-child(7) { transition-delay: 0.36s; }
.faq-item:nth-child(8) { transition-delay: 0.42s; }

.faq-item:hover {
  border-color: var(--cw-border-gold);
  box-shadow: var(--cw-shadow-sm);
}
.faq-item.open {
  border-color: var(--cw-gold-bright);
  background: var(--cw-surface);
  box-shadow: 0 4px 20px rgba(184,148,42,0.12);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--cw-text);
  line-height: 1.45;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--cw-gold-bright); }
.faq-item.open .faq-question { color: var(--cw-gold-bright); }

.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--cw-border-gold);
  background: var(--cw-gold-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cw-gold-bright);
  flex-shrink: 0;
  transition: background 0.3s, transform 0.38s ease, border-color 0.3s;
}
.faq-item.open .faq-icon {
  background: var(--cw-gold-bright);
  border-color: var(--cw-gold-bright);
  transform: rotate(45deg);
}
.faq-item.open .faq-icon svg { stroke: #fff; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer-inner {
  padding: 0 22px 22px;
  border-top: 1px solid var(--cw-border);
  padding-top: 16px;
}
.faq-answer-inner p {
  font-size: 13.5px;
  line-height: 1.82;
  color: var(--cw-text-muted);
}
.faq-answer-inner strong { color: var(--cw-gold); font-weight: 700; }

/* FAQ footer note */
.faq-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 16px 20px;
  background: var(--cw-gold-bg);
  border: 1px solid var(--cw-border-gold);
  border-radius: 14px;
  color: var(--cw-text-muted);
  font-size: 13px;
  line-height: 1.6;
}
.faq-footer svg { color: var(--cw-gold-bright); flex-shrink: 0; }
.faq-footer a {
  color: var(--cw-gold-bright);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(184,148,42,0.3);
  padding-bottom: 1px;
  transition: border-color 0.2s;
}
.faq-footer a:hover { border-color: var(--cw-gold-bright); }

/* ══════════════════════════
   SOCIAL STRIP
   ══════════════════════════ */
.social-strip {
  background: var(--cw-surface);
  border-top: 1px solid var(--cw-border);
  padding: 56px 24px;
}
.social-strip-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.social-strip-text .section-eyebrow { margin-bottom: 10px; }
.social-strip-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: var(--cw-text);
  font-weight: 700;
}

.social-links { display: flex; gap: 12px; }

.social-link {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 22px;
  border: 1.5px solid var(--cw-border);
  border-radius: 50px;
  background: var(--cw-surface-2);
  color: var(--cw-text-muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.25s ease;
}
.social-link:hover {
  border-color: var(--cw-border-gold);
  background: var(--cw-gold-bg);
  color: var(--cw-gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(184,148,42,0.15);
}

.map-iframe-container iframe {
  width: 100% !important;
  height: 100% !important;
  border: 0 !important;
  display: block;
}

/* ══════════════════════════
   RESPONSIVE
   ══════════════════════════ */
@media (max-width: 1024px) {
  .contact-channels-inner {
    grid-template-columns: repeat(2, 1fr);
    border-radius: 18px;
  }
  .contact-body-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contact-form-col { position: static; }
}

@media (max-width: 720px) {
  .contact-hero { padding: 140px 20px 80px; }
  .contact-channels-inner {
    grid-template-columns: 1fr;
    transform: translateY(-28px);
  }
  .channel-card { border-right: none; border-bottom: 1px solid var(--cw-border); }
  .channel-card:last-child { border-bottom: none; }
  .cf-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
  .social-strip-inner { flex-direction: column; align-items: flex-start; gap: 22px; }
  .social-links { flex-wrap: wrap; }
  .contact-body { padding: 0 20px 80px; }
}
