  /* =========================================
           VARIABLES & THEME SETUP
           ========================================= */
  :root {
      /* Warm Sunset Palette */
      --primary: #ff6b6b;
      /* Coral Red */
      --primary-dark: #c92a2a;
      --secondary: #ff9f1c;
      /* Golden Orange */
      --accent: #ffd166;
      /* Soft Yellow */
      --bg-light: #fff4e6;
      /* Warm Cream */
      --white: #ffffff;
      --text-dark: #7f1d1d;
      --text-light: #a76c5f;
      --border-radius: 20px;
      --shadow: 0 10px 30px rgba(255, 107, 107, 0.15);
      --transition: all 0.4s ease;
  }
/*
  :root {
    
    --primary: #008080;      
    --primary-dark: #005f5f;
    --secondary: #20c997;    
    --accent: #ff6f61;       
    --bg-light: #f0fdfa;     
    --white: #ffffff;
    --text-dark: #1b263b;
    --text-light: #4a5568;
    --border-radius: 20px;
    --shadow: 0 10px 30px rgba(0, 128, 128, 0.15);
    --transition: all 0.4s ease;
}
*/


  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

  html {
      scroll-behavior: smooth;
  }

  body {
      font-family: 'Lato', sans-serif;
      color: var(--text-dark);
      background-color: var(--bg-light);
      line-height: 1.7;
      overflow-x: hidden;
  }

  h1,
  h2,
  h3,
  h4 {
      font-family: 'Playfair Display', serif;
      color: var(--primary-dark);
  }

  a {
      text-decoration: none;
      color: inherit;
      transition: var(--transition);
  }

  ul {
      list-style: none;
  }

  img {
      max-width: 100%;
      display: block;
  }

  /* =========================================
           UTILITY CLASSES (ANIMATION)
           ========================================= */
  .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
  }

  .section-padding {
      padding: 100px 0;
  }

  .section-header {
      text-align: center;
      margin-bottom: 60px;
      position: relative;
  }

  .section-header h2 {
      font-size: 2.8rem;
      margin-bottom: 15px;
  }

  .section-header p {
      font-size: 1.1rem;
      color: var(--text-light);
      max-width: 600px;
      margin: 0 auto;
  }

  /* Leaf decoration under title */
  .leaf-deco {
      width: 80px;
      height: 4px;
      background: var(--secondary);
      margin: 15px auto;
      border-radius: 2px;
      position: relative;
  }

  .leaf-deco::after {
      content: '\f06c';
      /* Leaf Icon */
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      position: absolute;
      top: -14px;
      left: 50%;
      transform: translateX(-50%);
      color: var(--accent);
      font-size: 18px;
  }

  /* Scroll Animation Classes */
  .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.9s ease-out;
  }

  .reveal.active {
      opacity: 1;
      transform: translateY(0);
  }

  /* Buttons */
  .btn {
      display: inline-block;
      padding: 15px 35px;
      background-color: var(--primary);
      color: var(--white);
      border-radius: 50px;
      font-weight: 700;
      letter-spacing: 0.5px;
      border: 2px solid var(--primary);
      cursor: pointer;
      transition: var(--transition);
  }

  .btn:hover {
      background-color: transparent;
      color: var(--primary);
  }

  .btn-outline {
      background: transparent;
      color: var(--primary);
      margin-left: 10px;
  }

  .btn-outline:hover {
      background: var(--primary);
      color: var(--white);
  }

  /* =========================================
           HEADER
           ========================================= */
  header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      background: transparent;
      transition: 0.4s;
      padding: 20px 0;
  }

  header.scrolled {
      background: rgba(255, 255, 255, 0.95);
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
      padding: 10px 0;
      backdrop-filter: blur(5px);
  }

  .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
  }

  .logo {
      font-family: 'Playfair Display', serif;
      font-size: 26px;
      font-weight: 700;
      color: var(--primary-dark);
      display: flex;
      align-items: center;
      gap: 10px;
  }

  .logo i {
      color: var(--secondary);
  }

  .nav-links {
      display: flex;
      gap: 30px;
  }

  .nav-links a {
      font-weight: 600;
      color: var(--primary-dark);
      position: relative;
      font-size: 15px;
      text-transform: uppercase;
      letter-spacing: 1px;
  }

  .nav-links a::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      background: var(--secondary);
      bottom: -5px;
      left: 0;
      transition: 0.3s;
  }

  .nav-links a:hover::after {
      width: 100%;
  }

  /* =========================================
           HERO SECTION
           ========================================= */
  .hero {
      height: 100vh;
      background: url('../img/hero.webp') center/cover no-repeat fixed;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
  }

  .hero-overlay {
      position: absolute;
      inset: 0;
      background: rgba(255, 255, 255, 0.85);
      /* Cream overlay */
  }

  .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      max-width: 800px;
  }

  .hero h1 {
      font-size: 4rem;
      margin-bottom: 20px;
      line-height: 1.1;
  }

  .hero p {
      font-size: 1.3rem;
      color: var(--text-dark);
      margin-bottom: 40px;
      font-weight: 300;
  }

  /* =========================================
           ABOUT US
           ========================================= */
  .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
  }

  .about-img-wrapper {
      position: relative;
  }

  .about-img {
      border-radius: 30px 0 30px 0;
      box-shadow: var(--shadow);
      border: 5px solid var(--white);
  }

  .experience-badge {
      position: absolute;
      bottom: -20px;
      right: -20px;
      background: var(--secondary);
      color: var(--white);
      padding: 20px;
      border-radius: 50%;
      width: 120px;
      height: 120px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      font-family: 'Playfair Display', serif;
      box-shadow: var(--shadow);
  }

  /* =========================================
           SERVICES
           ========================================= */
  .services {
      background-color: var(--white);
  }

  .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
  }

  .service-card {
      background: var(--bg-light);
      padding: 40px 30px;
      border-radius: var(--border-radius);
      text-align: center;
      transition: var(--transition);
      border: 1px solid transparent;
  }

  .service-card:hover {
      transform: translateY(-10px);
      border-color: var(--accent);
      box-shadow: var(--shadow);
      background: var(--white);
  }

  .service-icon {
      font-size: 40px;
      color: var(--primary);
      margin-bottom: 20px;
      display: inline-block;
  }

  .service-card h3 {
      margin-bottom: 15px;
      font-size: 1.3rem;
  }

  /* =========================================
           WHY CHOOSE US
           ========================================= */
  .why-us {
      background: var(--primary);
      color: var(--white);
      position: relative;
      overflow: hidden;
  }

  .why-us .section-header h2 {
      color: var(--white);
  }

  .why-us .section-header p {
      color: rgba(255, 255, 255, 0.8);
  }

  /* Background pattern */
  .why-us::before {
      content: '';
      position: absolute;
      top: -50px;
      right: -50px;
      width: 300px;
      height: 300px;
      border: 40px solid rgba(255, 255, 255, 0.05);
      border-radius: 50%;
  }

  .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 40px;
      position: relative;
      z-index: 2;
  }

  .feature-item {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(5px);
      padding: 30px;
      border-radius: var(--border-radius);
      display: flex;
      align-items: flex-start;
      gap: 20px;
  }

  .feature-item i {
      color: var(--secondary);
      font-size: 28px;
  }

  /* =========================================
           HEALTHCARE PLANS
           ========================================= */
  .plans {
      background-color: #f7f9f7;
  }

  .plans-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
  }

  .plan-card {
      background: var(--white);
      padding: 50px 30px;
      border-radius: var(--border-radius);
      text-align: center;
      border: 1px solid #eee;
      transition: var(--transition);
      position: relative;
      overflow: hidden;
  }

  .plan-card:hover {
      border-color: var(--primary);
  }

  .plan-card.featured {
      background: var(--primary);
      color: var(--white);
      transform: scale(1.05);
      box-shadow: var(--shadow);
      z-index: 2;
  }

  .plan-card.featured h3,
  .plan-card.featured .plan-price,
  .plan-card.featured li {
      color: var(--white);
  }

  .plan-card.featured .btn {
      background: var(--white);
      color: var(--primary);
      border-color: var(--white);
  }

  .plan-card.featured .btn:hover {
      background: var(--secondary);
      color: var(--white);
      border-color: var(--secondary);
  }

  .plan-price {
      font-size: 3rem;
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      margin: 20px 0;
      color: var(--primary);
  }

  .plan-price span {
      font-size: 1rem;
      font-family: 'Lato', sans-serif;
      color: var(--text-light);
  }

  .plan-features {
      text-align: left;
      margin: 30px 0;
  }

  .plan-features li {
      margin-bottom: 12px;
      color: var(--text-dark);
      display: flex;
      align-items: center;
  }

  .plan-features li i {
      color: var(--accent);
      margin-right: 10px;
  }

  /* =========================================
           TESTIMONIALS
           ========================================= */
  .testimonials {
      background: var(--white);
  }

  .testimonial-slider {
      display: flex;
      gap: 30px;
      overflow-x: auto;
      padding: 20px 5px;
      scrollbar-width: none;
  }

  .testimonial-slider::-webkit-scrollbar {
      display: none;
  }

  .testimonial-card {
      background: var(--bg-light);
      padding: 40px;
      min-width: 350px;
      border-radius: var(--border-radius);
      position: relative;
  }

  .testimonial-card::before {
      content: '\f10d';
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      position: absolute;
      top: 20px;
      right: 20px;
      font-size: 40px;
      color: rgba(74, 124, 89, 0.1);
  }

  .user-info {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-top: 20px;
  }

  .user-img {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid var(--secondary);
  }

  /* =========================================
           CONTACT & BOOKING
           ========================================= */
  .contact-section {
      display: flex;
      flex-wrap: wrap;
      gap: 50px;
  }

  .contact-info {
      flex: 1;
      min-width: 300px;
  }

  .info-card {
      background: var(--white);
      padding: 30px;
      border-radius: var(--border-radius);
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 20px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
      border-left: 4px solid var(--primary);
  }

  .info-icon {
      width: 50px;
      height: 50px;
      background: var(--bg-light);
      color: var(--primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
  }

  .booking-wrapper {
      flex: 1.5;
      min-width: 300px;
      background: var(--white);
      padding: 40px;
      border-radius: var(--border-radius);
      box-shadow: var(--shadow);
      border-top: 5px solid var(--secondary);
  }

  .form-control {
      width: 100%;
      padding: 15px 20px;
      margin-bottom: 20px;
      border: 1px solid #e0e0e0;
      border-radius: 30px;
      /* Rounded inputs for organic feel */
      background: #fdfdfd;
      font-family: 'Lato', sans-serif;
      transition: 0.3s;
  }

  .form-control:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 4px rgba(74, 124, 89, 0.1);
  }

  select.form-control {
      cursor: pointer;
  }

  /* =========================================
           FOOTER & MODULES
           ========================================= */
  footer {
      background: #1f2927;
      /* Dark Green/Black */
      color: #d1d8cd;
      padding: 80px 0 30px;
  }

  .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
      margin-bottom: 50px;
  }

  .footer-col h4 {
      color: var(--white);
      margin-bottom: 25px;
      font-size: 1.3rem;
  }

  .footer-links li {
      margin-bottom: 12px;
  }

  .footer-links a:hover {
      color: var(--secondary);
      padding-left: 5px;
  }

  /* Newsletter Module */
  .newsletter-form input[type="date"] {
      color-scheme: dark;
  }

  .newsletter-form .checkbox-group {
      display: flex;
      gap: 10px;
      margin-bottom: 20px;
      font-size: 0.9rem;
      color: #999;
  }

  .newsletter-form button {
      width: 100%;
      border-radius: 30px;
      background: var(--secondary);
      border-color: var(--secondary);
  }

  .newsletter-form button:hover {
      background: var(--white);
      color: var(--secondary);
  }

  .copyright {
      border-top: 1px solid #333;
      padding-top: 20px;
      text-align: center;
      font-size: 0.9rem;
  }

  .legal-links a {
      color: #999;
      margin: 0 10px;
      cursor: pointer;
  }

  .legal-links a:hover {
      color: var(--white);
      text-decoration: underline;
  }

  /* =========================================
           MODALS (Privacy & Terms)
           ========================================= */
  .modal {
      display: none;
      position: fixed;
      z-index: 2000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.7);
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.3s ease;
      backdrop-filter: blur(4px);
  }

  .modal.show {
      display: flex;
      opacity: 1;
  }

  .modal-content {
      background-color: #fff;
      padding: 50px;
      width: 90%;
      max-width: 600px;
      border-radius: var(--border-radius);
      position: relative;
      transform: scale(0.9);
      transition: transform 0.3s ease;
      max-height: 80vh;
      overflow-y: auto;
      border-top: 5px solid var(--primary);
  }

  .modal.show .modal-content {
      transform: scale(1);
  }

  .close-modal {
      position: absolute;
      top: 20px;
      right: 25px;
      font-size: 30px;
      cursor: pointer;
      color: #aaa;
  }

  .close-modal:hover {
      color: var(--primary);
  }

  /* =========================================
           NOTIFICATION TOAST
           ========================================= */
  .toast {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background: var(--primary-dark);
      color: white;
      padding: 15px 30px;
      border-radius: 50px;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
      display: flex;
      align-items: center;
      gap: 15px;
      transform: translateY(100px);
      transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
      z-index: 3000;
      border: 2px solid var(--accent);
  }

  .toast.active {
      transform: translateY(0);
  }

  /* Responsive */
  @media (max-width: 768px) {
      .hero h1 {
          font-size: 2.5rem;
      }

      .about-grid {
          grid-template-columns: 1fr;
      }

      .contact-section {
          flex-direction: column;
      }

      .nav-links {
          display: none;
      }

      /* Mobile menu omitted for brevity, keeping layout clean */
  }