/* =========================================
   DESIGN VARIABLES
   ========================================= */
:root {
  /* Colors */
  --primary-blue: #0d3b66;
  --secondary-teal: #2a9d8f;
  --accent-gold: #c6a75e;
  --text-dark: #1a1a1a;
  --text-muted: #4a4a4a;
  --bg-white: #ffffff;
  --bg-light-grey: #f8f9fa;
  --border-color: #e2e8f0;

  /* Typography */
  --font-heading: "Poppins", sans-serif;
  --font-body: "Inter", sans-serif;

  /* Effects */
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 20px rgba(13, 59, 102, 0.08);
  --shadow-hover: 0 15px 30px rgba(13, 59, 102, 0.15);
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* =========================================
   GLOBAL RESET & BASE STYLES
   ========================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 60px 0;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 24px;
  position: relative;
}

.section-title span {
  color: var(--secondary-teal);
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.btn-primary {
  background-color: var(--primary-blue);
  color: var(--bg-white);
  box-shadow: var(--shadow-sm);
}

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

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

.btn-outline:hover {
  background-color: var(--bg-white);
  color: var(--primary-blue);
  transform: translateY(-3px);
}

/* Floating Buttons */
.floating-btn-group {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.float-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: var(--transition-smooth);
}

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

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

.wa-btn {
  background-color: #25d366;
}

/* =========================================
   HEADER / NAVIGATION
   ========================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: var(--transition-smooth);
  padding: 15px 0;
}

.header.scrolled {
  padding: 10px 0;
  background-color: var(--bg-white);
}

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

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

.logo-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--primary-blue);
  line-height: 1;
}

.logo-title {
  font-size: 0.8rem;
  color: var(--secondary-teal);
  font-weight: 500;
  margin-top: 4px;
}

.nav-list {
  display: flex;
  gap: 30px;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary-blue);
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-gold);
  transition: var(--transition-fast);
}

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

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 550px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-radius: 8px;
  padding: 15px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s ease;
  z-index: 1000;
  border: 1px solid #f0f0f0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
}

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

.dropdown-menu li {
  list-style: none;
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--text-dark);
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
  background-color: var(--bg-light);
  color: var(--primary-blue);
  border-left: 3px solid var(--primary-blue);
  padding-left: 25px;
}

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

.nav-link.active {
  color: var(--secondary-teal);
}

.hamburger {
  display: none;
  font-size: 1.5rem;
  color: var(--primary-blue);
  cursor: pointer;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  padding-top: 80px; /* Offset for header */
}

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

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(13, 59, 102, 0.9) 0%,
    rgba(13, 59, 102, 0.6) 50%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

.hero-content {
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-text-wrap {
  max-width: 650px;
  color: var(--bg-white);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--bg-white);
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero-title span {
  color: var(--accent-gold);
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 40px;
  opacity: 0.9;
}

.hero-subtitle strong {
  font-weight: 600;
  color: var(--secondary-teal);
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

/* =========================================
   ABOUT SECTION
   ========================================= */
.about {
  background-color: var(--bg-white);
}

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

.image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background-color: var(--accent-gold);
  color: var(--primary-blue);
  padding: 30px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 180px;
  box-shadow: var(--shadow-md);
  border: 8px solid var(--bg-white);
  font-family: var(--font-heading);
}

.exp-years {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.exp-text {
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
  margin-top: 5px;
}

.about-bio {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.highlight-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.highlight-card {
  background-color: var(--bg-light-grey);
  padding: 20px;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  transition: var(--transition-fast);
  border: 1px solid var(--border-color);
}

.highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
  border-color: var(--secondary-teal);
}

.hc-icon {
  font-size: 1.5rem;
  color: var(--secondary-teal);
  background-color: rgba(42, 157, 143, 0.1);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hc-text {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--primary-blue);
  font-size: 1rem;
  align-self: center;
}

/* =========================================
   ANIMATIONS
   ========================================= */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  animation: fadeInSide 1s ease forwards;
  animation-delay: 0.3s;
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  animation: fadeInSide 1s ease forwards;
  animation-delay: 0.5s;
}

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

@keyframes fadeInSide {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* =========================================
   RESPONSIVE QUERIES
   ========================================= */
@media (max-width: 992px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

@media (max-width: 768px) {
  .nav-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-white);
    flex-direction: column;
    padding: 20px 24px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    gap: 15px;
    z-index: 999;
  }

  .nav-list.active {
    display: flex;
  }

  .nav-item-dropdown .dropdown-menu {
    position: static;
    min-width: 100%;
    box-shadow: none;
    border: none;
    padding: 10px 0 10px 15px;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    grid-template-columns: 1fr;
  }

  .nav-item-dropdown:hover .dropdown-menu {
    display: grid;
  }

  .hamburger {
    display: block;
  }

  .header-action {
    display: none;
  }

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

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

  .highlight-cards {
    grid-template-columns: 1fr;
  }

  .experience-badge {
    width: 140px;
    height: 140px;
    bottom: -15px;
    left: -15px;
  }

  .exp-years {
    font-size: 2rem;
  }
}

/* =========================================
   UTILITIES
   ========================================= */
.text-center { text-align: center; }
.bg-light { background-color: var(--bg-light-grey); }
.section-header {
    margin-bottom: 50px;
}
.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 10px auto 0;
}
.section-header:not(.text-center) {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.border-bottom {
    border-bottom: 1px solid var(--border-color);
}

/* =========================================
   STATISTICS SECTION
   ========================================= */
.statistics {
    padding: 60px 0;
    background-color: var(--bg-white);
}

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

.stat-card {
    padding: 20px;
}

.stat-number {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.stat-icon {
    font-size: 1.5rem;
    color: var(--accent-gold);
    opacity: 0.7;
    margin-bottom: 15px; /* Offset to match the image visually */
}

.stat-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 500;
}

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   SERVICES SECTION
   ========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--secondary-teal);
    transform: scaleX(0);
    transition: var(--transition-smooth);
    transform-origin: left;
}

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

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

.service-icon {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 25px;
    display: inline-block;
}

.service-card:hover .service-icon {
    color: var(--secondary-teal);
    transform: scale(1.1);
    transition: var(--transition-fast);
}

.service-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--primary-blue);
    font-family: var(--font-heading);
    font-size: 0.95rem;
}

.service-link i {
    transition: transform var(--transition-fast);
}

.service-link:hover {
    color: var(--secondary-teal);
}
.service-link:hover i {
    transform: translateX(5px);
}

/* =========================================
   EVENTS SECTION
   ========================================= */
.events-carousel-wrapper {
    overflow: hidden;
    padding: 10px 0;
    position: relative;
    cursor: grab;
}

.events-carousel-wrapper:active {
    cursor: grabbing;
}

.events-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.event-card {
    min-width: 350px;
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

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

.event-img {
    position: relative;
    height: 220px;
}

.event-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

.event-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-gold);
    color: var(--primary-blue);
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    font-family: var(--font-heading);
    box-shadow: var(--shadow-sm);
}

.event-content {
    padding: 24px;
}

.event-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.event-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.carousel-nav {
    display: flex;
    gap: 15px;
}

.nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    background: transparent;
    color: var(--primary-blue);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.nav-btn:hover {
    background: var(--primary-blue);
    color: var(--bg-white);
    border-color: var(--primary-blue);
}

@media (max-width: 768px) {
    .section-header:not(.text-center) {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .event-card {
        min-width: 280px;
    }
}

.mt-4 {
    margin-top: 40px;
}
.btn-outline-dark {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    background: transparent;
}
.btn-outline-dark:hover {
    background: var(--primary-blue);
    color: var(--bg-white);
}

/* =========================================
   VIDEO GALLERY SECTION
   ========================================= */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.video-card {
    cursor: pointer;
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
}

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

.video-thumbnail {
    position: relative;
    height: 200px;
}

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

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(13, 59, 102, 0.8);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition-fast);
}

.video-card:hover .play-overlay {
    background: var(--secondary-teal);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-title {
    padding: 20px;
    font-size: 1.1rem;
    color: var(--text-dark);
    text-align: center;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    width: 80%;
    max-width: 900px;
    aspect-ratio: 16/9;
    position: relative;
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 3rem;
    color: var(--bg-white);
    cursor: pointer;
    transition: color var(--transition-fast);
    z-index: 2001;
}

.close-lightbox:hover {
    color: var(--secondary-teal);
}

/* =========================================
   PATIENT REVIEWS SECTION
   ========================================= */
.reviews {
    background-color: var(--bg-white);
    padding: 80px 0;
}

.happy-patients-title {
    position: relative;
    display: inline-block;
    z-index: 2;
    color: #000;
}
.happy-patients-title::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #a7afea;
    border-radius: 50%;
    top: -5px;
    left: -25px;
    z-index: -1;
}
.happy-patients-title::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: #a7afea;
    border-radius: 50%;
    bottom: 5px;
    right: -20px;
    z-index: -1;
}

.big-quote-mark {
    font-size: 8rem;
    color: #e2e8f0;
    line-height: 0.8;
    margin-bottom: 20px;
    margin-top: 20px;
}

.reviews-slider-container {
    overflow: hidden;
    position: relative;
    padding: 10px 0 20px 0;
}

.reviews-track {
    display: flex;
    gap: 30px;
}

.review-card {
    min-width: 480px;
    width: 480px;
    max-width: 90vw;
    background: var(--bg-white);
    padding: 40px 45px;
    border-radius: 8px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    white-space: normal;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.review-stars {
    color: #FACC15;
    font-size: 1.1rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.review-text {
    color: #334155;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 30px;
    flex-grow: 1;
    word-wrap: break-word;
    white-space: normal;
}

.review-patient-name {
    color: #94a3b8;
    font-size: 1rem;
    font-weight: 500;
}

.reviews-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 30px;
}

.reviews-pagination .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #cbd5e0;
    transition: background-color 0.3s ease;
}

.reviews-pagination .dot.active {
    background-color: #718096;
}

@media (max-width: 768px) {
    .review-card {
        min-width: 300px;
        padding: 25px;
    }
    .big-quote-mark {
        font-size: 6rem;
    }
}

/* =========================================
   FAQ SECTION
   ========================================= */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: var(--transition-fast);
}

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

.faq-question {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: var(--bg-white);
    transition: var(--transition-fast);
}

.faq-question h4 {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin: 0;
    pointer-events: none;
}

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

.faq-toggle {
    color: var(--secondary-teal);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    pointer-events: none;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: var(--primary-blue);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: var(--bg-light-grey);
}

.faq-answer p {
    padding: 0 24px 24px 24px;
    color: var(--text-muted);
    font-size: 1rem;
    margin: 0;
}

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.contact-map {
    position: relative;
    min-height: 500px;
}

.contact-info-cards {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-top: 1px solid var(--border-color);
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-card i {
    color: var(--secondary-teal);
    font-size: 1.3rem;
    margin-top: 3px;
}

.info-card h5 {
    color: var(--primary-blue);
    font-size: 1rem;
    margin-bottom: 5px;
}

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

.contact-form-container {
    padding: 50px;
    background: var(--bg-white);
}

.form-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--primary-blue);
}

.form-group {
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--bg-light-grey);
    transition: var(--transition-fast);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--secondary-teal);
    background: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(42, 157, 143, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background-color: var(--primary-blue);
    color: var(--bg-white);
    padding-top: 80px;
}

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

.footer-logo .logo-name {
    color: var(--bg-white);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    margin: 20px 0;
    font-size: 0.95rem;
}

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

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

.social-links a:hover {
    background: var(--secondary-teal);
    transform: translateY(-3px);
}

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

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-gold);
}

.footer-links li,
.footer-contact li {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    padding-left: 15px;
}

.footer-links a::before {
    content: '›';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary-teal);
    font-weight: bold;
}

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

.footer-contact li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--secondary-teal);
    margin-top: 5px;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a:hover {
    color: var(--secondary-teal);
}

.schema-text {
    font-size: 0.8rem !important;
    opacity: 0.5;
    margin-top: 5px;
}

@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    .contact-form-container {
        padding: 30px 20px;
    }
    .footer-container {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   NEW SERVICE PAGE LAYOUTS
   ========================================= */

/* Advanced Treatments Layout */
.advanced-treatments-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.treatment-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.treatment-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.treatment-icon.blue { background-color: #3b82f6; } /* Tailwind blue-500 */
.treatment-icon.teal { background-color: #0ea5e9; } /* Tailwind sky-500 */
.treatment-icon.cyan { background-color: #06b6d4; } /* Tailwind cyan-500 */

.treatment-content h4 {
    font-size: 1.25rem;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-weight: 700;
}

.treatment-content p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Common Causes Card Layout */
.causes-section {
    background-color: #f0fdfa; /* light cyan */
    padding: 80px 0;
}

.causes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.cause-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid #f0f0f0;
}

.cause-card h4 {
    font-size: 1.25rem;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 700;
}

.cause-card > p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.cause-treatment-box {
    background-color: #f4f8ff; /* light blue */
    border-left: 3px solid #3b82f6; /* bright blue */
    padding: 15px 20px;
    border-radius: 4px;
}

.cause-treatment-box strong {
    color: #1e40af; /* dark blue */
    display: block;
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.cause-treatment-box p {
    color: #3b82f6;
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .advanced-treatments-grid {
        grid-template-columns: 1fr;
    }
    .causes-grid {
        grid-template-columns: 1fr;
    }
}

/* Symptoms Layout - Slate/Blue Palette matching screenshot */
.symptoms-section {
    padding: 80px 0;
}

.symptoms-section h2 {
    font-size: 2.2rem;
    color: #0f172a; /* slate-900 */
    font-weight: 700;
    margin-bottom: 50px;
    font-family: 'Inter', sans-serif;
}

.symptoms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 10px;
}

.symptom-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0; /* slate-200 */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.symptom-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.symptom-icon-box {
    width: 44px;
    height: 44px;
    background-color: #eff6ff; /* blue-50 */
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.symptom-icon-box i {
    font-size: 1.15rem;
    color: #3b82f6; /* blue-500 */
}

.symptom-card h4 {
    font-size: 1.1rem;
    color: #0f172a; /* slate-900 */
    margin-bottom: 12px;
    font-weight: 600;
}

.symptom-card p {
    color: #64748b; /* slate-500 */
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1024px) {
    .symptoms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .symptoms-grid {
        grid-template-columns: 1fr;
    }
}

/* Highlight Cards in About/Why Choose Section */
.highlight-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.highlight-card {
    background-color: #f8fafc; /* very light gray/blue */
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.hc-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #ecfdf5; /* light mint/teal */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hc-icon i {
    color: #0d9488; /* teal 600 */
    font-size: 1.2rem;
}

.hc-text {
    font-weight: 600;
    color: #1e3a8a; /* deep blue */
    font-size: 1.05rem;
    line-height: 1.3;
}

@media (max-width: 576px) {
    .highlight-cards {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   ABOUT US PAGE - NEW SECTIONS
   ========================================= */

/* Common Utility */
.bg-alice-blue {
    background-color: #f4f9fc;
}

/* 1. Stats Section */
.stats-section {
    padding: 60px 0;
    border-bottom: 1px solid #e2e8f0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
.stat-icon {
    width: 60px;
    height: 60px;
    background-color: #38b6ff; /* Match screenshot cyan/blue */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}
.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0f2a4a; /* Dark navy from screenshot */
    line-height: 1;
}
.stat-text {
    font-size: 0.95rem;
    color: #64748b;
    font-weight: 500;
}

/* 2. Mission & Vision Section */
.mission-vision-section {
    padding: 80px 0;
}
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
.mv-block h3 {
    font-size: 1.8rem;
    color: #0f2a4a;
    font-weight: 700;
    margin-bottom: 25px;
}
.mv-block p {
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* 3. Our Journey Section */
.journey-section {
    padding: 80px 0;
    text-align: center;
}
.journey-section h2 {
    font-size: 2.2rem;
    color: #0f2a4a;
    font-weight: 700;
    margin-bottom: 15px;
}
.journey-subtitle {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 60px;
}
.journey-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.journey-card {
    text-align: center;
}
.journey-year {
    font-size: 2rem;
    font-weight: 700;
    color: #38b6ff; /* Cyan blue */
    margin-bottom: 15px;
}
.journey-title {
    font-size: 1.2rem;
    color: #0f2a4a;
    font-weight: 700;
    margin-bottom: 15px;
}
.journey-desc {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}

/* 4. Core Values Section */
.core-values-section {
    padding: 80px 0;
    text-align: center;
}
.core-values-section h2 {
    font-size: 2.2rem;
    color: #0f2a4a;
    font-weight: 700;
    margin-bottom: 15px;
}
.cv-subtitle {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 60px;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.value-card {
    background: white;
    border-radius: 12px;
    padding: 35px 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}
.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.value-icon {
    width: 65px;
    height: 65px;
    background-color: #38b6ff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
}
.value-title {
    font-size: 1.15rem;
    color: #0f2a4a;
    font-weight: 700;
    margin-bottom: 15px;
}
.value-desc {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}

/* Responsive updates for new grids */
@media (max-width: 1024px) {
    .stats-grid, .journey-grid, .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid, .journey-grid, .values-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   VIDEO TESTIMONIALS PAGE
   ========================================= */

.video-testimonials-section {
    padding: 80px 0;
    background-color: #f8fafc; /* match background */
}

.vt-header {
    text-align: center;
    margin-bottom: 50px;
}

.vt-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #e0f2fe; /* light blue bg */
    color: #0369a1; /* dark blue text */
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.vt-header h2 {
    font-size: 2.5rem;
    color: #0f172a;
    font-weight: 700;
    margin-bottom: 15px;
}

.vt-header h2 span {
    color: #3b82f6; /* blue accent */
}

.vt-header p {
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.6;
}

.video-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.video-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); /* slightly pronounced shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 220px;
    background-color: #cbd5e1; /* generic grey as placeholder */
    background-size: cover;
    background-position: center;
}

.video-thumbnail::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.2); /* subtle dark overlay */
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: transform 0.2s ease;
}

.video-card:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button i {
    color: #3b82f6;
    margin-left: 3px; /* visual center for play icon */
    font-size: 1.1rem;
}

.video-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-color: #3b82f6;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
}

.video-info {
    padding: 24px;
}

.video-info h4 {
    font-size: 1.1rem;
    color: #0f172a;
    font-weight: 700;
    margin-bottom: 25px; /* push watch link down */
}

.watch-story-link {
    color: #3b82f6;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s ease;
}

.watch-story-link:hover {
    color: #2563eb;
}

/* Responsiveness for video grid */
@media (max-width: 1024px) {
    .video-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .video-testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   CUSTOM CIRCLE STATS (Homepage Override)
   ========================================= */
.custom-circle-stats {
  display: flex !important;
  justify-content: space-between;
  text-align: center;
  gap: 30px;
}

.custom-circle-stats .stat-card {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  padding: 0 !important;
}

.stat-circle-group {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.stat-number-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.5rem;
  color: #0b2545; /* Dark navy */
  margin-right: -5px; /* Slight overlap or none */
  z-index: 2;
  position: relative;
}

.stat-circle-icon {
  width: 50px;
  height: 50px;
  background-color: #73c8fb; /* Light blue */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  z-index: 1;
}

.stat-label {
  color: #64748b; /* Slate grey */
  font-size: 0.95rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .custom-circle-stats {
    flex-direction: column;
    gap: 40px;
  }
}


/* =========================================
   NEW CONTACT & BOOKING SECTION
   ========================================= */
.booking-section {
  padding: 80px 0;
  background-color: #f8fafc; /* Very light slate/blue hint */
}

.booking-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: stretch;
}

/* Form Styling */
.booking-form-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.booking-form-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.booking-form-card p {
  color: var(--text-light);
  margin-bottom: 30px;
  font-size: 0.95rem;
}

.form-group-custom {
  margin-bottom: 20px;
}

.form-group-custom label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.form-control-custom {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.form-control-custom:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(11, 107, 188, 0.1);
}

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

.btn-book-submit {
  width: 100%;
  background-color: #1ea1df; /* Brighter complementary blue */
  color: white;
  border: none;
  border-radius: 8px;
  padding: 14px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.btn-book-submit:hover {
  background-color: #1688c0;
  transform: translateY(-2px);
}

.form-security-note {
  text-align: center;
  font-size: 0.8rem;
  color: #94a3b8;
  margin-top: 15px;
}

/* Info Column Styling */
.booking-info-col {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.booking-info-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.booking-info-card h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--primary-dark);
  margin-bottom: 25px;
}

/* Map Card Specifics */
.address-block {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.icon-box-blue {
  background-color: #1ea1df;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.address-text h5 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 5px;
  font-size: 1.05rem;
}

.address-text p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.5;
}

.map-container {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

/* Contact List Specifics */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.icon-box-pastel {
  width: 45px;
  height: 45px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.icon-green { background-color: #dcfce7; color: #16a34a; }
.icon-blue { background-color: #e0f2fe; color: #0284c7; }
.icon-purple { background-color: #f3e8ff; color: #9333ea; }

.contact-info-text h5 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 3px;
  font-size: 1.05rem;
}

.contact-info-text p {
  color: var(--primary-blue);
  font-size: 0.95rem;
  margin-bottom: 0;
  font-weight: 500;
}

.contact-info-text p.text-muted {
  color: var(--text-light);
  font-weight: 400;
}

.contact-info-text p.text-danger {
  color: #dc2626;
  font-weight: 500;
  margin-top: 5px;
}

@media (max-width: 992px) {
  .booking-container {
    grid-template-columns: 1fr;
  }
}


/* Custom Clean Stats */
.custom-clean-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}
  
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.stat-icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: #6bc2fb;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin-bottom: 25px;
}

.stat-number-text {
    font-size: 3rem !important;
    font-weight: 900 !important;
    color: #112a46 !important;
    margin: 0 0 10px 0 !important;
    line-height: 1 !important;
}

.stat-label-text {
    font-size: 1.05rem !important;
    font-family: var(--font-body);
    color: #5c626f !important;
    margin: 0 !important;
    font-weight: 500 !important;
}

@media (max-width: 992px) {
    .custom-clean-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .custom-clean-stats {
        grid-template-columns: 1fr;
    }
}


/* NEW FOOTER DESIGN */
.new-footer-design {
    background-color: #3b5f8a;
    color: #e0e7ff;
    padding-top: 70px;
    font-family: var(--font-body);
    border-top: none;
}

.new-footer-container {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-left {
    flex: 1;
    max-width: 450px;
}

.footer-logo-text {
    font-size: 2.2rem;
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 35px;
}

.footer-contact-title {
    font-size: 1.1rem;
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 25px;
}

.footer-contact-info .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 22px;
    font-size: 1.05rem;
    color: #b1c7d9;
}

.footer-contact-info .contact-item > i {
    margin-top: 5px;
    margin-right: 15px;
    font-size: 1.2rem;
    color: #ffffff;
    width: 20px;
    text-align: center;
}

.footer-contact-info .contact-item a,
.footer-contact-info .contact-item p {
    color: #a1b8ce;
    text-decoration: none;
    line-height: 1.6;
}

.contact-text-wrap {
    display: flex;
    align-items: center;
}

.blue-badge {
    background-color: #176BFF;
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-left: 10px;
}

.footer-right {
    flex: 1.5;
}

.footer-procedures-title {
    font-size: 1.1rem;
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 25px;
}

.procedures-grid {
    display: flex;
    gap: 40px;
    justify-content: flex-start;
}

.procedures-list {
    flex: 1;
    list-style: none;
    padding: 0;
    margin: 0;
}

.procedures-list li {
    margin-bottom: 22px;
}

.procedures-list a {
    color: #a1b8ce;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.procedures-list a:hover {
    color: #ffffff;
}

.new-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 25px 0;
}

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

.footer-bottom-flex p {
    color: #a1b8ce;
    font-size: 0.95rem;
    margin: 0;
}

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

.new-social-links a {
    color: #ffffff;
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

.new-social-links a:hover {
    color: var(--accent-gold);
}

@media (max-width: 992px) {
    .new-footer-container {
        flex-direction: column;
    }
    .procedures-grid {
        flex-direction: column;
        gap: 15px;
    }
    .footer-bottom-flex {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Custom 3D Floating Buttons Override */
.floating-btn-group {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
    z-index: 9999 !important;
}

.float-btn {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    color: white !important;
    font-size: 30px !important;
    box-shadow: 
        inset 0 4px 6px rgba(255, 255, 255, 0.4), 
        inset 0 -4px 6px rgba(0, 0, 0, 0.2), 
        0 6px 12px rgba(0, 0, 0, 0.3) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
    position: relative !important;
    overflow: hidden !important;
    border: none !important;
}

.float-btn:hover {
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 
        inset 0 6px 8px rgba(255, 255, 255, 0.5), 
        inset 0 -4px 6px rgba(0, 0, 0, 0.2), 
        0 10px 18px rgba(0, 0, 0, 0.4) !important;
}

/* Glossy highlight effect */
.float-btn::before {
    content: '' !important;
    position: absolute !important;
    top: 5% !important;
    left: 15% !important;
    width: 70% !important;
    height: 40% !important;
    background: linear-gradient(rgba(255,255,255,0.6), rgba(255,255,255,0)) !important;
    border-radius: 50px 50px 20px 20px !important;
    pointer-events: none !important;
}

.call-btn {
    background: linear-gradient(135deg, #3B82F6, #1D4ED8) !important;
}

.wa-btn {
    background: linear-gradient(135deg, #22c55e, #15803d) !important;
}

/* Add depth shadow to the floating icons */
.float-btn i {
    filter: drop-shadow(0 2px 2px rgba(0,0,0,0.3)) !important;
}
