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

/* =============================================
   DESIGN TOKENS
   ============================================= */
:root {
    --primary:       #1a4d2e;
    --primary-light: #2a6b40;
    --accent:        #88c273;
    --sage:          #e2efde;
    --sage-dark:     #c8e0c2;
    --cream:         #f9fbf8;
    --text:          #1e1e1e;
    --text-muted:    #64748b;
    --white:         #ffffff;
    --ease:          cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-xs:     0 1px 3px rgba(0,0,0,0.06);
    --shadow-sm:     0 4px 16px rgba(0,0,0,0.07);
    --shadow-md:     0 12px 40px rgba(0,0,0,0.10);
    --shadow-lg:     0 24px 64px rgba(0,0,0,0.13);
    --r-xl:          32px;
    --r-lg:          20px;
    --r-md:          12px;
    --r-pill:        999px;
}

/* =============================================
   CUSTOM CHECKBOX
   ============================================= */
.custom-check {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-muted);
    user-select: none;
    line-height: 1.4;
}

.custom-check input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.custom-check-box {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    border: 2px solid rgba(0,0,0,0.15);
    background: var(--cream);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s var(--ease);
    position: relative;
}

.custom-check input:checked ~ .custom-check-box {
    background: var(--primary);
    border-color: var(--primary);
}

.custom-check-box::after {
    content: '';
    width: 5px;
    height: 9px;
    border: 2px solid white;
    border-top: none;
    border-left: none;
    transform: rotate(45deg) scale(0);
    transition: transform 0.18s var(--ease);
    margin-top: -2px;
}

.custom-check input:checked ~ .custom-check-box::after {
    transform: rotate(45deg) scale(1);
}

.custom-check:hover .custom-check-box {
    border-color: var(--accent);
    background: white;
}



/* =============================================
   BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; }

html, body {
    font-family: 'Quicksand', sans-serif;
    color: var(--text);
    background: var(--cream);
    line-height: 1.65;
    overflow-x: hidden;
    width: 100%;
}

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

a { text-decoration: none; }

/* =============================================
   UTILITY
   ============================================= */
.bg-sage       { background-color: var(--sage) !important; }
.bg-dark-green { background-color: var(--primary) !important; }
.bg-cream      { background-color: var(--cream) !important; }
.text-primary-modern { color: var(--primary) !important; }

/* =============================================
   HEADER
   ============================================= */
.main-header {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1050;
    box-shadow: var(--shadow-xs);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: box-shadow 0.3s var(--ease);
}

.main-header.scrolled { box-shadow: var(--shadow-sm); }

.header-nav ul { gap: 4px; }

.header-nav .nav-link {
    color: var(--text);
    font-weight: 600;
    font-size: 0.92rem;
    padding: 8px 14px;
    border-radius: var(--r-md);
    transition: all 0.25s var(--ease);
    position: relative;
}

.header-nav .nav-link:hover {
    color: var(--primary);
    background: var(--sage);
}

.header-nav .dropdown:hover > .dropdown-menu { display: block; }

.header-nav .dropdown-menu {
    border: none;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-md);
    padding: 8px;
    min-width: 200px;
    animation: dropIn 0.2s var(--ease);
}

.header-nav .dropdown-item {
    border-radius: var(--r-md);
    padding: 9px 14px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.header-nav .dropdown-item:hover {
    background: var(--sage);
    color: var(--primary);
}

@keyframes dropIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 991px) {
    .header-actions { display: none; }
    .header-nav     { display: none !important; }
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-pill {
    border-radius: var(--r-pill);
    padding: 11px 28px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.28s var(--ease);
    letter-spacing: 0.3px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary-modern {
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
    box-shadow: 0 4px 14px rgba(26,77,46,0.25);
}

.btn-primary-modern:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(26,77,46,0.32);
}

.btn-outline-modern {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline-modern:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-white-outline {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.7);
    color: var(--white);
    border-radius: var(--r-pill);
    padding: 11px 28px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.28s var(--ease);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-white-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
    color: var(--white);
}

/* =============================================
   HERO / SLIDER
   ============================================= */

/* ---- Full-width image slider with overlay ---- */
.hero-slider-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 0 0 var(--r-xl) var(--r-xl);
    box-shadow: var(--shadow-md);
}

.hero-carousel .carousel-item {
    position: relative;
    min-height: 560px;
    background: #0b2e1b;
}

.hero-carousel .carousel-item img.hero-bg-img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    object-position: center top;
    opacity: 0.55;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        100deg,
        rgba(10, 40, 20, 0.80) 40%,
        rgba(10, 40, 20, 0.15) 100%
    );
    display: flex;
    align-items: center;
}

.hero-text-box {
    padding: 60px 70px;
    max-width: 640px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: var(--r-pill);
    backdrop-filter: blur(6px);
    margin-bottom: 22px;
}

.hero-text-box h1 {
    font-size: 3.8rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.08;
    margin-bottom: 18px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.hero-text-box h1 span { color: var(--accent); }

.hero-text-box p {
    color: rgba(255,255,255,0.82);
    font-size: 1.05rem;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 28px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
    font-weight: 600;
}

.hero-stat i { color: var(--accent); font-size: 1rem; }

/* Indicators */
.hero-carousel .carousel-indicators {
    bottom: 24px;
    justify-content: center;
    gap: 8px;
}

.hero-carousel .carousel-indicators button {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: none;
    transition: all 0.3s;
}

.hero-carousel .carousel-indicators button.active {
    width: 30px;
    border-radius: 99px;
    background: var(--accent);
}

/* Controls */
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
    width: 52px; height: 52px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50%;
    top: 50%; transform: translateY(-50%);
    bottom: auto;
    margin: 0 20px;
    opacity: 1;
    transition: all 0.25s;
}

.hero-carousel .carousel-control-prev:hover,
.hero-carousel .carousel-control-next:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon {
    width: 18px; height: 18px;
}

@media (max-width: 768px) {
    .hero-carousel .carousel-item { min-height: 480px; }
    .hero-carousel .carousel-item img.hero-bg-img { height: 480px; }
    .hero-overlay { align-items: flex-end; padding-bottom: 60px; }
    .hero-text-box { padding: 30px 20px; text-align: center; margin: 0 auto; }
    .hero-text-box h1 { font-size: 2.4rem; }
    .hero-text-box p { font-size: 0.95rem; margin-bottom: 24px; }
    .hero-stats { justify-content: center; gap: 15px; }

    .hero-carousel .carousel-control-prev,
    .hero-carousel .carousel-control-next { margin: 0 10px; width: 44px; height: 44px; }
}

@media (max-width: 576px) {
    .hero-carousel .carousel-item { min-height: 440px; }
    .hero-carousel .carousel-item img.hero-bg-img { height: 440px; }
    .hero-text-box h1 { font-size: 1.8rem; }
    .hero-tag { font-size: 0.7rem; padding: 5px 12px; margin-bottom: 15px; }
    .hero-stats { display: none; }
    
    .feature-item { padding: 15px 10px; }
    .feature-icon-wrap { width: 48px; height: 48px; font-size: 1.1rem; margin-bottom: 10px; }
    .feature-item h5 { font-size: 0.85rem; }
    .feature-item p { font-size: 0.75rem; }

    .category-card { padding: 20px 15px; }
    .category-icon { width: 70px; height: 70px; }
    .category-card h4 { font-size: 0.88rem; }
}

/* =============================================
   SECTION HEADINGS
   ============================================= */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    background: var(--sage);
    padding: 5px 14px;
    border-radius: var(--r-pill);
    margin-bottom: 12px;
}

.section-title-line {
    width: 48px; height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 99px;
    margin: 14px auto 0;
}

/* =============================================
   CATEGORY CARDS
   ============================================= */
.category-card {
    background: var(--white);
    padding: 34px 24px 28px;
    border-radius: var(--r-xl);
    text-align: center;
    transition: all 0.32s var(--ease);
    border: 1.5px solid rgba(0,0,0,0.05);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.category-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--r-xl);
    border: 2px solid var(--accent);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.category-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-md); }
.category-card:hover::after { opacity: 1; }

.category-icon {
    width: 90px; height: 90px;
    background: var(--sage);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
    overflow: hidden;
    transition: transform 0.3s;
    box-shadow: 0 4px 12px rgba(26,77,46,0.12);
}

.category-card:hover .category-icon { transform: scale(1.08); }

.category-icon img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.category-card h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--primary);
}

.category-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.5;
}

/* =============================================
   SCROLL TO TOP BUTTON OVERRIDE
   ============================================= */
#manualScrollTop:hover {
    background-color: var(--accent);
    color: var(--primary);
    transform: translateY(-5px);
}

/* Slick Dots Styling */
.slick-dots {
    bottom: -35px;
    list-style: none;
    display: flex !important;
    justify-content: center;
    padding: 0;
    margin: 0;
    position: relative;
    width: 100%;
}
.slick-dots li { margin: 0 5px; cursor: pointer; }
.slick-dots li button {
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--primary); opacity: 0.3; border: none; font-size: 0;
    padding: 0; cursor: pointer; transition: all 0.3s;
}
.slick-dots li.slick-active button { opacity: 1; background: var(--accent); transform: scale(1.2); }

/* =============================================
   SPLIT / PRODUCT SECTIONS
   ============================================= */
.split-section {
    padding: 90px 0;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.split-section:last-child { border-bottom: none; }

.split-section h2 {
    font-size: 2.6rem;
    margin-bottom: 16px;
    line-height: 1.15;
}

.split-section p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 28px;
}

.product-img-blob {
    position: relative;
    display: inline-block;
}

.product-img-blob::before {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    background: var(--sage);
    z-index: 0;
    transition: transform 0.4s var(--ease);
}

.product-img-blob:hover::before { transform: scale(1.05); }

.product-img-blob img {
    position: relative;
    z-index: 1;
    border-radius: 50%;
    width: 380px;
    max-width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(26,77,46,0.18));
    transition: transform 0.4s var(--ease);
}

.product-img-blob:hover img { transform: translateY(-8px) scale(1.02); }

.product-highlight-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--sage);
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: var(--r-pill);
    margin-bottom: 16px;
}

.product-benefit-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-benefit-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

.product-benefit-list li::before {
    content: '';
    width: 22px; height: 22px; flex-shrink: 0;
    background: var(--sage);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231a4d2e'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
    background-size: 14px;
    background-repeat: no-repeat;
    background-position: center;
}

/* =============================================
   FEATURES STRIP
   ============================================= */
.features-strip {
    background: var(--white);
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 50px 0;
}

.feature-item {
    text-align: center;
    padding: 24px 20px;
    border-radius: var(--r-xl);
    transition: all 0.3s var(--ease);
}

.feature-item:hover {
    background: var(--sage);
    transform: translateY(-4px);
}

.feature-icon-wrap {
    width: 64px; height: 64px;
    background: var(--sage);
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.4rem;
    color: var(--primary);
    transition: all 0.3s;
}

.feature-item:hover .feature-icon-wrap {
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
}

.feature-item h5 {
    font-size: 0.98rem;
    margin-bottom: 6px;
}

.feature-item p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 0;
}

/* =============================================
   FOOTER
   ============================================= */
.modern-footer {
    background: linear-gradient(160deg, #0b2e1b 0%, #0d3b22 100%);
    color: rgba(255,255,255,0.75);
    padding: 80px 0 36px;
}

.footer-heading {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 32px; height: 2px;
    background: var(--accent);
    border-radius: 99px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}

.footer-links a::before {
    content: '→';
    font-size: 0.8rem;
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.2s;
}

.footer-links a:hover { color: var(--accent); padding-left: 6px; }
.footer-links a:hover::before { opacity: 1; transform: translateX(0); }

.footer-divider {
    border-color: rgba(255,255,255,0.08);
    margin: 48px 0 28px;
}

.social-icons { display: flex; gap: 10px; margin-top: 20px; }

.social-icons a {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: all 0.25s;
}

.social-icons a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary);
    transform: translateY(-3px);
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.animate-fadeup {
    animation: fadeUp 0.6s var(--ease) both;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* =============================================
   SCROLLBAR (optional polish)
   ============================================= */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f0f0f0; }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 99px; }

/* =============================================
   WELLNESS CTA SECTION
   ============================================= */
.wellness-cta-section {
    background-color: var(--primary);
    position: relative;
    padding: 70px 0;
    overflow: hidden; /* Ensure blobs are clipped */
}

.cta-blob-1, .cta-blob-2 {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    z-index: 1;
}

.cta-blob-1 {
    width: 350px; height: 350px;
    top: -100px; left: -100px;
}

.cta-blob-2 {
    width: 450px; height: 450px;
    bottom: -150px; right: -100px;
}

@media (max-width: 768px) {
    .wellness-cta-section { padding: 60px 0; }
    .wellness-cta-section h2 { font-size: 2.1rem !important; }
    .wellness-cta-section p { font-size: 1.05rem !important; }
}


/* =============================================
   WELLNESS CTA PREMIUM POLISH
   ============================================= */
.btn-wellness-primary {
    background: #ffb300;
    color: #1a4d2e !important;
    transition: all 0.3s var(--ease);
}

.btn-wellness-primary:hover {
    background: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2) !important;
}

.btn-wellness-outline {
    border: 2px solid rgba(255,255,255,0.4);
    color: white !important;
    transition: all 0.3s var(--ease);
}

.btn-wellness-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
    color: white !important;
    transform: translateY(-5px);
}

#scrollUp { display: none !important; }

