/* ===================================================
   SAKTHI PHARMA SURGICAL - MAIN STYLESHEET
   =================================================== */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ---------- CSS Custom Properties / Design Tokens ---------- */
:root {
  /* Primary Palette */
  --color-primary: #0A6EBD;
  --color-primary-dark: #064A80;
  --color-primary-light: #45A5E6;
  --color-primary-glow: rgba(10, 110, 189, 0.25);

  /* Accent */
  --color-accent: #00D4AA;
  --color-accent-dark: #00A888;
  --color-accent-light: #66E8CC;

  /* Neutrals */
  --color-bg: #F7F9FC;
  --color-bg-alt: #EEF2F7;
  --color-surface: #FFFFFF;
  --color-surface-glass: rgba(255, 255, 255, 0.75);
  --color-dark: #0B1120;
  --color-dark-alt: #1A2540;
  --color-text: #2D3748;
  --color-text-light: #718096;
  --color-text-muted: #A0AEC0;
  --color-border: #E2E8F0;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #0A6EBD 0%, #00D4AA 100%);
  --gradient-hero: linear-gradient(135deg, rgba(10, 110, 189, 0.92) 0%, rgba(0, 212, 170, 0.85) 100%);
  --gradient-dark: linear-gradient(135deg, #0B1120 0%, #1A2540 100%);
  --gradient-card: linear-gradient(145deg, rgba(255,255,255,0.9) 0%, rgba(238,242,247,0.6) 100%);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --shadow-glow: 0 0 30px var(--color-primary-glow);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Layout */
  --container-max: 1280px;
  --nav-height: 80px;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.7;
  overflow-x: hidden;
}

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

ul, ol {
  list-style: none;
}

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

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

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

/* ---------- Utility Classes ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.section {
  padding: var(--space-4xl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-header .section-subtitle {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
  position: relative;
  padding: var(--space-xs) var(--space-lg);
  background: rgba(0, 212, 170, 0.08);
  border-radius: var(--radius-full);
}

.section-header .section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: var(--space-md);
}

.section-header .section-desc {
  font-size: 1.1rem;
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn::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.6s;
}

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

.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 4px 20px var(--color-primary-glow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--color-primary-glow);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-3px);
}

.btn-book {
  background: var(--gradient-primary);
  color: #fff;
  padding: 12px 28px;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px var(--color-primary-glow);
}

.btn-book:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 25px var(--color-primary-glow);
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  transition: all var(--transition-base);
  background: #fff;
}

.navbar.scrolled {
  background: var(--color-surface-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
  height: 70px;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  z-index: 1001;
}

.nav-logo .logo-icon {
  width: 44px;
  height: 44px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  font-family: var(--font-heading);
}

.nav-logo .logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
  line-height: 1.2;
}

.nav-logo .logo-text span {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  opacity: 0.8;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.navbar.scrolled .nav-logo .logo-text {
  color: var(--color-dark);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.nav-link {
  padding: 10px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #0B1120;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  position: relative;
}

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

.nav-link:hover,
.nav-link.active {
  color: #0978bb;
  background: rgba(180, 220, 255, 0.29);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
  color: var(--color-primary);
  background: rgba(10,110,189,0.08);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown .dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.nav-dropdown .dropdown-arrow {
  font-size: 0.7rem;
  transition: transform var(--transition-fast);
}

.nav-dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--color-surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  padding: var(--space-sm);
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  border: 1px solid var(--color-border);
  z-index: 1002;
}

.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  color: var(--color-text);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition-fast);
}

.dropdown-menu a:hover {
  background: rgba(10,110,189,0.06);
  color: var(--color-primary);
  transform: translateX(4px);
}

.dropdown-menu a .dropdown-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(10,110,189,0.1), rgba(0,212,170,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  z-index: 1001;
  padding: 5px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: #000000;
  border-radius: 2px;
  transition: all var(--transition-base);
}

.navbar.scrolled .nav-toggle span {
  background: var(--color-dark);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  z-index: 1001;
}

/* ---------- HERO SECTION ---------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: -1;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.hero-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  animation: floatParticle 20s infinite linear;
}

.hero-particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 18s; }
.hero-particle:nth-child(2) { left: 25%; animation-delay: 3s; animation-duration: 22s; }
.hero-particle:nth-child(3) { left: 40%; animation-delay: 6s; animation-duration: 16s; }
.hero-particle:nth-child(4) { left: 55%; animation-delay: 1s; animation-duration: 25s; }
.hero-particle:nth-child(5) { left: 70%; animation-delay: 4s; animation-duration: 20s; }
.hero-particle:nth-child(6) { left: 85%; animation-delay: 7s; animation-duration: 17s; }
.hero-particle:nth-child(7) { left: 15%; animation-delay: 9s; animation-duration: 24s; }
.hero-particle:nth-child(8) { left: 60%; animation-delay: 2s; animation-duration: 19s; }

@keyframes floatParticle {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-20vh) scale(1); opacity: 0; }
}

.hero-content {
  text-align: center;
  color: #fff;
  max-width: 800px;
  margin: 0 auto;
  padding-top: var(--nav-height);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 8px 20px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: var(--space-xl);
  backdrop-filter: blur(10px);
  animation: fadeInDown 0.8s ease forwards;
}

.hero-badge .badge-dot {
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: var(--space-lg);
  color: #fff;
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--color-accent-light), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: var(--space-2xl);
  line-height: 1.8;
  animation: fadeInUp 0.8s ease 0.4s forwards;
  opacity: 0;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  animation: fadeInUp 0.8s ease 0.6s forwards;
  opacity: 0;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-3xl);
  margin-top: var(--space-3xl);
  animation: fadeInUp 0.8s ease 0.8s forwards;
  opacity: 0;
}

.hero-stat {
  text-align: center;
}

.hero-stat .stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  display: block;
}

.hero-stat .stat-label {
  font-size: 0.85rem;
  opacity: 0.75;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeInUp 0.8s ease 1s forwards;
  opacity: 0;
}

.hero-scroll .scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}

.hero-scroll .scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 50%;
  background: #fff;
  animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
  0% { top: -50%; }
  100% { top: 100%; }
}

/* ---------- ABOUT SECTION ---------- */
.about-section {
  background: #ffffff;
  padding: var(--space-3xl) 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.about-image img {
  width: 100%;
  height: auto;
  min-height: 400px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.about-image:hover img {
  transform: scale(1.02);
}

.about-experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 10px 30px rgba(10,110,189,0.3);
  animation: pulseGlow 3s infinite;
}

.about-experience-badge .exp-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.about-experience-badge .exp-text {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 10px 30px rgba(10,110,189,0.3); }
  50% { box-shadow: 0 10px 40px rgba(10,110,189,0.5); }
}

.about-content .section-subtitle {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: #475569;
  margin-bottom: var(--space-xs);
  text-transform: none;
  letter-spacing: normal;
  background: transparent;
  padding: 0;
}

.about-content .section-title {
  color: #0b1120;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: var(--space-lg);
  line-height: 1.2;
}

.about-content .about-text {
  color: #64748b;
  margin-bottom: var(--space-lg);
  line-height: 1.7;
  font-size: 0.95rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.about-feature {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 14px 20px;
  background: #f8fafc;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  border: 1px solid transparent;
}

.about-feature:hover {
  background: #f1f5f9;
  border-color: #e2e8f0;
  transform: translateY(-2px);
}

.about-feature-icon {
  color: #0b1120;
  font-size: 1rem;
  font-weight: bold;
}

.about-feature-text {
  font-weight: 600;
  font-size: 0.95rem;
  color: #0b1120;
}

/* ---------- SERVICES SECTION ---------- */
.services-section {
  background: #ffffff;
  position: relative;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 300px;
  background: #ffffff;
  z-index: 0;
}

.services-section .container {
  position: relative;
  z-index: 1;
}

.services-section .section-header {
  color: #0b1120;
}

.services-section .section-title {
  color: #0b1120;
}

.services-section .section-desc, .services-section .section-description {
  color: #0b1120;
  opacity: 0.8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.service-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.05);
  transition: all var(--transition-base);
  position: relative;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.1);
  border-color: transparent;
}

.service-card-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-card:hover .service-card-image img {
  transform: scale(1.05);
}

.service-card-content {
  padding: var(--space-lg) var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-icon {
  font-size: 1.2rem;
  margin-bottom: var(--space-xs);
  display: block;
}

.service-card-content .service-card-title {
  color: #0b1120;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.service-card-content .service-card-text {
  font-size: 0.9rem;
  color: #475569;
  margin-bottom: var(--space-lg);
  line-height: 1.6;
  flex: 1;
}

.service-card-content .service-card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-primary);
  transition: all var(--transition-fast);
  margin-top: auto;
}

.service-card-content .service-card-link:hover {
  gap: var(--space-md);
  color: #0b1120;
}

/* Two cards in last row center-aligned on Desktop */
@media (min-width: 993px) {
  .services-grid .service-card:nth-child(4) {
    grid-column: 1 / 2;
  }
  .services-grid .service-card:nth-child(5) {
    grid-column: 2 / 3;
  }
}

/* ---------- WHY CHOOSE US SECTION ---------- */
.why-section {
  background: var(--color-surface);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.why-card {
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
  border-radius: var(--radius-lg);
  background: var(--gradient-card);
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
  position: relative;
}

.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: var(--gradient-primary);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--transition-base);
}

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

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

.why-card .why-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto var(--space-lg);
  background: linear-gradient(135deg, rgba(10,110,189,0.1), rgba(0,212,170,0.1));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: all var(--transition-base);
}

.why-card:hover .why-icon {
  background: var(--gradient-primary);
  transform: rotateY(180deg);
}

.why-card:hover .why-icon svg {
  filter: brightness(10);
}

.why-card .why-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.why-card .why-desc {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ---------- CTA SECTION ---------- */
.cta-section {
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--color-primary-glow) 0%, transparent 70%);
  border-radius: 50%;
  animation: ctaFloat 8s ease-in-out infinite;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,212,170,0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: ctaFloat 10s ease-in-out infinite reverse;
}

@keyframes ctaFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -40px); }
}

.cta-content {
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 1;
}

.cta-content .cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: var(--space-md);
  color: #fff;
}

.cta-content .cta-desc {
  font-size: 1.1rem;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto var(--space-xl);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* ---------- GALLERY SECTION ---------- */
.gallery-section {
  background: var(--color-bg);
  padding: var(--space-3xl) 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 17, 32, 0.8) 0%, rgba(11, 17, 32, 0) 60%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: var(--space-lg);
  opacity: 0;
  transition: all 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1) rotate(1deg);
}

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

.gallery-icon {
  background: var(--gradient-primary);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 300;
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.2, 1, 0.3, 1) 0.1s;
}

.gallery-item:hover .gallery-icon {
  transform: translateY(0);
}

/* ---------- CONTACT SECTION ---------- */
.contact-section {
  background: var(--color-surface);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-3xl);
}

.contact-info {
  padding-right: var(--space-xl);
}

.contact-info .contact-subtitle {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
  padding: var(--space-xs) var(--space-lg);
  background: rgba(0,212,170,0.08);
  border-radius: var(--radius-full);
}

.contact-info .contact-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: var(--space-md);
}

.contact-info .contact-desc {
  color: var(--color-text-light);
  margin-bottom: var(--space-2xl);
  line-height: 1.8;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--color-bg);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.contact-detail-item:hover {
  background: rgba(10,110,189,0.04);
  transform: translateX(5px);
}

.contact-detail-item .detail-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.contact-detail-item .detail-content .detail-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

.contact-detail-item .detail-content .detail-value {
  font-weight: 600;
  color: var(--color-dark);
  font-size: 0.95rem;
}

.contact-detail-item .detail-content .detail-value a {
  color: var(--color-primary);
}

.contact-detail-item .detail-content .detail-value a:hover {
  text-decoration: underline;
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--color-bg);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 14px 18px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-surface);
  transition: all var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px var(--color-primary-glow);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  display: flex;
  justify-content: flex-end;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--gradient-dark);
  color: #fff;
  padding-top: var(--space-4xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-3xl);
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

@keyframes footerLogoAnim {
  0% {
    transform: translateY(0);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3), 0 0 20px rgba(0, 212, 170, 0.2);
  }
  50% {
    transform: translateY(-6px);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.7), 0 0 35px rgba(0, 212, 170, 0.5);
  }
  100% {
    transform: translateY(0);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3), 0 0 20px rgba(0, 212, 170, 0.2);
  }
}

.footer-brand .footer-logo img {
  background: rgba(255, 255, 255, 0.95);
  padding: 10px 15px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  animation: footerLogoAnim 3.5s ease-in-out infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  cursor: pointer;
}

.footer-brand .footer-logo img:hover {
  transform: translateY(-8px) scale(1.05);
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.9), 0 0 45px rgba(0, 212, 170, 0.7);
  animation-play-state: paused;
}

.footer-brand .footer-logo .logo-icon {
  width: 44px;
  height: 44px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  font-family: var(--font-heading);
}

.footer-brand .footer-logo .logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.2;
}

.footer-brand .footer-logo .logo-text span {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  opacity: 0.7;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.footer-brand .footer-desc {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition-fast);
}

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

.footer-col .footer-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
  color: #fff;
}

.footer-col .footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-col .footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  position: relative;
}

.footer-col .footer-links a::before {
  content: '\002B'; /* Plus sign / Medical Cross */
  color: var(--color-accent);
  font-size: 1.1em;
  font-weight: bold;
  opacity: 0.7;
  transition: all var(--transition-fast);
}

.footer-col .footer-links a:hover {
  color: var(--color-accent);
  transform: translateX(4px);
}

.footer-col .footer-links a:hover::before {
  opacity: 1;
  transform: scale(1.2);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.footer-contact-item .fc-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item .fc-text {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-contact-item .fc-text a {
  color: rgba(255,255,255,0.6);
}

.footer-contact-item .fc-text a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--space-lg) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom .copyright {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  white-space: nowrap;
}

.footer-bny {
  height: 24px;
  width: auto;
  object-fit: contain;
}

.footer-bottom .footer-bottom-links {
  display: flex;
  gap: var(--space-lg);
}

.footer-bottom .footer-bottom-links a {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
}

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

/* ---------- PAGE BANNER (Inner Pages) ---------- */
.page-banner {
  position: relative;
  padding: 160px 0 80px;
  background: var(--gradient-dark);
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--color-primary-glow) 0%, transparent 70%);
  border-radius: 50%;
}

.page-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(0,212,170,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.page-banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}

.page-banner-content .page-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: var(--space-md);
  color: #fff;
}

.page-banner-content .page-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

.page-banner-content .page-breadcrumb a {
  color: rgba(255,255,255,0.6);
  transition: color var(--transition-fast);
}

.page-banner-content .page-breadcrumb a:hover {
  color: var(--color-accent);
}

.page-banner-content .page-breadcrumb .breadcrumb-sep {
  color: rgba(255,255,255,0.3);
}

.page-banner-content .page-breadcrumb .breadcrumb-current {
  color: var(--color-accent);
}

/* ---------- SERVICE DETAIL PAGE ---------- */
.service-detail-section {
  background: var(--color-surface);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.service-detail-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.service-detail-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.service-detail-content .detail-subtitle {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
  padding: var(--space-xs) var(--space-lg);
  background: rgba(0,212,170,0.08);
  border-radius: var(--radius-full);
}

.service-detail-content .detail-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: var(--space-lg);
}

.service-detail-content .detail-text {
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
}

.service-features-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.service-feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.service-feature-item:hover {
  background: rgba(10,110,189,0.05);
  transform: translateX(5px);
}

.service-feature-item .sfi-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.service-feature-item .sfi-content .sfi-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-dark);
  margin-bottom: 4px;
}

.service-feature-item .sfi-content .sfi-desc {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* Service Other Services */
.other-services-section {
  background: var(--color-bg);
}

.other-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.other-service-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  text-align: center;
  transition: all var(--transition-base);
  border: 1px solid var(--color-border);
}

.other-service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.other-service-card .osc-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--space-md);
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(10,110,189,0.1), rgba(0,212,170,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all var(--transition-base);
}

.other-service-card:hover .osc-icon {
  background: var(--gradient-primary);
}

.other-service-card .osc-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.other-service-card .osc-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
}

/* ---------- GALLERY PAGE ---------- */
.gallery-filter {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
}

.gallery-filter-btn {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-light);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  transition: all var(--transition-fast);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: var(--gradient-primary);
  color: #fff;
  border-color: transparent;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--radius-md);
  transform: scale(0.8);
  transition: transform var(--transition-base);
}

.lightbox.active img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.2);
  transform: rotate(90deg);
}

/* ---------- BOOK NOW MODAL ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(5px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

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

.modal {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 520px;
  padding: var(--space-2xl);
  transform: translateY(30px) scale(0.95);
  transition: all var(--transition-base);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

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

.modal-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--color-text-light);
  transition: all var(--transition-fast);
}

.modal-close:hover {
  background: #fee;
  color: #d00;
}

.modal-header {
  margin-bottom: var(--space-xl);
}

.modal-header .modal-title {
  font-size: 1.5rem;
  font-weight: 800;
}

.modal-header .modal-desc {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-top: var(--space-xs);
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.modal-form .form-group input,
.modal-form .form-group select,
.modal-form .form-group textarea {
  width: 100%;
}

/* ---------- SCROLL ANIMATIONS ---------- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.animate-left {
  transform: translateX(-40px);
}

.animate-on-scroll.animate-left.animate-in {
  transform: translateX(0);
}

.animate-on-scroll.animate-right {
  transform: translateX(40px);
}

.animate-on-scroll.animate-right.animate-in {
  transform: translateX(0);
}

.animate-on-scroll.animate-scale {
  transform: scale(0.9);
}

.animate-on-scroll.animate-scale.animate-in {
  transform: scale(1);
}

/* Staggered delays for grid items */
.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }
.animate-delay-5 { transition-delay: 0.5s; }

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

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

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

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

/* Counter animation placeholder */
.counter {
  display: inline-block;
}

/* ---------- BACK TO TOP ---------- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-base);
  z-index: 500;
  font-size: 1.2rem;
}

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

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px var(--color-primary-glow);
}

/* ---------- RESPONSIVE DESIGN ---------- */

/* Tablet Landscape */
@media (max-width: 1024px) {
  :root {
    --container-max: 960px;
  }

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

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

  .services-grid .service-card:nth-child(4),
  .services-grid .service-card:nth-child(5) {
    grid-column: auto;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-item.wide {
    grid-column: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }

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

/* Tablet Portrait */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-stats {
    gap: var(--space-xl);
  }

  .hero-stat .stat-number {
    font-size: 2rem;
  }

  /* Make header elements fit on mobile */
  .nav-logo .logo-icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .nav-logo img {
    max-width: 65vw;
    object-fit: contain;
  }

  .nav-logo .logo-text {
    font-size: 1rem;
  }

  .nav-logo .logo-text span {
    font-size: 0.55rem;
  }

  .nav-actions {
    gap: 12px;
  }

  .btn-book {
    display: none;
  }

  /* Mobile Nav Menu */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--color-surface);
    flex-direction: column;
    justify-content: flex-start;
    padding: 100px var(--space-xl) var(--space-xl);
    transition: right var(--transition-base);
    z-index: 1000;
    gap: var(--space-sm);
    overflow-y: auto;
    box-shadow: -5px 0 30px rgba(0,0,0,0.1);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-link {
    color: var(--color-text) !important;
    padding: 14px 18px;
    width: 100%;
    border-radius: var(--radius-sm);
    font-size: 1.05rem;
  }

  .nav-link:hover,
  .nav-link.active {
    background: rgba(10,110,189,0.08) !important;
    color: var(--color-primary) !important;
  }

  .nav-toggle {
    display: flex;
    cursor: pointer;
  }

  /* Dropdown in mobile */
  .dropdown-menu {
    position: static;
    transform: none !important;
    box-shadow: none;
    border: none;
    background: rgba(10,110,189,0.03);
    border-radius: var(--radius-sm);
    padding: 0;
    margin-top: 0;
    min-width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
  }

  .nav-dropdown.open .dropdown-menu {
    max-height: 500px;
    padding: var(--space-sm);
    margin-top: var(--space-sm);
    opacity: 1;
    visibility: visible;
  }

  .dropdown-menu a {
    color: var(--color-text);
    padding: 10px 12px;
    font-size: 0.95rem;
  }

  .dropdown-menu a:hover {
    background: rgba(10,110,189,0.08);
    color: var(--color-primary);
  }

  .dropdown-menu a .dropdown-icon {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  }

  /* Sections */
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .about-experience-badge {
    bottom: 10px;
    right: 10px;
    width: 100px;
    height: 100px;
  }

  .about-experience-badge .exp-number {
    font-size: 1.8rem;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

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

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

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item {
    width: 100%;
    height: 220px;
  }

  .section-header .section-title {
    font-size: 2rem;
  }

  .page-banner-content .page-title {
    font-size: 2rem;
  }

  .service-detail-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  .cta-content .cta-title {
    font-size: 1.8rem;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-md);
  }

  .nav-logo .logo-icon {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }

  .nav-logo .logo-text {
    font-size: 0.9rem;
  }

  .btn-book {
    padding: 6px 12px;
    font-size: 0.75rem;
  }

  .nav-actions {
    gap: 8px;
  }

  .section {
    padding: var(--space-2xl) 0;
  }

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

  .hero-desc {
    font-size: 1rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: var(--space-lg);
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

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

  .gallery-item {
    width: 100%;
    height: 250px;
  }

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

  .other-services-grid {
    grid-template-columns: 1fr;
  }

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

  .about-content .about-title {
    font-size: 1.6rem;
  }

  .contact-info .contact-title {
    font-size: 1.6rem;
  }

  .page-banner {
    padding: 130px 0 60px;
  }

  .page-banner-content .page-title {
    font-size: 1.6rem;
  }
}

/* Mobile Nav Overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

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

/* ---------- LOADING ANIMATION ---------- */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--color-dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s, visibility 0.5s;
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255,255,255,0.1);
  border-top-color: var(--color-accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

/* ---------- SMOOTH REVEAL ---------- */
.reveal-container {
  overflow: hidden;
}

.reveal-text {
  display: inline-block;
  animation: revealText 0.8s ease forwards;
}

@keyframes revealText {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}

/* ---------- TESTIMONIAL SECTION ---------- */
.testimonial-section {
  background: #f8fafc;
  padding: var(--space-3xl) 0;
  overflow: hidden;
}

.testimonial-slider-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.testimonial-card {
  min-width: 100%;
  padding: var(--space-2xl);
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 35px rgba(0,0,0,0.04);
  position: relative;
  border: 1px solid rgba(0,0,0,0.02);
  opacity: 0.4;
  transform: scale(0.9);
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  pointer-events: none;
}

.testimonial-card.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.testimonial-quote {
  position: absolute;
  top: 20px;
  right: 40px;
  font-family: serif;
  font-size: 8rem;
  line-height: 1;
  color: var(--color-primary);
  opacity: 0.1;
  user-select: none;
}

.testimonial-text {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #334155;
  margin-bottom: var(--space-xl);
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.author-info .author-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0b1120;
  margin-bottom: 2px;
}

.author-info .author-title {
  font-size: 0.9rem;
  color: var(--color-primary);
  font-weight: 600;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.testi-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b1120;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.testi-btn:hover {
  background: var(--gradient-primary);
  color: #ffffff;
  border-color: transparent;
  transform: scale(1.1);
}

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

.testi-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.testi-dot.active {
  background: var(--color-primary);
  width: 24px;
  border-radius: 5px;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-card {
    padding: var(--space-xl) var(--space-lg);
  }
  .testimonial-text {
    font-size: 1.1rem;
  }
}

/* ---------- HERO SLIDER SECTION ---------- */
.hero-slider-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--color-bg);
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
  display: flex;
  align-items: center;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.hero-slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 10s ease-out;
}

.hero-slide.active .hero-slide-bg img {
  transform: scale(1);
}

.hero-slide-bg .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 17, 32, 0.6); /* Darker overlay for better legibility */
  z-index: 1; /* Above image */
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  color: #fff;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out 0.3s;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-slide.active .hero-slide-content {
  opacity: 1;
  transform: translateY(0);
}

.hero-slider-controls {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 var(--space-xl);
  transform: translateY(-50%);
  z-index: 10;
  pointer-events: none;
}

.hero-slider-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  backdrop-filter: blur(5px);
  pointer-events: auto;
  transition: all 0.3s ease;
}

.hero-slider-btn:hover {
  background: var(--gradient-primary);
  border-color: transparent;
  transform: scale(1.1);
}

.hero-slider-dots {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hero-slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-slider-dot.active {
  background: var(--color-primary);
  width: 30px;
  border-radius: 6px;
}

/* Adjust stats position */
.hero-slider-section .hero-stats {
  margin-top: 60vh; /* Push stats to bottom */
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: var(--space-xl) var(--space-2xl);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

@media (max-width: 992px) {
  .hero-slider-section .hero-stats {
    margin-top: 50vh;
  }
}
@media (max-width: 768px) {
  .hero-slider-controls {
    display: none;
  }
  .hero-slider-section .hero-stats {
    margin-top: 60vh;
  }
}

/* ---------- FLOATING ICONS ---------- */
.floating-contacts {
  position: fixed;
  bottom: 30px;
  left: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.float-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  text-decoration: none;
}

.float-icon svg {
  width: 24px;
  height: 24px;
}

.whatsapp-float {
  background-color: #25d366;
}

.whatsapp-float:hover {
  background-color: #1ebe57;
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
  color: #fff;
}

.call-float {
  background-color: var(--color-primary);
}

.call-float:hover {
  background-color: var(--color-accent);
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 212, 170, 0.4);
  color: #fff;
}

@media (max-width: 768px) {
  .floating-contacts {
    bottom: 20px;
    left: 20px;
    gap: 10px;
  }
  .float-icon {
    width: 38px;
    height: 38px;
  }
  .float-icon svg {
    width: 20px;
    height: 20px;
  }
}
