/* ============================================
   THE SINGING BOWL CENTER — contact/contact.css
   ============================================ */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── CSS VARIABLES ── */
:root {
  --cream:        #f5f0e8;
  --parchment:    #ede5d4;
  --warm-white:   #faf7f2;
  --gold:         #C9A84C;
  --gold-light:   #e2b95a;
  --gold-dark:    #9a7428;
  --brown-deep:   #1a1208;
  --brown-mid:    #3a2e1e;
  --text-dark:    #1a1208;
  --text-body:    #3a2e1e;
  --text-muted:   #7a6040;
  --whatsapp:     #25D366;
  --transition:   0.3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Jost', sans-serif;
  background: #fff;
  color: var(--text-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }
::selection { background: var(--gold); color: #fff; }

/* ============================================
   TYPOGRAPHY HELPERS
   ============================================ */
.section-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600; color: var(--text-dark);
  line-height: 1.15; margin-bottom: 1rem;
}
.title-rule {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 2rem;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  background: var(--gold); color: #fff;
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; border: none; cursor: pointer;
  position: relative; overflow: hidden;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.12);
  transform: translateX(-100%); transition: transform 0.4s ease;
}
.btn-primary:hover::after { transform: translateX(0); }
.btn-primary:hover {
  background: var(--gold-dark);
  box-shadow: 0 8px 24px rgba(196,154,60,0.35);
  transform: translateY(-1px);
}
.btn-primary.btn-full { width: 100%; text-align: center; }

.btn-whatsapp-strip {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.85rem 2rem; background: var(--whatsapp); color: #fff;
  font-family: 'Jost', sans-serif; font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; border: none; cursor: pointer;
  transition: filter var(--transition), transform var(--transition);
}
.btn-whatsapp-strip svg { width: 18px; height: 18px; }
.btn-whatsapp-strip:hover { filter: brightness(1.1); transform: translateY(-1px); }

.btn-whatsapp-full {
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  width: 100%; padding: 0.9rem 2rem;
  background: var(--whatsapp); color: #fff;
  font-family: 'Jost', sans-serif; font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; border: none; cursor: pointer;
  transition: filter var(--transition), transform var(--transition);
}
.btn-whatsapp-full svg { width: 18px; height: 18px; }
.btn-whatsapp-full:hover { filter: brightness(1.1); transform: translateY(-1px); }

/* Form CTA row — WhatsApp + Email submit options stacked together */
.form-cta-row {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

/* Email submit button — outlined, device-aware redirect handled in JS
   (mailto on phone, Gmail web compose on laptop/desktop) */
.btn-email-full {
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  width: 100%; padding: 0.85rem 2rem;
  background: transparent; color: var(--gold-dark);
  font-family: 'Jost', sans-serif; font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; border: 1.5px solid var(--gold-dark); cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.btn-email-full svg { width: 18px; height: 18px; stroke: currentColor; }
.btn-email-full:hover { background: var(--gold-dark); color: #fff; transform: translateY(-1px); }

/* ============================================
   HERO
   ============================================ */
.contact-hero {
  position: relative;
  min-height: 70vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--brown-deep);
}
.contact-hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(196,154,60,0.15) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(196,154,60,0.07) 0%, transparent 45%),
    linear-gradient(135deg, rgba(15,8,0,0.95) 0%, rgba(40,24,5,0.8) 50%, rgba(10,5,0,0.92) 100%);
  z-index: 1;
}

/* Decorative animated bowl rings */
.contact-hero-rings { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(196,154,60,0.12);
  top: 50%; right: 10%;
  transform: translate(50%, -50%);
}
.ring-1 { width: 260px; height: 260px; animation: ringPulse 4s ease-in-out infinite; }
.ring-2 { width: 460px; height: 460px; animation: ringPulse 4s ease-in-out infinite 0.7s; border-color: rgba(196,154,60,0.07); }
.ring-3 { width: 660px; height: 660px; animation: ringPulse 4s ease-in-out infinite 1.4s; border-color: rgba(196,154,60,0.04); }
@keyframes ringPulse {
  0%,100% { opacity: 0.5; transform: translate(50%, -50%) scale(1); }
  50%      { opacity: 1;   transform: translate(50%, -50%) scale(1.04); }
}

.contact-hero-content {
  position: relative; z-index: 2;
  max-width: 1260px; margin: 0 auto;
  padding: 8rem 2rem 5rem; width: 100%;
}
.contact-eyebrow {
  font-family: 'Jost', sans-serif; font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 1.2rem;
}
.contact-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 5.5rem); font-weight: 700;
  color: var(--cream); line-height: 1.08; margin-bottom: 1.5rem;
}
.contact-hero-title em { font-style: italic; color: var(--gold-light); }
.contact-hero-sub {
  font-family: 'Jost', sans-serif;
  font-size: clamp(0.88rem, 1.6vw, 1rem); font-weight: 300;
  color: rgba(245,240,232,0.72); line-height: 1.75; max-width: 500px;
}

/* Scroll hint */
.contact-hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold-light), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}
.scroll-lbl {
  font-family: 'Jost', sans-serif; font-size: 0.6rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(226,185,90,0.55);
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.3; transform: scaleY(0.6); }
  50%      { opacity: 1; transform: scaleY(1); }
}

/* Hero reveal animations */
.reveal-hero {
  opacity: 0; transform: translateY(28px);
  animation: fadeUp 0.85s ease forwards;
}
.reveal-hero.delay-1 { animation-delay: 0.25s; }
.reveal-hero.delay-2 { animation-delay: 0.5s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* ============================================
   CONTACT MAIN
   ============================================ */
.contact-main { background: var(--warm-white); padding: 6rem 2rem; }
.contact-main-inner {
  max-width: 1260px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start;
}

/* ── LEFT INFO ── */
.contact-intro-body {
  font-size: 0.95rem; font-weight: 300;
  color: var(--text-body); line-height: 1.85; margin-bottom: 0;
}

/* Info Cards Stack */
.info-cards { display: flex; flex-direction: column; gap: 0; margin-top: 2.5rem; }
.info-card {
  display: flex; gap: 1.2rem;
  padding: 1.4rem 1.6rem;
  background: #fff;
  border: 1px solid rgba(196,154,60,0.15);
  border-left: 3px solid var(--gold);
  border-top: none;
  transition: box-shadow var(--transition), transform var(--transition);
}
.info-card:first-child { border-top: 1px solid rgba(196,154,60,0.15); }
.info-card:hover {
  box-shadow: 4px 0 20px rgba(196,154,60,0.08);
  transform: translateX(4px);
}

.info-card-icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  background: var(--parchment);
  border: 1px solid rgba(196,154,60,0.22);
  display: flex; align-items: center; justify-content: center;
}
.info-card-icon svg { width: 19px; height: 19px; stroke: var(--gold-dark); }

.info-card-content { flex: 1; }
.info-card-label {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 0.4rem;
}
.info-card-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; font-weight: 500;
  color: var(--text-dark); line-height: 1.55;
  margin-bottom: 0.25rem;
}
.info-card-sub {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem; font-weight: 300;
  color: var(--text-muted); margin-top: 0.3rem;
}
.info-card-link {
  display: inline-block; margin-top: 0.4rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem; font-weight: 500;
  color: var(--gold-dark); text-decoration: none;
  letter-spacing: 0.04em;
  transition: color var(--transition);
}
.info-card-link:hover { color: var(--gold); }

/* Phone list */
.phone-list { display: flex; flex-direction: column; gap: 0.2rem; margin-bottom: 0.2rem; }
.phone-item {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; font-weight: 500;
  color: var(--gold-dark); text-decoration: none;
  transition: color var(--transition);
}
.phone-item:hover { color: var(--gold); }

/* WhatsApp strip button (below cards) */
.btn-whatsapp-strip { margin-top: 2rem; }

/* Google Map */
.contact-map { margin-top: 2.5rem; }
.map-label {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 0.7rem;
}
.map-frame {
  position: relative;
  border: 1px solid rgba(196,154,60,0.22);
  overflow: hidden;
}
.map-frame iframe {
  width: 100%; height: 280px;
  border: none; display: block;
  filter: sepia(0.15) contrast(0.95);
}
.map-badge {
  position: absolute; bottom: 1rem; left: 1rem;
  background: var(--brown-deep); color: var(--gold-light);
  padding: 0.45rem 0.9rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  pointer-events: none;
}

/* ── RIGHT FORM ── */
.contact-form-wrap { position: sticky; top: 2rem; }
.contact-form-card {
  background: #fff;
  border: 1px solid rgba(196,154,60,0.18);
  border-top: 3px solid var(--gold);
}

.form-card-header {
  padding: 2.5rem 2.5rem 1.8rem;
  border-bottom: 1px solid var(--parchment);
}
.form-card-header .section-eyebrow { margin-bottom: 0.4rem; }
.form-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem; font-weight: 600;
  color: var(--text-dark); margin-bottom: 0.5rem;
}
.form-card-sub {
  font-family: 'Jost', sans-serif;
  font-size: 0.83rem; font-weight: 300;
  color: var(--text-muted); line-height: 1.65;
}

.form-body { padding: 2rem 2.5rem 2.5rem; }
.form-group { margin-bottom: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

label {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 0.45rem;
}
input, textarea, select {
  width: 100%; padding: 0.75rem 1rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem; font-weight: 300;
  color: var(--text-dark); background: var(--cream);
  border: 1px solid rgba(196,154,60,0.2); outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,154,60,0.1);
}
textarea { resize: vertical; min-height: 110px; }
select { cursor: pointer; }

/* Divider */
.form-divider {
  display: flex; align-items: center; gap: 0.9rem;
  margin: 1.4rem 0 1.2rem;
}
.form-divider span:first-child,
.form-divider span:last-child {
  flex: 1; height: 1px; background: rgba(196,154,60,0.2); display: block;
}
.form-divider-text {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-muted); white-space: nowrap;
  flex: none !important; height: auto !important; background: none !important;
}


/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
  position: fixed; bottom: 5.5rem; right: 1.5rem; z-index: 800;
  width: 52px; height: 52px; background: var(--whatsapp); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none; animation: waPulse 3s ease-in-out infinite;
}
.whatsapp-float svg { width: 26px; height: 26px; fill: #fff; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(37,211,102,0.45); animation: none; }
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 16px rgba(37,211,102,0.3); }
  50%      { box-shadow: 0 4px 24px rgba(37,211,102,0.45); }
}

/* ============================================
   ANY QUERY BUTTON
   ============================================ */
.any-query-btn {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 800;
  padding: 0.7rem 1.4rem; background: var(--brown-deep); color: var(--gold-light);
  font-family: 'Jost', sans-serif; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  border: 1px solid rgba(196,154,60,0.4); cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.any-query-btn:hover { background: var(--gold); border-color: var(--gold); color: #fff; }

/* ============================================
   MODAL (same as about/index)
   ============================================ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(10,5,0,0.75); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem; opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal {
  background: #faf7f2; max-width: 560px; width: 100%;
  max-height: 90vh; overflow-y: auto; position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s ease;
  opacity: 0; border-top: 3px solid var(--gold);
}
.modal-overlay.active .modal { transform: translateY(0) scale(1); opacity: 1; }
.modal-close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: none; font-size: 1.6rem;
  color: var(--text-muted); cursor: pointer; line-height: 1;
  transition: color var(--transition); z-index: 2;
}
.modal-close:hover { color: var(--text-dark); }
.modal-header { padding: 2.5rem 2.5rem 1.5rem; border-bottom: 1px solid #ede5d4; text-align: center; }
.modal-icon { display: block; font-size: 2rem; color: var(--gold); margin-bottom: 0.8rem; }
.modal-header h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 600;
  color: var(--text-dark); margin-bottom: 0.5rem;
}
.modal-header p { font-size: 0.85rem; font-weight: 300; color: var(--text-muted); line-height: 1.6; }
.modal-body { padding: 1.8rem 2.5rem 2.5rem; }

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .contact-main-inner { gap: 3rem; }
  .contact-form-wrap { position: static; }
}
@media (max-width: 768px) {
  .contact-main { padding: 4rem 1.2rem; }
  .contact-main-inner { grid-template-columns: 1fr; gap: 3rem; }
  .contact-form-wrap { position: static; }
  .form-card-header { padding: 2rem 1.5rem 1.5rem; }
  .form-body { padding: 1.5rem 1.5rem 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .modal-body, .modal-header { padding-left: 1.5rem; padding-right: 1.5rem; }
  .whatsapp-float { bottom: 5rem; right: 1rem; }
  .any-query-btn { bottom: 1rem; right: 1rem; }
  .ring-2, .ring-3 { display: none; }
}
@media (max-width: 480px) {
  .contact-hero-content { padding: 7rem 1.2rem 4rem; }
  .info-card { padding: 1.1rem 1.2rem; }
}