 /* ----- RESET & BASE ----- */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Segoe UI', Roboto, system-ui, sans-serif;
      background: #faf7f2;
      color: #2e3b2b;
      line-height: 1.6;
      scroll-behavior: smooth;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    /* ----- BUTTONS ----- */
    .btn {
      display: inline-block;
      background: #2a5c3a;
      color: #fff;
      padding: 0.8rem 2rem;
      border-radius: 40px;
      font-weight: 600;
      border: none;
      cursor: pointer;
      transition: background 0.2s, transform 0.1s;
      box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    }
    .btn:hover {
      background: #1f452b;
      transform: scale(1.02);
    }
    .btn-outline {
      background: transparent;
      border: 2px solid #2a5c3a;
      color: #2a5c3a;
      box-shadow: none;
    }
    .btn-outline:hover {
      background: #2a5c3a;
      color: #fff;
    }

    /* ----- HEADER & NAVIGATION (mobile-first) ----- */
    header {
      background: #ffffffdd;
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      box-shadow: 0 2px 12px rgba(0,0,0,0.04);
      position: sticky;
      top: 0;
      z-index: 999;
      border-bottom: 1px solid #e2dcd2;
    }

    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.8rem 0;
      flex-wrap: wrap;
    }

    .logo {
      font-size: 1.8rem;
      font-weight: 700;
      letter-spacing: -0.5px;
      color: #1d3b28;
    }
    .logo span {
      color: #2ac40a;
      font-weight: 300;
    }
    .logo i {
      color: #2ac40a;
      margin-right: 6px;
    }

    /* mobile menu toggle */
    .menu-toggle {
      background: none;
      border: none;
      font-size: 1.8rem;
      color: #1d3b28;
      cursor: pointer;
      display: block;
      padding: 0.2rem 0.6rem;
    }
    .menu-toggle:focus {
      outline: 2px solid #2ac40a;
      border-radius: 8px;
    }

    /* nav links – hidden on mobile by default */
    .nav-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      width: 100%;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease-in-out, padding 0.2s;
      background: #fffffffa;
      border-radius: 0 0 20px 20px;
      padding: 0 1rem;
      margin-top: 0.2rem;
      gap: 0.2rem;
    }

    .nav-links.show {
      max-height: 500px; /* enough for 7 items */
      padding: 1.2rem 1rem;
      border-top: 1px solid #ece6db;
    }

    .nav-links li {
      padding: 0.6rem 0.2rem;
      border-bottom: 1px solid #f0ebe2;
    }
    .nav-links li:last-child {
      border-bottom: none;
    }

    .nav-links a {
      font-weight: 500;
      color: #2e3b2b;
      transition: color 0.2s;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .nav-links a i {
      width: 20px;
      color: #2ac40a;
    }
    .nav-links a:hover {
      color: #2ac40a;
    }

    /* desktop */
    @media (min-width: 768px) {
      .menu-toggle {
        display: none;
      }
      .nav-links {
        flex-direction: row;
        width: auto;
        max-height: none;
        overflow: visible;
        background: transparent;
        padding: 0;
        margin: 0;
        border: none;
        gap: 1.8rem;
      }
      .nav-links li {
        border-bottom: none;
        padding: 0;
      }
      .nav-links a {
        padding: 0.4rem 0;
        border-bottom: 2px solid transparent;
      }
      .nav-links a:hover {
        border-bottom-color: #2ac40a;
      }
      .nav-links.show {
        max-height: none;
        padding: 0;
        border: none;
      }
    }

    /* ----- SECTION COMMON ----- */
    section {
      padding: 3.5rem 0;
      border-bottom: 1px solid #eae3d8;
    }
    .section-title {
      font-size: 2.2rem;
      font-weight: 600;
      color: #1d3b28;
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .section-title i {
      color: #2ac40a;
      font-size: 2rem;
    }
    .section-sub {
      color: #4b5e45;
      max-width: 600px;
      margin-bottom: 2rem;
    }

    /* ----- HERO (section 1) ----- */
    .hero {
      padding: 3rem 0 4rem;
      background: linear-gradient(145deg, #f5efe8 0%, #faf7f2 100%);
    }
    .hero-grid {
      display: flex;
      flex-direction: column-reverse;
      align-items: center;
      gap: 2.5rem;
    }
    .hero-content {
      text-align: center;
    }
    .hero-content h1 {
      font-size: 2.8rem;
      font-weight: 700;
      line-height: 1.2;
      color: #1d3b28;
    }
    .hero-content h1 i {
      color: #2ac40a;
    }
    .hero-content p {
      font-size: 1.2rem;
      margin: 1.2rem 0 2rem;
      color: #4b5e45;
      max-width: 500px;
      margin-left: auto;
      margin-right: auto;
    }
    .hero-image {
      background: #e8dfd3;
      border-radius: 50px 50px 50px 10px;
      padding: 1.5rem 2rem;
      width: 100%;
      max-width: 420px;
      text-align: center;
      box-shadow: 0 12px 30px rgba(0,0,0,0.05);
      transition: transform 0.25s;
    }
    .hero-image i {
      font-size: 6rem;
      color: #2a5c3a;
      background: #f5efe8;
      padding: 1.8rem;
      border-radius: 60px;
      box-shadow: inset 0 -4px 0 #2ac40a44;
    }
    .hero-image p {
      margin-top: 1rem;
      font-weight: 500;
      color: #2a5c3a;
    }
    @media (min-width: 768px) {
      .hero-grid {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
      }
      .hero-content {
        text-align: left;
        flex: 1;
      }
      .hero-content p {
        margin-left: 0;
        margin-right: 0;
      }
      .hero-image {
        flex: 0 0 40%;
      }
    }

    /* ----- SUPPLEMENTS (section 2) ----- */
    .product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }
    .product-card {
      background: #ffffff;
      padding: 1.8rem 1rem 1.8rem;
      border-radius: 30px 10px 30px 10px;
      box-shadow: 0 6px 18px rgba(0,0,0,0.03);
      transition: 0.2s;
      text-align: center;
      border: 1px solid #ece6db;
    }
    .product-card:hover {
      transform: translateY(-6px);
      border-color: #2ac40a;
    }
    .product-card i {
      font-size: 3.2rem;
      color: #2a5c3a;
      background: #f5efe8;
      padding: 1rem;
      border-radius: 60px;
      margin-bottom: 0.6rem;
    }
    .product-card h3 {
      font-size: 1.3rem;
      color: #1d3b28;
    }
    .product-card .price {
      font-weight: 600;
      color: #2ac40a;
      margin: 0.5rem 0;
    }
    .product-card .desc {
      font-size: 0.95rem;
      color: #5d6e55;
    }

    /* ----- BENEFITS (section 3) ----- */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }
    .feature-item {
      background: #ffffffd0;
      padding: 1.8rem 1rem;
      border-radius: 30px;
      text-align: center;
      backdrop-filter: blur(4px);
      border: 1px solid #e8dfd3;
    }
    .feature-item i {
      font-size: 2.6rem;
      color: #2ac40a;
      margin-bottom: 0.6rem;
    }

    /* ----- TESTIMONIALS (section 4) ----- */
    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }
    .testimonial-card {
      background: #ffffff;
      padding: 1.8rem 1.5rem;
      border-radius: 30px 10px 30px 10px;
      border-left: 6px solid #2ac40a;
      box-shadow: 0 4px 12px rgba(0,0,0,0.02);
    }
    .testimonial-card i {
      color: #2ac40a;
      font-size: 1.6rem;
      opacity: 0.6;
    }
    .testimonial-card p {
      font-style: italic;
      margin: 0.8rem 0;
    }
    .testimonial-card .author {
      font-weight: 600;
      color: #1d3b28;
    }

    /* ----- AYURVEDA (section 5) ----- */
    .ayurveda-grid {
      display: flex;
      flex-direction: column;
      gap: 2rem;
      margin-top: 2rem;
    }
    .ayurveda-item {
      background: #ffffff;
      padding: 1.5rem 2rem;
      border-radius: 30px 10px 30px 10px;
      border: 1px solid #e8dfd3;
      display: flex;
      align-items: center;
      gap: 1.5rem;
      flex-wrap: wrap;
    }
    .ayurveda-item i {
      font-size: 2.8rem;
      color: #2ac40a;
      width: 60px;
      text-align: center;
    }
    .ayurveda-item div h3 {
      font-size: 1.3rem;
      color: #1d3b28;
    }

    /* ----- CONTACT (section 6) ----- */
    .contact-wrapper {
      display: flex;
      flex-direction: column;
      gap: 2rem;
      margin-top: 2rem;
    }
    .contact-form {
      background: #ffffff;
      padding: 2rem 1.8rem;
      border-radius: 40px 10px 40px 10px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.02);
      border: 1px solid #e8dfd3;
    }
    .contact-form label {
      font-weight: 500;
      display: block;
      margin-bottom: 0.3rem;
      color: #2e3b2b;
    }
    .contact-form input,
    .contact-form textarea {
      width: 100%;
      padding: 0.8rem 1rem;
      margin-bottom: 1.5rem;
      border: 1px solid #dcd3c7;
      border-radius: 40px;
      background: #fcfaf7;
      font-size: 1rem;
      transition: 0.2s;
    }
    .contact-form input:focus,
    .contact-form textarea:focus {
      outline: 2px solid #2ac40a;
      border-color: transparent;
      background: #fffdfa;
    }
    .contact-form textarea {
      border-radius: 20px;
      min-height: 120px;
      resize: vertical;
    }
    .contact-form .btn {
      width: 100%;
      padding: 0.9rem;
      font-size: 1.1rem;
    }
    .contact-info {
      background: #e8dfd300;
      padding: 2rem 1.8rem;
      border-radius: 40px 10px 40px 10px;
      color: #1d3b28;
    }
    .contact-info i {
      color: #2ac40a;
      width: 28px;
    }
    .contact-info p {
      margin: 0.8rem 0;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    @media (min-width: 768px) {
      .contact-wrapper {
        flex-direction: row;
      }
      .contact-form {
        flex: 2;
      }
      .contact-info {
        flex: 1;
      }
    }

    /* ----- BLOG / NEWS (section 7) ----- */
    .blog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }
    .blog-card {
      background: #ffffff;
      border-radius: 30px 10px 30px 10px;
      padding: 1.5rem 1.2rem;
      border: 1px solid #ece6db;
      transition: 0.2s;
    }
    .blog-card:hover {
      border-color: #2ac40a;
    }
    .blog-card .tag {
      font-size: 0.75rem;
      background: #f5efe8;
      padding: 0.2rem 1rem;
      border-radius: 40px;
      display: inline-block;
      color: #2a5c3a;
      font-weight: 600;
    }
    .blog-card h4 {
      margin: 0.8rem 0 0.3rem;
      color: #1d3b28;
    }
    .blog-card p {
      font-size: 0.95rem;
      color: #5d6e55;
    }
/* =========================
        FOOTER
========================= */

.footer-section {
    background: linear-gradient(135deg,#0b2a1c,#133624,#0a1d14);
    color: #ffffff;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-logo {
    width: 120px;
    margin-bottom: 20px;
}

.footer-widget p {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
}

.footer-widget h3 {
    margin-bottom: 25px;
    font-size: 22px;
    position: relative;
}

.footer-widget h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 50px;
    height: 3px;
    background: #8bc34a;
}

/* Links */

.footer-links,
.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.contact-info li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: .3s;
}

.footer-links a:hover {
    color: #8bc34a;
    padding-left: 8px;
}

.footer-links i {
    margin-right: 8px;
    color: #8bc34a;
}

/* Contact */

.contact-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.85);
}

.contact-info i {
    color: #8bc34a;
    width: 20px;
}

/* Social */

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.social-links a {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: .3s;
}

.social-links a:hover {
    background: #8bc34a;
    transform: translateY(-5px);
}

/* Newsletter */

.newsletter-form {
    margin-top: 20px;
}

.newsletter-form input {
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 8px;
    padding: 0 15px;
    margin-bottom: 12px;
    outline: none;
}

.newsletter-form button {
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 8px;
    background: #8bc34a;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

.newsletter-form button:hover {
    background: #6fa32f;
}

/* Divider */

.footer-divider {
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 50px 0 25px;
}

/* Bottom */

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;

    gap: 15px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,0.75);
}

.domain-badge {
    background: #8bc34a;
    color: #fff;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
}

/* Responsive */

@media(max-width:991px){

    .footer-grid{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:768px){

    .footer-section{
        padding:60px 0 20px;
    }

    .footer-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

    .footer-widget h3::after{
        left:50%;
        transform:translateX(-50%);
    }

    .contact-info li{
        justify-content:center;
    }

    .social-links{
        justify-content:center;
    }

    .footer-bottom{
        flex-direction:column;
        text-align:center;
    }
}

    /* DOMAIN BADGE */
    .domain-badge {
      background: #f5efe8;
      padding: 0.2rem 1rem;
      border-radius: 40px;
      font-size: 0.9rem;
      font-weight: 500;
      color: #1d3b28;
      display: inline-block;
      border: 1px solid #2ac40a44;
    }
    .domain-badge-dark {
      background: #2e4d39;
      color: #e4ddd2;
      border-color: #2ac40a66;
    }