/* ═══════════════════════════════════════════
   CAREPOINT CLINIC — 2026 DESIGN SYSTEM
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

/* ── Variables ────────────────────────────── */
:root {
  --navy:       #050D1A;
  --navy-2:     #0A1628;
  --navy-3:     #0F1F35;
  --navy-4:     #162840;
  --green:      #00C6A2;
  --green-dim:  #00A688;
  --green-glow: rgba(0,198,162,0.15);
  --green-soft: rgba(0,198,162,0.08);
  --white:      #FFFFFF;
  --grey-1:     #E8EDF5;
  --grey-2:     #9AACBE;
  --grey-3:     #4A5F77;
  --red:        #FF4757;
  --red-soft:   rgba(255,71,87,0.12);
  --gold:       #F5A623;

  --font-head:  'Syne', sans-serif;
  --font-body:  'DM Sans', sans-serif;

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  32px;

  --shadow-green: 0 0 40px rgba(0,198,162,0.2);
  --shadow-card:  0 8px 32px rgba(0,0,0,0.4);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.5);

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Background Texture ───────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 50% at 20% -10%, rgba(0,198,162,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 110%, rgba(0,100,255,0.05) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300C6A2' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* ── Typography ───────────────────────────── */
h1,h2,h3,h4,h5 { font-family: var(--font-head); font-weight: 700; line-height: 1.15; }
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
p  { color: var(--grey-2); font-size: 1rem; }
a  { text-decoration: none; color: inherit; }

/* ── Layout Helpers ───────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.section    { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.flex       { display: flex; }
.flex-center{ display: flex; align-items: center; justify-content: center; }
.grid-2     { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3     { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4     { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.text-center{ text-align: center; }
.text-green { color: var(--green); }

/* ── Buttons ──────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--green);
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(0,198,162,0.35);
}
.btn-primary:hover {
  background: #00DDB5;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,198,162,0.5);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
}
.btn-outline:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
}
.btn-emergency {
  background: var(--red);
  color: var(--white);
  animation: pulse-red 2s infinite;
}
@keyframes pulse-red {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,71,87,0.4); }
  50%      { box-shadow: 0 0 0 10px rgba(255,71,87,0); }
}

/* ── Navbar ───────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(5,13,26,0.9);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,198,162,0.1);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.3rem;
}
.nav-logo .logo-icon {
  width: 36px; height: 36px;
  background: var(--green);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1.1rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--grey-2);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--green); }
.nav-emergency {
  background: var(--red-soft);
  border: 1px solid var(--red);
  color: var(--red);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.nav-emergency:hover {
  background: var(--red);
  color: white;
}
.nav-hamburger { display: none; background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; }

/* ── Hero Section ─────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--green-soft);
  border: 1px solid rgba(0,198,162,0.3);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--green);
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease forwards;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: blink 1.5s infinite;
}
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0;} }
.hero-title {
  animation: fadeInUp 0.8s ease 0.1s both;
  margin-bottom: 20px;
}
.hero-title .accent {
  color: var(--green);
  position: relative;
}
.hero-desc {
  animation: fadeInUp 0.8s ease 0.2s both;
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.7;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.3s both;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  gap: 32px;
  animation: fadeInUp 0.8s ease 0.4s both;
}
.hero-stat-item { border-left: 2px solid var(--green); padding-left: 16px; }
.hero-stat-num {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
}
.hero-stat-label { font-size: 0.8rem; color: var(--grey-3); }

/* Hero Image Side */
.hero-visual {
  position: relative;
  animation: fadeInRight 1s ease 0.3s both;
}
.hero-card-main {
  background: linear-gradient(135deg, var(--navy-3), var(--navy-4));
  border: 1px solid rgba(0,198,162,0.2);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-green);
  position: relative;
  overflow: hidden;
}
.hero-card-main::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--green-glow), transparent);
  border-radius: 50%;
}
.doctor-avatar {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), #0066FF);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto 20px;
  border: 3px solid rgba(0,198,162,0.4);
}
.doctor-info { text-align: center; }
.doctor-info h3 { font-size: 1.2rem; margin-bottom: 4px; }
.doctor-info p { font-size: 0.85rem; color: var(--green); }
.doctor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
}
.doctor-tag {
  padding: 4px 12px;
  background: var(--green-soft);
  border: 1px solid rgba(0,198,162,0.2);
  border-radius: 100px;
  font-size: 0.75rem;
  color: var(--green);
}

/* Floating Cards */
.float-card {
  position: absolute;
  background: rgba(15,31,53,0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0,198,162,0.2);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-card);
}
.float-card-1 { top: -20px; right: -30px; animation: float 4s ease-in-out infinite; }
.float-card-2 { bottom: 30px; left: -40px; animation: float 4s ease-in-out infinite 2s; }
.float-card-icon { font-size: 1.5rem; }
.float-card-text { font-size: 0.75rem; }
.float-card-text strong { display: block; font-size: 0.9rem; }
@keyframes float { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-10px);} }

/* Hero Background Elements */
.hero-bg-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  pointer-events: none;
}
.hero-bg-circle-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,198,162,0.15), transparent);
  top: -100px; right: -100px;
}
.hero-bg-circle-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,100,255,0.1), transparent);
  bottom: -100px; left: -50px;
}

/* ── Trust Bar ────────────────────────────── */
.trust-bar {
  padding: 60px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(10,22,40,0.5);
}
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.trust-item {
  text-align: center;
  padding: 30px 20px;
  border-radius: var(--radius-md);
  background: var(--green-soft);
  border: 1px solid rgba(0,198,162,0.1);
  transition: var(--transition);
}
.trust-item:hover {
  border-color: rgba(0,198,162,0.3);
  transform: translateY(-4px);
}
.trust-num {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--green);
  display: block;
}
.trust-label { font-size: 0.85rem; color: var(--grey-2); margin-top: 4px; }

/* ── Section Headers ──────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--green);
}
.section-title { margin-bottom: 16px; }
.section-desc { max-width: 540px; font-size: 1.05rem; line-height: 1.7; }

/* ── Services Grid ────────────────────────── */
.services-section { background: rgba(5,13,26,0.5); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.service-card {
  background: linear-gradient(135deg, var(--navy-3), var(--navy-4));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green-soft), transparent);
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover {
  border-color: rgba(0,198,162,0.3);
  transform: translateY(-6px);
  box-shadow: var(--shadow-green);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 56px; height: 56px;
  background: var(--green-soft);
  border: 1px solid rgba(0,198,162,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--green);
  box-shadow: 0 0 20px rgba(0,198,162,0.4);
}
.service-card h3 { font-size: 1.1rem; margin-bottom: 10px; position: relative; z-index: 1; }
.service-card p  { font-size: 0.85rem; line-height: 1.6; position: relative; z-index: 1; }
.service-arrow {
  position: absolute;
  bottom: 20px; right: 24px;
  color: var(--grey-3);
  transition: var(--transition);
  font-size: 1.2rem;
}
.service-card:hover .service-arrow { color: var(--green); transform: translate(4px,-4px); }

/* ── How It Works ─────────────────────────── */
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
  position: relative;
}
.how-steps::before {
  content: '';
  position: absolute;
  top: 30px;
  left: calc(16.67% + 20px);
  right: calc(16.67% + 20px);
  height: 1px;
  background: linear-gradient(90deg, var(--green), transparent, var(--green));
}
.step-card { text-align: center; padding: 0 20px; }
.step-num {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--green), var(--green-dim));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0 auto 24px;
  box-shadow: 0 0 30px rgba(0,198,162,0.3);
  position: relative;
  z-index: 1;
}
.step-card h3 { margin-bottom: 12px; }

/* ── Doctor Section ───────────────────────── */
.doctor-card-flip {
  perspective: 1000px;
  height: 420px;
  cursor: pointer;
}
.doctor-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
  transform-style: preserve-3d;
}
.doctor-card-flip:hover .doctor-card-inner { transform: rotateY(180deg); }
.doctor-front, .doctor-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  background: linear-gradient(135deg, var(--navy-3), var(--navy-4));
  border: 1px solid rgba(0,198,162,0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.doctor-back {
  background: linear-gradient(135deg, var(--navy-4), #1a2f50);
  border-color: rgba(0,198,162,0.3);
  transform: rotateY(180deg);
}
.doctor-photo {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), #0066FF);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
  border: 3px solid rgba(0,198,162,0.3);
}
.doctor-degree {
  color: var(--green);
  font-size: 0.85rem;
  margin-bottom: 4px;
}
.doctor-exp { color: var(--grey-3); font-size: 0.8rem; }
.flip-hint {
  font-size: 0.75rem;
  color: var(--grey-3);
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.back-list {
  list-style: none;
  text-align: left;
  width: 100%;
  margin-top: 16px;
}
.back-list li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.85rem;
  color: var(--grey-1);
  display: flex;
  align-items: center;
  gap: 8px;
}
.back-list li::before { content: '✦'; color: var(--green); font-size: 0.6rem; }

/* ── AI Symptom Checker ───────────────────── */
.ai-section {
  background: linear-gradient(135deg, rgba(0,198,162,0.05), rgba(0,100,255,0.05));
  border-top: 1px solid rgba(0,198,162,0.1);
  border-bottom: 1px solid rgba(0,198,162,0.1);
}
.ai-checker-box {
  background: var(--navy-3);
  border: 1px solid rgba(0,198,162,0.2);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-green);
  max-width: 700px;
  margin: 60px auto 0;
}
.ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: linear-gradient(135deg, rgba(0,198,162,0.15), rgba(0,100,255,0.15));
  border: 1px solid rgba(0,198,162,0.3);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 20px;
}
.ai-input-wrap { position: relative; margin-bottom: 16px; }
.ai-input {
  width: 100%;
  padding: 18px 24px;
  background: var(--navy-4);
  border: 1px solid rgba(0,198,162,0.2);
  border-radius: var(--radius-md);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: var(--transition);
  resize: none;
  min-height: 100px;
}
.ai-input:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(0,198,162,0.1); }
.ai-input::placeholder { color: var(--grey-3); }
.ai-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--green), var(--green-dim));
  border: none;
  border-radius: var(--radius-md);
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.ai-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,198,162,0.4); }
.ai-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.ai-result {
  margin-top: 24px;
  padding: 24px;
  background: var(--navy-4);
  border: 1px solid rgba(0,198,162,0.15);
  border-radius: var(--radius-md);
  display: none;
}
.ai-result.show { display: block; animation: fadeInUp 0.4s ease; }
.ai-result-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ai-result-icon { font-size: 1.5rem; }
.ai-result-content { font-size: 0.9rem; color: var(--grey-1); line-height: 1.7; }
.ai-disclaimer {
  font-size: 0.75rem;
  color: var(--grey-3);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: flex-start;
  gap: 6px;
}
.ai-disclaimer::before { content: '⚠️'; flex-shrink: 0; }
.ai-loading { display: flex; align-items: center; gap: 12px; color: var(--green); }
.loading-dots span {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: bounce 1.4s infinite;
}
.loading-dots span:nth-child(2) { animation-delay: 0.2s; }
.loading-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes bounce { 0%,60%,100%{transform:translateY(0);} 30%{transform:translateY(-8px);} }

/* ── Testimonials ─────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.testimonial-card {
  background: var(--navy-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
}
.testimonial-card:hover {
  border-color: rgba(0,198,162,0.2);
  transform: translateY(-4px);
}
.stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--grey-1);
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), #0066FF);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: 0.9rem; }
.author-label { font-size: 0.75rem; color: var(--grey-3); }

/* ── Location Section ─────────────────────── */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 60px;
  align-items: start;
}
.location-info { display: flex; flex-direction: column; gap: 16px; }
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--navy-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.info-item:hover { border-color: rgba(0,198,162,0.2); }
.info-icon {
  width: 40px; height: 40px;
  background: var(--green-soft);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.info-content strong { display: block; font-size: 0.9rem; margin-bottom: 4px; }
.info-content span { font-size: 0.85rem; color: var(--grey-2); }
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0,198,162,0.15);
  height: 320px;
  background: var(--navy-3);
  position: relative;
}
.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--grey-3);
}
.map-placeholder .map-icon { font-size: 3rem; }
.map-placeholder h4 { font-size: 1rem; color: var(--grey-2); }
.map-placeholder p { font-size: 0.85rem; text-align: center; max-width: 200px; }
.map-placeholder a {
  padding: 10px 20px;
  background: var(--green);
  color: var(--navy);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}
.map-placeholder a:hover { transform: scale(1.05); }

/* ── Emergency Banner ─────────────────────── */
.emergency-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(90deg, rgba(255,71,87,0.95), rgba(200,30,50,0.95));
  backdrop-filter: blur(10px);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}
.emergency-banner a {
  background: white;
  color: var(--red);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  transition: var(--transition);
}
.emergency-banner a:hover { background: var(--red); color: white; }

/* ── WhatsApp Float ───────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 30px;
  z-index: 998;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: float 3s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.15); box-shadow: 0 8px 30px rgba(37,211,102,0.6); }

/* ── Footer ───────────────────────────────── */
.footer {
  background: var(--navy-2);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 60px 0 100px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p { font-size: 0.85rem; color: var(--grey-3); margin-top: 12px; max-width: 280px; }
.footer-links h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--grey-3);
  margin-bottom: 16px;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.85rem; color: var(--grey-2); transition: var(--transition); }
.footer-links a:hover { color: var(--green); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--grey-3);
}
.footer-bottom a { color: var(--green); }
.vardevo-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--green-soft);
  border: 1px solid rgba(0,198,162,0.2);
  border-radius: 100px;
  font-size: 0.75rem;
  color: var(--green);
  transition: var(--transition);
}
.vardevo-badge:hover { background: var(--green-glow); }

/* ── Booking Form Page ────────────────────── */
.booking-hero {
  padding: 140px 0 60px;
  text-align: center;
}
.form-container {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
}
.booking-form-box {
  background: var(--navy-3);
  border: 1px solid rgba(0,198,162,0.15);
  border-radius: var(--radius-xl);
  padding: 48px;
  margin-bottom: 40px;
}
.form-group { margin-bottom: 24px; }
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--grey-2);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.form-input, .form-select {
  width: 100%;
  padding: 14px 18px;
  background: var(--navy-4);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
  appearance: none;
}
.form-input:focus, .form-select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0,198,162,0.1);
}
.form-input::placeholder { color: var(--grey-3); }
.form-select option { background: var(--navy-3); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.time-slots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 8px;
}
.time-slot {
  padding: 10px;
  background: var(--navy-4);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--transition);
  color: var(--grey-2);
}
.time-slot:hover:not(.disabled) { border-color: var(--green); color: var(--green); }
.time-slot.selected { background: var(--green); border-color: var(--green); color: var(--navy); font-weight: 700; }
.time-slot.disabled { opacity: 0.3; cursor: not-allowed; }
.form-submit {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, var(--green), var(--green-dim));
  border: none;
  border-radius: var(--radius-md);
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 8px;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,198,162,0.4); }

/* Success Screen */
.success-screen {
  display: none;
  text-align: center;
  padding: 60px 40px;
  background: var(--navy-3);
  border: 1px solid rgba(0,198,162,0.2);
  border-radius: var(--radius-xl);
}
.success-screen.show { display: block; animation: fadeInUp 0.6s ease; }
.success-icon {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--green), var(--green-dim));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 24px;
  box-shadow: 0 0 40px rgba(0,198,162,0.4);
}

/* ── Admin Dashboard ──────────────────────── */
.admin-body { background: var(--navy); min-height: 100vh; }
.admin-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.login-box {
  background: var(--navy-3);
  border: 1px solid rgba(0,198,162,0.2);
  border-radius: var(--radius-xl);
  padding: 48px;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-green);
}
.login-logo { text-align: center; margin-bottom: 32px; }
.login-logo h2 { font-size: 1.5rem; }
.login-logo p { font-size: 0.85rem; color: var(--grey-3); margin-top: 4px; }
.admin-sidebar {
  width: 260px;
  min-height: 100vh;
  background: var(--navy-2);
  border-right: 1px solid rgba(255,255,255,0.05);
  position: fixed;
  left: 0; top: 0;
  padding: 24px 0;
  display: none;
  flex-direction: column;
}
.admin-sidebar.show { display: flex; }
.sidebar-logo { padding: 0 24px 24px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.sidebar-nav { padding: 24px 12px; flex: 1; }
.sidebar-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  color: var(--grey-2);
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 4px;
}
.sidebar-nav-item:hover, .sidebar-nav-item.active { background: var(--green-soft); color: var(--green); }
.sidebar-nav-item .nav-icon { font-size: 1.1rem; width: 20px; }
.admin-main {
  margin-left: 260px;
  padding: 32px;
  display: none;
}
.admin-main.show { display: block; }
.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.admin-topbar h1 { font-size: 1.8rem; }
.admin-topbar p { color: var(--grey-3); font-size: 0.85rem; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 32px; }
.stat-card {
  background: var(--navy-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--transition);
}
.stat-card:hover { border-color: rgba(0,198,162,0.2); }
.stat-card-label { font-size: 0.8rem; color: var(--grey-3); margin-bottom: 8px; }
.stat-card-num { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--white); }
.stat-card-sub { font-size: 0.75rem; color: var(--green); margin-top: 4px; }
.appointments-table {
  background: var(--navy-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.table-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.table-header h3 { font-size: 1rem; }
.table-header p { font-size: 0.8rem; color: var(--grey-3); }
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
th {
  text-align: left;
  padding: 12px 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--grey-3);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
td { padding: 16px 20px; font-size: 0.85rem; border-bottom: 1px solid rgba(255,255,255,0.03); }
tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(0,198,162,0.03); }
.status-badge {
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.status-pending  { background: rgba(245,166,35,0.1);  color: var(--gold); border: 1px solid rgba(245,166,35,0.3); }
.status-confirmed{ background: rgba(0,198,162,0.1);   color: var(--green);border: 1px solid rgba(0,198,162,0.3); }
.status-done     { background: rgba(100,100,100,0.1); color: var(--grey-2); }
.action-btn {
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  margin-right: 4px;
}
.action-confirm { background: var(--green-soft); color: var(--green); border: 1px solid rgba(0,198,162,0.2); }
.action-confirm:hover { background: var(--green); color: var(--navy); }
.action-cancel  { background: var(--red-soft); color: var(--red); border: 1px solid rgba(255,71,87,0.2); }
.action-cancel:hover { background: var(--red); color: white; }
.empty-state {
  text-align: center;
  padding: 60px;
  color: var(--grey-3);
}
.empty-state .empty-icon { font-size: 3rem; margin-bottom: 16px; }

/* ── Services Page ────────────────────────── */
.services-hero {
  padding: 140px 0 80px;
  text-align: center;
}
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.service-detail-card {
  background: var(--navy-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--transition);
}
.service-detail-card:hover { border-color: rgba(0,198,162,0.25); transform: translateY(-4px); }
.service-detail-header { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.service-detail-icon {
  width: 56px; height: 56px;
  background: var(--green-soft);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.service-detail-card h3 { margin-bottom: 8px; font-size: 1.1rem; }
.service-features { list-style: none; margin-top: 16px; }
.service-features li {
  padding: 6px 0;
  font-size: 0.85rem;
  color: var(--grey-2);
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-features li::before { content: '→'; color: var(--green); }
.fee-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  background: var(--green-soft);
  border: 1px solid rgba(0,198,162,0.2);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--green);
  font-weight: 600;
  margin-top: 16px;
}

/* ── Animations ───────────────────────────── */
@keyframes fadeInUp   { from{opacity:0;transform:translateY(30px);}to{opacity:1;transform:translateY(0);} }
@keyframes fadeInDown { from{opacity:0;transform:translateY(-20px);}to{opacity:1;transform:translateY(0);} }
@keyframes fadeInRight{ from{opacity:0;transform:translateX(30px);}to{opacity:1;transform:translateX(0);} }

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ───────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .admin-sidebar, .admin-main { display: none !important; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .hero { padding-top: 100px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; }
  .how-steps::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .time-slots { grid-template-columns: repeat(3, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .ai-checker-box { padding: 28px 24px; }
  .booking-form-box { padding: 28px 20px; }
  .service-detail-grid { grid-template-columns: 1fr; }
}
