:root {
    --primary-green: #1E7F5C;
    --dark-green: #145940;
    /* Darker shade of user's green */
    --light-green: #E8F5EE;
    /* Light tint of user's green */
    --gold: #C9A24D;
    --dark-gold: #A68535;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #FFFFFF;
    --off-white: #F9F9F9;
    --shadow-premium: 0 8px 32px rgba(0, 80, 40, 0.10);
    --shadow: var(--shadow-premium);
    --shadow-hover: 0 12px 48px rgba(0, 80, 40, 0.15);
    --announcement-bg: #145940;
    /* Darker green */
    --announcement-height: 44px;
    --header-height: 80px;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-green);
    margin-bottom: 1rem;
    line-height: 1.2;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-padding {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

.alt-bg {
    background-color: var(--off-white);
}

.white-bg {
    background-color: var(--white);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    text-align: center;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-green);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 15px rgba(30, 127, 92, 0.3);
}

.btn-primary:hover {
    background-color: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 127, 92, 0.4);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-secondary:hover {
    background-color: var(--light-green);
}

.btn-gold {
    background-color: var(--gold);
    color: var(--white);
}

.btn-gold:hover {
    background-color: var(--dark-gold);
}

.btn-outline {
    border: 1px solid var(--text-light);
    color: var(--text-dark);
}

.btn-outline:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.btn-lg {
    padding: 15px 35px;
    font-size: 1.1rem;
}

/* Announcement Bar */
.announcement-bar {
    background-color: var(--announcement-bg, #145940);
    color: var(--white);
    padding: 10px 0;
    text-align: center;
    position: sticky;
    top: 0;
    height: var(--announcement-height);
    display: flex;
    align-items: center;
    z-index: 10002;
}

.announcement-bar p {
    margin: 0;
    color: white;
}

.announcement-bar a {
    color: var(--gold);
    text-decoration: underline;
    margin-left: 5px;
    font-weight: 700;
}

/* Header */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 10000;
    padding: 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    height: var(--header-height);
    display: flex;
    align-items: center;
}

/* Fix for header top when announcement bar is present */
.announcement-bar+.header {
    top: var(--announcement-height);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-green);
    display: flex;
    align-items: center;
}

.logo-image-container {
    height: 60px;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.logo-image-container img {
    height: 100%;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.logo-image-container:hover {
    transform: scale(1.05);
}


.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
}

.nav-links a:hover {
    color: var(--gold);
}

.header-cta {
    display: block;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-green);
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: url('images/hero-bg.jpg') no-repeat center center/cover;
    margin-top: 0;
    /* Header is fixed, but maybe overlapping? */
    padding-top: 0;
    /* Sticky handles it now */
}

/* Hero Wave Separator */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 5;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.hero-wave .shape-fill {
    fill: var(--white);
}

/* If the background image fails, fallback gradient */
.hero {
    background-color: var(--light-green);
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0.1) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    width: 100%;
}

.hero-text {
    flex: 1;
    max-width: 650px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--dark-green);
}

.text-highlight {
    color: var(--gold);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 35px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 2000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.top-announcement-banner {
    background: linear-gradient(90deg, #1e7f5c, #27ae60);
    color: white;
    text-align: center;
    padding: 10px 20px;
    font-size: 0.95rem;
    position: relative;
    z-index: 2001;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.banner-cta {
    background: white;
    color: #1e7f5c;
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    animation: pulse-small 2s infinite;
}

.banner-cta:hover {
    background: #f8f9fa;
    transform: scale(1.05);
}

@keyframes pulse-small {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@media (max-width: 480px) {
    .top-announcement-banner {
        font-size: 0.85rem;
    }

    .banner-cta {
        padding: 2px 8px;
        font-size: 0.75rem;
    }
}

.sticky-header .top-announcement-banner {
    display: none;
    /* Optionally hide on scroll if header takes over */
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 8px solid var(--white);
    transform: rotate(2deg);
}

/* Hero Stats Counter */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    width: fit-content;
}

.stat-item {
    text-align: center;
}

.stat-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-green);
}

.stat-label {
    font-size: 0.8rem;
    color: #666;
    font-weight: 600;
}

.stat-divider {
    width: 1px;
    height: 30px;
    background: #ddd;
}

/* Animations */
/* Animations removed for immediate text visibility as requested - kept class for specificity if needed elsewhere but removed behavior */
.animate-fade-up {
    opacity: 1;
    transform: none;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Daily Health Tip Section */
.daily-tip-section {
    padding: 60px 0 40px;
    background-color: var(--white);
}

#daily-tip-box {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

#daily-tip-box:hover {
    transform: translateY(-5px);
}

#daily-tip-box h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

#daily-tip {
    font-size: 1.2rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    #daily-tip-box {
        padding: 30px 20px;
    }

    #daily-tip-box h3 {
        font-size: 1.5rem;
    }

    #daily-tip {
        font-size: 1.1rem;
    }
}

/* Benefits Section */
.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.divider {
    width: 60px;
    height: 3px;
    background-color: var(--gold);
    margin: 0 auto 40px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.icon-box {
    width: 70px;
    height: 70px;
    background-color: var(--light-green);
    color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

.benefit-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* About Section */
.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.image-frame img {
    width: 100%;
    display: block;
    transition: transform 0.5s;
}

.image-frame:hover img {
    transform: scale(1.05);
}

.about-content {
    flex: 1;
}

.sub-heading {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.about-list {
    margin: 20px 0 30px;
}

.about-list li {
    margin-bottom: 12px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-list i {
    color: var(--gold);
}

/* Programs Section */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.program-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Popular Ribbon */
.popular-ribbon {
    position: absolute;
    top: 25px;
    right: -30px;
    background: #e74c3c;
    color: white;
    padding: 8px 40px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    transform: rotate(45deg);
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.popular-ribbon.best-value {
    background: #FFD700;
    color: #333;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.program-card.featured {
    border: 2px solid var(--gold);
    transform: scale(1.02);
}

.program-card.featured:hover {
    transform: scale(1.05);
}

.program-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--gold);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.program-details {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.program-details h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.program-features {
    margin: 15px 0 25px;
    flex: 1;
}

.program-features li {
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.program-features i {
    color: var(--primary-green);
    font-size: 0.8rem;
}

.program-details .btn {
    width: 100%;
}

/* Results Section */
.testimonials-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 30px;
    padding: 20px 10px;
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
    -ms-overflow-style: none;
    /* Hide scrollbar IE/Edge */
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar Chrome/Safari */
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    min-width: 350px;
    flex: 0 0 350px;
    scroll-snap-align: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}

.client-info h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.client-info span {
    font-size: 0.85rem;
    color: var(--primary-green);
    font-weight: 600;
}

.client-location {
    font-size: 0.8rem !important;
    color: #888 !important;
    font-weight: 400 !important;
    display: block;
    margin-top: 2px;
}

.client-location i {
    font-size: 0.75rem;
    margin-right: 4px;
}

.rating {
    margin-top: 15px;
    color: #FFD700;
}

/* Resources Section */
.cta-box {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    background-image: linear-gradient(rgba(46, 125, 50, 0.9), rgba(46, 125, 50, 0.9)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-size: 1.2rem;
}

/* Free Guide Mockup Styles */
.cta-flex-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    text-align: left;
}

.cta-text-content {
    flex: 1.2;
}

.cta-mockup {
    flex: 0.8;
    position: relative;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 220px;
    height: auto;
    border-radius: 20px;
    border: 6px solid #333;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: rotate(5deg);
    transition: transform 0.3s ease;
}

.cta-box:hover .phone-mockup {
    transform: rotate(0deg) scale(1.05);
}

.pdf-tag {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #ff4757;
    color: white;
    padding: 5px 12px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 0.8rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .cta-flex-layout {
        flex-direction: column;
        text-align: center;
    }

    .cta-mockup {
        margin-top: 30px;
    }
}

.form-trust-line {
    font-size: 0.95rem;
    color: var(--primary-green);
    font-weight: 600;
    font-style: italic;
    margin-top: 15px;
    opacity: 0.9;
}

/* Google Rating Badge */
.google-rating-badge {
    display: inline-flex;
    align-items: center;
    background: white;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    border: 1px solid #eee;
}

.google-logo-small {
    width: 24px;
    height: 24px;
    margin-right: 12px;
}

.rating-stars {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.rating-score {
    font-weight: 800;
    font-size: 1rem;
    color: #333;
    line-height: 1;
}

.rating-stars .stars {
    color: #fbbc05;
    /* Google Gold */
    font-size: 0.8rem;
    margin-top: 2px;
}

/* FAQ Section Styling */
.faq-section {
    background: #fff;
}

.faq-accordion {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    background: #f8fbfa;
    border: 1px solid #e1eee9;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: #333;
    font-size: 1.1rem;
}

.faq-question i {
    color: var(--primary-green);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fff;
}

.faq-answer p {
    padding: 20px 0;
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
}

.faq-item.active {
    border-color: var(--primary-green);
    box-shadow: 0 5px 15px rgba(30, 127, 92, 0.05);
}

.faq-item.active .faq-question {
    background: #fff;
    color: var(--primary-green);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    /* Adjust based on content */
    border-top: 1px solid #e1eee9;
}

.hero-text {
    max-width: 800px;
    margin: 0 auto;
}

.trust-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--secondary-gold);
}

/* Contact Form */
.contact-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary-green);
    outline: none;
}

.btn-block {
    width: 100%;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #cccccc;
    padding: 60px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    color: var(--white);
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: var(--primary-green);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ffffff;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--secondary-gold);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 0.9rem;
    color: #999;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* WHO IS THIS FOR? Section */
.who-is-this-for {
    background-color: #f9fbfb;
}

.who-is-this-for .who-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.who-is-this-for .who-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 5px solid transparent;
}

.who-is-this-for .who-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.who-is-this-for .who-card:nth-child(1) {
    border-bottom-color: #27ae60;
}

.who-is-this-for .who-card:nth-child(2) {
    border-bottom-color: #2c5364;
}

.who-is-this-for .who-card:nth-child(3) {
    border-bottom-color: #f5576c;
}

.who-is-this-for .who-card:nth-child(4) {
    border-bottom-color: #4facfe;
}

.who-is-this-for .who-card:nth-child(5) {
    border-bottom-color: #f6d365;
}

.who-is-this-for .who-icon-box {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: white;
}

.who-is-this-for .icon-bg-1 {
    background: linear-gradient(135deg, #1e7f5c, #27ae60);
}

.who-is-this-for .icon-bg-2 {
    background: linear-gradient(135deg, #2c5364, #203a43);
}

.who-is-this-for .icon-bg-3 {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.who-is-this-for .icon-bg-4 {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.who-is-this-for .icon-bg-5 {
    background: linear-gradient(135deg, #f6d365, #fda085);
}

.who-is-this-for .who-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-green);
}

.who-is-this-for .who-card p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 968px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .about-container {
        flex-direction: column;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .header-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .header {
        height: 60px;
        padding-top: 0;
    }

    .nav-menu.active .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        padding: 20px;
        box-shadow: var(--shadow);
    }

    .hero {
        padding-top: 60px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .section-padding {
        padding: 50px 0;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    .who-is-this-for .who-grid {
        grid-template-columns: 1fr;
    }
}

/* Updated Programs Grid for Centering */
.programs-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.program-card {
    flex: 0 1 350px;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

/* Certificates Section */
.cert-category {
    margin-bottom: 40px;
}

.cert-cat-title {
    font-size: 1.4rem;
    color: var(--dark-green);
    border-left: 4px solid var(--gold);
    padding-left: 15px;
    margin-bottom: 20px;
}

.certificates-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 15px 0;
    margin-bottom: 30px;
}

.cert-item {
    flex: 0 0 calc(25% - 30px);
    max-width: calc(25% - 30px);
    min-width: 200px;
}

@media (max-width: 992px) {
    .cert-item {
        flex: 0 0 calc(33.33% - 30px);
        max-width: calc(33.33% - 30px);
    }
}

@media (max-width: 768px) {
    .cert-item {
        flex: 0 0 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .cert-item {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.certificates-grid::-webkit-scrollbar {
    height: 6px;
}

.certificates-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.certificates-grid::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 10px;
}

.cert-item.is-hidden {
    display: none;
}

.cert-item {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    scroll-snap-align: start;
    background: #fff;
}

.cert-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
}

.certificate-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    padding: 5px;
}

/* Results Gallery Styling */
.results-gallery {
    display: flex;
    flex-wrap: nowrap;
    /* Force single line */
    overflow-x: auto;
    gap: 25px;
    padding: 20px 5px 30px;
    /* Extra bottom padding for scrollbar */
    margin-bottom: 40px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    /* Restore scrollbar visibility */
    scrollbar-width: thin;
    scrollbar-color: var(--primary-green) #f1f1f1;
}

.results-gallery::-webkit-scrollbar {
    display: block;
    /* Show it */
    height: 8px;
}

.results-gallery::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.results-gallery::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 10px;
    border: 2px solid #f1f1f1;
}

.results-gallery::-webkit-scrollbar-thumb:hover {
    background: var(--dark-green);
}

.results-container-outer {
    position: relative;
    width: 100%;
}

.trust-badge-large {
    display: inline-block;
    background: var(--primary-green);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(30, 127, 92, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccd6d1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-green);
    transform: scale(1.3);
}

.results-gallery::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 10px;
}

.result-item {
    flex: 0 0 350px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    scroll-snap-align: start;
    background: #fff;
    position: relative;
}

.result-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    font-size: 0.9rem;
    text-align: center;
    font-weight: 500;
}

.result-item:hover {
    transform: scale(1.02);
}

.result-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@media (max-width: 768px) {
    .result-item {
        flex: 0 0 280px;
    }
}

@media (max-width: 480px) {
    .results-gallery {
        flex-direction: column;
        overflow-x: visible;
        gap: 30px;
        /* Increased gap for clear separation */
        align-items: center;
        padding: 20px 15px;
    }

    .result-item {
        flex: 0 0 auto;
        width: 100%;
        max-width: 320px;
        margin-bottom: 10px;
        /* Extra bottom spacing */
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
        /* Slightly deeper shadow for card effect */
    }
}

/* --- Calorie Guide Pop-up Styles (Clean Minimal) --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: #ffffff;
    max-width: 440px;
    width: 90%;
    border-radius: 16px;
    position: relative;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #999;
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: #333;
}

.modal-content h3 {
    font-size: 1.8rem;
    color: var(--dark-green);
    margin-bottom: 15px;
    font-weight: 700;
}

.modal-desc {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 25px;
}

.modal-benefits {
    text-align: left;
    margin: 25px 0;
    list-style: none;
    padding: 0;
}

.modal-benefits li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: #444;
}

.modal-benefits li::before {
    content: "•";
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.2rem;
}

.modal-pricing {
    margin: 25px 0;
}

.new-price {
    font-size: 2.2rem;
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 5px;
}

.old-price-small {
    font-size: 0.9rem;
    color: #888;
}

.btn-minimal {
    display: block;
    width: 100%;
    background: var(--primary-green);
    color: #fff;
    padding: 15px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s;
    margin-top: 20px;
}

.btn-minimal:hover {
    background: var(--dark-green);
}

.modal-footer {
    margin-top: 25px;
    font-size: 0.85rem;
    color: #888;
}

.modal-footer a {
    color: var(--primary-green);
    text-decoration: none;
}

/* Smart Tip Popup Styles */
#smart-tip-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    background: linear-gradient(135deg, #ff512f, #dd2476);
    color: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    font-family: var(--font-body);
    display: none;
    z-index: 9999;
    animation: fadeSlide 0.5s ease forwards;
}

#smart-tip-popup h4 {
    margin: 0 0 10px;
    color: white;
    font-size: 1.2rem;
}

#smart-tip-popup p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.95);
}

.popup-btn {
    display: block;
    text-align: center;
    background: #ffffff;
    color: #dd2476;
    padding: 12px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.popup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

#close-popup {
    position: absolute;
    top: 5px;
    right: 5px;
    cursor: pointer;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.2s;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    /* Above the popup content */
}

#close-popup:hover {
    color: white;
    transform: scale(1.1);
}

@keyframes fadeSlide {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 480px) {
    #smart-tip-popup {
        width: 90%;
        left: 5%;
        right: 5%;
        bottom: 10px;
        padding: 20px;
    }

    .modal-content {
        padding: 25px 20px;
        max-width: 320px;
    }

    .modal-content h3 {
        font-size: 1.5rem;
    }

    .new-price {
        font-size: 1.8rem;
    }

    .modal-close {
        padding: 10px;
        top: 5px;
        right: 5px;
    }
}

/* Contact Form Styles */
.contact-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: flex;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--primary-green);
    cursor: pointer;
    font-size: 1rem;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.form-group label i {
    font-size: 0.9rem;
    opacity: 0.9;
}

.input-with-icon {
    position: relative;
    width: 100%;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e0e8e4;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1.05rem;
    background-color: #fcfdfc;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #28a745;
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.1);
}

.btn-block {
    width: 100%;
    display: block;
    margin-top: 35px;
    padding: 20px;
    font-size: 1.25rem;
    background-color: #28a745;
    color: white;
    border: none;
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.3);
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-block:hover {
    background-color: #218838;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(40, 167, 69, 0.4);
}

.form-notice {
    text-align: center;
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Daily Health Tip Section Scroll Styles */
.daily-tip-section {
    background-color: #f8faf9;
    padding: 40px 0;
}

#daily-tip-box {
    background: var(--primary-green);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(30, 127, 92, 0.15);
    text-align: center;
    border: 4px solid #fff;
    margin: 0 auto;
}

#daily-tip-box h3 {
    color: #fff !important;
    margin-bottom: 12px;
    font-size: 1.4rem;
}

#daily-tip {
    color: #ffffff !important;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1.5;

    /* How It Works Section */
    .how-it-works .section-header {
        margin-bottom: 50px;
    }

    .how-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    .how-step {
        flex: 0 1 350px;
        background: var(--white);
        padding: 40px 30px;
        border-radius: 20px;
        text-align: center;
        position: relative;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease;
    }

    .how-step:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    }

    .step-num {
        position: absolute;
        top: -15px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--gold);
        color: white;
        width: 35px;
        height: 35px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 1rem;
    }

    .step-icon {
        font-size: 2.5rem;
        color: var(--primary-green);
        margin-bottom: 20px;
    }

    /* Local Trust Badge */
    .local-trust-badge {
        display: inline-block;
        background: #e9f5ef;
        color: var(--dark-green);
        padding: 8px 15px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .local-trust-badge i {
        color: #e67e22;
        margin-right: 5px;
    }
}


/* Google Rating Badge Styles */
.google-rating-badge {
    display: inline-flex;
    align-items: center;
    background: white;
    padding: 8px 15px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

.hero-rating {
    margin: 20px 0;
}

.google-logo-small {
    /* Set specific image constraints to avoid broken rendering */
    height: 18px !important;
    width: auto !important;
    margin-right: 12px;
}

.rating-stars {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.rating-score {
    font-weight: 800;
    font-size: 0.9rem;
    color: #333;
}

.stars {
    color: #fbbc05;
    font-size: 0.75rem;
}




/* Upgraded How It Works Section */
.how-grid-upgraded {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.how-card-upgraded {
    flex: 1;
    background: var(--white);
    padding: 40px 30px;
    border-radius: 25px;
    box-shadow: var(--shadow-premium);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(30, 127, 92, 0.05);
}

.how-card-upgraded:hover {
    transform: translateY(-10px);
    border-color: var(--primary-green);
}

.step-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(201, 162, 77, 0.3);
}

.step-icon-upgraded {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.how-card-upgraded h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.how-arrow {
    display: flex;
    align-items: center;
    color: var(--gold);
    font-size: 1.5rem;
    opacity: 0.5;
}

@media (max-width: 968px) {
    .how-grid-upgraded {
        flex-direction: column;
        align-items: center;
    }

    .how-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }

    .how-card-upgraded {
        width: 100%;
        max-width: 400px;
    }
}