/* ==========================================================================
   Belly Dental Care - Premium Healthcare UI/UX Stylesheet
   Theme: Clinical Teal (#00A896) & Deep Ocean Blue (#028090)
   Location: Yadgir, Karnataka
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Kannada:wght@400;600;700&family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  /* Primary & Accent Colors */
  --primary-teal: #00A896;
  --primary-teal-hover: #008f80;
  --primary-teal-light: #E6F7F5;
  --primary-teal-glow: rgba(0, 168, 150, 0.25);
  
  --deep-ocean: #028090;
  --deep-ocean-dark: #015c68;
  --deep-ocean-light: #EBF7F9;

  --accent-gold: #F4A261;
  --accent-gold-dark: #E76F51;
  --star-yellow: #FFB703;

  --whatsapp-green: #25D366;
  --whatsapp-hover: #1EBE57;
  --emergency-red: #E63946;

  /* Neutral Spectrum */
  --bg-main: #F8FAFC;
  --bg-card: #FFFFFF;
  --bg-dark: #0F172A;
  --bg-dark-card: #1E293B;

  --text-dark: #0F172A;
  --text-muted: #475569;
  --text-light: #94A3B8;
  --text-white: #FFFFFF;

  --border-light: #E2E8F0;
  --border-focus: #00A896;

  /* Shadows & Elevation */
  --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 12px 28px rgba(15, 23, 42, 0.12);
  --shadow-glow: 0 8px 24px rgba(0, 168, 150, 0.2);

  /* Radius & Transitions */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;

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

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: 'Plus Jakarta Sans', 'Outfit', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-main);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 70px; /* Space for mobile sticky footer */
}

@media (min-width: 992px) {
  body {
    padding-bottom: 0;
  }
}

.kannada-font {
  font-family: 'Noto Sans Kannada', sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* Typography Helpers */
.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: var(--text-muted);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  background: var(--primary-teal-light);
  color: var(--deep-ocean-dark);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(0, 168, 150, 0.2);
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Buttons System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-teal) 0%, var(--deep-ocean) 100%);
  color: var(--text-white);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 168, 150, 0.35);
  background: linear-gradient(135deg, var(--primary-teal-hover) 0%, var(--deep-ocean-dark) 100%);
}

.btn-whatsapp {
  background-color: var(--whatsapp-green);
  color: var(--text-white);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background-color: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.btn-secondary {
  background-color: var(--bg-card);
  color: var(--deep-ocean);
  border-color: var(--border-light);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: var(--primary-teal);
  color: var(--primary-teal);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.15);
  color: var(--text-white);
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}

.btn-outline-white:hover {
  background: var(--text-white);
  color: var(--deep-ocean);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

.btn-full {
  width: 100%;
}

/* Announcement Top Bar */
.top-announcement-bar {
  background: linear-gradient(90deg, #0F172A 0%, var(--deep-ocean-dark) 100%);
  color: var(--text-white);
  padding: 0.5rem 1rem;
  font-size: 0.825rem;
  text-align: center;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.announcement-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.announcement-badge {
  background: var(--emergency-red);
  color: #FFF;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
  0% { opacity: 1; }
  50% { opacity: 0.65; }
  100% { opacity: 1; }
}

.top-bar-contact {
  display: none;
  align-items: center;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .top-bar-contact {
    display: flex;
  }
}

.top-bar-contact a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition-fast);
}

.top-bar-contact a:hover {
  color: var(--primary-teal);
}

/* Main Navigation Bar */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon-wrapper {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary-teal) 0%, var(--deep-ocean) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 1.4rem;
  box-shadow: var(--shadow-glow);
}

.brand-text-wrap {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--deep-ocean-dark);
  line-height: 1.1;
  letter-spacing: -0.3px;
}

.brand-name span {
  color: var(--primary-teal);
}

.brand-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

@media (min-width: 992px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition-fast);
  position: relative;
  padding: 0.5rem 0;
}

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

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

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

.nav-right-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.kannada-welcome-pill {
  background: rgba(244, 162, 97, 0.15);
  color: #C86111;
  border: 1px solid rgba(244, 162, 97, 0.4);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  display: none;
  align-items: center;
  gap: 0.35rem;
}

@media (min-width: 640px) {
  .kannada-welcome-pill {
    display: inline-flex;
  }
}

.mobile-toggle-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
}

@media (min-width: 992px) {
  .mobile-toggle-btn {
    display: none;
  }
}

.mobile-toggle-btn span {
  width: 100%;
  height: 3px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* Mobile Nav Overlay */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 340px;
  height: 100vh;
  background: var(--bg-card);
  z-index: 1050;
  box-shadow: -8px 0 24px rgba(0,0,0,0.15);
  transition: right 0.35s ease;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mobile-nav-drawer.open {
  right: 0;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.close-drawer-btn {
  background: var(--bg-main);
  border: none;
  font-size: 1.5rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.mobile-drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-drawer-links a {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  display: block;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-light);
}

.overlay-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

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

/* HERO SECTION */
.hero-section {
  position: relative;
  padding: 3.5rem 0 4.5rem 0;
  background: radial-gradient(circle at 80% 20%, var(--primary-teal-light) 0%, #FFFFFF 60%);
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 450px;
  height: 450px;
  background: rgba(0, 168, 150, 0.08);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1.25rem;
}

.kannada-tag-badge {
  background: #FFF3E0;
  color: #D97706;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.825rem;
  border: 1px solid #FDE68A;
}

.hero-headline {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.18;
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
}

.hero-headline span.highlight {
  background: linear-gradient(120deg, var(--primary-teal) 0%, var(--deep-ocean) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subheadline {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.65;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-trust-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

.trust-rating-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.rating-stars-badge {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  color: var(--star-yellow);
  font-size: 1.1rem;
}

.trust-number {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--text-dark);
  line-height: 1;
}

.trust-subtext {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.trust-pill-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--deep-ocean-dark);
  background: var(--bg-card);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

.trust-pill-item i {
  color: var(--primary-teal);
}

/* Hero Media & Quick Card */
.hero-visual-wrapper {
  position: relative;
}

.hero-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--bg-card);
}

.hero-image-frame img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.hero-floating-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  padding: 1.1rem 1.4rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 310px;
  animation: float-slow 4s ease-in-out infinite;
}

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

.floating-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-teal-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-teal);
  font-size: 1.4rem;
  flex-shrink: 0;
}

.floating-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
}

.floating-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

@media (max-width: 576px) {
  .hero-floating-card {
    position: relative;
    bottom: 0;
    left: 0;
    margin-top: 1rem;
    max-width: 100%;
  }
}

/* SECTION 2: CLINIC HIGHLIGHTS (USPs) */
.usps-section {
  padding: 4rem 0;
  background: var(--bg-card);
}

.usps-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}

@media (min-width: 576px) {
  .usps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .usps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.usp-card {
  background: var(--bg-main);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  border: 1px solid var(--border-light);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.usp-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-teal);
}

.usp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-teal), var(--deep-ocean));
  opacity: 0;
  transition: var(--transition-fast);
}

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

.usp-icon-box {
  width: 56px;
  height: 56px;
  background: var(--primary-teal-light);
  color: var(--primary-teal);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  transition: var(--transition-fast);
}

.usp-card:hover .usp-icon-box {
  background: var(--primary-teal);
  color: var(--text-white);
  transform: scale(1.08);
}

.usp-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.usp-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* SECTION: ABOUT THE CLINIC & DOCTOR SPOTLIGHT */
.doctor-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, #F8FAFC 0%, var(--primary-teal-light) 100%);
}

.doctor-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .doctor-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

.doctor-photo-container {
  position: relative;
  text-align: center;
}

.doctor-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--bg-card);
  max-width: 440px;
  margin: 0 auto;
}

.doctor-image-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: top center;
}

.doctor-badge-floating {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--deep-ocean-dark);
  color: var(--text-white);
  padding: 0.8rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-align: left;
}

.doctor-badge-floating .years {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1;
}

.doctor-badge-floating .label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

.doctor-bio-content h3 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.doctor-degrees {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-teal);
  margin-bottom: 1.25rem;
}

.doctor-bio-text {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.doctor-highlights-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0.85rem;
  margin-bottom: 2rem;
}

@media (min-width: 576px) {
  .doctor-highlights-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.doctor-highlights-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--text-dark);
}

.doctor-highlights-list li i {
  color: var(--primary-teal);
  font-size: 1.1rem;
  background: var(--bg-card);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

/* SECTION 3: SERVICES & SPECIALTIES GRID */
.services-section {
  padding: 5rem 0;
  background: var(--bg-card);
}

.services-filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}

.filter-chip {
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius-full);
  background: var(--bg-main);
  border: 1px solid var(--border-light);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-chip:hover, .filter-chip.active {
  background: var(--primary-teal);
  color: var(--text-white);
  border-color: var(--primary-teal);
  box-shadow: var(--shadow-glow);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.75rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-teal);
}

.service-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.service-icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--primary-teal-light);
  color: var(--deep-ocean-dark);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.service-tag {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  background: rgba(2, 128, 144, 0.1);
  color: var(--deep-ocean);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.service-features-list {
  list-style: none;
  margin-bottom: 1.5rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--border-light);
}

.service-features-list li {
  font-size: 0.85rem;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.service-features-list li i {
  color: var(--primary-teal);
  font-size: 0.85rem;
}

.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.service-price-note {
  font-size: 0.8rem;
  color: var(--text-muted);

}

.service-price-note strong {
  font-size: 0.95rem;
  color: var(--deep-ocean-dark);
}

/* SECTION 6: BEFORE & AFTER TRANSFORMATIONS */
.transformations-section {
  padding: 5rem 0;
  background: var(--bg-main);
}

.transformations-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.transformation-card-main {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.transformation-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  background: var(--bg-main);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
}

.tab-btn.active, .tab-btn:hover {
  background: var(--deep-ocean);
  color: var(--text-white);
  border-color: var(--deep-ocean);
}

.before-after-container {
  position: relative;
  width: 100%;
  height: 380px;
  border-radius: var(--radius-md);
  overflow: hidden;
  user-select: none;
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .before-after-container {
    height: 450px;
  }
}

.before-after-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-after {
  z-index: 1;
}

.img-before-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
  transition: width 0.05s ease-out;
}

.img-before-wrapper .before-after-image {
  width: 100%;
  max-width: none;
}

/* Before / After Slider Handle */
.slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: var(--text-white);
  z-index: 3;
  cursor: ew-resize;
  transform: translateX(-50%);
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.handle-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: var(--primary-teal);
  color: var(--text-white);
  border: 3px solid var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.label-pill {
  position: absolute;
  bottom: 16px;
  padding: 0.35rem 0.85rem;
  background: rgba(15, 23, 42, 0.75);
  color: var(--text-white);
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  z-index: 4;
  backdrop-filter: blur(4px);
  letter-spacing: 0.5px;
}

.label-pill.before {
  left: 16px;
}

.label-pill.after {
  right: 16px;
}

.transformation-meta {
  margin-top: 1.5rem;
  text-align: center;
}

.transformation-meta h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
}

.transformation-meta p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* SECTION 4: TESTIMONIALS SLIDER */
.testimonials-section {
  padding: 5rem 0;
  background: var(--bg-card);
}

.google-review-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  background: var(--bg-main);
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-full);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--border-light);
}

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

.testimonials-slider-container {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  overflow: hidden;
  padding: 1rem 0 3rem 0;
}

.testimonials-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
}

.testimonial-card-slide {
  min-width: 100%;
  padding: 0 0.5rem;
}

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

.testimonial-card {
  background: var(--bg-main);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-teal);
}

.testimonial-stars {
  color: var(--star-yellow);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  display: flex;
  gap: 0.2rem;
}

.testimonial-text {
  font-size: 0.98rem;
  color: var(--text-dark);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.reviewer-profile {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.reviewer-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-teal), var(--deep-ocean));
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.reviewer-info h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
}

.reviewer-info span {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.verified-badge {
  color: #10B981;
  font-weight: 600;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background: var(--bg-card);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

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

.slider-dots {
  display: flex;
  gap: 0.5rem;
}

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

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

/* SECTION 5: INSTANT WHATSAPP BOOKING FORM */
.booking-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #0F172A 0%, var(--deep-ocean-dark) 100%);
  color: var(--text-white);
  position: relative;
  overflow: hidden;
}

.booking-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: rgba(0, 168, 150, 0.15);
  border-radius: 50%;
  filter: blur(80px);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 992px) {
  .booking-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

.booking-info-box h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.booking-info-box p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  line-height: 1.65;
}

.booking-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.booking-perks li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.booking-perks li i {
  width: 32px;
  height: 32px;
  background: rgba(37, 211, 102, 0.2);
  color: var(--whatsapp-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-form-card {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  padding: 2.25rem;
  border-radius: var(--radius-lg);
  color: var(--text-dark);
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.booking-form-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--deep-ocean-dark);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.booking-form-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.form-group-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 576px) {
  .form-group-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form-field label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
}

.input-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: var(--bg-main);
  font-size: 0.925rem;
  color: var(--text-dark);
  transition: var(--transition-fast);
}

.input-control:focus {
  outline: none;
  border-color: var(--primary-teal);
  background: #FFF;
  box-shadow: 0 0 0 4px var(--primary-teal-light);
}

/* SECTION 7: LOCATION, MAP & FAQ */
.location-faq-section {
  padding: 5rem 0;
  background: var(--bg-main);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (min-width: 992px) {
  .location-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.contact-info-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.info-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-teal-light);
  color: var(--primary-teal);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.info-detail h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}

.info-detail p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.map-container {
  height: 100%;
  min-height: 360px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

/* FAQ Accordion */
.faq-wrapper {
  max-width: 860px;
  margin: 0 auto;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item.active {
  border-color: var(--primary-teal);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  gap: 1rem;
}

.faq-question i {
  color: var(--primary-teal);
  transition: transform 0.3s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out, padding 0.35s ease;
  padding: 0 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  max-height: 250px;
  padding: 0 1.5rem 1.25rem 1.5rem;
}

/* FOOTER */
.main-footer {
  background: #0B132B;
  color: rgba(255, 255, 255, 0.85);
  padding: 4rem 0 2rem 0;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 576px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  }
}

.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

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

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  transition: var(--transition-fast);
}

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

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.825rem;
  color: rgba(255, 255, 255, 0.6);
}

/* STICKY MOBILE CONVERSION BAR */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-light);
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  z-index: 990;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.1);
}

@media (min-width: 992px) {
  .mobile-sticky-bar {
    display: none;
  }
}

.sticky-action-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 0.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
}

/* MODAL BOOKING DIALOG */
.modal-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 1rem;
}

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

.modal-content-box {
  background: var(--bg-card);
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-wrapper.active .modal-content-box {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--bg-main);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--text-muted);
}

/* Toast Notifications */
.toast-notification {
  position: fixed;
  bottom: 90px;
  right: 20px;
  background: var(--text-dark);
  color: var(--text-white);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 3000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@media (min-width: 992px) {
  .toast-notification {
    bottom: 30px;
  }
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  color: var(--whatsapp-green);
  font-size: 1.25rem;
}
