/* 
 * Premium Gynecologist Clinic - Main CSS 
 * Fonts: Playfair Display (headings) + Poppins (body)
 */

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

/* ==========================================================================
   Reset & Base
   ========================================================================== */
:root {
  /* Colors */
  --primary: #9B4D68;
  --primary-dark: #74364D;
  --secondary: #F7E8ED;
  --accent: #D9A6B5;
  --background: #FFFDFC;
  --white: #FFFFFF;
  --dark: #24232A;
  --text: #5E5B62;
  --border: #E9DDE1;
  --success: #2E7D32;
  --warning: #F57F17;
  --danger: #D32F2F;

  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(36, 35, 42, 0.05);
  --shadow-md: 0 8px 24px rgba(36, 35, 42, 0.08);
  --shadow-lg: 0 16px 48px rgba(155, 77, 104, 0.12);

  /* Utilities */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --transition: all 0.3s ease-in-out;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

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

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

ul {
  list-style: none;
}

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

/* Container */
.container {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Utilities */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-white { color: var(--white); }
.mb-1 { margin-bottom: var(--space-xs); }
.mb-2 { margin-bottom: var(--space-sm); }
.mb-3 { margin-bottom: var(--space-md); }
.mb-4 { margin-bottom: var(--space-lg); }

/* Flip Phone Icons Horizontally */
.fa-phone,
.fa-phone-alt,
.fa-phone-flip,
i[class*="fa-phone"] {
  transform: scaleX(-1);
  display: inline-block;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--dark);
  margin-bottom: var(--space-sm);
}

.section-subtitle {
  font-family: var(--font-body);
  color: var(--text);
  max-width: 600px;
  margin: 0 auto var(--space-lg);
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-family: var(--font-body);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-align: center;
  font-size: 1rem;
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.875rem;
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

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

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

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

/* ==========================================================================
   Top Bar
   ========================================================================== */
.top-bar {
  background-color: var(--dark);
  color: var(--white);
  font-size: 0.875rem;
  padding: 8px 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-links {
  display: flex;
  gap: 20px;
}

.top-bar-link {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-link:hover {
  color: var(--accent);
}

.top-bar-whatsapp {
  color: #25D366;
}

.top-bar-whatsapp:hover {
  color: #128C7E;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1050;
  transition: var(--transition);
  padding: 15px 0;
}

.site-header.scrolled {
  padding: 10px 0;
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.site-logo-img {
  height: 72px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  display: block;
  transition: var(--transition);
}

.logo-icon {
  width: 42px;
  height: 42px;
  background-color: var(--secondary);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-clinic {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary);
  line-height: 1.1;
  white-space: nowrap;
}

.logo-doctor {
  font-size: 0.75rem;
  color: var(--text);
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
}

.main-nav .nav-list {
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--text);
  padding: 8px 2px;
  position: relative;
  white-space: nowrap;
}

.header-cta {
  padding: 10px 20px;
  font-size: 0.88rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.has-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--white);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-sm);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  padding: 10px 0;
  z-index: 100;
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: var(--text);
  transition: var(--transition);
}

.dropdown-menu li a:hover {
  background-color: var(--secondary);
  color: var(--primary);
}

.mobile-nav-header,
.mobile-nav-footer {
  display: none;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--dark);
  position: absolute;
  transition: var(--transition);
}

.mobile-toggle span:nth-child(1) { top: 0; }
.mobile-toggle span:nth-child(2) { top: 11px; }
.mobile-toggle span:nth-child(3) { top: 22px; }

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero,
.hero-slider-section {
  min-height: 85vh;
  background: linear-gradient(135deg, var(--white) 0%, var(--secondary) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-slider-container {
  width: 100%;
  position: relative;
}

.hero-slide {
  display: none;
  opacity: 0;
  transform: translateX(25px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  padding: 24px 0 50px;
}

.hero-slide.active {
  display: block;
  opacity: 1;
  transform: translateX(0);
}

.hero .container,
.hero-slide .container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.hero-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  color: var(--primary);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  z-index: 25;
  transition: var(--transition);
}

.hero-nav-btn:hover {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.08);
}

.hero-nav-prev {
  left: 20px;
}

.hero-nav-next {
  right: 20px;
}

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

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(155, 77, 104, 0.25);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

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

.hero-doctor-profile-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  padding: 10px 18px 10px 12px;
  border-radius: 50px;
  box-shadow: 0 4px 18px rgba(155, 77, 104, 0.1);
  border: 1px solid rgba(155, 77, 104, 0.15);
  margin-bottom: 1.25rem;
  width: fit-content;
}

.doctor-avatar-wrap {
  position: relative;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}

.doctor-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}

.online-indicator {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 12px;
  height: 12px;
  background: #27ae60;
  border: 2px solid var(--white);
  border-radius: 50%;
}

.doctor-profile-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.doctor-name-title {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.doctor-name-title strong {
  font-size: 0.98rem;
  color: var(--dark);
  font-weight: 700;
  line-height: 1.2;
}

.doctor-deg {
  font-size: 0.76rem;
  background: rgba(155, 77, 104, 0.1);
  color: var(--primary);
  padding: 2px 8px;
  border-radius: 12px;
  font-weight: 600;
}

.doctor-trust-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  margin-top: 2px;
}

.doctor-trust-rating .stars {
  color: #f39c12;
  font-size: 0.75rem;
}

.rating-num {
  font-weight: 700;
  color: var(--dark);
}

.rating-count {
  color: var(--text);
  font-size: 0.76rem;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  font-weight: 600;
  background: rgba(155, 77, 104, 0.1);
  padding: 6px 16px;
  border-radius: var(--radius-full);
}

.hero-meta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: var(--space-sm);
}

.hero-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 193, 7, 0.12);
  color: #b78103;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid rgba(255, 193, 7, 0.25);
}

.hero-rating-badge .stars {
  color: #f39c12;
  font-size: 0.78rem;
  display: inline-flex;
  gap: 2px;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: var(--space-sm);
}

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

.hero-description {
  font-size: 1.125rem;
  color: var(--text);
  margin-bottom: 1.25rem;
  max-width: 90%;
}

.hero-specialties-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1.75rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  color: var(--dark);
  border: 1px solid var(--border);
  padding: 7px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.chip:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.chip i {
  color: var(--primary);
  transition: var(--transition);
}

.chip:hover i {
  color: var(--white);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: var(--white);
  border: 2px solid #25D366;
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
  border-color: #128C7E;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.hero-trust {
  display: flex;
  gap: 24px;
  border-top: 1px solid var(--border);
  padding-top: var(--space-md);
}

.hero-trust .trust-item,
.hero-trust div {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: var(--dark);
}

/* ==========================================================================
   Desktop vs Mobile Hero Display Controls
   ========================================================================== */
@media (min-width: 992px) {
  .mobile-only-hero,
  #mobileHeroSection,
  section.mobile-hero-section {
    display: none !important;
  }
  .desktop-only-hero,
  #heroSliderSection,
  section.hero-slider-section {
    display: flex !important;
  }
}

@media (max-width: 991px) {
  .desktop-only-hero,
  #heroSliderSection,
  section.hero-slider-section {
    display: none !important;
  }
  .mobile-only-hero,
  #mobileHeroSection,
  section.mobile-hero-section {
    display: block !important;
  }
}

/* ==========================================================================
   Dedicated Mobile Hero Section Styles
   ========================================================================== */
.mobile-hero-section {
  padding: 4px 10px 18px;
  background: radial-gradient(circle at 50% 0%, rgba(216, 27, 96, 0.1) 0%, rgba(247, 232, 237, 0.55) 60%, #FFFDFC 100%);
  position: relative;
  overflow: hidden;
}

.mobile-hero-container {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

.m-hero-card {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(216, 27, 96, 0.14);
  border-radius: 24px;
  padding: 6px 12px 14px;
  box-shadow: 0 14px 40px rgba(155, 77, 104, 0.1);
}

.m-doctor-banner-wrap {
  position: relative;
  width: 100%;
  margin-bottom: 16px;
}

.m-doctor-image-frame {
  position: relative;
  width: 100%;
  height: 280px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(155, 77, 104, 0.2);
  border: 3px solid #ffffff;
  background: var(--secondary);
}

.m-doctor-large-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.m-doctor-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.85) 100%);
  pointer-events: none;
}

.m-photo-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--dark);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 5px;
  z-index: 5;
}

.m-photo-exp {
  top: 12px;
  left: 12px;
}

.m-photo-exp i {
  color: var(--primary);
}

.m-photo-rating {
  top: 12px;
  right: 12px;
}

.m-doctor-photo-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 16px;
  color: #ffffff;
  text-align: left;
  z-index: 5;
}

.m-photo-name-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.m-photo-name-row h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

.m-verified-tag {
  font-size: 0.72rem;
  background: rgba(39, 174, 96, 0.9);
  color: #ffffff;
  padding: 3px 8px;
  border-radius: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.m-photo-sub {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 2px 0 0;
  line-height: 1.3;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

.m-doctor-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  width: 100%;
}

.m-doctor-title-row h2 {
  font-size: 1.02rem;
  color: var(--dark);
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.m-verified-pill {
  font-size: 0.7rem;
  background: rgba(39, 174, 96, 0.1);
  color: #27ae60;
  padding: 2px 7px;
  border-radius: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.m-doctor-qual {
  font-size: 0.78rem;
  color: #666;
  margin: 2px 0 4px;
  line-height: 1.2;
}

.m-doctor-qual strong {
  color: var(--primary);
}

.m-doctor-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
}

.m-stars {
  color: #f39c12;
  font-size: 0.75rem;
}

.m-score {
  color: var(--dark);
  font-weight: 700;
}

.m-reviews {
  color: #777;
  font-size: 0.74rem;
}

.m-hero-body {
  text-align: center;
}

.m-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--primary);
  background: rgba(155, 77, 104, 0.08);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.m-hero-title {
  font-size: 1.68rem;
  line-height: 1.22;
  color: var(--dark);
  font-weight: 700;
  margin-bottom: 8px;
  font-family: var(--font-heading);
}

.m-hero-title em {
  font-style: normal;
  color: var(--primary);
  background: linear-gradient(135deg, var(--primary) 0%, #D81B60 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.m-hero-subtext {
  font-size: 0.86rem;
  line-height: 1.5;
  color: #555;
  margin: 0 auto 14px;
}

.m-chips-carousel {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 2px 0 6px;
  margin-bottom: 16px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.m-chips-carousel::-webkit-scrollbar {
  display: none;
}

.m-chip-item {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #ffffff;
  color: var(--dark);
  border: 1px solid rgba(155, 77, 104, 0.16);
  padding: 6px 13px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.m-chip-item i {
  color: var(--primary);
}

.m-hero-actions {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 14px;
}

.m-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 18px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.m-btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(155, 77, 104, 0.28);
}

.m-btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.28);
}

.m-trust-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 10px;
  border-top: 1px dashed rgba(155, 77, 104, 0.16);
  padding-top: 12px;
}

.m-trust-chip {
  font-size: 0.76rem;
  font-weight: 500;
  color: #444;
  background: rgba(155, 77, 104, 0.05);
  padding: 4px 10px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1px solid rgba(155, 77, 104, 0.08);
}

.m-trust-chip i {
  color: var(--primary);
  font-size: 0.8rem;
}

.hero-image-wrap {
  position: relative;
}

.hero-image-container {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  max-height: 480px;
  background: var(--secondary);
}

.hero-image-container::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border: 2px solid var(--accent);
  border-radius: 32px;
  z-index: -1;
}

.hero-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-float-card {
  position: absolute;
  background: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 16px;
  animation: float 4s ease-in-out infinite;
  z-index: 10;
}

.float-card-years {
  top: 40px;
  right: -30px;
  animation-delay: 0s;
}

.float-card-patients {
  bottom: 40px;
  left: -30px;
  animation-delay: 2s;
}

.float-icon {
  width: 48px;
  height: 48px;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.float-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--dark);
  line-height: 1;
}

.float-text span {
  font-size: 0.875rem;
  color: var(--text);
}

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

/* ==========================================================================
   Quick Appointment Section
   ========================================================================== */
.quick-appointment {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 30px;
  margin-top: 0;
  position: relative;
  z-index: 20;
}

.appointment-form {
  display: grid;
  grid-template-columns: repeat(5, 1fr) auto;
  gap: 16px;
  align-items: end;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.form-control {
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
  background: var(--background);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(155, 77, 104, 0.1);
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-section {
  padding: var(--space-xl) 0;
}

.about-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.about-image-wrap img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.about-image-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--primary);
  color: var(--white);
  padding: 30px;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 5px solid var(--white);
}

.about-image-badge span:first-child {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.about-image-badge span:last-child {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.qualification-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: var(--space-md) 0;
}

.qualification-card {
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--primary);
}

.qualification-card h4 {
  color: var(--primary);
  margin-bottom: 4px;
}

.qualification-card p {
  font-size: 0.875rem;
  color: var(--text);
  margin: 0;
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services-section {
  background-color: var(--secondary);
  padding: var(--space-xl) 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: var(--space-lg);
}

.service-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
}

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

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--primary);
  color: var(--white);
}

.service-card h3 {
  margin-bottom: 15px;
}

.service-card p {
  color: var(--text);
  margin-bottom: 20px;
}

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

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

/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */
.why-section,
.why-choose-us-section {
  padding: var(--space-xl) 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
  width: 100%;
  display: block;
}

.why-grid,
.why-choose-us-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  gap: 50px;
  width: 100%;
}

@media (max-width: 991px) {
  .why-grid,
  .why-choose-us-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.why-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 480px;
  border-radius: var(--radius-md);
}

.why-content-col {
  padding: 20px 0;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 30px;
}

.why-feature {
  display: flex;
  gap: 20px;
}

.why-icon {
  width: 54px;
  height: 54px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--primary);
  flex-shrink: 0;
}

/* ==========================================================================
   Timeline Section (Women's Health Journey)
   ========================================================================== */
.timeline-section {
  padding: 5rem 0;
  background: var(--secondary);
  position: relative;
  overflow: hidden;
}

.timeline-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.timeline-items {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  position: relative;
  padding: 15px 0 10px;
}

/* Connecting continuous track line across all 6 stage dots on desktop */
.timeline-items::before {
  content: '';
  position: absolute;
  top: 41px;
  left: calc(100% / 12);
  right: calc(100% / 12);
  height: 3px;
  background: linear-gradient(90deg, rgba(155, 77, 104, 0.25) 0%, var(--primary) 50%, rgba(155, 77, 104, 0.25) 100%);
  z-index: 1;
  border-radius: 2px;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.timeline-item::after {
  display: none;
}

.timeline-dot {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  z-index: 3;
  margin-bottom: 18px;
  border: 4px solid var(--white);
  box-shadow: 0 4px 14px rgba(155, 77, 104, 0.25);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
  flex-shrink: 0;
}

.timeline-item:hover .timeline-dot {
  transform: scale(1.15);
  box-shadow: 0 8px 22px rgba(155, 77, 104, 0.4);
}

.timeline-card {
  background: var(--white);
  padding: 20px 12px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(155, 77, 104, 0.1);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  min-height: 175px;
  box-sizing: border-box;
}

.timeline-item:hover .timeline-card {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(155, 77, 104, 0.14);
  border-color: rgba(155, 77, 104, 0.35);
}

.timeline-stage-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--primary);
  background: rgba(155, 77, 104, 0.09);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.timeline-card h4 {
  margin: 0 0 6px;
  color: var(--primary-dark);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.3;
}

.timeline-card p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.5;
  color: #666;
}

/* ==========================================================================
   Pregnancy Care Section
   ========================================================================== */
.pregnancy-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: var(--space-xl) 0;
}

.pregnancy-section .section-title,
.pregnancy-section .section-subtitle,
.pregnancy-section .section-label {
  color: var(--white);
}

.pregnancy-section .section-label {
  background: rgba(255,255,255,0.2);
}

.pregnancy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.pregnancy-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px 30px;
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.pregnancy-card h3 {
  color: var(--white);
}

.pregnancy-card p {
  color: rgba(255, 255, 255, 0.8);
}

.pregnancy-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

/* ==========================================================================
   Blog Section
   ========================================================================== */
.blog-section {
  padding: var(--space-xl) 0;
  background: var(--white);
}

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

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

.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.blog-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.blog-category {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--primary);
  color: var(--white);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.blog-content {
  padding: 24px;
}

.blog-meta {
  display: flex;
  gap: 15px;
  font-size: 0.875rem;
  color: var(--text);
  margin-bottom: 10px;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-meta i {
  color: var(--primary);
}

.blog-title {
  font-size: 1.25rem;
  margin-bottom: 15px;
}

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

.blog-link {
  font-weight: 600;
  color: var(--dark);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.blog-link i {
  transition: var(--transition);
}

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

.blog-link:hover i {
  transform: translateX(5px);
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials-section {
  padding: var(--space-xl) 0;
  background: var(--secondary);
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
  padding: 10px 0;
  width: 100%;
}

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

.testimonial-slide {
  min-width: 100%;
  width: 100%;
  padding: 0 15px;
  box-sizing: border-box;
  flex-shrink: 0;
  display: flex;
}

@media (min-width: 768px) {
  .testimonial-slide { 
    min-width: 50%; 
    width: 50%;
  }
}

@media (min-width: 992px) {
  .testimonial-slide { 
    min-width: 33.3333%; 
    width: 33.3333%;
  }
}

.testimonial-card {
  background: var(--white);
  padding: 35px 30px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.testimonial-stars {
  color: #FFC107;
  margin-bottom: 20px;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 30px;
  font-size: 1.125rem;
}

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

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  margin: 0;
  font-size: 1.125rem;
}

.author-info span {
  font-size: 0.875rem;
  color: var(--text);
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.slider-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.slider-arrow:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

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

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

.slider-dot.active {
  background: var(--primary);
  width: 20px;
  border-radius: 5px;
}

/* ==========================================================================
   Statistics Section
   ========================================================================== */
.stats-section {
  background: var(--primary);
  padding: 80px 0;
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

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

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1;
}

.stat-label {
  font-size: 1.125rem;
  opacity: 0.9;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
  padding: var(--space-xl) 0;
  background: var(--white);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: 600;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  background: var(--background);
  transition: var(--transition);
}

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

.faq-icon {
  transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: var(--white);
}

.faq-answer.active {
  padding: 20px 25px;
  max-height: 300px;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(rgba(36, 35, 42, 0.8), rgba(36, 35, 42, 0.8)), url('../images/cta-bg.jpg') center/cover;
  text-align: center;
  color: var(--white);
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 20px;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-section {
  padding: var(--space-xl) 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info {
  margin-bottom: 40px;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-details h4 {
  margin-bottom: 5px;
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.map-container {
  width: 100%;
  height: 300px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--dark);
  color: #a0a0a0;
}

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

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

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo-img {
  height: 85px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  display: inline-block;
  background: rgba(255, 255, 255, 0.95);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.footer-tagline {
  color: var(--white);
  font-size: 0.95rem;
  margin: 15px 0 5px;
}

.footer-motto {
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 500;
}

.footer-about {
  margin-bottom: 20px;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social a:hover {
  background: var(--primary);
}

.footer-title {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary);
}

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

.footer-links a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '\f105';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 0.75rem;
  color: var(--primary);
}

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

.footer-contact li {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-contact i {
  color: var(--primary);
  font-size: 1.25rem;
  margin-top: 5px;
}

.footer-bottom {
  background: #1a191f;
  padding: 20px 0;
  text-align: center;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-disclaimer {
  font-size: 0.75rem;
  opacity: 0.6;
  margin-top: 10px;
}

/* ==========================================================================
   Floating Elements
   ========================================================================== */
.float-btn {
  position: fixed;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  box-shadow: var(--shadow-md);
  z-index: 99;
  transition: var(--transition);
}

.float-btn:hover {
  transform: scale(1.1);
}

.float-whatsapp {
  bottom: 30px;
  right: 30px;
  background: #25D366;
}

.float-call {
  bottom: 100px;
  right: 30px;
  background: var(--primary);
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 98;
  border: none;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary-dark);
}

.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
  justify-content: space-around;
  padding: 10px 0;
}

.mobile-bottom-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.75rem;
  color: var(--text);
  gap: 5px;
}

.mobile-bottom-nav a i {
  font-size: 1.25rem;
}

.mobile-bottom-nav a.active, .mobile-bottom-nav a:hover {
  color: var(--primary);
}

/* ==========================================================================
   Scroll Reveal Animations
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

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

@media (prefers-reduced-motion) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ==========================================================================
   Page Header
   ========================================================================== */
.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.page-header h1 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 15px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 0.875rem;
}

.breadcrumb a {
  color: rgba(255,255,255,0.8);
}

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

.breadcrumb span {
  color: var(--white);
}

/* ==========================================================================
   Missing utility classes
   ========================================================================== */

/* Top bar layout */
.top-bar-left {
  display: flex;
  gap: 20px;
  align-items: center;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-bar-hours {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.8);
}

/* Mobile nav overlay */
.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 999;
}

.mobile-overlay.active {
  display: block;
}

/* Footer bottom links */
.footer-bottom-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-bottom-links a {
  color: #a0a0a0;
  font-size: 0.875rem;
  transition: var(--transition);
}

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

.footer-copy {
  font-size: 0.875rem;
  color: #a0a0a0;
  margin: 0;
}
