:root {
    --primary: #10B981;
    --primary-dark: #065F46;
    --primary-light: #ECFDF5;
    --text-dark: #0F172A;
    --text-light: #64748B;
    --white: #ffffff;
    --font: 'Bricolage Grotesque', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font);
}

body {
    font-family: var(--font);
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

/* --- Header & Nav --- */
.navbar {
    height: 70px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #3e3f411c;
}

.nav-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1.4rem;
    color: var(--primary-dark);
}

.logo i {
    color: var(--primary);
    font-size: 1.8rem;
    font-weight: 500;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
}

.nav-links a i {
    font-size: 1.1rem;
    color: var(--primary);
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-cta {
    background: var(--primary);
    color: white !important;
    padding: 10px 20px;
    border-radius: 10px;
}

.menu-toggle {
    display: none;
    font-weight: 400;
    font-size: 1.8rem;
    cursor: pointer;
}

/* Mobile Sidebar */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: white;
    z-index: 2000;
    padding: 80px 40px;
    transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
}

.mobile-nav.active {
    right: 0;
}

.close-menu {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 2rem;
}

.mobile-links {
    list-style: none;
}

.mobile-links li {
    margin-bottom: 30px;
}

.mobile-links a {
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 15px;
}

/* --- Hero --- */
.hero {
    padding: 100px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.tagline {
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    display: inline-block;
}

.hero h1 {
    font-size: clamp(2rem, 8vw, 4rem);
    line-height: 1.1;
    margin: 20px 0;
}

.hero .accent {
    color: var(--primary);
}

.hero-actions {
    margin-top: 20px;
}

.btn {
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: 0.3s;
}

.btn-solid {
    background: var(--primary);
    color: white;
}

.btn-solid:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.btn-outline {
    border: 1px solid #e2e8f0;
    color: var(--text-dark);
    margin-left: 15px;
}

.hero-img img {
    width: 100%;
    border-radius: 30px;
}

/* --- Sections --- */
.section-padding {
    padding: 100px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
}

.bg-light {
    background-color: var(--primary-light);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
}

/* Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-item {
    background: white;
    padding: 40px;
    border-radius: 24px;
    transition: 0.3s;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

/* --- Wellness Packages --- */
.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.bundle-card {
    background: var(--white);
    border-radius: 30px;
    padding: 40px;
    border: 2px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: 0.4s;
}

.bundle-card.popular {
    border-color: var(--primary);
    transform: scale(1.05);
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

.bundle-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.bundle-price {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 25px;
}

.bundle-price span {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
}

.bundle-includes {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.bundle-includes li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-weight: 500;
}

.bundle-includes i {
    color: var(--primary);
    font-size: 1.2rem;
}

.btn-bundle {
    background: var(--primary);
    color: white;
    text-align: center;
    padding: 18px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.btn-bundle:hover {
    background: var(--primary-dark);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2);
}

/* Browse CTA */
.browse-all-cta p {
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--text-light);
}

.btn-browse {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    transition: 0.3s;
}

.btn-browse:hover {
    gap: 15px;
}

.btn-buy:hover {
    background: var(--primary);
    color: white;
}

/* --- Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 968px) {

    .hero-grid,
    .grid-2,
    .contact-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-grid {
        display: flex;
        flex-direction: column-reverse;
        gap: 40px;
    }

    .hero-actions {
        justify-content: center;
    }

    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .contact-card {
        flex-direction: column;
        gap: 30px;
    }

    .contact-info {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-grid {
        gap: 30px;
    }

    .btn {
        width: 100%;
        text-align: center;
        margin: 5px 0;
        display: block;
    }

    .btn-outline {
        margin-left: 0;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* Footer Main Styling */
.main-footer {
    background-color: #ffffff;
    border-top: 1px solid #f1f5f9;
    padding-top: 80px;
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 60px;
}

.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.footer-desc {
    color: var(--text-light);
    margin: 20px 0;
    max-width: 300px;
    font-size: 0.95rem;
}

/* Links & Lists */
.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    text-decoration: none;
    color: var(--text-light);
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

/* Social Icons */
.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    text-decoration: none;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* Contact Info */
.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.footer-contact i {
    color: var(--primary);
    font-size: 1.1rem;
}

.footer-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-btn:hover {
    background: var(--primary-dark);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.2);
}

/* Bottom Bar */
.footer-bottom {
    background: #f8fafc;
    padding: 25px 0;
    border-top: 1px solid #f1f5f9;
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bottom-flex p {
    font-size: 0.85rem;
    color: var(--text-light);
}

.bottom-links {
    display: flex;
    gap: 20px;
}

.bottom-links a {
    text-decoration: none;
    font-size: 0.85rem;
    color: var(--text-light);
    transition: 0.3s;
}

.bottom-links a:hover {
    color: var(--primary);
}

/* Responsive Footer */
@media (max-width: 968px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .bottom-flex {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Process Section Styles */
.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
}

.step-item {
    flex: 1;
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    margin: 0 auto 20px;
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2);
}

.step-item h4 {
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.step-item p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.step-line {
    flex: 0.5;
    height: 2px;
    background: #e2e8f0;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .step-line {
        display: none;
    }

    .step-item {
        margin-bottom: 40px;
    }
}


/* Testimonial Section Styles */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.t-card {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    border: 1px solid #f1f5f9;
}

.t-stars {
    color: #FBBF24;
    /* Amber star color */
    margin-bottom: 20px;
}

.t-card p {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.t-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.t-user img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.t-user h5 {
    font-weight: 700;
    margin-bottom: 2px;
}

.t-user span {
    font-size: 0.85rem;
    color: var(--text-light);
}

.t-card:hover {
    transform: translateY(-5px);
    transition: 0.3s;
    border-color: var(--primary);
}


/* --- Global Presence Addition --- */
.footer-global {
    padding: 30px 0;
    border-top: 1px solid #f1f5f9;
    background-color: #ffffff;
}

.global-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.global-label {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-light);
    position: relative;
}

/* Optional: small lines next to the label */
.global-label::before,
.global-label::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: #e2e8f0;
}

.global-label::before {
    right: 100%;
    margin-right: 15px;
}

.global-label::after {
    left: 100%;
    margin-left: 15px;
}

.flags-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.flag-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 50px;
    transition: 0.3s ease;
}

.flag-pill img {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
    filter: saturate(0.8);
}

.flag-pill span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
}

.flag-pill:hover {
    background: var(--primary-light);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.flag-pill:hover img {
    filter: saturate(1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .flags-container {
        gap: 8px;
    }

    .flag-pill span {
        font-size: 0.75rem;
    }
}

/* --- Philosophy Section --- */
.bg-green {
    background: var(--primary);
    color: white;
}

.philosophy-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.philosophy-box h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 20px;
}

.philosophy-box p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* --- Contact Section --- */
/* (Overriding previous contact-card responsive styles if necessary, but ensuring base style is solid) */
.contact-card {
    background: var(--primary-dark);
    border-radius: 40px;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.contact-info {
    max-width: 500px;
    width: 100%;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.btn-whatsapp-main {
    background: #25D366;
    color: white;
    padding: 18px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    width: fit-content;
}

@media (max-width: 480px) {
    .btn-whatsapp-main {
        width: 100%;
    }

    .contact-card {
        padding: 40px 25px;
    }

    .contact-info h2 {
        font-size: 1.8rem;
    }
}

.btn-whatsapp-main:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* WhatsApp Small Button (Nav) */
.btn-whatsapp-small {
    background: #25D366;
    color: white !important;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 1rem !important;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.btn-whatsapp-small:hover {
    background: #1ebc57;
}

/* Browse Button in Packages */
.browse-all-cta {
    margin-top: 60px;
}