/*
Theme Name: JPS Health Care
Theme URI: https://jpshealthcare.in
Author: JPS Health Care
Author URI: https://jpshealthcare.in
Description: A premium medical diagnostic centre theme for JPS Health Care, New Delhi. Fully accessible, WhatsApp booking integration, large readable fonts, medical blue palette. Features 10 health packages, services, Google Maps, and responsive design.
Version: 2.0.0
Requires at least: 5.8
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: jps-healthcare
Tags: medical, health, diagnostic, accessibility, whatsapp, one-page
*/

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Blues — core palette */
  --blue-950:  #020d1a;
  --blue-900:  #061428;
  --blue-800:  #0b2545;
  --blue-700:  #0f3460;
  --blue-600:  #1351a8;
  --blue-500:  #1a6fd4;
  --blue-400:  #3d8ef0;
  --blue-100:  #dbeafe;
  --blue-50:   #eff6ff;

  /* Accent — medical teal */
  --teal:      #0891b2;
  --teal-light:#e0f7fa;

  /* Greens — WhatsApp / success */
  --wa-green:  #25d366;
  --wa-dark:   #128c7e;

  /* Neutrals */
  --white:     #ffffff;
  --off-white: #f4f8ff;
  --gray-100:  #e8eef8;
  --gray-200:  #d0daea;
  --gray-400:  #8fa5c0;
  --gray-600:  #4a6080;
  --gray-800:  #1e2d40;

  /* Semantic */
  --text-body: #1e2d40;
  --text-muted:#527090;
  --border:    rgba(13,52,96,0.12);

  /* Gradients */
  --grad-hero: linear-gradient(160deg, #061428 0%, #0b2545 45%, #0f3460 100%);
  --grad-card: linear-gradient(135deg, #0b2545 0%, #0f3460 100%);

  /* Shadows */
  --shadow-xs: 0 2px 8px rgba(13,52,96,0.08);
  --shadow-sm: 0 4px 16px rgba(13,52,96,0.12);
  --shadow-md: 0 10px 36px rgba(13,52,96,0.16);
  --shadow-lg: 0 24px 72px rgba(13,52,96,0.22);

  /* Radii */
  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  28px;

  /* Typography scale — LARGE for 60+ readability */
  --text-xs:   14px;
  --text-sm:   16px;
  --text-base: 18px;
  --text-lg:   20px;
  --text-xl:   24px;
  --text-2xl:  30px;
  --text-3xl:  38px;
  --text-4xl:  50px;
  --text-hero: clamp(42px, 6vw, 72px);

  --line-tight:  1.15;
  --line-normal: 1.6;
  --line-loose:  1.8;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 18px; }
body {
  font-family: 'Nunito', 'Segoe UI', sans-serif;
  background: var(--white);
  color: var(--text-body);
  overflow-x: hidden;
  line-height: var(--line-normal);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font-family: inherit; cursor: pointer; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--blue-900); }
::-webkit-scrollbar-thumb { background: var(--blue-500); border-radius: 4px; }

/* Focus visible for accessibility */
:focus-visible { outline: 3px solid var(--blue-400); outline-offset: 3px; }

/* ============================================================
   TYPOGRAPHY SYSTEM
   ============================================================ */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: var(--line-tight);
  color: var(--blue-800);
  font-weight: 700;
}
h1 { font-size: var(--text-hero); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); font-family: 'Nunito', sans-serif; font-weight: 700; }
p  { font-size: var(--text-base); line-height: var(--line-loose); }

.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: var(--text-xs); font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--blue-500); margin-bottom: 12px;
}
.section-eyebrow::before {
  content: '';
  display: block; width: 28px; height: 3px;
  background: var(--blue-500); border-radius: 2px;
}
.section-title { font-size: clamp(30px, 4vw, 48px); color: var(--blue-800); }
.section-title.on-dark { color: var(--white); }
.section-body {
  font-size: var(--text-base); line-height: var(--line-loose);
  color: var(--gray-600); margin-top: 14px; max-width: 580px;
}
.section-body.on-dark { color: rgba(255,255,255,0.65); }

/* ============================================================
   LAYOUT
   ============================================================ */
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 5%; }
.section-pad { padding: 100px 0; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700; font-size: var(--text-base);
  border: none; border-radius: var(--r-sm);
  padding: 16px 32px; text-decoration: none;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--blue-600);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(19,81,168,0.35);
}
.btn-primary:hover {
  background: var(--blue-700);
  box-shadow: 0 10px 28px rgba(19,81,168,0.45);
  color: var(--white);
}

.btn-whatsapp {
  background: var(--wa-green);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(37,211,102,0.35);
  font-size: var(--text-lg);
  padding: 18px 36px;
}
.btn-whatsapp:hover {
  background: var(--wa-dark);
  box-shadow: 0 10px 28px rgba(18,140,126,0.45);
  color: var(--white);
}
.btn-whatsapp svg { width: 26px; height: 26px; flex-shrink: 0; }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.8);
  color: var(--white);
}

/* ============================================================
   SITE HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: rgba(6,20,40,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  height: 78px; display: flex; align-items: center;
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 6px 32px rgba(0,0,0,0.45); }

.header-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  width: 100%; padding: 0 5%;
}

.site-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.logo-mark {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-400));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-mark svg { width: 26px; height: 26px; }
.logo-text .logo-name {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 700;
  color: var(--white); line-height: 1.1;
}
.logo-text .logo-sub {
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--blue-400); font-weight: 600;
}

.main-nav ul, .main-nav .menu {
  display: flex; align-items: center;
  gap: 6px; list-style: none;
}
.main-nav a {
  color: rgba(255,255,255,0.75); text-decoration: none;
  font-size: 15px; font-weight: 600;
  padding: 8px 14px; border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.nav-book-btn {
  background: var(--wa-green) !important;
  color: var(--white) !important;
  padding: 10px 20px !important; border-radius: 8px;
  font-weight: 700 !important;
  display: flex; align-items: center; gap: 6px;
}
.nav-book-btn:hover { background: var(--wa-dark) !important; }

.menu-toggle {
  display: none; background: none; border: none;
  flex-direction: column; gap: 5px; padding: 4px;
}
.menu-toggle span {
  display: block; width: 26px; height: 3px;
  background: var(--white); border-radius: 2px; transition: all 0.3s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: var(--grad-hero);
  display: flex; align-items: center;
  padding: 110px 5% 70px;
  position: relative; overflow: hidden;
}

/* Subtle grid */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 56px 56px;
}

/* Glowing orbs */
.hero-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
  filter: blur(80px);
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(26,111,212,0.25) 0%, transparent 70%);
  right: -80px; top: -80px;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(8,145,178,0.2) 0%, transparent 70%);
  left: -60px; bottom: 60px;
}

.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr auto;
  gap: 60px; align-items: center; width: 100%;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(26,111,212,0.18);
  border: 1.5px solid rgba(61,142,240,0.35);
  color: var(--blue-400); padding: 8px 18px; border-radius: 100px;
  font-size: 14px; font-weight: 700; letter-spacing: 0.5px;
  margin-bottom: 28px;
  animation: fadeUp 0.7s ease both;
}
.hero-badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--blue-400);
  animation: blink 2s infinite;
}
@keyframes blink {
  0%,100% { opacity: 1; } 50% { opacity: 0.3; }
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: var(--text-hero);
  font-weight: 700; color: var(--white);
  line-height: 1.08; margin-bottom: 22px;
  animation: fadeUp 0.7s 0.1s ease both;
}
.hero-title em {
  font-style: italic;
  background: linear-gradient(90deg, var(--blue-400), #7ec8f8);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: var(--text-lg); line-height: var(--line-loose);
  color: rgba(255,255,255,0.72);
  max-width: 560px; margin-bottom: 44px;
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero-ctas {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeUp 0.7s 0.3s ease both;
}

.hero-trust {
  display: flex; gap: 44px; margin-top: 60px;
  padding-top: 44px; border-top: 1px solid rgba(255,255,255,0.1);
  animation: fadeUp 0.7s 0.4s ease both; flex-wrap: wrap;
}
.trust-num {
  font-family: 'Playfair Display', serif;
  font-size: 40px; font-weight: 700;
  color: var(--blue-400); line-height: 1;
}
.trust-label {
  font-size: 13px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
  margin-top: 6px;
}

/* Hero quick services grid */
.hero-services {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  animation: fadeUp 0.7s 0.35s ease both;
}
.hero-svc-pill {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--r-md); padding: 18px 16px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  transition: all 0.25s; width: 130px;
}
.hero-svc-pill:nth-child(even) { margin-top: 18px; }
.hero-svc-pill:hover {
  background: rgba(26,111,212,0.15);
  border-color: var(--blue-400);
  transform: translateY(-4px);
}
.hero-svc-pill .svc-icon { font-size: 28px; }
.hero-svc-pill .svc-name { font-size: 13px; color: rgba(255,255,255,0.8); font-weight: 600; text-align: center; line-height: 1.2; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee-strip {
  background: var(--blue-700);
  padding: 16px 0;
  overflow: hidden;
  border-bottom: 3px solid var(--blue-500);
}
.marquee-inner {
  display: flex; gap: 0; width: max-content;
  animation: marqueeScroll 28s linear infinite;
}
.marquee-item {
  display: flex; align-items: center; gap: 12px;
  padding: 0 36px;
  font-size: 15px; font-weight: 700; letter-spacing: 0.3px;
  color: rgba(255,255,255,0.85); white-space: nowrap; flex-shrink: 0;
}
.marquee-sep {
  color: var(--blue-400); font-size: 20px;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section { padding: 100px 0; background: var(--off-white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.about-visual { position: relative; }
.about-img-box {
  border-radius: var(--r-xl);
  background: var(--grad-card);
  aspect-ratio: 4/5;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.about-cross-svg { opacity: 0.15; }
.about-badge-float {
  position: absolute; top: 24px; left: -18px;
  background: var(--blue-600); color: var(--white);
  border-radius: 100px; padding: 10px 22px;
  font-size: 15px; font-weight: 700;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 8px;
}
.about-stats-float {
  position: absolute; bottom: -18px; right: -18px;
  background: var(--white); border-radius: var(--r-md);
  padding: 20px 26px; box-shadow: var(--shadow-lg);
  border: 2px solid var(--blue-100);
  text-align: center;
}
.about-stats-float .big-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px; font-weight: 700; color: var(--blue-700); line-height: 1;
}
.about-stats-float .big-label {
  font-size: 13px; font-weight: 600; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 1px; margin-top: 4px;
}

.about-feature {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 22px 0; border-bottom: 1.5px solid var(--gray-100);
}
.about-feature:last-child { border-bottom: none; }
.feature-icon-box {
  width: 52px; height: 52px; flex-shrink: 0;
  border-radius: 14px;
  background: var(--blue-50);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
}
.about-feature h4 { font-size: var(--text-lg); font-weight: 700; color: var(--blue-800); margin-bottom: 5px; }
.about-feature p { font-size: var(--text-sm); color: var(--text-muted); line-height: var(--line-loose); }

/* ============================================================
   PACKAGES SECTION
   ============================================================ */
.packages-section {
  padding: 100px 0;
  background: var(--blue-900);
  position: relative; overflow: hidden;
}
.packages-section::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(26,111,212,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(8,145,178,0.08) 0%, transparent 50%);
}

.packages-header { text-align: center; margin-bottom: 60px; position: relative; z-index: 2; }

.packages-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px; position: relative; z-index: 2;
}

.pkg-card {
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg); padding: 32px;
  transition: all 0.3s; position: relative;
  display: flex; flex-direction: column;
}
.pkg-card:hover {
  border-color: var(--blue-400);
  background: rgba(26,111,212,0.12);
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(0,0,0,0.3);
}
.pkg-card.featured {
  border-color: var(--blue-400);
  background: rgba(26,111,212,0.1);
}

.pkg-top-badge {
  position: absolute; top: -1px; left: 28px;
  background: linear-gradient(90deg, var(--blue-500), var(--teal));
  color: var(--white); font-size: 12px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 5px 16px; border-radius: 0 0 10px 10px;
}

.pkg-icon-wrap { font-size: 44px; margin-bottom: 18px; }
.pkg-name {
  font-family: 'Playfair Display', serif;
  font-size: var(--text-xl); font-weight: 700;
  color: var(--white); margin-bottom: 6px; line-height: 1.2;
}
.pkg-tagline { font-size: 15px; color: rgba(255,255,255,0.5); margin-bottom: 20px; }

.pkg-tests { list-style: none; margin-bottom: 24px; flex: 1; }
.pkg-tests li {
  font-size: 15px; color: rgba(255,255,255,0.72);
  padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; gap: 10px; line-height: 1.4;
}
.pkg-tests li:last-child { border: none; }
.pkg-tests li::before {
  content: '✓';
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(26,111,212,0.3); border: 1.5px solid var(--blue-400);
  color: var(--blue-400); font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.pkg-price-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 22px; }
.pkg-price-main {
  font-family: 'Playfair Display', serif;
  font-size: 38px; font-weight: 700; color: var(--blue-400);
}
.pkg-price-per { font-size: 14px; color: rgba(255,255,255,0.35); }

.pkg-wa-btn {
  width: 100%;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--wa-green);
  color: var(--white); border: none;
  border-radius: 12px; padding: 16px;
  font-family: 'Nunito', sans-serif;
  font-size: var(--text-base); font-weight: 800;
  cursor: pointer; text-decoration: none;
  transition: background 0.2s, transform 0.18s, box-shadow 0.18s;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}
.pkg-wa-btn:hover {
  background: var(--wa-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(18,140,126,0.45);
  color: var(--white);
}
.pkg-wa-btn svg { width: 22px; height: 22px; flex-shrink: 0; }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section { padding: 100px 0; background: var(--white); }
.services-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 72px; margin-top: 60px; align-items: start; }

.services-intro h3 {
  font-size: var(--text-2xl); color: var(--blue-800);
  margin-bottom: 18px; line-height: 1.25;
}
.services-intro p { font-size: var(--text-base); color: var(--text-muted); line-height: var(--line-loose); margin-bottom: 28px; }

.hours-box {
  background: var(--grad-card);
  border-radius: var(--r-lg); padding: 28px;
  color: var(--white);
}
.hours-box-title {
  font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--blue-400); font-weight: 700; margin-bottom: 14px;
}
.hours-box p { font-size: var(--text-base); color: rgba(255,255,255,0.8); margin-bottom: 6px; line-height: 1.5; }
.hours-box .hours-time { font-size: var(--text-xl); font-weight: 800; color: var(--white); }
.hours-box .hours-note { font-size: 14px; color: rgba(255,255,255,0.4); margin-top: 10px; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.svc-tile {
  background: var(--off-white); border: 2px solid var(--gray-100);
  border-radius: var(--r-md); padding: 26px 20px; text-align: center;
  transition: all 0.25s;
}
.svc-tile:hover {
  border-color: var(--blue-500);
  background: var(--blue-50);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.svc-tile-icon { font-size: 36px; margin-bottom: 12px; }
.svc-tile-name { font-size: var(--text-sm); font-weight: 700; color: var(--blue-800); }

/* ============================================================
   WHATSAPP CTA BANNER
   ============================================================ */
.wa-cta-banner {
  background: linear-gradient(135deg, #0b2545 0%, #0f3460 100%);
  padding: 80px 5%; text-align: center; position: relative; overflow: hidden;
}
.wa-cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(26,111,212,0.12) 0%, transparent 70%);
}
.wa-cta-banner h2 {
  color: var(--white); font-size: clamp(28px, 4vw, 46px);
  margin-bottom: 16px; position: relative;
}
.wa-cta-banner p {
  color: rgba(255,255,255,0.6); margin-bottom: 40px;
  position: relative; font-size: var(--text-base);
}
.wa-cta-banner .btn { position: relative; font-size: var(--text-lg); padding: 20px 44px; }

/* ============================================================
   MAP SECTION
   ============================================================ */
.map-section { padding: 100px 0; background: var(--off-white); }
.map-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 56px; margin-top: 56px; align-items: center; }

.map-info-card {
  background: var(--white); border-radius: var(--r-xl);
  padding: 40px; box-shadow: var(--shadow-sm);
  border: 2px solid var(--blue-100);
}
.map-detail-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 0; border-bottom: 1.5px solid var(--gray-100);
}
.map-detail-item:last-child { border: none; padding-bottom: 0; }
.map-icon-box {
  width: 46px; height: 46px; flex-shrink: 0;
  border-radius: 12px; background: var(--blue-50);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.map-detail-label {
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--blue-500); margin-bottom: 5px;
}
.map-detail-value { font-size: var(--text-base); color: var(--text-body); line-height: 1.55; }
.map-detail-value a { color: var(--blue-600); text-decoration: none; font-weight: 700; }
.map-detail-value a:hover { text-decoration: underline; }

.map-embed-box {
  border-radius: var(--r-xl); overflow: hidden;
  border: 3px solid var(--blue-100);
  box-shadow: var(--shadow-lg); height: 440px;
}
.map-embed-box iframe { width: 100%; height: 100%; border: none; display: block; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { padding: 100px 0; background: var(--white); }
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 60px;
}
.testi-card {
  background: var(--off-white); border: 2px solid var(--blue-100);
  border-radius: var(--r-lg); padding: 32px;
  transition: all 0.25s; display: flex; flex-direction: column;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--blue-400); }
.testi-stars { color: #f59e0b; font-size: 20px; margin-bottom: 16px; letter-spacing: 2px; }
.testi-quote {
  font-size: var(--text-base); line-height: var(--line-loose);
  color: var(--gray-600); font-style: italic; flex: 1; margin-bottom: 24px;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--grad-card);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 700; color: var(--white);
  flex-shrink: 0;
}
.testi-name { font-size: var(--text-base); font-weight: 700; color: var(--blue-800); }
.testi-place { font-size: 14px; color: var(--text-muted); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--blue-950); padding: 64px 0 28px; border-top: 3px solid var(--blue-700); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 48px; }
.footer-about p { font-size: var(--text-sm); color: rgba(255,255,255,0.4); line-height: var(--line-loose); margin-top: 18px; max-width: 300px; }
.footer-col-title {
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--blue-400); margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.5); font-size: var(--text-sm);
  text-decoration: none; transition: color 0.2s; display: flex; align-items: center; gap: 6px;
}
.footer-col ul li a:hover { color: var(--blue-400); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 14px; color: rgba(255,255,255,0.25); }
.footer-wa-link {
  display: flex; align-items: center; gap: 8px;
  color: var(--wa-green); font-size: 15px; font-weight: 700;
  text-decoration: none; transition: color 0.2s;
}
.footer-wa-link:hover { color: var(--wa-dark); }
.footer-wa-link svg { width: 22px; height: 22px; }

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.wa-fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 800;
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--wa-green);
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: transform 0.2s, box-shadow 0.2s;
  animation: waPulse 3s infinite;
}
.wa-fab:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,0.6); }
.wa-fab svg { width: 34px; height: 34px; }
@keyframes waPulse {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 6px 36px rgba(37,211,102,0.75), 0 0 0 10px rgba(37,211,102,0.08); }
}
.wa-fab-tooltip {
  position: absolute; right: 74px; top: 50%; transform: translateY(-50%);
  background: var(--blue-900); color: var(--white);
  font-size: 13px; font-weight: 700; white-space: nowrap;
  padding: 8px 14px; border-radius: 8px;
  opacity: 0; pointer-events: none; transition: opacity 0.2s;
}
.wa-fab:hover .wa-fab-tooltip { opacity: 1; }

/* ============================================================
   CERTIFICATIONS / TRUST STRIP
   ============================================================ */
.certs-section {
  padding: 80px 0;
  background: var(--blue-50);
  border-top: 3px solid var(--blue-100);
  border-bottom: 3px solid var(--blue-100);
}
.certs-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.certs-photo-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--blue-200, #bfdbfe);
}
.certs-photo-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.certs-photo-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(6,20,40,0.92) 0%, transparent 100%);
  padding: 24px 20px 20px;
  color: var(--white);
  font-size: 15px; font-weight: 600;
  text-align: center;
}

.certs-content h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  color: var(--blue-800); margin-bottom: 10px;
}
.certs-content p {
  font-size: var(--text-base);
  color: var(--text-muted);
  line-height: var(--line-loose);
  margin-bottom: 32px;
}
.cert-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
.cert-badge {
  background: var(--white);
  border: 2px solid var(--blue-100);
  border-radius: var(--r-md);
  padding: 18px 16px;
  text-align: center;
  transition: all 0.25s;
}
.cert-badge:hover {
  border-color: var(--blue-500);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.cert-badge-icon { font-size: 28px; margin-bottom: 8px; }
.cert-badge-title {
  font-size: 14px; font-weight: 800;
  color: var(--blue-800); line-height: 1.3;
  margin-bottom: 4px;
}
.cert-badge-sub {
  font-size: 12px; color: var(--text-muted);
  line-height: 1.4;
}

/* ============================================================
   TEAM SECTION
   ============================================================ */
.team-section {
  padding: 100px 0;
  background: var(--blue-900);
  position: relative; overflow: hidden;
}
.team-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(26,111,212,0.1) 0%, transparent 60%);
}
.team-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.team-photo-wrap {
  position: relative;
}
.team-photo-frame {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 3px solid rgba(61,142,240,0.35);
  box-shadow: 0 24px 64px rgba(0,0,0,0.45);
}
.team-photo-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.team-count-pill {
  position: absolute;
  bottom: -16px; right: -16px;
  background: var(--wa-green);
  color: var(--white);
  border-radius: 16px;
  padding: 16px 24px;
  font-weight: 800; font-size: var(--text-base);
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  line-height: 1.2; text-align: center;
}
.team-count-pill span { display: block; font-size: 30px; font-family: 'Playfair Display', serif; }

.team-content { }
.team-content h2 { color: var(--white); margin-bottom: 12px; font-size: clamp(26px,3.5vw,42px); }
.team-content > p {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.65);
  line-height: var(--line-loose);
  margin-bottom: 36px;
}
.team-features { display: flex; flex-direction: column; gap: 0; }
.team-feat {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.team-feat:last-child { border-bottom: none; }
.team-feat-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 12px;
  background: rgba(26,111,212,0.2);
  border: 1.5px solid rgba(61,142,240,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.team-feat h4 {
  font-size: var(--text-lg); font-weight: 700;
  color: var(--white); margin-bottom: 4px;
}
.team-feat p { font-size: var(--text-sm); color: rgba(255,255,255,0.55); line-height: 1.6; }

/* ============================================================
   GALLERY / SIGNBOARD STRIP
   ============================================================ */
.gallery-strip {
  background: var(--white);
  padding: 72px 0;
  overflow: hidden;
}
.gallery-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.gallery-img-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--blue-100);
  position: relative;
}
.gallery-img-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-img-card:hover img { transform: scale(1.03); }
.gallery-img-label {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--blue-700);
  color: var(--white);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.5px;
  padding: 6px 14px; border-radius: 100px;
}
.gallery-text { padding: 20px 0; }
.gallery-text h2 { color: var(--blue-800); margin-bottom: 14px; font-size: clamp(24px,3vw,38px); }
.gallery-text p { font-size: var(--text-base); color: var(--text-muted); line-height: var(--line-loose); margin-bottom: 20px; }
.gallery-fact {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  background: var(--blue-50);
  border-left: 4px solid var(--blue-500);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  margin-bottom: 12px;
  font-size: var(--text-sm); font-weight: 600; color: var(--blue-800);
}
.gallery-fact:last-child { margin-bottom: 0; }
.gallery-fact span { font-size: 20px; }

/* ============================================================
   RESPONSIVE — NEW SECTIONS
   ============================================================ */
@media (max-width: 1024px) {
  .certs-inner,
  .team-inner,
  .gallery-strip-inner { grid-template-columns: 1fr; gap: 40px; }
  .team-photo-frame img,
  .certs-photo-wrap img { height: 340px; }
  .team-photo-frame img { height: 360px; }
  .cert-badges { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 600px) {
  .cert-badges { grid-template-columns: 1fr 1fr; }
  .gallery-img-card img { height: 260px; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-services { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-layout { grid-template-columns: 1fr; gap: 40px; }
  .map-layout { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  html { font-size: 16px; }
  .main-nav { display: none; position: fixed; top: 78px; left: 0; right: 0; z-index: 899; }
  .main-nav.open {
    display: flex;
    background: var(--blue-900);
    padding: 20px 5%; border-bottom: 2px solid var(--blue-700);
  }
  .main-nav.open ul,
  .main-nav.open .menu { flex-direction: column; gap: 4px; align-items: stretch; width: 100%; }
  .main-nav.open a { font-size: 17px; padding: 12px 16px; display: block; }
  .menu-toggle { display: flex; }
  .packages-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-ctas { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .hero-trust { gap: 24px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .map-embed-box { height: 300px; }
}
