/* ============================================================
   GEETA IVF CENTRE — Premium Stylesheet
   Author: Geeta IVF Centre Web Team
   Version: 1.0
   ============================================================ */

/* ============================================================
   1. GOOGLE FONTS IMPORT
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ============================================================
   2. DESIGN TOKENS — CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --primary:             #0a6b5e;
  --primary-dark:        #064d44;
  --primary-light:       #12a08e;
  --primary-ultra-light: #e8f5f3;
  --secondary:           #f4a0b5;
  --secondary-light:     #fce4ec;
  --secondary-dark:      #e8789a;
  --gold:                #c9a96e;
  --gold-light:          #f5e6c8;
  --white:               #ffffff;
  --off-white:           #fafcfb;
  --light-bg:            #f0f9f7;
  --pink-bg:             #fef6f8;
  --text-dark:           #1a2c3d;
  --text-medium:         #4a5568;
  --text-light:          #718096;
  --border:              #e2e8f0;
  --shadow-sm:           0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:           0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg:           0 10px 40px rgba(0,0,0,0.14);
  --shadow-primary:      0 8px 30px rgba(10,107,94,0.25);
  --shadow-pink:         0 8px 30px rgba(244,160,181,0.30);
  --radius-sm:           8px;
  --radius-md:           16px;
  --radius-lg:           24px;
  --radius-xl:           40px;
  --transition:          all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading:        'Playfair Display', serif;
  --font-body:           'Poppins', sans-serif;
}

/* ============================================================
   3. RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

input,
textarea,
select {
  font-family: var(--font-body);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--text-dark);
}

/* ============================================================
   4. PAGE LOADER
   ============================================================ */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  margin-bottom: 32px;
  opacity: 0.95;
}

.loader-logo img {
  width: 120px;
  height: auto;
  filter: brightness(0) invert(1);
}

.loader-logo-text {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--white);
  letter-spacing: 1px;
  text-align: center;
  margin-top: 10px;
}

.loader-spinner {
  position: relative;
  width: 70px;
  height: 70px;
}

.loader-spinner::before,
.loader-spinner::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.loader-spinner::before {
  border: 3px solid rgba(255, 255, 255, 0.2);
}

.loader-spinner::after {
  border: 3px solid transparent;
  border-top-color: var(--white);
  border-right-color: var(--secondary);
  animation: spin 1s linear infinite;
}

.loader-ring {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.1);
  animation: pulse-ring 2s ease-in-out infinite;
}

.loader-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background: var(--white);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

.loader-text {
  margin-top: 28px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: shimmer-text 1.5s ease-in-out infinite;
}

/* ============================================================
   5. KEYFRAME ANIMATIONS
   ============================================================ */
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33%       { transform: translateY(-12px) rotate(1deg); }
  66%       { transform: translateY(-6px) rotate(-1deg); }
}

@keyframes float-reverse {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50%       { transform: translateY(15px) rotate(-2deg); }
}

@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(255,255,255,0.4); opacity: 1; }
  70%  { box-shadow: 0 0 0 20px rgba(255,255,255,0); opacity: 0.4; }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); opacity: 0; }
}

@keyframes pulse-dot {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50%       { transform: translate(-50%, -50%) scale(1.3); opacity: 0.7; }
}

@keyframes pulse-green {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70%  { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

@keyframes shimmer-text {
  0%, 100% { opacity: 0.7; }
  50%       { opacity: 1; }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes blob {
  0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; transform: scale(1); }
  25%       { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; transform: scale(1.05); }
  50%       { border-radius: 50% 60% 30% 60% / 30% 40% 60% 50%; transform: scale(0.95); }
  75%       { border-radius: 40% 30% 60% 50% / 60% 70% 40% 30%; transform: scale(1.02); }
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  14%       { transform: scale(1.08); }
  28%       { transform: scale(1); }
  42%       { transform: scale(1.05); }
  70%       { transform: scale(1); }
}

@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes border-dance {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes count-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   6. NAVBAR
   ============================================================ */
.navbar-custom {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  padding: 18px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar-custom.scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 24px rgba(10, 107, 94, 0.12);
}

.navbar-custom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Brand / Logo */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.navbar-brand img {
  height: 52px;
  width: auto;
  transition: var(--transition);
}

.navbar-custom.scrolled .navbar-brand img {
  height: 44px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.3px;
  transition: var(--transition);
}

.brand-tagline {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: var(--transition);
}

.navbar-custom.scrolled .brand-name {
  color: var(--primary-dark);
}

.navbar-custom.scrolled .brand-tagline {
  color: var(--text-light);
}

/* Nav Menu */
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  position: relative;
  letter-spacing: 0.2px;
  transition: var(--transition);
  display: block;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.navbar-custom.scrolled .nav-link {
  color: var(--text-medium);
}

.navbar-custom.scrolled .nav-link::after {
  background: var(--primary);
}

.navbar-custom.scrolled .nav-link:hover {
  color: var(--primary);
  background: var(--primary-ultra-light);
}

.navbar-custom.scrolled .nav-link.active {
  color: var(--primary);
}

/* Book Button */
.btn-book {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white) !important;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 10px 24px;
  border-radius: var(--radius-xl);
  letter-spacing: 0.3px;
  box-shadow: var(--shadow-primary);
  transition: var(--transition);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 8px;
}

.btn-book::after {
  display: none !important;
}

.btn-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(10, 107, 94, 0.35);
  color: var(--white) !important;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
}

.btn-book:active {
  transform: translateY(0);
}

/* Hamburger */
.navbar-toggler {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  cursor: pointer;
  padding: 0;
  background: none;
  border: none;
  z-index: 1060;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

.navbar-custom.scrolled .hamburger-line {
  background: var(--primary-dark);
}

.navbar-toggler.open .hamburger-line:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.navbar-toggler.open .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.navbar-toggler.open .hamburger-line:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1040;
  background: rgba(10, 107, 94, 0.98);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
  display: flex;
}

.mobile-nav .nav-link {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  padding: 14px 24px;
  display: block;
  text-align: center;
}

.mobile-nav .nav-link:hover {
  color: var(--secondary);
  background: transparent;
}

.mobile-nav .btn-book {
  margin-top: 20px;
  font-size: 1rem;
  padding: 14px 40px;
}

/* ============================================================
   7. HERO SECTION
   ============================================================ */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #e8f5f3 0%, #fef6f8 50%, #f0f9f7 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 60px;
}

.hero-section .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

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

/* Floating Shapes */
.floating-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
}

.floating-shape-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(244,160,181,0.5) 0%, rgba(244,160,181,0) 70%);
  top: -100px;
  right: 10%;
  animation: float 8s ease-in-out infinite;
}

.floating-shape-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(10,107,94,0.3) 0%, rgba(10,107,94,0) 70%);
  bottom: 50px;
  left: 5%;
  animation: float-reverse 10s ease-in-out infinite;
}

.floating-shape-3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(201,169,110,0.3) 0%, rgba(201,169,110,0) 70%);
  top: 40%;
  left: 50%;
  animation: float 6s ease-in-out infinite 2s;
}

/* Hero Left Content */
.hero-content {
  animation: fadeInLeft 0.8s ease both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(10,107,94,0.12) 0%, rgba(244,160,181,0.2) 100%);
  border: 1px solid rgba(10,107,94,0.2);
  padding: 6px 18px;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-badge .badge-dot {
  width: 7px;
  height: 7px;
  background: var(--secondary-dark);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.hero-title .gradient-line {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title .accent-line {
  color: var(--secondary-dark);
  font-style: italic;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text-medium);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-primary);
  transition: var(--transition);
  letter-spacing: 0.2px;
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(10,107,94,0.38);
  color: var(--white);
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: var(--radius-xl);
  border: 2px solid var(--primary);
  transition: var(--transition);
  background: transparent;
}

.btn-hero-secondary:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary);
}

.btn-hero-secondary .play-icon {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.btn-hero-secondary .play-icon svg {
  fill: var(--white);
  width: 12px;
  margin-left: 2px;
}

.btn-hero-secondary:hover .play-icon {
  background: var(--white);
}

.btn-hero-secondary:hover .play-icon svg {
  fill: var(--primary);
}

/* Trust Badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 5px 14px;
  border-radius: var(--radius-xl);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-medium);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.trust-badge:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.trust-badge .badge-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Hero Right — Image */
.hero-image-area {
  position: relative;
  animation: fadeInRight 0.8s ease 0.2s both;
}

.hero-image-wrapper {
  position: relative;
  z-index: 2;
}

.hero-img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}

/* Decorative rings behind image */
.deco-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.deco-ring-1 {
  width: 500px;
  height: 500px;
  border: 2px solid rgba(10,107,94,0.12);
  top: -30px;
  right: -30px;
}

.deco-ring-2 {
  width: 380px;
  height: 380px;
  border: 2px solid rgba(244,160,181,0.2);
  bottom: -40px;
  right: -20px;
}

.deco-blob {
  position: absolute;
  width: 320px;
  height: 320px;
  background: linear-gradient(135deg, rgba(10,107,94,0.12) 0%, rgba(244,160,181,0.15) 100%);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  top: -20px;
  right: -20px;
  z-index: 1;
  animation: blob 10s ease-in-out infinite;
}

/* Corner accent */
.img-corner-accent {
  position: absolute;
  width: 70px;
  height: 70px;
  z-index: 3;
}

.img-corner-accent.top-left {
  top: -10px;
  left: -10px;
  border-top: 4px solid var(--primary);
  border-left: 4px solid var(--primary);
  border-radius: 6px 0 0 0;
}

.img-corner-accent.bottom-right {
  bottom: -10px;
  right: -10px;
  border-bottom: 4px solid var(--gold);
  border-right: 4px solid var(--gold);
  border-radius: 0 0 6px 0;
}

/* Doctor Card (glassmorphism) */
.doctor-card {
  position: absolute;
  bottom: 30px;
  left: -30px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(10,107,94,0.15);
  z-index: 5;
  min-width: 220px;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.doctor-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-ultra-light);
  flex-shrink: 0;
}

.doctor-info .doctor-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.doctor-info .doctor-designation {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--primary);
  font-weight: 500;
  margin-top: 2px;
}

.doctor-info .doctor-exp {
  font-family: var(--font-body);
  font-size: 0.68rem;
  color: var(--text-light);
  margin-top: 1px;
}

/* Stats floating card */
.hero-stats-card {
  position: absolute;
  top: 30px;
  right: -30px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-primary);
  z-index: 5;
  text-align: center;
  animation: fadeInDown 0.8s ease 0.4s both;
}

.hero-stats-card .stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.hero-stats-card .stat-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.5px;
  margin-top: 2px;
}

/* ============================================================
   8. SECTION COMMON STYLES
   ============================================================ */
.section-padding {
  padding: 90px 0;
}

.section-padding-lg {
  padding: 110px 0;
}

.section-padding-sm {
  padding: 60px 0;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 16px;
  border-radius: var(--radius-xl);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-badge.pink {
  background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary) 100%);
}

.section-badge.gold {
  background: linear-gradient(135deg, var(--gold) 0%, #b8904a 100%);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-medium);
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 16px auto 0;
}

.section-divider::before,
.section-divider::after {
  content: '';
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary));
  border-radius: 2px;
}

.section-divider::after {
  background: linear-gradient(90deg, var(--primary), transparent);
}

.section-divider .divider-diamond {
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  border-radius: 2px;
}

/* ============================================================
   9. ABOUT SECTION
   ============================================================ */
.about-section {
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(10,107,94,0.06) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.about-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
}

/* About Image */
.about-img-wrapper {
  position: relative;
}

.about-img-container {
  position: relative;
  z-index: 2;
}

.about-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-img-accent {
  position: absolute;
  inset: -16px;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  background: linear-gradient(135deg, var(--primary), var(--gold)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}

.about-img-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 110px;
  height: 110px;
  background: linear-gradient(135deg, var(--gold) 0%, #b8904a 100%);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(201,169,110,0.4);
  z-index: 6;
  animation: rotate-slow 20s linear infinite;
}

.about-img-badge .badge-number {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  animation: rotate-slow 20s linear infinite reverse;
}

.about-img-badge .badge-text {
  font-size: 0.6rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.5px;
  text-align: center;
  animation: rotate-slow 20s linear infinite reverse;
}

.about-deco-dots {
  position: absolute;
  bottom: -20px;
  left: -30px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  z-index: 0;
}

.about-deco-dots span {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0.3;
}

/* About Content */
.about-content {
  padding: 20px 0;
}

.about-description {
  font-size: 1rem;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 28px;
}

/* Feature Items */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 36px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(10,107,94,0.3);
  transition: var(--transition);
}

.feature-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--white);
  stroke-width: 2;
}

.feature-item:hover .feature-icon {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(10,107,94,0.4);
}

.feature-text h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.feature-text p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* About Stats */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.stat-box {
  text-align: center;
  padding: 16px 8px;
}

.stat-box .stat-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  display: block;
}

.stat-box .stat-suffix {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
}

.stat-box .stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-light);
  margin-top: 4px;
  letter-spacing: 0.3px;
}

/* ============================================================
   10. SERVICES SECTION
   ============================================================ */
.services-section {
  background: var(--primary-ultra-light);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(244,160,181,0.12) 0%, transparent 65%);
  bottom: -200px;
  right: -100px;
  pointer-events: none;
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid transparent;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--primary-ultra-light) 0%, rgba(244,160,181,0.08) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(10,107,94,0.2);
}

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

.service-card-inner {
  position: relative;
  z-index: 1;
}

.service-icon-wrapper {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 6px 20px rgba(10,107,94,0.3);
  transition: var(--transition);
}

.service-card:hover .service-icon-wrapper {
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 10px 30px rgba(10,107,94,0.4);
}

.service-icon-wrapper svg {
  width: 32px;
  height: 32px;
  stroke: var(--white);
  fill: none;
  stroke-width: 1.8;
}

.service-icon-wrapper.pink {
  background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary) 100%);
  box-shadow: var(--shadow-pink);
}

.service-icon-wrapper.gold {
  background: linear-gradient(135deg, var(--gold) 0%, #b8904a 100%);
  box-shadow: 0 6px 20px rgba(201,169,110,0.4);
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.service-description {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 18px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  transition: var(--transition);
}

.service-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.service-link:hover {
  color: var(--primary-dark);
  gap: 10px;
}

.service-link:hover svg {
  transform: translateX(4px);
}

/* ============================================================
   11. WHY CHOOSE US SECTION
   ============================================================ */
.why-section {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(10,107,94,0.06) 0%, transparent 70%);
  top: -80px;
  left: -80px;
  pointer-events: none;
}

.why-section::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(244,160,181,0.1) 0%, transparent 70%);
  bottom: -60px;
  right: -60px;
  pointer-events: none;
}

.why-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
  position: relative;
  z-index: 2;
}

.why-image-area {
  position: relative;
}

.why-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.why-img-overlay {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, transparent 50%, rgba(10,107,94,0.08) 100%);
  pointer-events: none;
}

.why-achievement-card {
  position: absolute;
  bottom: 24px;
  right: -24px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 200px;
}

.why-achievement-card .ach-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--gold) 0%, #b8904a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-achievement-card .ach-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
}

.why-achievement-card .ach-text .ach-number {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1;
}

.why-achievement-card .ach-text .ach-label {
  font-size: 0.72rem;
  color: var(--text-light);
  font-weight: 500;
}

/* Why Items Grid */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.why-item:hover {
  background: var(--primary-ultra-light);
  border-color: rgba(10,107,94,0.2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.why-check-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--gold) 0%, #b8904a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(201,169,110,0.35);
  transition: var(--transition);
}

.why-item:hover .why-check-icon {
  transform: scale(1.1) rotate(10deg);
}

.why-check-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2.5;
}

.why-item-text h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 3px;
  line-height: 1.3;
}

.why-item-text p {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ============================================================
   12. SUCCESS JOURNEY SECTION
   ============================================================ */
.journey-section {
  background: linear-gradient(135deg, var(--secondary-light) 0%, var(--primary-ultra-light) 100%);
  position: relative;
  overflow: hidden;
}

.journey-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230a6b5e' fill-opacity='0.03'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.journey-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.journey-image-area {
  position: relative;
}

.journey-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.journey-content .section-badge {
  background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary) 100%);
}

.journey-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 20px;
}

.journey-title span {
  color: var(--primary);
  font-style: normal;
}

.journey-description {
  font-size: 1rem;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 30px;
}

/* Journey Steps */
.journey-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.journey-step {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.9);
  transition: var(--transition);
}

.journey-step:hover {
  background: rgba(255,255,255,0.95);
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.step-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 900;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: var(--shadow-primary);
}

.step-text h4 {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.step-text p {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ============================================================
   13. TESTIMONIALS SECTION
   ============================================================ */
.testimonial-section {
  background: var(--pink-bg);
  position: relative;
  overflow: hidden;
}

.testimonial-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(10,107,94,0.05) 0%, transparent 70%);
  top: -100px;
  left: -100px;
  pointer-events: none;
}

/* Swiper / Carousel Container */
.testimonials-carousel {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: 0 8px 32px rgba(244,160,181,0.15);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  flex: 0 0 calc(33.333% - 16px);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(244,160,181,0.25);
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 9rem;
  color: var(--primary);
  opacity: 0.06;
  position: absolute;
  top: -20px;
  left: 20px;
  line-height: 1;
  pointer-events: none;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.testimonial-stars .star {
  color: var(--gold);
  font-size: 1rem;
}

.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-medium);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(226,232,240,0.5);
  padding-top: 18px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-ultra-light);
  flex-shrink: 0;
}

.author-initials {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.author-info .author-name {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.2;
}

.author-info .author-designation {
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 500;
}

.author-info .author-location {
  font-size: 0.72rem;
  color: var(--text-light);
}

/* Carousel Controls */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}

.carousel-btn svg {
  width: 18px;
  height: 18px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
}

.carousel-btn:hover {
  background: var(--primary);
  transform: scale(1.08);
}

.carousel-btn:hover svg {
  stroke: var(--white);
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: var(--transition);
}

.carousel-dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: 4px;
}

/* ============================================================
   14. APPOINTMENT SECTION
   ============================================================ */
.appointment-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
}

.appointment-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 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.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.appointment-section::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(244,160,181,0.15) 0%, transparent 70%);
  top: -100px;
  right: 10%;
  pointer-events: none;
}

.appointment-wrapper {
  position: relative;
  z-index: 2;
}

.appointment-top {
  text-align: center;
  margin-bottom: 50px;
}

.appointment-top .section-title {
  color: var(--white);
}

.appointment-top .section-subtitle {
  color: rgba(255,255,255,0.8);
}

.appointment-top .section-badge {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
}

.appointment-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 50px 50px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  max-width: 860px;
  margin: 0 auto;
}

.appointment-form-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.appointment-form-subtitle {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 30px;
}

/* Form Fields */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-grid.full {
  grid-template-columns: 1fr;
}

.form-group {
  position: relative;
}

.form-label-custom {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-medium);
  margin-bottom: 6px;
  letter-spacing: 0.2px;
}

.form-input-custom {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
}

.form-input-custom:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(10,107,94,0.1);
}

.form-input-custom::placeholder {
  color: var(--text-light);
  font-size: 0.87rem;
}

.form-input-custom.error {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229,62,62,0.1);
}

/* Floating Label Input */
.form-floating-custom {
  position: relative;
}

.form-floating-custom .form-input-custom {
  padding: 20px 16px 8px;
}

.form-floating-custom .form-label-custom {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  pointer-events: none;
  transition: var(--transition);
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
}

.form-floating-custom .form-input-custom:focus + .form-label-custom,
.form-floating-custom .form-input-custom:not(:placeholder-shown) + .form-label-custom {
  top: 10px;
  transform: translateY(0);
  font-size: 0.72rem;
  color: var(--primary);
}

.form-select-custom {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' viewBox='0 0 24 24'%3E%3Cpath stroke='%23718096' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.form-select-custom:focus {
  border-color: var(--primary);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(10,107,94,0.1);
}

.form-textarea-custom {
  resize: vertical;
  min-height: 100px;
}

/* Book Consultation Button */
.btn-book-consultation {
  width: 100%;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-xl);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-primary);
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.btn-book-consultation:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(10,107,94,0.38);
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
}

.btn-book-consultation:active {
  transform: translateY(0);
}

/* Success Popup */
.success-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.success-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.success-popup {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  max-width: 440px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  transform: scale(0.8) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.success-popup-overlay.active .success-popup {
  transform: scale(1) translateY(0);
}

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-primary);
  animation: heartbeat 2s ease-in-out infinite;
}

.success-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2.5;
}

.success-popup h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.success-popup p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 24px;
}

.btn-close-popup {
  padding: 12px 36px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-xl);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: var(--font-body);
}

.btn-close-popup:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* ============================================================
   15. BLOG SECTION
   ============================================================ */
.blog-section {
  background: var(--white);
  position: relative;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(10,107,94,0.15);
}

.blog-img-wrapper {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.blog-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover .blog-img-wrapper img {
  transform: scale(1.06);
}

.blog-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,107,94,0.08) 100%);
}

.blog-content {
  padding: 24px;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.blog-tag {
  display: inline-block;
  background: var(--primary-ultra-light);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: var(--radius-xl);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.blog-date {
  font-size: 0.75rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 4px;
}

.blog-date svg {
  width: 12px;
  height: 12px;
  stroke: var(--text-light);
  fill: none;
  stroke-width: 2;
}

.blog-title {
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 10px;
  transition: var(--transition);
}

.blog-card:hover .blog-title {
  color: var(--primary);
}

.blog-excerpt {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 18px;
}

.btn-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  border: 1.5px solid var(--primary);
  padding: 7px 18px;
  border-radius: var(--radius-xl);
  transition: var(--transition);
}

.btn-read-more svg {
  width: 14px;
  height: 14px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
  transition: transform 0.3s ease;
}

.btn-read-more:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-read-more:hover svg {
  stroke: var(--white);
  transform: translateX(3px);
}

/* ============================================================
   16. FAQ SECTION
   ============================================================ */
.faq-section {
  background: var(--light-bg);
  position: relative;
}

.faq-row {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  align-items: start;
  gap: 60px;
}

.faq-intro .section-title {
  text-align: left;
}

.faq-intro .section-badge {
  text-align: left;
}

.faq-intro p {
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 24px;
}

.faq-contact-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: var(--transition);
}

.faq-contact-cta:hover {
  border-color: var(--primary);
  gap: 12px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--primary);
  border-left-width: 4px;
  box-shadow: var(--shadow-md);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
  gap: 16px;
  user-select: none;
  transition: var(--transition);
}

.faq-item.active .faq-question {
  color: var(--primary);
}

.faq-question:hover {
  color: var(--primary);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary-ultra-light);
  border: 1.5px solid rgba(10,107,94,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  font-size: 1.1rem;
  color: var(--primary);
  line-height: 1;
}

.faq-item.active .faq-icon {
  background: var(--primary);
  color: var(--white);
  transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
  max-height: 300px;
  opacity: 1;
}

.faq-answer-inner {
  padding: 0 22px 20px;
  font-size: 0.88rem;
  color: var(--text-medium);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

/* ============================================================
   17. CONTACT SECTION
   ============================================================ */
.contact-section {
  background: var(--white);
  position: relative;
}

.contact-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 50px;
  align-items: start;
}

.contact-info-area {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: var(--transition);
}

.contact-card:hover {
  background: var(--primary-ultra-light);
  border-color: rgba(10,107,94,0.25);
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.contact-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(10,107,94,0.3);
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
}

.contact-card-content .contact-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.contact-card-content .contact-value {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
}

.contact-card-content .contact-sub {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 2px;
}

/* Map Wrapper */
.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 100%;
  min-height: 400px;
  border: 1px solid var(--border);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
  display: block;
}

/* Contact Form (in same section, if needed) */
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

/* ============================================================
   18. FOOTER
   ============================================================ */
.footer {
  background: #0a2a25;
  color: rgba(255,255,255,0.75);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.015' fill-rule='evenodd'%3E%3Ccircle cx='60' cy='60' r='30'/%3E%3Ccircle cx='0' cy='0' r='20'/%3E%3Ccircle cx='120' cy='120' r='20'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.footer-top {
  padding: 70px 0 50px;
  position: relative;
  z-index: 2;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

/* Footer Brand Column */
.footer-logo-area {
  margin-bottom: 18px;
}

.footer-logo {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-top: 8px;
}

.footer-tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-description {
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}

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

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  cursor: pointer;
}

.social-btn svg {
  width: 16px;
  height: 16px;
  fill: rgba(255,255,255,0.7);
}

.social-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(10,107,94,0.4);
}

.social-btn:hover svg {
  fill: var(--white);
}

/* Footer Widget */
.footer-widget-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-widget-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.62);
  display: flex;
  align-items: center;
  gap: 7px;
  transition: var(--transition);
}

.footer-links li a::before {
  content: '';
  width: 5px;
  height: 5px;
  background: rgba(10,107,94,0.6);
  border-radius: 50%;
  flex-shrink: 0;
  transition: var(--transition);
}

.footer-links li a:hover {
  color: var(--primary-light);
  padding-left: 4px;
}

.footer-links li a:hover::before {
  background: var(--primary-light);
}

/* Footer Contact Info */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.855rem;
  color: rgba(255,255,255,0.62);
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--primary-light);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.62);
  transition: var(--transition);
}

.footer-contact-item a:hover {
  color: var(--primary-light);
}

/* Newsletter */
.footer-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.footer-newsletter-input {
  width: 100%;
  padding: 10px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--white);
  outline: none;
  transition: var(--transition);
}

.footer-newsletter-input::placeholder {
  color: rgba(255,255,255,0.4);
}

.footer-newsletter-input:focus {
  border-color: var(--primary-light);
  background: rgba(255,255,255,0.12);
}

.btn-newsletter {
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.875rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}

.btn-newsletter:hover {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  box-shadow: var(--shadow-primary);
  transform: translateY(-1px);
}

/* Footer Bottom */
.footer-bottom {
  padding: 20px 0;
  position: relative;
  z-index: 2;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-copyright {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

.footer-copyright a {
  color: var(--primary-light);
  transition: var(--transition);
}

.footer-copyright a:hover {
  color: var(--white);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  transition: var(--transition);
}

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

/* ============================================================
   19. FLOATING WHATSAPP BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9998;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.whatsapp-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: var(--transition);
  position: relative;
  flex-shrink: 0;
  animation: pulse-green 2.5s ease-in-out infinite;
}

.whatsapp-btn svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

.whatsapp-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 30px rgba(37,211,102,0.55);
}

.whatsapp-label {
  background: var(--white);
  color: var(--text-dark);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  transform: translateX(10px);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.whatsapp-float:hover .whatsapp-label {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   20. BACK TO TOP BUTTON
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 32px;
  z-index: 9997;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-primary);
  cursor: pointer;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  border: none;
}

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

.back-to-top svg {
  width: 20px;
  height: 20px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2.5;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(10,107,94,0.4);
}

/* ============================================================
   21. UTILITY CLASSES
   ============================================================ */

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-pink {
  background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #b8904a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Glassmorphism */
.glassmorphism {
  background: rgba(255, 255, 255, 0.80);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.glassmorphism-dark {
  background: rgba(10, 107, 94, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(10, 107, 94, 0.2);
}

/* Background Utilities */
.bg-gradient-primary {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
}

.bg-gradient-pink {
  background: linear-gradient(135deg, var(--secondary-light) 0%, var(--pink-bg) 100%);
}

.bg-gradient-soft {
  background: linear-gradient(135deg, #e8f5f3 0%, #fef6f8 50%, #f0f9f7 100%);
}

/* Buttons */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius-xl);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-primary);
  letter-spacing: 0.2px;
  text-decoration: none;
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(10,107,94,0.38);
  color: var(--white);
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
}

.btn-secondary-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary) 100%);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius-xl);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-pink);
  text-decoration: none;
}

.btn-secondary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(244,160,181,0.45);
  color: var(--white);
}

.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 11px 26px;
  border-radius: var(--radius-xl);
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-outline-custom:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 11px 26px;
  border-radius: var(--radius-xl);
  border: 2px solid rgba(255,255,255,0.6);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* Animation Utility Classes */
.animate-fadeInUp {
  animation: fadeInUp 0.7s ease both;
}

.animate-float {
  animation: float 4s ease-in-out infinite;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
.delay-600 { animation-delay: 0.6s; }
.delay-700 { animation-delay: 0.7s; }
.delay-800 { animation-delay: 0.8s; }

/* Text utilities */
.text-primary { color: var(--primary); }
.text-gold    { color: var(--gold); }
.text-pink    { color: var(--secondary-dark); }
.text-white   { color: var(--white); }

/* Scroll Reveal helper (JS driven) */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   22. ACHIEVEMENTS / NUMBERS SECTION (OPTIONAL STRIP)
   ============================================================ */
.numbers-strip {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.numbers-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='20' cy='20' r='8'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  z-index: 2;
}

.number-item {
  text-align: center;
  padding: 10px;
  position: relative;
}

.number-item + .number-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.2);
}

.number-item .num-value {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  display: block;
}

.number-item .num-suffix {
  color: var(--secondary);
  font-size: 2rem;
}

.number-item .num-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
  margin-top: 6px;
  letter-spacing: 0.5px;
}

/* ============================================================
   23. TEAM / DOCTOR SECTION
   ============================================================ */
.team-section {
  background: var(--off-white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  text-align: center;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.team-img-wrapper {
  height: 280px;
  overflow: hidden;
  position: relative;
}

.team-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}

.team-card:hover .team-img-wrapper img {
  transform: scale(1.05);
}

.team-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(0deg, rgba(10,107,94,0.08) 0%, transparent 100%);
}

.team-info {
  padding: 20px;
}

.team-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 4px;
}

.team-exp {
  font-size: 0.75rem;
  color: var(--text-light);
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.team-social .social-btn {
  background: var(--primary-ultra-light);
  border-color: rgba(10,107,94,0.2);
}

.team-social .social-btn svg {
  fill: var(--primary);
}

.team-social .social-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.team-social .social-btn:hover svg {
  fill: var(--white);
}

/* ============================================================
   24. GALLERY SECTION
   ============================================================ */
.gallery-section {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-md);
  position: relative;
  cursor: pointer;
}

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

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

.gallery-item.featured img {
  min-height: 400px;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,107,94,0.7) 0%, rgba(6,77,68,0.7) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

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

.gallery-overlay svg {
  width: 40px;
  height: 40px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
  transform: scale(0.7);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay svg {
  transform: scale(1);
}

/* ============================================================
   25. AWARDS / ACCREDITATIONS STRIP
   ============================================================ */
.awards-strip {
  background: var(--gold-light);
  padding: 40px 0;
  border-top: 1px solid rgba(201,169,110,0.2);
  border-bottom: 1px solid rgba(201,169,110,0.2);
}

.awards-track {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.award-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  opacity: 0.7;
  transition: var(--transition);
  padding: 10px 20px;
}

.award-item:hover {
  opacity: 1;
  transform: translateY(-3px);
}

.award-item img {
  height: 50px;
  width: auto;
  filter: grayscale(30%);
  transition: filter 0.3s ease;
}

.award-item:hover img {
  filter: grayscale(0%);
}

.award-item span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-medium);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ============================================================
   26. MEDIA QUERIES — RESPONSIVE
   ============================================================ */

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
  .container {
    max-width: 1360px;
  }

  .hero-title {
    font-size: 4.5rem;
  }
}

/* Tablet / Small Desktop (992px and below) */
@media (max-width: 1199px) {
  .hero-row {
    gap: 40px;
  }

  .about-row {
    gap: 40px;
  }

  .why-row {
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 36px;
  }

  .footer-grid > *:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 991px) {
  /* Nav */
  .navbar-nav,
  .btn-book {
    display: none;
  }

  .navbar-toggler {
    display: flex;
  }

  /* Hero */
  .hero-row {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .hero-content {
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-image-area {
    order: 2;
    max-width: 500px;
    margin: 0 auto;
  }

  .hero-subtitle {
    max-width: 100%;
  }

  .trust-badges {
    justify-content: center;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .doctor-card {
    left: 10px;
    bottom: 10px;
  }

  .hero-stats-card {
    right: 10px;
    top: 10px;
  }

  /* About */
  .about-row {
    grid-template-columns: 1fr;
  }

  .about-img-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }

  /* Services */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Why */
  .why-row {
    grid-template-columns: 1fr;
  }

  .why-image-area {
    max-width: 500px;
    margin: 0 auto;
  }

  /* Journey */
  .journey-row {
    grid-template-columns: 1fr;
  }

  .journey-image-area {
    max-width: 500px;
    margin: 0 auto;
  }

  /* Testimonials */
  .testimonial-card {
    flex: 0 0 calc(50% - 12px);
  }

  /* FAQ */
  .faq-row {
    grid-template-columns: 1fr;
  }

  /* Contact */
  .contact-row {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  /* Numbers */
  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .number-item + .number-item::before {
    display: none;
  }

  /* Teams */
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Blog */
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Appointment */
  .appointment-card {
    padding: 36px 30px;
  }
}

/* Mobile (768px and below) */
@media (max-width: 767px) {
  .section-padding {
    padding: 60px 0;
  }

  .section-padding-lg {
    padding: 70px 0;
  }

  .container {
    padding: 0 16px;
  }

  /* Section headers */
  .section-title {
    font-size: 1.8rem;
  }

  .section-header {
    margin-bottom: 40px;
  }

  /* Hero */
  .hero-section {
    padding-top: 90px;
    padding-bottom: 50px;
    min-height: auto;
  }

  .hero-img {
    height: 360px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .doctor-card {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 16px;
    justify-content: center;
  }

  .hero-stats-card {
    position: relative;
    top: auto;
    right: auto;
    margin-bottom: 16px;
    display: inline-block;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }

  /* Why */
  .why-grid {
    grid-template-columns: 1fr;
  }

  /* Testimonial */
  .testimonial-card {
    flex: 0 0 100%;
  }

  /* Appointment */
  .form-grid {
    grid-template-columns: 1fr;
  }

  .appointment-card {
    padding: 28px 20px;
  }

  /* FAQ */
  .faq-intro .section-title {
    font-size: 1.8rem;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }

  /* Numbers */
  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .number-item .num-value {
    font-size: 2.2rem;
  }

  /* Blog */
  .blog-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }

  /* Team */
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item.featured {
    grid-column: 1 / -1;
    grid-row: span 1;
  }

  /* WhatsApp & Back to top */
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }

  .back-to-top {
    bottom: 84px;
    right: 20px;
  }

  /* About stats */
  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .stat-box .stat-num {
    font-size: 1.7rem;
  }
}

/* Small Mobile (576px and below) */
@media (max-width: 575px) {
  .hero-title {
    font-size: 1.95rem;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    justify-content: center;
    width: 100%;
  }

  .about-stats {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .numbers-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item.featured {
    grid-column: 1;
  }

  .footer-social {
    justify-content: center;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .navbar-custom .container {
    padding: 0 16px;
  }

  .appointment-card {
    padding: 24px 16px;
  }

  .appointment-form-title {
    font-size: 1.3rem;
  }

  .contact-row {
    gap: 30px;
  }

  .map-wrapper {
    min-height: 280px;
  }

  .map-wrapper iframe {
    min-height: 280px;
  }

  .testimonial-card {
    padding: 24px 20px;
  }

  .trust-badges {
    gap: 8px;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 5px 14px;
  }

  .about-img {
    height: 340px;
  }

  .journey-img {
    height: 320px;
  }

  .why-img {
    height: 320px;
  }

  .footer-top {
    padding: 50px 0 36px;
  }

  .awards-track {
    gap: 18px;
  }
}

/* ============================================================
   27. PRINT STYLES
   ============================================================ */
@media print {
  .page-loader,
  .navbar-custom,
  .whatsapp-float,
  .back-to-top,
  .floating-shape,
  .deco-ring,
  .deco-blob {
    display: none !important;
  }

  body {
    font-size: 12pt;
    color: #000;
  }

  .section-padding {
    padding: 30px 0;
  }

  a {
    color: #000;
    text-decoration: underline;
  }
}

/* ============================================================
   28. ACCESSIBILITY
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============================================================
   29. SCROLLBAR STYLING
   ============================================================ */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* ============================================================
   30. SELECTION STYLING
   ============================================================ */
::selection {
  background: rgba(10, 107, 94, 0.18);
  color: var(--primary-dark);
}
