/* PINAYA INDIA — Main Website CSS */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@700;800;900&display=swap');

:root {
  --teal: #0d7377;
  --teal-dark: #0a5a5e;
  --teal-light: #14a085;
  --teal-xlight: #1abc9c;
  --teal-bg: #e8f5f5;
  --navy: #1a1a2e;
  --navy-2: #16213e;
  --navy-3: #0f3460;
  --white: #ffffff;
  --off-white: #f8fafb;
  --gray: #e2e8f0;
  --gray-2: #edf2f7;
  --text: #1a202c;
  --text-2: #4a5568;
  --text-3: #718096;
  --gold: #f6ad55;
  --gold-dark: #ed8936;
  --green-wa: #25D366;
  --green-wa-dark: #128C7E;
  --red: #e53e3e;
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.16);
  --transition: all 0.25s ease;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============ NAVBAR ============ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0 32px;
  height: 70px;
  display: flex; align-items: center; justify-content: space-between;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(26, 26, 46, 0.98);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}

/* White pill behind logo so teal logo is visible on dark navbar */
.nav-logo-img-pill {
  background: #ffffff;
  border-radius: 12px;
  padding: 5px 10px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 12px rgba(255,255,255,0.15);
  flex-shrink: 0;
}
.nav-logo-img-pill img {
  height: 48px; width: auto;
  display: block;
  object-fit: contain;
}
.nav-logo-img-pill--sm img { height: 40px; }

/* PINAYA INDIA wordmark — Indian tricolor, no space */
.nav-logo-wordmark {
  display: flex; align-items: center;
  line-height: 1;
}

/* Indian Flag Tricolor — 3 solid spans, zero browser issues */
.wm-saffron, .wm-white, .wm-green {
  font-family: 'Poppins', sans-serif;
  font-size: 22px; font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  line-height: 1;
}
.wm-saffron { color: #FF9933; }          /* Saffron — PIN  */
.wm-white   { color: #ffffff; }          /* White   — AYA  */
.wm-green   { color: #2ECC71; }          /* Green   — INDIA */

/* Footer wordmark */
.footer-logo-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.nav-logo-wordmark--footer .wm-saffron,
.nav-logo-wordmark--footer .wm-white,
.nav-logo-wordmark--footer .wm-green { font-size: 24px; }

.nav-links {
  display: flex; align-items: center; gap: 8px;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 14px; font-weight: 500;
  padding: 8px 14px; border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: #fff; background: rgba(255,255,255,0.08);
}

.nav-cta {
  display: flex; align-items: center; gap: 12px;
}
.btn-wa {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-wa);
  color: #fff; font-weight: 700; font-size: 14px;
  padding: 10px 20px; border-radius: 50px;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  transition: var(--transition);
}
.btn-wa:hover {
  background: var(--green-wa-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.45);
}
.btn-wa svg { width: 18px; height: 18px; flex-shrink: 0; }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: var(--transition); }

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 50%, var(--navy-3) 100%);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 100px 32px 60px;
}

.hero-bg-circles {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none; overflow: hidden;
}
.hero-circle {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(13,115,119,0.3) 0%, transparent 70%);
}
.hero-circle-1 { width: 600px; height: 600px; top: -200px; right: -100px; }
.hero-circle-2 { width: 400px; height: 400px; bottom: -100px; left: -100px; }
.hero-circle-3 { width: 200px; height: 200px; top: 40%; left: 40%; animation: pulse-circle 4s ease-in-out infinite; }

@keyframes pulse-circle {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.3); opacity: 0.1; }
}

.hero-content {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 0.55fr 0.6fr; gap: 32px; align-items: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(13,115,119,0.2); border: 1px solid rgba(13,115,119,0.4);
  color: var(--teal-xlight); font-size: 13px; font-weight: 600;
  padding: 6px 14px; border-radius: 50px;
  margin-bottom: 24px;
}
.hero-badge-dot { width: 6px; height: 6px; background: var(--teal-xlight); border-radius: 50%; animation: blink 1.5s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 3.8vw, 52px);
  font-weight: 900; line-height: 1.15;
  color: #fff; margin-bottom: 24px;
}
.hero-title .highlight { color: var(--teal-xlight); }
.hero-title-accent { color: #f6ad55; font-size: 0.85em; }

.hero-subtitle {
  font-size: 18px; color: rgba(255,255,255,0.75);
  margin-bottom: 40px; max-width: 500px; line-height: 1.7;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
  color: #fff; font-weight: 700; font-size: 16px;
  padding: 16px 32px; border-radius: 50px;
  box-shadow: 0 8px 32px rgba(13,115,119,0.4);
  transition: var(--transition);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(13,115,119,0.5); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  border: 2px solid rgba(255,255,255,0.3); color: #fff;
  font-weight: 600; font-size: 16px;
  padding: 14px 28px; border-radius: 50px;
  transition: var(--transition);
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.05); }

.hero-stats {
  display: flex; gap: 32px; flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat-num { font-size: 28px; font-weight: 800; color: var(--teal-xlight); line-height: 1; }
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.5px; }

.hero-visual {
  display: flex; justify-content: center; align-items: center;
  position: relative;
}
.hero-phone-mockup {
  width: 280px; height: 520px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 40px;
  padding: 24px 20px;
  backdrop-filter: blur(10px);
  position: relative; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.1);
}
.chat-bubble {
  border-radius: 18px;
  padding: 12px 16px;
  margin-bottom: 12px;
  max-width: 85%;
  animation: slide-in 0.5s ease both;
}
.chat-bubble.received {
  background: rgba(255,255,255,0.1); color: #fff;
  border-bottom-left-radius: 4px;
}
.chat-bubble.sent {
  background: var(--teal); color: #fff;
  border-bottom-right-radius: 4px;
  margin-left: auto;
}
.chat-bubble.wa-green {
  background: var(--green-wa); color: #fff;
  border-bottom-left-radius: 4px;
}
.chat-bubble p { font-size: 13px; line-height: 1.5; }
.chat-bubble .time { font-size: 10px; opacity: 0.7; margin-top: 4px; text-align: right; }
@keyframes slide-in { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:none; } }
.chat-b1{animation-delay:0.3s} .chat-b2{animation-delay:0.7s} .chat-b3{animation-delay:1.1s} .chat-b4{animation-delay:1.5s} .chat-b5{animation-delay:1.9s}

/* ============ SECTION BASE ============ */
.section { padding: 80px 32px; }
.section-sm { padding: 48px 32px; }
.container { max-width: 1200px; margin: 0 auto; }

.section-badge {
  display: inline-block;
  background: var(--teal-bg); color: var(--teal-dark);
  font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 50px;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 4vw, 44px); font-weight: 800;
  color: var(--navy); line-height: 1.2; margin-bottom: 16px;
}
.section-title span { color: var(--teal); }
.section-subtitle {
  font-size: 17px; color: var(--text-2); max-width: 560px;
  line-height: 1.7; margin-bottom: 56px;
}
.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ============ SERVICES GRID ============ */
.services-section { background: var(--off-white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray);
  transition: var(--transition);
  position: relative; overflow: hidden;
  cursor: pointer;
  display: block;
}
.service-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  transform: scaleX(0); transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--teal-bg);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon-wrap {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--teal-bg) 0%, rgba(20,160,133,0.12) 100%);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
  font-size: 32px;
}
.service-card:hover .service-icon-wrap {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
  transform: scale(1.08);
}
.service-card:hover .service-icon-wrap span { filter: brightness(0) invert(1); }

.service-name {
  font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 8px;
}
.service-price {
  font-size: 13px; color: var(--teal); font-weight: 600;
}
.service-badge-live {
  display: inline-block;
  background: #d4edda; color: #1a7a34;
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
  padding: 2px 8px; border-radius: 50px;
  margin-top: 8px;
}
.service-badge-soon {
  display: inline-block;
  background: #fff3cd; color: #856404;
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
  padding: 2px 8px; border-radius: 50px;
  margin-top: 8px;
}

/* ============ HOW IT WORKS ============ */
.how-section { background: var(--white); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}
.steps-grid::before {
  content: ''; position: absolute;
  top: 40px; left: calc(16.66% + 20px); right: calc(16.66% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  z-index: 0;
}
.step-item { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: #fff; font-size: 28px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 32px rgba(13,115,119,0.35);
  position: relative;
}
.step-num::after {
  content: ''; position: absolute;
  width: 96px; height: 96px; border-radius: 50%;
  border: 2px dashed rgba(13,115,119,0.25);
  top: -8px; left: -8px;
}
.step-title { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.step-desc { font-size: 14px; color: var(--text-2); line-height: 1.6; }

/* ============ STATS STRIP ============ */
.stats-strip {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal-light) 100%);
  padding: 48px 32px;
}
.stats-grid {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 42px; font-weight: 900;
  color: #fff; line-height: 1;
}
.stat-label { font-size: 13px; color: rgba(255,255,255,0.8); margin-top: 6px; font-weight: 500; }

/* ============ CITIES SECTION ============ */
.cities-section { background: var(--off-white); }
.cities-grid {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
}
.city-chip {
  display: flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--gray);
  padding: 10px 20px; border-radius: 50px;
  font-size: 14px; font-weight: 600; color: var(--text);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.city-chip:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-2px); box-shadow: var(--shadow); }
.city-chip .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); }
.city-chip.active { background: var(--teal-bg); border-color: var(--teal); color: var(--teal-dark); }
.city-chip.active .dot { background: var(--teal-xlight); box-shadow: 0 0 0 3px rgba(26,188,156,0.2); }

/* ============ PROVIDER CTA ============ */
.provider-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
  position: relative; overflow: hidden;
}
.provider-section::before {
  content: ''; position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(13,115,119,0.4) 0%, transparent 70%);
}
.provider-content {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.provider-text h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 4vw, 44px); font-weight: 800;
  color: #fff; line-height: 1.2; margin-bottom: 20px;
}
.provider-text p { font-size: 17px; color: rgba(255,255,255,0.75); margin-bottom: 32px; line-height: 1.7; }
.provider-perks { display: flex; flex-direction: column; gap: 16px; }
.perk-item {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  padding: 16px 20px; border-radius: var(--radius);
}
.perk-icon { font-size: 24px; flex-shrink: 0; }
.perk-text h4 { color: #fff; font-size: 15px; font-weight: 600; }
.perk-text p { color: rgba(255,255,255,0.65); font-size: 13px; }

/* ============ TESTIMONIALS ============ */
.testimonials-section { background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--off-white); border: 1px solid var(--gray);
  border-radius: var(--radius-lg); padding: 28px;
  position: relative;
}
.testimonial-card::before {
  content: '"'; position: absolute;
  top: 16px; right: 24px;
  font-size: 72px; line-height: 1;
  color: var(--teal-bg); font-family: Georgia, serif;
}
.stars { color: var(--gold-dark); font-size: 16px; margin-bottom: 12px; }
.testimonial-text { font-size: 14px; color: var(--text-2); line-height: 1.7; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 16px;
}
.author-name { font-size: 14px; font-weight: 700; color: var(--text); }
.author-loc { font-size: 12px; color: var(--text-3); }

/* ============ CTA SECTION ============ */
.cta-section {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal-light) 100%);
  text-align: center; padding: 80px 32px;
}
.cta-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 4vw, 48px); font-weight: 800;
  color: #fff; margin-bottom: 16px;
}
.cta-section p { font-size: 18px; color: rgba(255,255,255,0.85); margin-bottom: 40px; }
.btn-wa-large {
  display: inline-flex; align-items: center; gap: 12px;
  background: #fff; color: var(--green-wa-dark);
  font-weight: 800; font-size: 18px;
  padding: 20px 48px; border-radius: 50px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.2);
  transition: var(--transition);
}
.btn-wa-large:hover { transform: translateY(-3px); box-shadow: 0 16px 50px rgba(0,0,0,0.25); }
.btn-wa-large svg { width: 28px; height: 28px; }

/* ============ FOOTER ============ */
.footer {
  background: var(--navy);
  padding: 60px 32px 32px;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand .footer-logo { margin-bottom: 0; }
.footer-desc { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 20px; max-width: 280px; }
.footer-social { display: flex; gap: 12px; }
.social-link {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; transition: var(--transition);
}
.social-link:hover { background: var(--teal); color: #fff; }

.footer-col h4 { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.55); font-size: 14px; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--teal-xlight); }

.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { color: rgba(255,255,255,0.4); font-size: 13px; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,0.4); font-size: 13px; transition: var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,0.8); }

/* ============ FLOATING WA BUTTON ============ */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--green-wa);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
  transition: var(--transition);
  animation: wa-pulse 3s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 12px 40px rgba(37,211,102,0.6); }
.wa-float svg { width: 32px; height: 32px; }
@keyframes wa-pulse {
  0%,100%{box-shadow:0 8px 30px rgba(37,211,102,0.5)}
  50%{box-shadow:0 8px 30px rgba(37,211,102,0.5), 0 0 0 12px rgba(37,211,102,0.1)}
}
.wa-tooltip {
  position: absolute; right: 72px; bottom: 50%;
  transform: translateY(50%);
  background: var(--navy); color: #fff;
  font-size: 13px; font-weight: 600;
  padding: 8px 14px; border-radius: 8px;
  white-space: nowrap; pointer-events: none;
  opacity: 0; transition: var(--transition);
}
.wa-tooltip::after {
  content: ''; position: absolute;
  right: -6px; top: 50%; transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none; border-left-color: var(--navy);
}
.wa-float:hover .wa-tooltip { opacity: 1; }

/* ============ PAGE SPECIFIC ============ */
.page-hero {
  padding: 130px 32px 80px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  text-align: center; color: #fff;
}
.page-hero h1 { font-family:'Poppins',sans-serif; font-size: clamp(32px,5vw,56px); font-weight:800; margin-bottom:16px; }
.page-hero p { font-size:18px; opacity:0.8; max-width:560px; margin:0 auto; }

.service-detail-grid { display:grid; grid-template-columns:1fr 380px; gap:48px; align-items:start; padding:80px 32px; max-width:1200px; margin:0 auto; }
.service-detail-sticky { position:sticky; top:90px; }
.booking-card { background:var(--white); border:1px solid var(--gray); border-radius:var(--radius-lg); padding:32px; box-shadow:var(--shadow-lg); }
.booking-price { font-size:36px; font-weight:900; color:var(--teal); margin-bottom:4px; }
.booking-price-sub { font-size:13px; color:var(--text-3); margin-bottom:24px; }
.booking-card .btn-wa { width:100%; justify-content:center; font-size:16px; padding:16px 24px; border-radius:var(--radius); margin-bottom:12px; }
.booking-card .btn-call { width:100%; text-align:center; display:block; padding:14px; border:2px solid var(--gray); border-radius:var(--radius); font-weight:600; color:var(--text-2); transition:var(--transition); }
.booking-card .btn-call:hover { border-color:var(--teal); color:var(--teal); }

.includes-list { display:flex; flex-direction:column; gap:12px; margin-bottom:32px; }
.include-item { display:flex; align-items:center; gap:12px; }
.include-check { width:20px;height:20px;border-radius:50%;background:var(--teal-bg);color:var(--teal);display:flex;align-items:center;justify-content:center;font-size:11px;flex-shrink:0; }

.faq-list { display:flex; flex-direction:column; gap:16px; }
.faq-item { border:1px solid var(--gray); border-radius:var(--radius); overflow:hidden; }
.faq-q { padding:20px 24px; font-weight:600; cursor:pointer; display:flex; justify-content:space-between; align-items:center; background:var(--white); }
.faq-q::after { content:'▼'; font-size:12px; color:var(--teal); transition:var(--transition); }
.faq-item.open .faq-q::after { transform:rotate(180deg); }
.faq-a { padding:0 24px 20px; color:var(--text-2); font-size:14px; line-height:1.7; display:none; }
.faq-item.open .faq-a { display:block; }


/* vc-svc interactive links */
a.vc-svc { color:var(--text); text-decoration:none; cursor:pointer; transition:all 0.15s ease; }
a.vc-svc:hover { background:var(--teal-bg); color:var(--teal-dark); transform:translateX(4px); }
a.vc-svc-more { color:var(--teal); background:var(--teal-bg); }
a.vc-svc-more:hover { background:var(--teal); color:#fff; }



/* ============ RESPONSIVE GRID CLASSES ============ */
/* about page story + legal 2-col */
.story-grid { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:start; }

/* about page dual-platform verticals 2-col */
.verticals-row-2col { display:grid; grid-template-columns:1fr 1fr; gap:24px; }

/* about page values 2×2 grid */
.values-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:24px; margin-top:40px; }

/* join page content 2-col */
.join-content-grid { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:start; }

/* contact page contact-cards 2-col */
.contact-cards-grid { display:grid; grid-template-columns:1fr 1fr; gap:24px; margin-bottom:48px; }
