/* ============================================================
   UTKARSH PATH — Contact Page Stylesheet
   ============================================================ */

/* ── DESIGN TOKENS (mirrors style.css variables) ── */
:root {
  --navy:         #0F2545;
  --navy-light:   #1A3A6E;
  --orange:       #E8650A;
  --orange-dark:  #C4520A;
  --orange-light: #FDF0E6;
  --cream:        #F9F7F4;
  --white:        #FFFFFF;
  --text:         #1A1A2E;
  --text-muted:   #6B7280;
  --border:       #E5E7EB;
  --shadow:       0 8px 32px rgba(0,0,0,0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
}

/* ── BADGE DOT ── */
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #22C55E; display: inline-block;
  box-shadow: 0 0 0 2px rgba(34,197,94,0.25);
}

/* ── SECTION TAGS ── */
.section-tag {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px;
  margin-bottom: 12px;
}

/* ── NAV ACTIVE ── */
.nav-active { color: var(--text) !important; font-weight: 600 !important; }

/* ═══════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════ */
nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px;
  height: 64px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.logo {
  font-family: 'Fraunces', serif;
  font-size: 22px; font-weight: 600;
  color: var(--navy); letter-spacing: -0.5px;
}
.logo span { color: var(--orange); }
.nav-links {
  display: flex; align-items: center; gap: 32px; list-style: none;
}
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text-muted);
  text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--orange); color: #fff;
  border: none; padding: 9px 20px;
  border-radius: 8px; font-size: 14px; font-weight: 600;
  font-family: 'DM Sans', sans-serif; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 14px rgba(232,101,10,0.3);
}
.nav-cta:hover { background: var(--orange-dark); transform: translateY(-1px); }

/* ═══════════════════════════════════════════════
   CONTACT HERO
═══════════════════════════════════════════════ */
.contact-hero {
  background: linear-gradient(160deg, #EEF4FB 0%, #F7F0FF 55%, #FDF4EC 100%);
  padding: 80px 60px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-hero::before {
  content: '';
  position: absolute;
  top: -120px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,101,10,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.contact-hero-arc {
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 60px;
  background: var(--cream);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.contact-hero-inner {
  position: relative; z-index: 1;
  max-width: 680px; margin: 0 auto;
}
.contact-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 100px; padding: 6px 16px 6px 10px;
  font-size: 12.5px; font-weight: 500; color: var(--text-muted);
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  animation: fadeSlideUp 0.4s ease both;
}
.contact-hero-title {
  font-family: 'Fraunces', serif;
  font-size: 58px; font-weight: 600;
  color: var(--navy); letter-spacing: -2px;
  line-height: 1.1; margin-bottom: 20px;
  animation: fadeSlideUp 0.4s 0.1s ease both;
}
.contact-hero-title em { font-style: italic; color: var(--orange); }
.contact-hero-sub {
  font-size: 17px; color: var(--text-muted);
  line-height: 1.7; max-width: 520px; margin: 0 auto;
  animation: fadeSlideUp 0.4s 0.2s ease both;
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════
   MAIN CONTACT GRID
═══════════════════════════════════════════════ */
.contact-main {
  padding: 80px 60px;
  background: var(--cream);
}
.contact-main-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 48px;
  align-items: start;
}

/* ── SEND A MESSAGE FORM CARD ── */
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}
.contact-form-card .section-title {
  font-family: 'Fraunces', serif;
  font-size: 30px; font-weight: 600;
  color: var(--navy); letter-spacing: -0.8px; margin-bottom: 6px;
}
.contact-form-card .subtitle {
  font-size: 14px; color: var(--text-muted); margin-bottom: 32px; line-height: 1.6;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--navy); }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; color: var(--text);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  resize: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #B0B7C3; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,101,10,0.1);
  background: var(--white);
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}
.contact-submit-btn {
  width: 100%; margin-top: 8px;
  background: var(--orange); color: #fff;
  border: none; padding: 13px;
  border-radius: 10px; font-size: 15px; font-weight: 600;
  font-family: 'DM Sans', sans-serif; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 14px rgba(232,101,10,0.3);
  letter-spacing: 0.01em;
}
.contact-submit-btn:hover { background: var(--orange-dark); transform: translateY(-1px); }

/* ── GET IN TOUCH ── */
.get-in-touch { display: flex; flex-direction: column; gap: 24px; }
.git-title-wrap { margin-bottom: 4px; }
.git-title-wrap .section-title {
  font-family: 'Fraunces', serif;
  font-size: 30px; font-weight: 600;
  color: var(--navy); letter-spacing: -0.8px; margin-bottom: 6px;
}
.git-title-wrap .subtitle { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

.git-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  display: flex; align-items: flex-start; gap: 18px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.git-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.git-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.git-icon.orange { background: var(--orange-light); color: var(--orange); }
.git-icon.navy   { background: rgba(15,37,69,0.08); color: var(--navy); }
.git-icon.green  { background: rgba(34,197,94,0.1); color: #16A34A; }

.git-label {
  font-size: 11px; font-weight: 700; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 5px;
}
.git-value { font-size: 15px; font-weight: 600; color: var(--navy); line-height: 1.45; }
.git-sub   { font-size: 12.5px; color: var(--text-muted); margin-top: 3px; }
.git-link {
  display: inline-block; margin-top: 8px;
  font-size: 12.5px; font-weight: 600;
  color: var(--orange); text-decoration: none;
  transition: opacity 0.2s;
}
.git-link:hover { opacity: 0.75; }

/* ── RESPONSE STRIP ── */
.response-strip {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 18px;
  padding: 22px 24px;
  display: flex; align-items: center; gap: 14px;
  margin-top: 4px;
}
.response-strip-icon { font-size: 24px; }
.response-strip-text { flex: 1; }
.response-strip-text strong { display: block; font-size: 14px; font-weight: 600; color: #fff; }
.response-strip-text span   { font-size: 12.5px; color: rgba(255,255,255,0.55); }

/* ═══════════════════════════════════════════════
   MAP SECTION
═══════════════════════════════════════════════ */
.map-section {
  padding: 80px 60px;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.map-section-inner { max-width: 1100px; margin: 0 auto; }
.map-section-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 32px; flex-wrap: wrap; gap: 16px;
}
.map-section-title {
  font-family: 'Fraunces', serif;
  font-size: 36px; font-weight: 600;
  color: var(--navy); letter-spacing: -1px; line-height: 1.15;
}
.map-section-sub { font-size: 14px; color: var(--text-muted); margin-top: 6px; line-height: 1.6; }

.map-wrapper {
  position: relative; border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}
.map-wrapper iframe {
  display: block; width: 100%; height: 420px; border: none;
  filter: saturate(0.9) contrast(1.02);
}
.map-overlay-badge {
  position: absolute; top: 20px; left: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px; padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.map-pin {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--orange-light); color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.map-overlay-badge strong { display: block; font-size: 13px; color: var(--navy); font-weight: 600; }
.map-overlay-badge span   { font-size: 11.5px; color: var(--text-muted); }

.map-footer {
  display: flex; align-items: center; justify-content: center;
  margin-top: 28px; gap: 16px; flex-wrap: wrap;
}
.map-footer-text { font-size: 14px; color: var(--text-muted); font-weight: 500; }

.whatsapp-chat-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: #fff;
  border: none;
  padding: 13px 28px; border-radius: 12px;
  font-size: 15px; font-weight: 700;
  font-family: 'DM Sans', sans-serif; cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(37,211,102,0.35);
  letter-spacing: 0.01em;
}
.whatsapp-chat-btn:hover {
  background: #1EBE5D;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
}
.whatsapp-chat-btn svg { width: 20px; height: 20px; fill: #fff; flex-shrink: 0; }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer-main {
  background: var(--navy);
  padding: 64px 60px 0;
  color: rgba(255,255,255,0.65);
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px; margin: 0 auto;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.45); margin-top: 12px; }
.footer-logo { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 600; color: #fff; }
.footer-logo span { color: var(--orange); }
.footer-trust-items { display: flex; flex-direction: column; gap: 8px; margin-top: 20px; }
.footer-trust-item { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: rgba(255,255,255,0.45); }
.footer-trust-icon { font-size: 14px; }
.footer-col-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; color: rgba(255,255,255,0.35); margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 13.5px; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-links a.highlight { color: var(--orange); }

.footer-app-strip {
  max-width: 1200px; margin: 0 auto;
  padding: 24px 0;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-app-label { font-size: 13px; color: rgba(255,255,255,0.45); flex: 1; }
.app-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px; padding: 9px 18px;
  text-decoration: none; transition: background 0.2s;
  color: #fff;
}
.app-badge:hover { background: rgba(255,255,255,0.13); }
.app-badge-icon { font-size: 20px; }
.app-badge-sub  { display: block; font-size: 10px; color: rgba(255,255,255,0.5); }
.app-badge-name { display: block; font-size: 14px; font-weight: 600; }

.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 12.5px; color: rgba(255,255,255,0.3); }
.footer-social { display: flex; align-items: center; gap: 8px; }
.footer-social-label { font-size: 12px; color: rgba(255,255,255,0.3); margin-right: 4px; }
.social-icon {
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; font-size: 12px;
  transition: background 0.2s;
  color: rgba(255,255,255,0.55);
}
.social-icon:hover { background: rgba(255,255,255,0.16); color: #fff; }
.social-fb { font-weight: 700; }
.social-wa, .social-ig, .social-yt { font-size: 14px; }

/* ═══════════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
═══════════════════════════════════════════════ */
.whatsapp-btn {
  position: fixed; bottom: 28px; right: 28px;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  z-index: 200;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: fadeSlideUp 0.5s 0.6s ease both;
}
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,0.55); }
.whatsapp-btn svg { width: 28px; height: 28px; fill: #fff; }

/* ═══════════════════════════════════════════════
   THANK YOU MODAL
═══════════════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(15,37,69,0.55); backdrop-filter: blur(6px);
  display: none; align-items: center; justify-content: center;
  z-index: 300; padding: 24px;
}
.modal-overlay.active { display: flex; }
.thankyou-box {
  background: var(--white); border-radius: 24px;
  padding: 48px 40px; text-align: center;
  max-width: 420px; width: 100%;
  box-shadow: 0 24px 80px rgba(0,0,0,0.18);
  animation: popIn 0.3s ease;
}
@keyframes popIn {
  from { transform: scale(0.9); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.thankyou-checkmark { width: 52px; height: 52px; margin: 0 auto 20px; }
.check-path {
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: drawCheck 0.5s 0.2s ease forwards;
}
@keyframes drawCheck { to { stroke-dashoffset: 0; } }
.thankyou-title { font-family: 'Fraunces', serif; font-size: 26px; font-weight: 600; color: var(--navy); margin-bottom: 12px; }
.thankyou-text  { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin-bottom: 8px; }
.thankyou-small { font-size: 12.5px; color: var(--text-muted); margin-bottom: 24px; }
.thankyou-btn {
  background: var(--orange); color: #fff;
  border: none; padding: 11px 28px;
  border-radius: 8px; font-size: 14px; font-weight: 600;
  font-family: 'DM Sans', sans-serif; cursor: pointer;
  transition: background 0.2s;
}
.thankyou-btn:hover { background: var(--orange-dark); }

/* ═══════════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════════ */
.reveal-pending {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-pending.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1000px) {
  .contact-main-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .map-section-header { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 700px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .contact-hero { padding: 56px 24px 80px; }
  .contact-hero-title { font-size: 38px; }
  .contact-main, .map-section { padding: 56px 24px; }
  .contact-form-card { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-main { padding: 48px 24px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .map-wrapper iframe { height: 300px; }
}