/* Color Theme Variables */
:root {
  --primary-blue: #0a1e4a; 
  --icon-blue: #0159d7;
  --light-blue: #eef3fa;   
  --teal: #49aea9;         
  --text-muted: #5c6b81;   
  --hover-blue: #4da2dd;   
   --whatsapp-green: #25D366; 
      --soft-border: #dce4f0;
}
a {text-decoration:none;}
/* Icons using the primary-blue theme get the dedicated icon blue. */
.text-primary-blue.fa-solid,
.text-primary-blue.fa-regular,
.text-primary-blue > .fa-solid,
.text-primary-blue > .fa-regular {
  color: var(--icon-blue) !important;
}

/* Shared content width so the navbar, hero, and service cards align. */
.site-grid {
  max-width: 1500px;
  margin-inline: auto;
}
.rounded-20{border-radius: 20px;}
/* Navbar Link Styling */
.custom-navbar .nav-link {
  color: var(--text-muted);
  font-size: 1.05rem;
  transition: color 0.3s ease;
  padding: 0.5rem 1rem;
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link.active {
  color: var(--hover-blue);
  font-weight: 600;
}

/* Custom Utility Classes */
.bg-light-blue {
  background-color: var(--light-blue) !important;
}

.text-primary-blue {
  color: var(--primary-blue) !important;
}

/* Custom Teal Button */
.btn-teal {
  background-color: var(--teal);
  border: none;
  transition: all 0.3s ease;
}

.btn-teal:hover {
  background-color: #3e988f; 
  color: #ffffff;
}

/* Keep the desktop contact section close to the last navigation link. */
@media (min-width: 1200px) {
  .navbar-content-row {
    justify-content: flex-end !important;
    gap: 1rem;
    margin-right: 2rem;
  }

  .navbar-content-row .navbar-nav {
    width: auto !important;
  }
}

/* =========================================
   ANIMATED HAMBURGER TO CROSS (No JS Needed)
   ========================================= */

.animated-hamburger {
  width: 26px;
  height: 20px;
  position: relative;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

.animated-hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--primary-blue);
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

/* Default Hamburger Line Positions */
.animated-hamburger span:nth-child(1) { top: 0px; }
.animated-hamburger span:nth-child(2) { top: 8px; }
.animated-hamburger span:nth-child(3) { top: 16px; }

/* Open State (Cross) 
   Bootstrap automatically removes the '.collapsed' class from the toggler when the menu is open.
   We use :not(.collapsed) to trigger the animation. */

.navbar-toggler:not(.collapsed) .animated-hamburger span:nth-child(1) {
  top: 8px;
  transform: rotate(135deg);
}

.navbar-toggler:not(.collapsed) .animated-hamburger span:nth-child(2) {
  opacity: 0;
  left: -20px; /* Slides the middle line out to the left */
}

.navbar-toggler:not(.collapsed) .animated-hamburger span:nth-child(3) {
  top: 8px;
  transform: rotate(-135deg);
}



/* =========================================
   2. CUSTOM UTILITY CLASSES
   ========================================= */
.text-teal { color: var(--teal) !important; }
.bg-teal { background-color: var(--teal) !important; }
.text-primary-blue { color: var(--primary-blue) !important; }
.bg-light-blue { background-color: var(--light-blue) !important; }
.text-muted-custom { color: var(--text-muted) !important; }

/* =========================================
   3. BUTTON STYLES
   ========================================= */
/* Solid Teal Button */
.btn-teal {
  background-color: var(--teal);
  border: none;
  transition: all 0.3s ease;
}
.btn-teal:hover {
  background-color: #3e988f; 
  color: #ffffff;
}

/* Outline Blue Button */
.btn-outline-blue {
  border: 1.5px solid var(--primary-blue);
  color: var(--primary-blue);
  background-color: transparent;
  transition: all 0.3s ease;
}
.btn-outline-blue:hover {
  background-color: var(--light-blue);
  color: var(--primary-blue);
}

/* =========================================
   4. NAVBAR & ANIMATED HAMBURGER
   ========================================= */
/* Navbar Links */
.custom-navbar .nav-link {
  color: var(--text-muted);
  font-size: 1.05rem;
  transition: color 0.3s ease;
  padding: 0.5rem 1rem;
}
.custom-navbar .nav-link:hover,
.custom-navbar .nav-link.active {
  color: var(--hover-blue);
  font-weight: 600;
}

/* Animated Hamburger Container */
.animated-hamburger {
  width: 26px;
  height: 20px;
  position: relative;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

/* Hamburger Lines */
.animated-hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--primary-blue);
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

/* Default Line Positions */
.animated-hamburger span:nth-child(1) { top: 0px; }
.animated-hamburger span:nth-child(2) { top: 8px; }
.animated-hamburger span:nth-child(3) { top: 16px; }

/* Open State (Cross) */
.navbar-toggler:not(.collapsed) .animated-hamburger span:nth-child(1) {
  top: 8px;
  transform: rotate(135deg);
}
.navbar-toggler:not(.collapsed) .animated-hamburger span:nth-child(2) {
  opacity: 0;
  left: -20px; 
}
.navbar-toggler:not(.collapsed) .animated-hamburger span:nth-child(3) {
  top: 8px;
  transform: rotate(-135deg);
}

.custom-navbar {
  position: relative;
  z-index: 1050;
}

@media (max-width: 1199.98px) {
  .custom-navbar .navbar-collapse {
    background-color: #ffffff;
    padding: 1.25rem 1.5rem;
    border-radius: 1rem;
    margin-top: 0.75rem;
    box-shadow: 0 12px 32px rgba(10, 30, 74, 0.14);
    border: 1px solid var(--soft-border);
    width: 100%;
  }

  .custom-navbar .navbar-nav {
    gap: 0.5rem !important;
  }

  .custom-navbar .nav-link {
    padding: 0.65rem 1.25rem;
    width: 100%;
    border-radius: 0.5rem;
    text-align: center;
  }

  .custom-navbar .nav-link:hover,
  .custom-navbar .nav-link.active {
    background-color: var(--light-blue);
  }
}

/* =========================================
   5. HERO SECTION & OVERLAY
   ========================================= */
/* Hero Height Adjustment */
.hero-content-row {
  /* Subtracts navbar height to prevent scrolling */
  min-height: calc(100vh - 950px); 
}

/* Hero Gradient Overlay */
.hero-overlay {
  /* Fades from solid white on the left to transparent on the right */
  background: linear-gradient(90deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.8) 35%, rgba(255,255,255,0) 100%);
}

/* Hero Mobile Adjustments */
@media (max-width: 991px) {
  .hero-content-row {
    min-height: auto; 
  }
  .hero-overlay {
    background: linear-gradient(0deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.95) 100%);
  }
}

/* Overlapping Avatars (Social Proof) */
.avatar-group img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 3px solid #ffffff;
  margin-left: -15px; /* Creates the overlap */
  object-fit: cover;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.avatar-group img:first-child {
  margin-left: 0;
}

/* =========================================
   6. SERVICE BOTTOM CARDS
   ========================================= */
.cursor-pointer { 
  cursor: pointer; 
}

.service-card {
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-5px);
  background-color: #ffffff !important;
  border-color: var(--teal);
  box-shadow: 0 10px 20px rgba(78, 180, 170, 0.15);
}

/* Keep stats in pairs on phones and center the final card. */
@media (max-width: 575.98px) {
  .stats-gradient-bg .row > .col:last-child {
    margin-inline: auto;
  }
}



/* =========================================
   8. HEALTHCARE SERVICES SECTION
   ========================================= */

/* Reusable layout container constraint */
.container-max-1600 {
  max-width: 1500px;
}

/* Forces all images in these cards to be exactly the same height */
.healthcare-img {
  height: 180px;
  object-fit: cover;
}

/* Card hover animation */
.healthcare-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.healthcare-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(28, 56, 107, 0.08) !important;
}

/* Circular Teal Button styling */
.healthcare-btn {
  width: 32px;
  height: 32px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Arrow nudges right when card is hovered */
.healthcare-card:hover .healthcare-btn {
  background-color: var(--primary-blue) !important;
}

.healthcare-card:hover .healthcare-btn i {
  transform: translateX(2px);
  transition: transform 0.3s ease;
}



/* =========================================
   9. STATS BANNER SECTION
   ========================================= */

/* Gradient Background using your theme variables */
.stats-gradient-bg {
  /* Using hover-blue on the left creates a brighter match to your screenshot */
  background: linear-gradient(90deg, #0159d7 0%, #03b4ab 100%);
}

/* Faded circle behind the icons */
.stat-icon-wrapper {
  width: 55px;
  height: 55px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Semi-transparent text for the subtitles */
.text-white-50 {
  color: rgba(255, 255, 255, 0.75) !important;
}

/* Vertical Dividers (Desktop Only) */
@media (min-width: 992px) {
  .stat-divider::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    height: 50%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.25); /* The thin line */
  }
  
  /* Hides the line on the very last item */
  .stat-divider:last-child::after {
    display: none;
  }
}


/* =========================================
   10. WHY CHOOSE US SECTION
   ========================================= */

/* Background utility for the primary blue box */
.bg-primary-blue {
  background-color: var(--primary-blue) !important;
}

/* Semi-transparent white text helper */
.text-white-75 {
  color: rgba(255, 255, 255, 0.75) !important;
}

/* Left Column Building Image Wrapper */
.why-choose-img-wrapper {
  min-height: 400px; /* Ensures image isn't too short on mobile devices */
}

/* Floating Mission Card */
.mission-card {
  width: 260px;
  margin: 1.5rem; /* Offsets it slightly inwards from the bottom-right corner */
}

/* Emergency Card styling */
.emergency-card {
  background-position: center;
  background-size: cover;
}

/* Responsive fix for the floating card on very small mobile screens */
@media (max-width: 575px) {
  .mission-card {
    width: auto;
    margin: 1rem;
    left: 0; /* Stretches the card across the bottom on tiny screens */
  }
}
/* =========================================
   11. BUTTON FINE-TUNING (EXACT MATCH)
   ========================================= */

/* Learn More Button Exact Styling */
.btn-learn-more {
  border: 1.5px solid #a8c1e8; /* The light blue/grey border from your image */
  color: var(--primary-blue) !important;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.btn-learn-more:hover {
  background-color: var(--light-blue);
  border-color: var(--primary-blue);
}

/* Emergency Card Phone Icon Box */
.emergency-phone-icon-box {
  width: 38px;
  height: 38px;
}


/* =========================================
   12. HEALTH TIPS & NEWS SECTION
   ========================================= */

/* Fixed image box dimensions for horizontal layout */
.news-card-img-box {
  width: 140px;
  height: 125px;
}

/* Card hover animation */
.news-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(10, 30, 74, 0.08) !important;
}

/* Custom Teal Badge Styling */
.news-badge {
  /* Using a translucent version of your teal variable */
  background-color: rgba(73, 174, 169, 0.12); 
  color: var(--teal);
  padding: 0.35rem 0.7rem;
  font-size: 0.7rem;
}


/* =========================================
   13. CTA APPOINTMENT BANNER
   ========================================= */

/* Custom Gradient using requested Hex Codes */
.cta-gradient-bg {
  background: linear-gradient(90deg, #0189b3 0%, #03b3a6 100%);
}

/* Constrains paragraph width so it matches the line-breaks in the image */
.cta-text-box {
  max-width: 420px;
}

/* Specific exact height for the main book button to match the image proportions */
.cta-book-btn {
  height: 56px;
  font-size: 0.95rem;
}

/* Increased specific dimensions for the circular icon button */
.cta-icon-btn {
  width: 64px;
  height: 64px;
  color: #03b3a6 !important; /* Matches the green side of the gradient perfectly */
}

/* Smooth lift effect on hover */
.cta-hover-effect {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-hover-effect:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Background Cross Positioning & Sizes */
.cta-cross-1 {
  font-size: 4.5rem; 
  top: 15%; 
  left: 45%;
}

.cta-cross-2 {
  font-size: 2.5rem; 
  top: 60%; 
  left: 54%;
}

.cta-cross-3 {
  font-size: 3rem; 
  bottom: 10%; 
  left: 38%;
}


/* =========================================
   14. FOOTER SECTION
   ========================================= */

/* Footer Link Hover State */
.footer-link {
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--hover-blue) !important;
}

/* Social Media Circular Buttons */
.footer-social-btn {
  width: 34px;
  height: 34px;
  background-color: var(--light-blue);
  color: var(--icon-blue); /* Using the specific icon-blue variable */
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.footer-social-btn:hover {
  background-color: var(--icon-blue);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Alignment helper for Contact Icons */
.footer-contact-icon {
  width: 16px; /* Ensures all text aligns perfectly down the column */
  text-align: center;
}

/* Subtle Top Border for Copyright Row */
.footer-bottom-border {
  border-top: 1px solid #e1e8f2;
}



 

/* =========================================
   CONTACT SECTION (Isolated & Conflict-Free)
   ========================================= */

/* Optional: Gives the section some breathing room under the navbar */
.mw-contact-page-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 100px); 
}

.mw-contact-eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.mw-contact-eyebrow i {
  color: var(--teal);
}

.mw-contact-shell { 
  overflow: hidden; 
  border: 1px solid color-mix(in srgb, var(--primary-blue) 10%, transparent); 
  border-radius: 1.5rem; 
  background: white; 
  box-shadow: 0 1.5rem 4rem color-mix(in srgb, var(--primary-blue) 13%, transparent); 
  max-width: 1100px;
  margin: 0 auto;
}

.mw-contact-info { 
  position: relative; 
  min-height: 100%; 
  padding: 30px; 
  overflow: hidden; 
  color: white; 
  background: linear-gradient(90deg, #0159d7 0%, #03b4ab 100%); 
}

.mw-contact-info::before, .mw-contact-info::after { 
  position: absolute; 
  width: 18rem; 
  height: 18rem; 
  border: 2rem solid color-mix(in srgb, var(--teal) 28%, transparent); 
  border-radius: 50%; 
  content: ""; 
}

.mw-contact-info::before { top: -10rem; right: -8rem; }
.mw-contact-info::after { right: -9rem; bottom: -11rem; border-color: color-mix(in srgb, var(--icon-blue) 35%, transparent); }
.mw-contact-info > * { position: relative; z-index: 1; }
.mw-contact-info h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -.05em; }
.mw-contact-info-copy { max-width: 27rem; color: color-mix(in srgb, white 72%, transparent); }

.mw-contact-info-card { 
  display: flex; align-items: center; gap: 1rem; padding: 1rem; 
  border: 1px solid color-mix(in srgb, white 14%, transparent); 
  border-radius: 1rem; color: white; 
  background: color-mix(in srgb, white 7%, transparent); 
  text-decoration: none; 
  transition: transform .25s ease, background-color .25s ease; 
}

.mw-contact-info-card:hover { 
  color: white; background: color-mix(in srgb, var(--teal) 25%, transparent); 
  transform: translateX(.4rem); 
}

.mw-contact-info-icon { 
  display: grid; width: 2.7rem; height: 2.7rem; flex: 0 0 auto; 
  place-items: center; border-radius: .8rem; color: var(--icon-blue); background: white; 
}

.mw-contact-info-label { 
  display: block; color: color-mix(in srgb, white 62%, transparent); 
  font-size: .76rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; 
}

.mw-contact-info-value { font-weight: 700; }

.mw-contact-social-link { 
  display: inline-grid; width: 2.35rem; height: 2.35rem; place-items: center; 
  border: 1px solid color-mix(in srgb, white 18%, transparent); border-radius: 50%; 
  color: white; text-decoration: none; 
  transition: transform .25s ease, color .25s ease, background-color .25s ease; 
}

.mw-contact-social-link:hover { 
  color: var(--primary-blue); background: var(--teal); transform: translateY(-.25rem); 
}

.mw-contact-form-section { padding: 30px; }
.mw-contact-form-heading { font-size: clamp(1.7rem, 3vw, 2.45rem); font-weight: 800; letter-spacing: -.05em; color: var(--primary-blue); }
.mw-contact-form-copy { color: var(--text-muted); }

/* SCOPED BOOTSTRAP OVERRIDES: These will ONLY affect inputs inside this specific form */
.mw-contact-form-section .form-label { 
  color: var(--primary-blue); font-size: .78rem; font-weight: 800; 
  letter-spacing: .06em; text-transform: uppercase; 
}

.mw-contact-form-section .form-control, 
.mw-contact-form-section .form-select { 
  padding: .85rem 1rem; 
  border: 1px solid color-mix(in srgb, var(--primary-blue) 15%, transparent); 
  border-radius: .75rem; color: var(--primary-blue); background: var(--light-blue); 
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease; 
}

.mw-contact-form-section .form-control::placeholder { 
  color: color-mix(in srgb, var(--text-muted) 70%, transparent); 
}

.mw-contact-form-section .form-control:focus, 
.mw-contact-form-section .form-select:focus { 
  border-color: var(--teal); 
  box-shadow: 0 0 0 .25rem color-mix(in srgb, var(--teal) 18%, transparent); 
  background: white; outline: none; 
}

.mw-contact-form-section textarea.form-control { min-height: 9rem; resize: vertical; }

.mw-contact-submit-btn { 
  border: 0; border-radius: .75rem; padding: .9rem 1.4rem; color: white; 
  font-weight: 800; background: var(--teal); 
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease; 
}

.mw-contact-submit-btn:hover { 
  color: white; background: var(--hover-blue); 
  box-shadow: 0 .75rem 1.5rem color-mix(in srgb, var(--hover-blue) 30%, transparent); 
  transform: translateY(-.2rem); 
}

.mw-contact-submit-btn i { color: white; }
.mw-contact-form-note { color: var(--text-muted); font-size: .8rem; font-weight: 500; }

/* ANIMATIONS & MEDIA QUERIES */
.reveal { animation: rise .7s ease both; } 
.reveal-delayed { animation: rise .7s .12s ease both; }

@keyframes rise { 
  from { opacity: 0; transform: translateY(1.25rem); } 
  to { opacity: 1; transform: translateY(0); } 
}

@media (max-width: 991.98px) { 
  .mw-contact-page-wrapper { padding: 2rem 1rem; } 
  .mw-contact-info { min-height: auto; } 
}

@media (max-width: 575.98px) { 
  .mw-contact-shell { border-radius: 1.1rem; } 
  .mw-contact-info, .mw-contact-form-section { padding: 1.5rem; } 
  .mw-contact-info-card { padding: .85rem; } 
}

@media (prefers-reduced-motion: reduce) { 
  *, *::before, *::after { 
    animation-duration: .01ms !important; transition-duration: .01ms !important; 
  } 
}



 .cc-text-primary { color: var(--primary-blue) !important; }
    .cc-text-teal { color: var(--teal) !important; }
    .cc-text-muted { color: var(--text-muted) !important; }
    .cc-text-sm { font-size: 0.9rem; }
    .cc-text-xs { font-size: 0.75rem; }

    .cc-eyebrow {
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--teal);
      margin-bottom: 1rem;
    }

    .cc-icon-box {
      width: 54px;
      height: 54px;
      background-color: var(--light-blue);
      color: var(--icon-blue);
      border-radius: 0.75rem;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.25rem;
      flex-shrink: 0;
    }

    .cc-container-max {
      max-width: 1400px;
      margin: 0 auto;
    }

    /* =========================================
       3. HERO SECTION (With Image Overlay)
       ========================================= */
    .cc-hero-wrapper {
      position: relative;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      padding: 5rem 0 3rem 0;
    }

    .cc-hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, rgba(238, 243, 250, 0.98) 0%, rgba(238, 243, 250, 0.85) 50%, rgba(255, 255, 255, 0.3) 100%);
      z-index: 0;
    }
    
    .cc-hero-title {
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -1px;
      color: var(--primary-blue);
    }

    .cc-hero-img-box {
      border-radius: 1.5rem;
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(10, 30, 74, 0.1);
      border: 8px solid white;
    }

    .cc-whatsapp-btn {
      background-color: white;
      color: var(--whatsapp-green);
      border: 1.5px solid var(--soft-border);
      font-weight: 700;
      transition: all 0.3s ease;
    }
    
    .cc-whatsapp-btn:hover {
      background-color: var(--whatsapp-green);
      color: white;
      border-color: var(--whatsapp-green);
      transform: translateY(-2px);
      box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
    }

    /* Dedicated class for the prescription CTA, isolated from other WhatsApp buttons. */
    .cc-prescription-whatsapp-btn {
      background-color: #ffffff;
      border: 2px solid #ffffff;
      color: #168a43;
      font-size: 1.25rem;
      font-weight: 800;
      line-height: 1.2;
      transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
    }

    .cc-prescription-whatsapp-btn:hover,
    .cc-prescription-whatsapp-btn:focus {
      background-color: #168a43;
      border-color: #168a43;
      color: #ffffff;
      transform: translateY(-2px);
    }

    /* =========================================
       4. FEATURE STRIP (Blue Gradient)
       ========================================= */
    .cc-feature-wrapper {
      margin-top: -30px;
      position: relative;
      z-index: 10;
    }

    .cc-feature-card-blue {
      border-radius: 1.25rem;
      padding: 1rem;
      height: 100%;
      color: white;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-shadow: 0 10px 20px rgba(10, 30, 74, 0.15);
    }

    .cc-feature-card-blue:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(10, 30, 74, 0.25);
    }

    .cc-feature-card-blue h6 { color: white !important; }
    .cc-feature-card-blue p { color: rgba(255, 255, 255, 0.75) !important; }

    .cc-feature-card-blue .cc-icon-box {
      background-color: rgba(255, 255, 255, 0.15);
      color: white;
    }

    /* =========================================
       5. STANDARD CARDS & PRICING
       ========================================= */
    .cc-card {
      background-color: white;
      border-radius: 1.25rem;
      border: 1px solid var(--soft-border);
      padding: 1.5rem;
      height: 100%;
      transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    }

    .cc-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(10, 30, 74, 0.08);
      border-color: #a8c1e8; 
    }

    .cc-price-amount {
      font-size: 2.5rem;
      font-weight: 900;
      color: var(--primary-blue);
      line-height: 1;
    }
    
    .cc-list-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 12px;
      font-size: 0.95rem;
      color: var(--primary-blue);
      font-weight: 500;
    }
    
    .cc-list-item i {
      color: var(--teal);
      margin-top: 4px;
      font-size: 1.1rem;
    }

    .cc-badge {
      display: inline-block;
      padding: 0.35rem 0.8rem;
      border-radius: 50px;
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    
    .cc-badge-warning { background-color: rgba(245, 158, 11, 0.15); color: #b45309; }
    .cc-badge-purple { background-color: rgba(139, 92, 246, 0.15); color: #6d28d9; }

    /* =========================================
       6. DISEASES & LOWER COST PROMISE
       ========================================= */
    .cc-disease-pill {
      display: flex;
      align-items: center;
      gap: 10px;
      background-color: var(--light-blue);
      padding: 0.75rem 1rem;
      border-radius: 50px;
      color: var(--primary-blue);
      font-weight: 600;
      font-size: 0.9rem;
      border: 1px solid transparent;
      transition: all 0.3s ease;
    }
    
    .cc-disease-pill i { color: var(--icon-blue); font-size: 1.25rem; }
    
    .cc-disease-pill:hover {
      background-color: white;
      border-color: var(--teal);
      box-shadow: 0 5px 15px rgba(73, 174, 169, 0.15);
    }

    /* =========================================
       7. DELIVERY & CTA BANNER
       ========================================= */
    .cc-delivery-box {
      background-color: #f8fafc;
      border-radius: 1rem;
      padding: 1.25rem;
      border: 1px solid var(--soft-border);
    }

    .cc-cta-banner {
      border-radius: 1.5rem;
      padding: 3rem 2rem;
      position: relative;
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(10, 30, 74, 0.15);
    }

    .cc-trust-item {
      display: flex;
      align-items: center;
      gap: 15px;
      color: white;
    }
    
    .cc-trust-item i {
      width: 48px;
      height: 48px;
      background-color: rgb(226 255 227);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.25rem;
      color: var(--teal);
    }