/* =====================================================
   COMPLETE REDESIGN - Bombay Gastro & Cancer Institute
   Premium Visual Enhancement Layer — 2026
   ===================================================== */

/* ---- Global overflow fix ---- */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Clip every section so Bootstrap row negative-margins (-12px/−15px)
   and absolutely-placed decorative elements never bleed past the viewport */
section,
.hero-premium,
.about-section,
.stats-section,
.doctors-section,
.process-section,
.why-us-section,
.testimonials-section,
.faq-section,
.appointment-section,
.gallery-preview-section,
.conditions-section,
.navbar-premium,
footer {
  overflow-x: clip; /* clip = no scroll context change; safe with fixed/sticky descendants */
}

/* Prevent any container wider than viewport */
.container, .container-fluid {
  max-width: 100%;
}

img {
  max-width: 100%;
  height: auto;
}

/* ---- Enhanced Root Variables ---- */
:root {
  --primary: #1a6b3a;
  --primary-dark: #0d4228;
  --primary-light: #2a9d5c;
  --secondary: #0f172a;
  --accent: #f59e0b;
  --accent-light: #fde68a;
  --white: #ffffff;
  --light: #f0faf4;
  --light-2: #f8fafc;
  --grey: #64748b;
  --grey-light: #e2e8f0;
  --dark: #0f172a;
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.25);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --glow-green: 0 0 40px rgba(26,107,58,0.3);
  --glow-gold: 0 0 40px rgba(245,158,11,0.3);
}

/* =====================================================
   HERO SECTION — COMPLETE OVERHAUL
   ===================================================== */
.hero-premium {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #040d07 0%, #071522 35%, #0a2a18 65%, #071522 100%);
}

/* Canvas replaces Vanta */
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* Radial glow behind content */
.hero-premium::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 25%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(26,107,58,0.18) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(4,13,7,0.82) 0%,
    rgba(7,21,34,0.72) 50%,
    rgba(10,42,24,0.68) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 130px 0 90px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,158,11,0.12);
  border: 1px solid rgba(245,158,11,0.35);
  color: #fde68a;
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 22px;
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.6s ease 0.2s both;
  box-shadow: 0 4px 20px rgba(245,158,11,0.15);
}

.hero-heading {
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 900;
  color: white;
  line-height: 1.08;
  margin-bottom: 22px;
  letter-spacing: -1px;
  animation: fadeInUp 0.6s ease 0.4s both;
}

.hero-heading .highlight {
  background: linear-gradient(135deg, #f59e0b 0%, #fcd34d 50%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero-subtitle {
  font-size: 16.5px;
  color: rgba(255,255,255,0.78);
  max-width: 530px;
  line-height: 1.85;
  margin-bottom: 38px;
  animation: fadeInUp 0.6s ease 0.6s both;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.8s both;
}

.btn-hero-primary {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #0f172a !important;
  padding: 15px 34px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 30px rgba(245,158,11,0.45), 0 0 0 0 rgba(245,158,11,0.4);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-hero-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}
.btn-hero-primary:hover::before { left: 100%; }
.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(245,158,11,0.55);
  color: #0f172a !important;
}

.btn-hero-secondary {
  background: rgba(255,255,255,0.08);
  color: white !important;
  padding: 15px 34px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(12px);
  transition: var(--transition);
}
.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-3px);
  color: white !important;
}

.hero-trust {
  margin-top: 46px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 1s both;
  padding: 16px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  width: fit-content;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.88);
  font-size: 13px;
  font-weight: 600;
}
.hero-trust-item i { color: var(--accent); font-size: 14px; }

.hero-trust-divider {
  width: 1px; height: 22px;
  background: rgba(255,255,255,0.18);
}

/* Hero Image */
.hero-image-wrap {
  position: relative;
  z-index: 2;
  animation: fadeInRight 0.8s ease 0.5s both;
}

.hero-img-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-2xl), 0 0 0 1px rgba(255,255,255,0.06);
}

.hero-img-card img {
  width: 100%;
  max-height: 530px;
  object-fit: cover;
  object-position: top center;
  border-radius: 28px;
}

.hero-img-ring {
  position: absolute;
  inset: -22px;
  border: 2px solid rgba(245,158,11,0.25);
  border-radius: 38px;
  animation: ringPulse 3s ease-in-out infinite;
}
.hero-img-ring-2 {
  position: absolute;
  inset: -44px;
  border: 1px solid rgba(245,158,11,0.1);
  border-radius: 50px;
  animation: ringPulse 3s ease-in-out infinite 1.5s;
}

.hero-stat-float {
  position: absolute;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-radius: 18px;
  padding: 14px 20px;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255,255,255,0.5);
  animation: floatCard 4s ease-in-out infinite;
  min-width: 140px;
}
.hero-stat-float:first-child { top: 60px; left: 10px; }

/* =====================================================
   ANIMATED GRADIENT SECTION DIVIDER
   ===================================================== */
.gradient-divider {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--accent), var(--primary-light), transparent);
  background-size: 200% 100%;
  animation: gradientShift 4s ease infinite;
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* =====================================================
   ENHANCED STATS SECTION
   ===================================================== */
.stats-section {
  background: linear-gradient(135deg, #0a2818 0%, #1a6b3a 40%, #0d3d22 70%, #0a2818 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(245,158,11,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(255,255,255,0.03) 0%, transparent 60%);
}

.stat-item {
  text-align: center;
  padding: 24px 16px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.stat-item:hover { transform: translateY(-4px); }

.stat-icon-wrap {
  width: 70px; height: 70px;
  background: rgba(255,255,255,0.1);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 26px;
  color: var(--accent-light);
  border: 1px solid rgba(255,255,255,0.12);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-item:hover .stat-icon-wrap {
  background: rgba(245,158,11,0.2);
  border-color: rgba(245,158,11,0.3);
  transform: scale(1.1);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 900;
  color: white;
  line-height: 1;
  margin-bottom: 6px;
  background: linear-gradient(135deg, white 0%, rgba(255,255,255,0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =====================================================
   ENHANCED SECTION STYLES
   ===================================================== */
.section-title {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 900;
  color: var(--secondary);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  line-height: 1.15;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--light), #e8f7ee);
  color: var(--primary);
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  border: 1px solid rgba(26,107,58,0.18);
  box-shadow: 0 2px 8px rgba(26,107,58,0.08);
}

/* =====================================================
   ENHANCED SERVICE CARDS
   ===================================================== */
.service-category-card {
  background: white;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(226,232,240,0.8);
  height: 100%;
  position: relative;
}

.service-category-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--accent));
  opacity: 0;
  transition: var(--transition);
}

.service-category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.12), 0 0 0 1px rgba(26,107,58,0.1);
  border-color: rgba(26,107,58,0.15);
}

.service-category-card:hover::before { opacity: 1; }

.svc-card-img-wrap { overflow: hidden; position: relative; }

.svc-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-category-card:hover .svc-card-img { transform: scale(1.08); }

.svc-card-body { padding: 28px; }

.svc-cat-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--light), #e8f7ee);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 24px;
  margin-bottom: 16px;
  transition: all 0.4s ease;
  border: 1px solid rgba(26,107,58,0.1);
}

.service-category-card:hover .svc-cat-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  transform: rotate(-5deg) scale(1.1);
  border-color: transparent;
  box-shadow: 0 8px 25px rgba(26,107,58,0.3);
}

.svc-card-body h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 10px;
  line-height: 1.3;
}

/* =====================================================
   ENHANCED WHY CHOOSE US
   ===================================================== */
.why-us-section {
  background: linear-gradient(160deg, #040d0f 0%, #0f172a 40%, #071a12 100%);
  position: relative;
  overflow: hidden;
}

.why-us-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(ellipse, rgba(26,107,58,0.12) 0%, transparent 70%);
}

.why-us-section::after {
  content: '';
  position: absolute;
  bottom: -200px; left: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(245,158,11,0.06) 0%, transparent 70%);
}

.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 22px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(12px);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(26,107,58,0.5), transparent);
  opacity: 0;
  transition: var(--transition);
}

.why-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-8px);
  border-color: rgba(245,158,11,0.25);
  box-shadow: 0 25px 50px rgba(0,0,0,0.4), 0 0 0 1px rgba(245,158,11,0.1);
}

.why-card:hover::before { opacity: 1; }

.why-icon {
  width: 78px; height: 78px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: white;
  margin: 0 auto 22px;
  box-shadow: 0 10px 30px rgba(26,107,58,0.4);
  transition: all 0.4s ease;
  position: relative;
}

.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--accent), #b45309);
  box-shadow: 0 10px 30px rgba(245,158,11,0.5);
  transform: scale(1.1) rotate(8deg);
}

.why-card h3 {
  color: white;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
}

.why-card p {
  color: rgba(255,255,255,0.65);
  font-size: 13.5px;
  line-height: 1.75;
}

/* =====================================================
   ENHANCED DOCTOR CARDS
   ===================================================== */
.doctor-card {
  background: white;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid var(--grey-light);
}

.doctor-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.14);
  border-color: rgba(26,107,58,0.15);
}

.doctor-img-wrap {
  position: relative;
  overflow: hidden;
  height: 320px;
}

.doctor-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s ease;
}

.doctor-card:hover .doctor-img-wrap img { transform: scale(1.05); }

.doctor-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(13,66,40,0.92) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 24px;
  opacity: 0;
  transition: var(--transition);
}

.doctor-card:hover .doctor-overlay { opacity: 1; }

.doctor-social {
  display: flex;
  gap: 10px;
}

.doctor-social a {
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 15px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: var(--transition);
}

.doctor-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #0f172a;
  transform: translateY(-3px);
}

.doctor-info {
  padding: 24px;
  border-top: 1px solid var(--grey-light);
}

.doctor-info h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 4px;
}

.doctor-spec {
  font-size: 13px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 10px;
}

.doctor-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.doctor-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--grey);
  background: var(--light-2);
  padding: 4px 10px;
  border-radius: 50px;
  border: 1px solid var(--grey-light);
}

.doctor-meta-item i { color: var(--primary); font-size: 11px; }

/* =====================================================
   ENHANCED TESTIMONIAL CARDS
   ===================================================== */
.testimonial-card {
  background: white;
  border-radius: 22px;
  padding: 32px 28px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  border: 1px solid rgba(226,232,240,0.8);
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--accent));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.1);
  border-color: rgba(26,107,58,0.15);
}

.testimonial-card:hover::before { transform: scaleX(1); }

.testimonial-quote {
  font-size: 70px;
  color: var(--light);
  line-height: 0.7;
  font-family: Georgia, serif;
  margin-bottom: 12px;
  color: rgba(26,107,58,0.12);
}

.testimonial-text {
  font-size: 14.5px;
  line-height: 1.85;
  color: #475569;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-initial {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  flex-shrink: 0;
}

.author-info h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 2px;
}

.author-info span {
  font-size: 12px;
  color: var(--grey);
}

.testimonial-verified {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--primary);
  font-weight: 700;
  background: var(--light);
  padding: 4px 10px;
  border-radius: 50px;
  border: 1px solid rgba(26,107,58,0.15);
}

.stars { color: #f59e0b; font-size: 16px; margin-bottom: 14px; letter-spacing: 2px; }

/* =====================================================
   ENHANCED FAQ SECTION
   ===================================================== */
.faq-section { background: var(--light-2); }

.faq-item {
  background: white;
  border: 1px solid var(--grey-light);
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.faq-item.active, .faq-item:hover {
  border-color: rgba(26,107,58,0.2);
  box-shadow: 0 8px 25px rgba(26,107,58,0.08);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  gap: 16px;
  user-select: none;
}

.faq-q-text {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex: 1;
}

.faq-q-num {
  font-size: 12px;
  font-weight: 800;
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  width: 28px; height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.faq-q-text h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--secondary);
  margin: 0;
  line-height: 1.4;
}

.faq-toggle {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  transition: var(--transition);
  border: 1px solid rgba(26,107,58,0.1);
}

.faq-item.active .faq-toggle {
  background: var(--primary);
  color: white;
  transform: rotate(180deg);
  border-color: transparent;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer { max-height: 500px; }

.faq-answer p {
  padding: 0 24px 24px 66px;
  font-size: 14.5px;
  line-height: 1.8;
  color: #475569;
  margin: 0;
}

/* =====================================================
   ENHANCED APPOINTMENT SECTION
   ===================================================== */
.appointment-section {
  background: linear-gradient(135deg, #0d4228 0%, #1a6b3a 40%, #0a3320 70%, #0d4228 100%);
  position: relative;
  overflow: hidden;
}

.appointment-section::before {
  content: '';
  position: absolute;
  top: -150px; right: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(245,158,11,0.1) 0%, transparent 70%);
}

.appt-form-card {
  background: white;
  border-radius: 24px;
  padding: 40px 36px;
  box-shadow: var(--shadow-2xl);
  position: relative;
}

.appt-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 24px 24px 0 0;
}

.appt-form-card h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 6px;
}

.form-group-premium { margin-bottom: 0; }
.form-group-premium label {
  font-size: 13px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 6px;
  display: block;
}

.form-control-premium {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--grey-light);
  border-radius: 12px;
  font-size: 14px;
  color: var(--secondary);
  background: var(--light-2);
  transition: var(--transition);
  outline: none;
  font-family: var(--font-body);
}

.form-control-premium:focus {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 3px rgba(26,107,58,0.1);
}

.form-control-premium::placeholder { color: #94a3b8; }

.form-select-premium {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2364748b' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

.btn-submit-appt {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  border: none;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
  font-family: var(--font-heading);
  box-shadow: 0 8px 25px rgba(26,107,58,0.35);
  position: relative;
  overflow: hidden;
}

.btn-submit-appt::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s ease;
}

.btn-submit-appt:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(26,107,58,0.45);
}

.btn-submit-appt:hover::before { left: 100%; }

/* Appointment info side */
.appt-info-side h2 {
  color: white;
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 900;
  margin-bottom: 16px;
}

.appt-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.appt-contact-icon {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  font-size: 20px;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.1);
}

.appt-contact-item h5 {
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.appt-contact-item a,
.appt-contact-item span {
  color: white;
  font-size: 15px;
  font-weight: 700;
  display: block;
}

.appt-contact-item a:hover { color: var(--accent-light); }

.appt-hours {
  background: rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  margin-top: 20px;
}

.appt-hours h5 {
  color: white;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}

.hours-row:last-child { border-bottom: none; }
.hours-row span:last-child { font-weight: 700; color: rgba(255,255,255,0.9); }

.status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  display: inline-block;
  margin-right: 8px;
  animation: statusPulse 2s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(34,197,94,0.4);
}

@keyframes statusPulse {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  70% { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

/* =====================================================
   ENHANCED GALLERY SECTION
   ===================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 180px;
  transition: transform 0.6s ease;
}

.gallery-item:first-child img { min-height: 380px; }

.gallery-item:hover img { transform: scale(1.08); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(13,66,40,0.8) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

/* =====================================================
   ENHANCED BUTTONS
   ===================================================== */
.btn-premium {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white !important;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-heading);
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(26,107,58,0.3);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-premium::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s;
}

.btn-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(26,107,58,0.4);
  color: white !important;
}

.btn-premium:hover::before { left: 100%; }

.btn-outline-premium {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--primary) !important;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-heading);
  transition: var(--transition);
  border: 2px solid var(--primary);
  cursor: pointer;
  white-space: nowrap;
}

.btn-outline-premium:hover {
  background: var(--primary);
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26,107,58,0.25);
}

/* =====================================================
   PAGE HERO (service/inner pages)
   ===================================================== */
.page-hero {
  background: linear-gradient(135deg, #040d07 0%, #0d2137 35%, #1a4731 65%, #0a2a18 100%);
  padding: 90px 0 60px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 80% 50%, rgba(26,107,58,0.15) 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='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-size: clamp(28px, 4vw, 50px);
  color: white;
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.breadcrumb-premium {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb-premium li a {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
}

.breadcrumb-premium li a:hover { color: var(--accent-light); }
.breadcrumb-premium .sep { color: rgba(255,255,255,0.3); font-size: 10px; }
.breadcrumb-premium .active { color: var(--accent-light); font-size: 13px; font-weight: 700; }

/* =====================================================
   SERVICE PAGE CONTENT
   ===================================================== */
.service-content-section { background: var(--light-2); padding: 70px 0; }

.service-content {
  background: white;
  border-radius: 22px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  border: 1px solid var(--grey-light);
}

.service-content h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--secondary);
  margin: 32px 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--light);
  line-height: 1.3;
}

.service-content h2:first-child { margin-top: 0; }

.service-content h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--primary);
  margin: 24px 0 10px;
}

.service-content p {
  font-size: 15.5px;
  line-height: 1.9;
  color: #475569;
  margin-bottom: 16px;
}

.service-content strong { color: var(--secondary); font-weight: 700; }

.styled-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.styled-list li {
  padding: 8px 0 8px 26px;
  position: relative;
  color: #475569;
  font-size: 14.5px;
  line-height: 1.7;
  border-bottom: 1px dashed var(--grey-light);
}

.styled-list li:last-child { border-bottom: none; }

.styled-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 16px;
  width: 8px; height: 8px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
}

.warning-box {
  background: linear-gradient(135deg, #fef9ec, #fef3c7);
  border: 1.5px solid rgba(245,158,11,0.3);
  border-left: 4px solid var(--accent);
  border-radius: 14px;
  padding: 20px 24px;
  margin: 24px 0;
}

.warning-box h4 {
  color: #92400e;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}

.warning-box p {
  color: #78350f;
  margin: 0;
  font-size: 14px;
}

.info-box {
  background: linear-gradient(135deg, #f0faf4, #e8f7ee);
  border: 1.5px solid rgba(26,107,58,0.2);
  border-left: 4px solid var(--primary);
  border-radius: 14px;
  padding: 20px 24px;
  margin: 24px 0;
}

.info-box h4 {
  color: var(--primary-dark);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}

.info-box p { color: #1a4731; margin: 0; font-size: 14px; }

.keyword-highlight {
  color: var(--primary);
  font-weight: 700;
  border-bottom: 2px solid rgba(26,107,58,0.25);
  transition: var(--transition);
}

.keyword-highlight:hover {
  color: var(--primary-dark);
  border-bottom-color: var(--primary);
}

/* Service Sidebar */
.service-sidebar { position: sticky; top: 100px; }

.sidebar-card {
  background: white;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid var(--grey-light);
  margin-bottom: 20px;
}

.sidebar-card h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--light);
}

.sidebar-service-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  color: #475569;
  font-size: 13.5px;
  border-radius: 10px;
  transition: var(--transition);
  margin-bottom: 4px;
}

.sidebar-service-link:hover, .sidebar-service-link.current {
  background: var(--light);
  color: var(--primary);
  padding-left: 18px;
}

.sidebar-service-link i { color: var(--primary); font-size: 11px; flex-shrink: 0; }

/* Quick Appointment Card */
.quick-appt-card {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: 18px;
  padding: 28px 24px;
  color: white;
  text-align: center;
}

.quick-appt-card h4 {
  color: white;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
}

.quick-appt-card p {
  color: rgba(255,255,255,0.8);
  font-size: 13.5px;
  margin-bottom: 20px;
}

.btn-quick-call, .btn-quick-appt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  transition: var(--transition);
  margin-bottom: 10px;
}

.btn-quick-call {
  background: var(--accent);
  color: #0f172a !important;
}

.btn-quick-call:hover {
  background: #d97706;
  transform: translateY(-2px);
}

.btn-quick-appt {
  background: rgba(255,255,255,0.12);
  color: white !important;
  border: 1px solid rgba(255,255,255,0.2);
}

.btn-quick-appt:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

/* =====================================================
   PROCESS / HOW IT WORKS
   ===================================================== */
.process-section { background: var(--light-2); }

.process-step {
  padding: 40px 32px;
  text-align: center;
  position: relative;
  background: white;
  margin: 0 12px;
  border-radius: 22px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  border: 1px solid var(--grey-light);
  transition: all 0.4s ease;
}

.process-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  border-color: rgba(26,107,58,0.15);
}

.process-step::after {
  content: '→';
  position: absolute;
  right: -28px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  font-size: 28px;
  font-weight: 300;
  opacity: 0.3;
  z-index: 2;
}

.process-step:last-child::after { display: none; }

.process-num {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px; height: 30px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(26,107,58,0.4);
}

.process-icon-wrap {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--light), #e8f7ee);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto 20px;
  font-size: 32px;
  color: var(--primary);
  border: 2px solid rgba(26,107,58,0.1);
  transition: all 0.4s ease;
}

.process-step:hover .process-icon-wrap {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  transform: scale(1.1);
  border-color: transparent;
  box-shadow: 0 10px 30px rgba(26,107,58,0.35);
}

.process-step h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 12px;
}

.process-step p {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.75;
}

/* =====================================================
   CONDITIONS MARQUEE
   ===================================================== */
.conditions-section { background: white; padding: 20px 0; }

.marquee-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: marqueeScroll 35s linear infinite;
}

.marquee-track:hover { animation-play-state: paused; }

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.condition-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: white;
  border: 1.5px solid var(--grey-light);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--secondary);
  white-space: nowrap;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.condition-tag:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,107,58,0.25);
}

.condition-tag i { color: var(--primary); font-size: 12px; transition: var(--transition); }
.condition-tag:hover i { color: white; }

/* =====================================================
   FOOTER ENHANCED
   ===================================================== */
.footer-premium {
  background: linear-gradient(160deg, #040d07 0%, #071522 40%, #040d07 100%);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}

.footer-premium::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--accent), var(--primary));
}

.footer-logo { margin-bottom: 20px; }
.footer-logo img { height: 55px; filter: brightness(1.1); }

.footer-desc {
  color: rgba(255,255,255,0.58);
  font-size: 13.5px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: translateY(-3px);
}

.footer-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 12.5px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 8px 16px;
  border-radius: 50px;
  width: fit-content;
}

.footer-col h5 {
  color: white;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h5::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 2px;
  background: linear-gradient(90deg, var(--primary-light), var(--accent));
  border-radius: 2px;
}

.footer-links { list-style: none; padding: 0; margin: 0; }

.footer-links li { margin-bottom: 8px; }

.footer-links li a {
  color: rgba(255,255,255,0.55);
  font-size: 13.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  padding: 2px 0;
}

.footer-links li a i { color: var(--primary-light); font-size: 10px; }

.footer-links li a:hover {
  color: white;
  padding-left: 6px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-contact-item i {
  color: var(--primary-light);
  font-size: 15px;
  margin-top: 3px;
  width: 16px;
}

.footer-contact-item span { color: rgba(255,255,255,0.65); font-size: 13.5px; line-height: 1.6; }
.footer-contact-item a { color: rgba(255,255,255,0.8); font-size: 13.5px; display: block; transition: var(--transition); }
.footer-contact-item a:hover { color: var(--accent-light); }

.footer-bottom {
  background: rgba(0,0,0,0.3);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  margin-top: 60px;
}

.footer-bottom p {
  color: rgba(255,255,255,0.45);
  font-size: 12.5px;
  margin: 0;
}

.footer-bottom a { color: var(--primary-light); }
.footer-bottom a:hover { color: var(--accent-light); }

/* =====================================================
   FLOATING BUTTONS
   ===================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 26px;
  box-shadow: 0 8px 25px rgba(37,211,102,0.4);
  z-index: 999;
  transition: var(--transition);
  animation: floatBounce 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 14px 35px rgba(37,211,102,0.5);
  color: white;
}

.phone-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
  box-shadow: 0 8px 25px rgba(26,107,58,0.4);
  z-index: 999;
  transition: var(--transition);
}

.phone-float:hover {
  transform: scale(1.1) translateY(-3px);
  color: white;
}

@keyframes floatBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

#back-to-top-premium {
  position: fixed;
  bottom: 160px;
  right: 24px;
  width: 44px; height: 44px;
  background: var(--secondary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
}

#back-to-top-premium.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#back-to-top-premium:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.02); opacity: 0.6; }
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.animate-fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }

/* =====================================================
   CONTACT PAGE
   ===================================================== */
.contact-info-card {
  background: white;
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid var(--grey-light);
  transition: all 0.4s ease;
  height: 100%;
}

.contact-info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  border-color: rgba(26,107,58,0.15);
}

.contact-info-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: white;
  margin: 0 auto 16px;
  box-shadow: 0 8px 25px rgba(26,107,58,0.3);
  transition: var(--transition);
}

.contact-info-card:hover .contact-info-icon {
  transform: scale(1.1) rotate(-5deg);
}

.contact-info-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 10px;
}

.contact-info-card a, .contact-info-card p {
  display: block;
  color: var(--grey);
  font-size: 14px;
  margin-bottom: 4px;
  transition: var(--transition);
}

.contact-info-card a:hover { color: var(--primary); }

.contact-form-card {
  background: white;
  border-radius: 22px;
  padding: 40px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  border: 1px solid var(--grey-light);
}

.contact-form-section { background: var(--light-2); }

.doctor-mini-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--light-2);
  border-radius: 12px;
  margin-bottom: 10px;
  border: 1px solid var(--grey-light);
  transition: var(--transition);
}

.doctor-mini-card:hover {
  border-color: rgba(26,107,58,0.2);
  background: var(--light);
}

.doctor-mini-card img {
  width: 48px; height: 48px;
  border-radius: 12px;
  object-fit: cover;
  object-position: top;
}

.doctor-mini-info h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 2px;
}

.doctor-mini-info span {
  font-size: 12px;
  color: var(--primary);
  font-weight: 600;
}

.quick-contact-card {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: 18px;
  padding: 28px;
  text-align: center;
}

.quick-contact-card h4 { color: white; font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.quick-contact-card p { color: rgba(255,255,255,0.75); font-size: 13.5px; margin-bottom: 20px; }

.map-wrap { overflow: hidden; }

/* =====================================================
   MISSION/VISION CARDS
   ===================================================== */
.mission-vision-card {
  background: white;
  border-radius: 22px;
  padding: 36px 28px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.07);
  border: 1px solid var(--grey-light);
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.mission-vision-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.mission-vision-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

.mission-vision-card:hover::after { transform: scaleX(1); }

.mv-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--light), #e8f7ee);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--primary);
  margin-bottom: 20px;
  border: 2px solid rgba(26,107,58,0.1);
  transition: all 0.4s ease;
}

.mission-vision-card:hover .mv-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  border-color: transparent;
  transform: scale(1.05);
}

/* Timeline */
.timeline-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 40px;
  bottom: -28px;
  width: 2px;
  background: linear-gradient(180deg, var(--primary-light), var(--grey-light));
}

.timeline-item:last-child::before { display: none; }

.timeline-dot {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(26,107,58,0.3);
  z-index: 1;
}

.timeline-content { flex: 1; }

.timeline-year {
  font-size: 11px;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.timeline-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 6px;
}

.timeline-content p {
  font-size: 13.5px;
  color: var(--grey);
  line-height: 1.7;
  margin: 0;
}

/* Tag pills */
.tag-pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  background: white;
  border: 1px solid rgba(26,107,58,0.15);
  border-radius: 50px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--primary);
  transition: var(--transition);
}

.tag-pill:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* Stars */
.stars-sm { color: #f59e0b; font-size: 14px; letter-spacing: 1px; }
.doctor-rating { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--grey); }

.text-primary-green { color: var(--primary); }
.fw-800 { font-weight: 800; }
.rounded-premium { border-radius: 16px !important; }
.bg-light-green { background: var(--light); }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 991px) {
  .nav-menu { display: none; }
  .mobile-toggle { display: flex; }
  .mobile-nav { display: block; }
  .hero-content { padding: 100px 0 60px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:first-child { grid-column: span 2; grid-row: span 1; }
  .process-step::after { display: none; }
  .process-step { margin: 0; }
}

@media (max-width: 767px) {
  .hero-heading { font-size: 34px; letter-spacing: -0.5px; }
  .hero-trust { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero-trust-divider { display: none; }
  .about-features { grid-template-columns: 1fr; }
  .service-content { padding: 24px 20px; }
  .appt-form-card { padding: 28px 20px; }
  .stat-number { font-size: 36px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:first-child { grid-column: span 2; }
}

@media (max-width: 480px) {
  .section-pad { padding: 60px 0; }
  .hero-btns { flex-direction: column; }
  .btn-hero-primary, .btn-hero-secondary { text-align: center; justify-content: center; }
  .hero-content { padding: 90px 0 50px; }
  .doctor-img-wrap { height: 260px; }
}
