/* ════════════════════════════════════════
   Nankana Home Care — Global Stylesheet
   Brand Design: "The Soul" · M3-inspired
   ════════════════════════════════════════ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ── Design Tokens ── */
:root {
  /* Brand */
  --p:    #0A192F;   /* Deep Medical Navy */
  --p2:   #112240;   /* Navy lifted */
  --ac:   #00B4D8;   /* Teal Cyan accent */
  --ac2:  #48CAE4;   /* Accent light */
  --gr:   #2EC4B6;   /* Clinical Green */
  --am:   #FF9F1C;   /* Warm Amber */

  /* Surface */
  --bg:   #F4F6F8;   /* Off-white canvas */
  --sur:  #FFFFFF;   /* Pure white card */
  --sur2: #F8FAFC;   /* Slightly lifted surface */

  /* Text */
  --tx:   #212529;   /* Dark charcoal */
  --tx2:  #495057;   /* Mid grey */
  --tx3:  #6C757D;   /* Muted label */
  --txl:  #ADB5BD;   /* Placeholder */

  /* Border */
  --bd:   #E9ECEF;
  --bd2:  #DEE2E6;

  /* Radius — M3 scale */
  --rs:  8px;
  --r:   16px;
  --rl:  24px;
  --rxl: 32px;

  /* Elevation */
  --sh:  0 1px 4px rgba(10,25,47,.06), 0 4px 20px rgba(10,25,47,.08);
  --shm: 0 2px 10px rgba(10,25,47,.08), 0 8px 32px rgba(10,25,47,.12);
  --shl: 0 8px 32px rgba(10,25,47,.12), 0 24px 64px rgba(10,25,47,.16);

  /* Typography */
  --serif:  'DM Serif Display', Georgia, serif;
  --sans:   'Outfit', system-ui, sans-serif;

  /* Motion */
  --dur:  220ms;
  --ease: cubic-bezier(.4, 0, .2, 1);
  --spring: cubic-bezier(.34, 1.56, .64, 1);

  /* Gradient */
  --grad: linear-gradient(180deg, var(--p) 0%, var(--ac) 100%);
  --grad-h: linear-gradient(135deg, var(--p) 0%, #0e3a6e 50%, var(--ac) 100%);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--tx);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  padding-top: 72px; /* nav height */
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: var(--sans); }

/* ── Typography scale ── */
h1, h2, h3, h4 { font-family: var(--serif); line-height: 1.2; color: var(--tx); }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--tx2); }

.serif { font-family: var(--serif); }
.accent-text { color: var(--ac); }
.green-text  { color: var(--gr); }
.amber-text  { color: var(--am); }

/* ── Layout ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-sm { padding: 56px 0; }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ac); margin-bottom: 12px;
}
.section-label::before {
  content: ''; width: 28px; height: 2px; background: var(--ac); border-radius: 2px;
}

/* ════════════════════════════════════════
   HEADER / NAV
   ════════════════════════════════════════ */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: 72px;
  background: rgba(10, 25, 47, .96);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid rgba(0, 180, 216, .12);
  transition: box-shadow var(--dur) var(--ease);
}
#site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,.25);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
  height: 72px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: var(--serif); font-size: 1.4rem; color: #fff; letter-spacing: .01em;
  display: flex; align-items: center; gap: 10px;
}
.nav-logo-icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--p); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; overflow: hidden;
}
.nav-logo em { color: var(--ac); font-style: normal; }

.nav-links {
  display: flex; align-items: center; gap: 4px; list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,.75); font-size: 14px; font-weight: 500;
  padding: 8px 14px; border-radius: var(--rs);
  transition: color var(--dur), background var(--dur);
  position: relative;
}
.nav-links a:hover,
.nav-links a.active { color: #fff; background: rgba(255,255,255,.08); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 18px; height: 2px; background: var(--ac); border-radius: 2px;
}

.nav-cta {
  background: var(--ac); color: var(--p) !important; font-weight: 700 !important;
  padding: 9px 20px !important; border-radius: 50px !important;
  box-shadow: 0 2px 12px rgba(0,180,216,.35) !important;
  transition: all var(--dur) var(--ease) !important;
}
.nav-cta:hover { background: var(--ac2) !important; transform: translateY(-1px); box-shadow: 0 4px 20px rgba(0,180,216,.45) !important; }
.nav-cta::after { display: none !important; }

/* Mobile hamburger */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
  border-radius: var(--rs);
}
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px;
  transition: all .3s var(--ease); transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  display: none; position: fixed; top: 72px; left: 0; right: 0;
  background: rgba(10, 25, 47, .98); backdrop-filter: blur(20px);
  padding: 16px 0 24px; z-index: 899;
  border-bottom: 1px solid rgba(0,180,216,.12);
  animation: mobileIn .22s var(--ease);
}
@keyframes mobileIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
.nav-mobile.open { display: block; }
.nav-mobile ul { list-style: none; }
.nav-mobile a {
  display: block; color: rgba(255,255,255,.8); font-size: 15px; font-weight: 500;
  padding: 13px 24px; transition: color var(--dur), background var(--dur);
  border-radius: var(--rs); margin: 2px 12px;
}
.nav-mobile a:hover { color: #fff; background: rgba(255,255,255,.08); }
.nav-mobile .nav-cta { background: var(--ac); color: var(--p); margin: 12px 12px 0; text-align: center; border-radius: 50px; }
.nav-mobile .nav-cta:hover { background: var(--ac2); color: var(--p); }

/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */
#site-footer {
  background: var(--p);
  color: rgba(255,255,255,.75);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 260px; }
.footer-col h5 {
  font-family: var(--sans); font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--ac);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,.65); transition: color var(--dur); }
.footer-col a:hover { color: #fff; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px; font-size: 14px; margin-bottom: 12px;
}
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; stroke: var(--ac); fill: none; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; font-size: 13px; color: rgba(255,255,255,.4);
  flex-wrap: wrap; gap: 8px;
}
.footer-bottom a { color: var(--ac); }

/* ════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  border-radius: 50px; padding: 13px 28px; font-size: 15px; font-weight: 600;
  border: none; cursor: pointer; letter-spacing: .01em;
  transition: all var(--dur) var(--ease);
  position: relative; overflow: hidden;
}
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--ac); color: var(--p); box-shadow: 0 2px 16px rgba(0,180,216,.35); }
.btn-primary:hover { background: var(--ac2); box-shadow: 0 4px 24px rgba(0,180,216,.45); transform: translateY(-2px); }
.btn-secondary { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.4); }
.btn-secondary:hover { border-color: var(--ac); color: var(--ac); }
.btn-outline { background: transparent; color: var(--p); border: 1.5px solid var(--p); }
.btn-outline:hover { background: var(--p); color: #fff; }
.btn-green { background: var(--gr); color: #fff; box-shadow: 0 2px 16px rgba(46,196,182,.35); }
.btn-green:hover { filter: brightness(1.08); transform: translateY(-2px); }
.btn-sm { padding: 9px 20px; font-size: 13px; }
.btn-lg { padding: 16px 36px; font-size: 16px; }

/* ════════════════════════════════════════
   CARDS
   ════════════════════════════════════════ */
.card {
  background: var(--sur); border-radius: var(--rl);
  border: 1px solid var(--bd); box-shadow: var(--sh);
  padding: 28px 24px;
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.card:hover { box-shadow: var(--shm); transform: translateY(-3px); }

/* Service Card */
.svc-card { text-align: left; }
.svc-icon {
  width: 52px; height: 52px; border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; flex-shrink: 0;
}
.svc-icon svg { width: 26px; height: 26px; stroke-width: 1.5; fill: none; }
.svc-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.svc-card p  { font-size: 14px; line-height: 1.7; }

/* Stat Card */
.stat-card { text-align: center; padding: 24px 18px; }
.stat-card .sv { font-family: var(--serif); font-size: 2.8rem; line-height: 1; color: var(--p); }
.stat-card .sl { font-size: 13px; color: var(--tx3); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-top: 6px; }

/* Team Card */
.team-card { text-align: center; padding: 32px 24px; }
.team-avatar {
  width: 88px; height: 88px; border-radius: 50%; margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--p) 0%, var(--ac) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 2rem; color: #fff;
  box-shadow: 0 4px 16px rgba(10,25,47,.2);
}
.team-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.team-card .role { font-size: 13px; font-weight: 600; color: var(--ac); margin-bottom: 10px; text-transform: uppercase; letter-spacing: .06em; }
.team-card p { font-size: 14px; }

/* ════════════════════════════════════════
   HERO (shared across pages)
   ════════════════════════════════════════ */
.hero {
  background: var(--grad-h);
  padding: 100px 0 80px;
  position: relative; overflow: hidden;
}
/* Decorative circles */
.hero::before, .hero::after {
  content: ''; position: absolute; border-radius: 50%;
  pointer-events: none; opacity: .07;
}
.hero::before {
  width: 600px; height: 600px; border: 2px solid var(--ac);
  top: -200px; right: -100px;
}
.hero::after {
  width: 300px; height: 300px; border: 2px solid var(--ac);
  bottom: -60px; left: 10%;
}
.hero-content { position: relative; z-index: 2; }
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero p { color: rgba(255,255,255,.80); font-size: 1.1rem; max-width: 560px; margin-bottom: 36px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Page hero (inner pages) */
.page-hero {
  background: var(--grad-h); padding: 64px 0 56px;
  position: relative; overflow: hidden; text-align: center;
}
.page-hero::before { content: ''; position: absolute; inset: 0; opacity: .04; background: repeating-linear-gradient(45deg, #fff 0, #fff 1px, transparent 0, transparent 50%) 0 0 / 24px 24px; }
.page-hero h1 { color: #fff; margin-bottom: 12px; font-size: clamp(1.8rem, 4vw, 2.8rem); }
.page-hero p  { color: rgba(255,255,255,.78); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

/* ════════════════════════════════════════
   GRIDS
   ════════════════════════════════════════ */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }

@media (max-width: 900px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) { .grid-4 { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════
   FORMS
   ════════════════════════════════════════ */
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--tx2); letter-spacing: .02em; }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--bd2); border-radius: var(--rs);
  padding: 12px 16px; font-size: 15px; color: var(--tx);
  background: var(--sur); outline: none; width: 100%;
  transition: border-color var(--dur), box-shadow var(--dur);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--ac);
  box-shadow: 0 0 0 3px rgba(0,180,216,.15);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-fg { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-fg .s2 { grid-column: 1 / -1; }
@media (max-width: 560px) { .form-fg { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════
   BADGES
   ════════════════════════════════════════ */
.badge { display: inline-block; padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 700; letter-spacing: .04em; }
.badge-cyan   { background: rgba(0,180,216,.12); color: var(--ac); }
.badge-green  { background: rgba(46,196,182,.12); color: var(--gr); }
.badge-amber  { background: rgba(255,159,28,.12); color: var(--am); }
.badge-navy   { background: rgba(10,25,47,.08); color: var(--p); }

/* ════════════════════════════════════════
   MISC UTILITIES
   ════════════════════════════════════════ */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.flex { display: flex; }
.ic { align-items: center; }
.jb { justify-content: space-between; }
.g8  { gap: 8px; }  .g12 { gap: 12px; } .g16 { gap: 16px; }
.mt8 { margin-top: 8px; } .mt16 { margin-top: 16px; } .mt24 { margin-top: 24px; } .mt40 { margin-top: 40px; }
.mb8 { margin-bottom: 8px; } .mb16 { margin-bottom: 16px; } .mb24 { margin-bottom: 24px; }
.divider { border: none; border-top: 1px solid var(--bd); margin: 32px 0; }
.text-muted { color: var(--tx3); }
.fw7 { font-weight: 700; }

/* Highlight strip */
.highlight-strip {
  background: linear-gradient(90deg, var(--p), #0e3a6e, var(--p));
  color: #fff; text-align: center; padding: 14px 24px; font-size: 14px; font-weight: 500;
}
.highlight-strip strong { color: var(--ac); }

/* WhatsApp CTA */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 800;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff; box-shadow: 0 4px 20px rgba(37,211,102,.4);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--dur) var(--spring); cursor: pointer;
  border: none;
}
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 6px 28px rgba(37,211,102,.55); }
.whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }

/* Scroll reveal (JS-applied) */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .55s var(--ease), transform .55s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* ════════════════════════════════════════
   PAGE-SPECIFIC — HOME
   ════════════════════════════════════════ */
.trust-bar {
  background: var(--sur); border-top: 1px solid var(--bd); border-bottom: 1px solid var(--bd);
  padding: 20px 0;
}
.trust-bar-inner { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: var(--tx2); }
.trust-item svg { width: 20px; height: 20px; stroke: var(--ac); fill: none; }
.trust-item span { color: var(--p); }

.how-step {
  display: flex; gap: 20px; align-items: flex-start; padding: 24px;
  background: var(--sur); border-radius: var(--rl); border: 1px solid var(--bd); box-shadow: var(--sh);
}
.step-num {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: var(--grad); color: #fff;
  font-family: var(--serif); font-size: 1.3rem; display: flex; align-items: center; justify-content: center;
}
.how-step h4 { margin-bottom: 6px; }
.how-step p  { font-size: 14px; }

.testimonial-card {
  background: var(--p); border-radius: var(--rl); padding: 32px 28px;
  color: #fff; border: 1px solid rgba(255,255,255,.06);
}
.testimonial-card p { color: rgba(255,255,255,.80); font-size: 15px; line-height: 1.8; margin-bottom: 24px; }
.testimonial-card .author { display: flex; align-items: center; gap: 12px; }
.testimonial-card .author-av {
  width: 44px; height: 44px; border-radius: 50%; background: var(--ac);
  display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 1.2rem; color: var(--p);
}
.testimonial-card .author-name { font-weight: 700; font-size: 15px; }
.testimonial-card .author-meta { font-size: 13px; color: rgba(255,255,255,.5); }
.quote-mark { font-family: var(--serif); font-size: 4rem; line-height: .8; color: var(--ac); opacity: .5; margin-bottom: 8px; }

/* CTA banner */
.cta-banner {
  background: var(--grad-h); border-radius: var(--rxl);
  padding: 60px 48px; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, rgba(255,255,255,.03) 0, rgba(255,255,255,.03) 1px, transparent 0, transparent 50%) 0 0 / 20px 20px;
}
.cta-banner h2, .cta-banner p { color: #fff; position: relative; z-index: 1; }
.cta-banner p { color: rgba(255,255,255,.75); margin-bottom: 32px; }
.cta-banner .cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ════════════════════════════════════════
   PAGE-SPECIFIC — ABOUT
   ════════════════════════════════════════ */
.story-block { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.story-visual {
  border-radius: var(--rxl); overflow: hidden;
  background: var(--grad-h); aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.story-visual-inner { text-align: center; color: rgba(255,255,255,.9); }
.story-visual-inner .big-num { font-family: var(--serif); font-size: 6rem; line-height: 1; color: rgba(255,255,255,.15); }
.story-visual svg { width: 80px; height: 80px; stroke: rgba(255,255,255,.3); fill: none; stroke-width: 1; }
.value-item { display: flex; gap: 14px; margin-bottom: 20px; }
.value-icon { width: 40px; height: 40px; border-radius: var(--rs); background: rgba(0,180,216,.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.value-icon svg { width: 20px; height: 20px; stroke: var(--ac); fill: none; }
.value-item h4 { margin-bottom: 4px; }
.value-item p  { font-size: 14px; }

@media (max-width: 720px) { .story-block { grid-template-columns: 1fr; gap: 32px; } }

/* ════════════════════════════════════════
   PAGE-SPECIFIC — SERVICES
   ════════════════════════════════════════ */
.process-step {
  text-align: center; padding: 28px 20px;
  background: var(--sur); border-radius: var(--rl); border: 1px solid var(--bd); box-shadow: var(--sh);
}
.process-num {
  width: 52px; height: 52px; border-radius: 50%; background: var(--grad);
  color: #fff; font-family: var(--serif); font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
}
.price-note {
  background: rgba(0,180,216,.08); border: 1px solid rgba(0,180,216,.2);
  border-radius: var(--rl); padding: 28px 32px; text-align: center;
}

/* ════════════════════════════════════════
   PAGE-SPECIFIC — JOIN US
   ════════════════════════════════════════ */
.perk-item { display: flex; gap: 16px; align-items: flex-start; }
.perk-icon { width: 44px; height: 44px; border-radius: var(--r); flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.perk-icon svg { width: 22px; height: 22px; fill: none; stroke-width: 1.5; }
.perk-item h4 { margin-bottom: 4px; }
.perk-item p  { font-size: 14px; }

.role-card { cursor: default; }
.role-card .role-tag { margin-bottom: 12px; }
.role-card h3 { margin-bottom: 8px; font-size: 1.15rem; }
.role-card ul { padding-left: 16px; list-style: none; }
.role-card li { font-size: 14px; color: var(--tx2); padding: 4px 0; display: flex; align-items: center; gap: 8px; }
.role-card li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--ac); flex-shrink: 0; }

/* ════════════════════════════════════════
   PAGE-SPECIFIC — BOOKING
   ════════════════════════════════════════ */
.booking-wrapper { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }
.booking-sidebar .card { padding: 32px; }
.booking-sidebar .info-item { display: flex; gap: 14px; margin-bottom: 20px; }
.booking-sidebar .info-item svg { width: 20px; height: 20px; stroke: var(--ac); fill: none; flex-shrink: 0; margin-top: 2px; }
.booking-sidebar .info-item h4 { font-size: .95rem; margin-bottom: 3px; }
.booking-sidebar .info-item p  { font-size: 14px; }
.booking-form-card { background: var(--sur); border-radius: var(--rxl); padding: 40px; border: 1px solid var(--bd); box-shadow: var(--shm); }
.booking-form-card h2 { margin-bottom: 4px; }
.booking-form-card > p { margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 840px) {
  .booking-wrapper { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* Form success state */
.form-success {
  text-align: center; padding: 48px 32px; display: none;
}
.form-success .success-icon {
  width: 72px; height: 72px; border-radius: 50%; background: rgba(46,196,182,.12);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
}
.form-success .success-icon svg { width: 36px; height: 36px; stroke: var(--gr); fill: none; }
.form-success h3 { margin-bottom: 10px; }

/* ════════════════════════════════════════
   RESPONSIVE — GLOBAL
   ════════════════════════════════════════ */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  body { padding-top: 72px; }
  .hero { padding: 64px 0 48px; }
  .hero-ctas { flex-direction: column; }
  .section { padding: 56px 0; }
  .cta-banner { padding: 40px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { grid-column: 1; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .card { padding: 20px 18px; }
  .booking-form-card { padding: 24px 18px; }
}

/* ════════════════════════════════════════
   SINGLE-PAGE BROCHURE ADDITIONS
   ════════════════════════════════════════ */

/* Nav actions (lang switcher + hamburger) */
.nav-actions { display: flex; align-items: center; gap: 10px; }

.lang-switcher {
  background: none; border: 1.5px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.8); padding: 5px 14px; border-radius: 50px;
  font-size: 12px; font-weight: 600; cursor: pointer;
  transition: all var(--dur) var(--ease);
  line-height: 1.4;
}
.lang-switcher:hover { border-color: var(--ac); color: var(--ac); }

/* Dual-language display toggle — Urdu hidden by default */
.lang-ur { display: none; font-family: 'Noto Nastaliq Urdu', 'Jameel Noori Nastaleeq', serif; line-height: 1.8; }
body.show-ur .lang-en { display: none; }
body.show-ur .lang-ur { display: revert; }

/* Urdu font utility */
.urdu { font-family: 'Noto Nastaliq Urdu', 'Jameel Noori Nastaleeq', serif; line-height: 1.8; }

/* Image placeholders */
.img-placeholder {
  border-radius: var(--rl);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.img-placeholder svg { width: 64px; height: 64px; stroke: rgba(255,255,255,.5); fill: none; stroke-width: 1.2; }
.img-16-9 { aspect-ratio: 16/9; }
.img-1-1 { aspect-ratio: 1/1; }
.img-placeholder-sm svg { width: 36px; height: 36px; }
.img-placeholder img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Hero logo (single-page) */
.hero-logo { margin-bottom: 24px; }
.hero-logo .brand-name {
  font-family: var(--serif); font-size: 2rem; color: #fff;
  display: inline-flex; align-items: center; gap: 12px;
}
.hero-logo .brand-name .lang-ur { font-family: 'Noto Nastaliq Urdu', serif; font-size: 1.8rem; }
.hero-logo .brand-name em { color: var(--ac); font-style: normal; }

/* About grid */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
@media (max-width: 720px) { .about-grid { grid-template-columns: 1fr; } }

/* Services brochure grid */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
@media (max-width: 768px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--sur); border-radius: var(--rl);
  border: 1px solid var(--bd); box-shadow: var(--sh);
  overflow: hidden;
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.service-card:hover { box-shadow: var(--shm); transform: translateY(-4px); }
.service-card .service-img { border-radius: 0; }
.service-card .service-img svg { width: 40px; height: 40px; }
.service-card-body { padding: 20px 18px 24px; text-align: center; }
.service-card-body h3 { font-size: 1.05rem; margin-bottom: 6px; }
.service-card-body p { font-size: 13px; color: var(--tx3); line-height: 1.6; }

/* Section background variants */
.section-mint { background: #E8F8F5; }
.section-sky { background: #F0F9FF; }

/* Language gate modal */
.lang-modal {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.65);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.lang-modal.hidden { display: none; }
.lang-modal-card {
  background: var(--sur); border-radius: var(--rxl);
  padding: 48px 36px; max-width: 420px; width: 90%;
  text-align: center; box-shadow: var(--shl);
  animation: modalIn .35s var(--spring);
}
@keyframes modalIn { from { opacity: 0; transform: scale(.92) translateY(16px); } to { opacity: 1; transform: none; } }
.lang-modal-card p { font-size: 1.1rem; font-weight: 600; color: var(--tx); margin-bottom: 28px; }
.lang-modal-card .lang-ur { font-size: 1.15rem; }
.lang-modal-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.lang-modal-buttons .btn { min-width: 140px; justify-content: center; }
.lang-modal-buttons .btn-lang-ur { background: var(--p); color: #fff; font-family: 'Noto Nastaliq Urdu', serif; font-size: 1.15rem; }
.lang-modal-buttons .btn-lang-ur:hover { background: var(--p2); }

/* Mobile nav active state */
.nav-mobile a.active { color: #fff; background: rgba(255,255,255,.08); }
