/* ================= Global Resets & Variables ================= */
:root {
    --color-primary-green: #90e390; 
    --color-secondary-yellow: #fbd435; 
    --color-dark-text: #222222;
    --color-light-text: #666666;
    --color-bg-light-green: #f0fcf0; 
    --color-white: #ffffff;
    --color-check-green: #00c07f;
    --container-width: 1140px;
    --header-height: 80px; 
    --top-bar-height: 36px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--color-dark-text);
    background-color: var(--color-bg-light-green);
    /* Push content down so it's not hidden behind fixed header */
    padding-top: calc(var(--header-height) + var(--top-bar-height)); 
}

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ================= Button Styles (Leaf & Pill Shapes) ================= */
.btn {
    padding: 15px 45px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
    cursor: pointer;
    color: #1a1a1a;
    text-align: center;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Green Button: Sharp Top-Right Corner */
.btn-green {
    background-color: var(--color-primary-green);
}
.btn-leaf-right {
    border-radius: 50px 0px 50px 50px; /* Sharp top-right */
}

/* Yellow Button: Sharp Bottom-Left Corner */
.btn-yellow {
    background-color: var(--color-secondary-yellow);
}
.btn-leaf-left {
    border-radius: 50px 50px 50px 0px; /* Sharp bottom-left */
}

/* Nav Button (Standard Rounded) */
.btn-nav {
    border-radius: 30px;
    padding: 10px 30px;
    font-size: 1rem;
}

/* White Pill Button */
.btn-white-pill {
    background-color: #ffffff;
    color: var(--color-check-green);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 1px solid #eee;
}

/* ================= Header & Navigation ================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--color-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.top-bar {
    background-color: #2b2b2b;
    color: #ccc;
    font-size: 0.75rem;
    height: var(--top-bar-height);
    display: flex;
    align-items: center;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
}

.main-nav-container {
    height: var(--header-height);
    display: flex;
    align-items: center;
    background: var(--color-white);
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    margin-left: 10px; 
    font-weight: bold; 
    color: #2c5e2e;
    font-size: 1.2rem;
}
/* Hide logo text if image loads */
.logo img:not([src=""]) + .logo-text {
    /* display: none; */ /* Uncomment if you want to hide text when logo is present */
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-weight: 500;
    color: var(--color-dark-text);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--color-primary-green);
}

/* ================= Hero Section ================= */
.hero-section {
    background: linear-gradient(135deg, var(--color-bg-light-green) 0%, #ffffff 100%);
    padding: 80px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-text {
    flex: 1;
    max-width: 550px;
}

.tag {
    display: inline-block;
    background-color: #dcf5dc;
    color: #4a9c4a;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--color-dark-text);
}

.hero-text p {
    color: var(--color-light-text);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-image-container {
    flex: 1;
    max-width: 500px;
    height: 500px;
    position: relative;
}

.main-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    position: absolute; top: 0; left: 0; z-index: 2;
}

.placeholder-box {
    width: 100%; height: 100%; 
    background: #ddd; border-radius: 40px; 
    display: flex; justify-content: center; align-items: center; 
    color: #666;
}
.main-hero-img:not([src=""]) + .placeholder-box { display: none; }


/* ================= Features Section ================= */
.features-section {
    padding: 20px 0 80px; /* Reduced top padding to pull it up */
    background: transparent;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--color-white);
    padding: 35px 25px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.icon-wrapper {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--color-light-text);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ================= Philosophy Section ================= */
.philosophy-section {
    padding: 80px 0 100px;
    background-color: #fcfefc;
}

.philosophy-content {
    display: flex;
    align-items: center;
    gap: 80px;
    justify-content: space-between;
}

.philosophy-image-wrapper {
    flex: 1;
    position: relative;
    max-width: 550px;
}

.philosophy-img {
    width: 100%;
    height: 500px;       /* <--- Controls the height (adjust this number as needed) */
    object-fit: cover;   /* <--- Prevents the image from looking squashed/stretched */
    border-radius: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    display: block;
}

.img-placeholder {
    width: 100%; height: 400px;
    background: #e0e0e0; border-radius: 30px;
    display: flex; align-items: center; justify-content: center;
    font-weight: bold; color: #555;
}
.philosophy-img:not([src=""]) + .img-placeholder { display: none; }


.philosophy-text {
    flex: 1;
    max-width: 550px;
}

.tag-green-light {
    background-color: #d1f0d1;
    color: #2c5e2e;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.7rem;
    padding: 8px 16px;
    border-radius: 4px;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 25px;
}

.philosophy-text h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    color: var(--color-dark-text);
    margin-bottom: 20px;
    font-weight: 700;
}

.philosophy-text p {
    color: var(--color-light-text);
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 1rem;
}

.check-list {
    margin-bottom: 40px;
}

.check-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-weight: 500;
    color: #444;
    font-size: 0.95rem;
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px; height: 24px;
    background-color: var(--color-check-green);
    color: white;
    border-radius: 50%;
    font-size: 12px;
    margin-right: 15px;
    box-shadow: 0 2px 5px rgba(0, 192, 127, 0.3);
}

/* ================= Responsive / Mobile Adjustments ================= */
@media (max-width: 968px) {
    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
        gap: 40px;
    }
    
    .hero-text h1 { font-size: 2.8rem; }
    
    .hero-buttons { justify-content: center; }

    .hero-image-container { width: 100%; height: 400px; }

    /* Stack Philosophy Section */
    .philosophy-content {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }

    .philosophy-image-wrapper, 
    .philosophy-text { max-width: 100%; }

    .check-list {
        display: inline-block;
        text-align: left; /* Keep check list readable */
    }
}

@media (max-width: 768px) {
    .nav-links { display: none; } /* Simplified nav for mobile */
    .top-bar { justify-content: center; }
    .top-bar span:last-child { display: none; }
}

/* ================= Seasonal Favorites Section ================= */
.seasonal-section {
    padding: 100px 0;
    /* Uses the same background color as body to blend in, or slightly darker if preferred */
    background-color: var(--color-bg-light-green); 
}

/* Centered Header Styles */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.text-center {
    text-align: center;
}

/* Center the tag specifically for this section */
.tag-center {
    display: inline-block; /* Essential for centering */
    margin: 0 auto 20px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-dark-text);
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--color-light-text);
    font-size: 1rem;
}

/* Grid Layout for Cards */
.seasonal-grid {
    display: grid;
    /* This creates 3 columns that auto-stack on mobile */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Card Styling */
.seasonal-card {
    background: #ffffff;
    border-radius: 25px;
    overflow: hidden; /* Ensures image corners stay rounded matching the card */
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.02);
}

.seasonal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Card Image Area */
.card-image-wrapper {
    height: 250px;
    position: relative;
    background-color: #eee;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-placeholder {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    color: #888; font-weight: bold;
}
/* Hide placeholder if image loads */
.card-img:not([src=""]) + .card-placeholder { display: none; }


/* Card Text Area */
.card-content {
    padding: 30px;
}

.stars {
    color: #fbd435; /* Gold/Yellow color */
    letter-spacing: 2px;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.seasonal-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-dark-text);
}

.seasonal-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* ================= Mobile Adjustments for Section 3 ================= */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .seasonal-grid {
        /* On small phones, force single column if needed, though auto-fit handles most */
        grid-template-columns: 1fr;
        max-width: 400px; /* Limit width on mobile so cards aren't too stretched */
        margin: 0 auto;
    }
}


/* ================= Upcoming Beverage Section ================= */
.beverage-section {
    background-color: #fdf8f0; /* The specific beige/cream color */
    position: relative; /* Needed for floating elements */
    overflow: hidden; /* Hides floating elements if they go off screen */
    min-height: 600px;
    display: flex;
    align-items: center;
}

.beverage-container {
    display: flex;
    width: 100%;
    max-width: 1400px; /* Wider container for this split section */
    margin: 0 auto;
    align-items: center;
}

/* --- Left Side: Text --- */
.beverage-text-content {
    flex: 1;
    padding: 60px 80px;
    z-index: 2; /* Ensures text stays above floating images */
    max-width: 600px;
}

.beverage-text-content h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #1f1f1f;
    line-height: 1.2;
    margin-bottom: 20px;
}

.separator-icon {
    font-size: 1.5rem;
    color: #a8c2a8;
    margin-bottom: 20px;
}

.beverage-text-content p {
    color: #777;
    line-height: 1.8;
    margin-bottom: 40px;
    font-size: 1rem;
}

/* Product Button Style */
.btn-product-pill {
    display: inline-flex;
    align-items: center;
    background-color: transparent;
    border: 1px solid #e0caae; /* Subtle brownish border */
    border-radius: 50px;
    padding: 5px 25px 5px 5px; /* Less padding left for the circle */
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-product-pill:hover {
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.icon-circle {
    width: 45px;
    height: 45px;
    background-color: #e68a8a; /* Pinkish-red color */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.2rem;
}

.btn-text {
    font-weight: 700;
    color: #444;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

/* --- Right Side: Image --- */
.beverage-image-wrapper {
    flex: 1;
    height: 600px; /* Matches section height */
    position: relative;
    /* Move it slightly right to fill edge */
    margin-right: -10%; 
}

.beverage-img {
    width: 110%; /* Extra width to ensure full coverage */
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Optional: Brush/Fade effect on the left edge of the image */
.overlay-brush {
    position: absolute;
    top: 0;
    left: 0;
    width: 150px; /* Width of the fade */
    height: 100%;
    background: linear-gradient(to right, #fdf8f0 20%, transparent 100%);
    z-index: 1;
}

/* --- Floating Decorative Elements --- */
/* --- Floating Emoji Styles (Replaces Images) --- */
.floating-emoji {
    position: absolute;
    z-index: 1; /* Behind text but above background */
    cursor: default;
    user-select: none; /* Prevents selecting the emoji like text */
    animation: floatAnimation 4s ease-in-out infinite;
    filter: drop-shadow(0 10px 5px rgba(0,0,0,0.05)); /* Soft shadow for 3D effect */
}

/* 1. Large Avocado (Bottom Left) */
.float-1 { 
    bottom: 40px;
    left: 20px;
    font-size: 8rem; /* Very big */
    transform: rotate(-25deg);
    opacity: 1;
}

/* 2. Lime/Lemon (Top Center-Left) */
.float-2 { 
    top: 60px;
    left: 38%;
    font-size: 5rem;
    transform: rotate(15deg);
    opacity: 0.6;
    filter: blur(2px); /* Slight blur for depth of field */
}

/* 3. Leaf (Middle Left) */
.float-3 { 
    top: 280px;
    left: 8%;
    font-size: 3rem;
    transform: rotate(45deg);
    opacity: 0.7;
}

/* 4. Cucumber (Tiny detail) */
.float-4 {
    bottom: 150px;
    left: 30%;
    font-size: 2.5rem;
    transform: rotate(-10deg);
    opacity: 0.5;
    filter: blur(1px);
}

/* The Float Animation */
@keyframes floatAnimation {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); } /* Moves up */
    100% { transform: translateY(0px) rotate(0deg); }
}

/* Mobile: Hide them so they don't block text */
@media (max-width: 968px) {
    .floating-emoji {
        display: none;
    }
}

/* Positions for specific items */
.float-1 { /* Avocado */
    bottom: 50px;
    left: 50px;
    width: 100px;
    transform: rotate(-15deg);
}
.float-2 { /* Lime slice */
    top: 100px;
    left: 40%;
    width: 60px;
}
.float-3 { /* Leaf */
    top: 200px;
    left: 10%;
    width: 40px;
}

@keyframes floatAnimation {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* ================= Mobile & Tablet Adjustments ================= */
@media (max-width: 968px) {
    .beverage-section {
        flex-direction: column;
        padding-bottom: 0;
        height: auto;
    }

    .beverage-container {
        flex-direction: column;
    }

    .beverage-text-content {
        padding: 60px 20px;
        text-align: center;
        max-width: 100%;
    }

    /* Hide floating elements on mobile to keep it clean */
    .floating-item {
        display: none;
    }

    .beverage-image-wrapper {
        width: 100%;
        height: 350px;
        margin-right: 0;
    }
    
    .overlay-brush {
        /* Change fade to top-to-bottom for mobile stacking */
        width: 100%;
        height: 80px;
        background: linear-gradient(to bottom, #fdf8f0 10%, transparent 100%);
    }
}

/* ================= Testimonial Slider Styles ================= */
.testimonial-section {
    padding: 100px 0;
    background-color: #ffffff;
}

/* Typography (Same as before) */
.cursive-subtitle {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    color: #c5a982;
    display: block;
    margin-bottom: 5px;
}

.testimonial-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 15px;
}

.separator-line {
    font-size: 1.5rem;
    color: #aebfab;
    margin-bottom: 40px;
}

.testimonial-slider-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    min-height: 350px; /* Reserves space so page doesn't jump */
}

/* SLIDE LOGIC */
.testimonial-slide {
    display: none; /* Hide all slides by default */
    animation: fadeEffect 0.8s; /* Smooth fade in */
}

/* This class makes the slide visible */
.active-slide {
    display: block; 
}

/* Fade Animation Keyframes */
@keyframes fadeEffect {
    from {opacity: 0; transform: translateY(20px);}
    to {opacity: 1; transform: translateY(0);}
}

/* Avatar & Text Styles */
.avatar-wrapper { margin-bottom: 30px; }

.avatar-img {
    width: 100px; height: 100px;
    border-radius: 50%; object-fit: cover;
    border: 5px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.quote-text {
    font-style: italic; font-size: 1.1rem;
    color: #666; line-height: 1.8;
    margin-bottom: 30px;
}

.author-info {
    font-size: 1rem; color: #c5a982;
    font-weight: 700;
}

.author-role { color: #999; font-weight: 400; }

/* Dots Styling */
.pagination-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.dot {
    width: 12px; height: 12px;
    background-color: #e0e0e0;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover { background-color: #dccbb1; }

/* Active Dot Color */
.active-dot {
    background-color: #c5a982;
    transform: scale(1.2);
}

/* ================= How It Works Section (Dark) ================= */
.how-it-works-section {
    background-color: #1b2126; /* Dark slate/black color */
    padding: 100px 0;
    color: #ffffff;
}

/* The dark pill tag specific to this section */
.tag-dark-pill {
    background-color: #2c3338;
    color: #90e390; /* Matching the brand green */
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 8px 18px;
    border-radius: 20px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.05);
}

.title-white {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 60px;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    /* Create 4 equal columns */
    grid-template-columns: repeat(4, 1fr); 
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* The Green Number Circle */
.step-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4cb050 0%, #2e7d32 100%); /* Green gradient */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3); /* Deep shadow for 3D effect */
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

/* Hover effect for fun */
.step-item:hover .step-circle {
    transform: scale(1.1);
}

.step-item p {
    color: #aebdc2; /* Light grey text for readability on dark bg */
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 200px;
}

/* ================= Mobile Responsive for How It Works ================= */
@media (max-width: 968px) {
    .steps-grid {
        /* Switch to 2 columns on tablets */
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
}

@media (max-width: 500px) {
    .steps-grid {
        /* Switch to 1 column on phones */
        grid-template-columns: 1fr;
    }
    .title-white {
        font-size: 2rem;
    }
}

/* ================= Pricing Section ================= */
.pricing-section {
    padding: 100px 0;
    background-color: #fbfdfb;
}

.pricing-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-dark-text);
    margin-bottom: 10px;
    margin-top: 15px;
}

/* Grid Layout */
.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 50px; /* Reduced gap slightly to help them fit */
    margin-top: 50px;
    flex-wrap: wrap; 
}

/* Card Styling */
.pricing-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px 30px; /* Reduced side padding slightly */
    
    
    /* --- CRITICAL CHANGE HERE --- */
    /* width: 380px;  <-- REMOVED FIXED WIDTH */
    flex: 1;       /* <-- ADDED: Allows cards to share space equally */
    min-width: 300px; /* Prevents them from getting too squashed */
    /* ---------------------------- */

    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    position: relative;
    
    border: 1px solid #eee;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: #009e60;
    box-shadow: 0 25px 60px rgba(0, 158, 96, 0.25);
}


/* Specific styling for the Popular Card */
.popular-card {
    border: 2px solid var(--color-primary-green);
    transform: scale(1.05);
    z-index: 2; /* Ensures it sits on top if they overlap slightly */
}

.popular-card:hover {
    transform: scale(1.05) translateY(-5px);
}

/* Most Popular Badge */
.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #009966;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 20px;
    letter-spacing: 1px;
    box-shadow: 0 5px 10px rgba(0,153,102,0.3);
}

/* Plan Typography */
.plan-name {
    font-size: 1.2rem;
    color: var(--color-dark-text);
    margin-bottom: 15px;
    font-weight: 700;
}

.price-tag {
    font-size: 3rem;
    font-weight: 800;
    color: #009966;
    margin-bottom: 20px;
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.currency {
    font-size: 1.5rem;
    margin-right: 5px;
    vertical-align: top;
}

.period {
    font-size: 0.9rem;
    color: #999;
    font-weight: 400;
    margin-left: 5px;
}

.divider {
    border: 0;
    height: 1px;
    background: #f0f0f0;
    margin: 20px 0 30px;
}

/* Feature List */
.plan-features {
    text-align: left;
    margin-bottom: 40px;
    padding-left: 10px; /* Reduced indentation */
}

.plan-features li {
    margin-bottom: 15px;
    color: #555;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.plan-features li span {
    color: #00c07f;
    font-weight: bold;
    margin-right: 12px;
}

/* Full Width Button modification */
.btn-full-width {
    width: 100%;
    display: block;
    padding: 18px 0;
    border-radius: 12px;
}

/* Mobile Responsiveness */
@media (max-width: 991px) { /* Increased breakpoint to standard tablet size */
    .pricing-grid {
        flex-direction: column; /* Force stack on smaller screens */
        align-items: center;
        gap: 60px;
    }
    
    .pricing-card {
        width: 100%;     /* Full width on mobile */
        max-width: 380px; /* Limit width on mobile so it looks nice */
        margin-bottom: 20px;
    }

    .popular-card {
        transform: scale(1);
    }
    .popular-card:hover {
        transform: translateY(-5px);
    }
}

/* ================= Blog Section (Fixed) ================= */
.blog-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.blog-header {
    margin-bottom: 50px;
}

.separator-small {
    color: #aebfab;
    font-size: 1.2rem;
    margin: 10px 0 20px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background: #fdfcfc;
    /* Only round the bottom corners of the card itself */
    border-radius: 0 0 15px 15px; 
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

/* 1. Main Wrapper (Holds Image + Tag) */
.blog-image-wrapper {
    position: relative;
    height: 250px;
    /* IMPORTANT: removed overflow:hidden from here so tag shows */
}

/* 2. Inner Clip (Holds ONLY Image for Zoom) */
.img-clip {
    width: 100%;
    height: 100%;
    overflow: hidden; /* Clips the image when it zooms */
    border-radius: 15px 15px 0 0; /* Rounds the top corners of image */
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.blog-card:hover .blog-img {
    transform: scale(1.08); /* Smooth zoom effect */
}

/* 3. The Smoothie Tag (Now stays visible) */
.blog-tag {
    position: absolute;
    bottom: -12px; /* Hangs half out */
    left: 50%;
    transform: translateX(-50%);
    background-color: #8cc63f; /* Fresh Green */
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10; /* Ensures it sits ON TOP of the white text area */
    box-shadow: 0 4px 8px rgba(140, 198, 63, 0.3);
}

.blog-content {
    padding: 30px 20px 30px;
    text-align: center;
    background-color: #fff; /* Ensure bg is white behind tag */
    border-radius: 0 0 15px 15px;
}

.blog-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin: 0;
    line-height: 1.5;
}

.blog-card:hover .blog-content h3 {
    color: #8cc63f;
}

/* ================= Gallery Section ================= */
.gallery-section {
    position: relative;
    width: 100%;
    height: 350px; /* Adjust height of the strip */
    overflow: hidden;
    background-color: #f9f9f9;
}

/* The Scrollable Track */
.gallery-track {
    display: flex;
    height: 100%;
    overflow-x: auto; /* Allows scrolling */
    scroll-behavior: smooth;
    /* Hide scrollbar for cleaner look */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Hide scrollbar for Chrome/Safari/Opera */
.gallery-track::-webkit-scrollbar {
    display: none;
}

/* Individual Image Container */
.gallery-item {
    min-width: 20%; /* Shows exactly 5 images on desktop (100% / 5 = 20%) */
    height: 100%;
    flex-shrink: 0; /* Prevents shrinking */
    position: relative;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures images fill the box without stretching */
    display: block;
    transition: filter 0.3s ease;
}

/* Optional hover effect */
.gallery-item:hover .gallery-img {
    filter: brightness(0.9);
}

/* Navigation Buttons */
.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    z-index: 10;
    font-size: 1.2rem;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, background-color 0.2s;
}

.gallery-btn:hover {
    background-color: #f0f0f0;
    transform: translateY(-50%) scale(1.1);
}

.btn-left {
    left: 20px;
}

.btn-right {
    right: 20px;
}

/* ================= Mobile Responsive ================= */
@media (max-width: 968px) {
    .gallery-item {
        min-width: 33.33%; /* Show 3 images on tablets */
    }
    .gallery-section {
        height: 300px;
    }
}

@media (max-width: 600px) {
    .gallery-item {
        min-width: 100%; /* Show 1 image full width on mobile */
    }
    .gallery-section {
        height: 300px;
    }
}


/* ================= Footer Section (Refined) ================= */
.site-footer {
    background-color: #0d1117; /* Richer dark background (Dark Blue/Black) */
    color: #a0aec0; /* Cool grey text for better readability */
    padding-top: 80px;
    font-size: 0.9rem;
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    /* Adjusted columns to give Brand more space, and Links less space */
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 60px;
}

/* --- Col 1: Brand --- */
.footer-logo {
    height: 100px; /* Slightly larger logo */
    margin-bottom: 20px;
}

.footer-desc {
    line-height: 1.8;
    color: #8b949e;
    max-width: 300px; /* Limits text width for cleaner look */
}

/* --- Headings --- */
.footer-col h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
}

/* Optional: Small green line under headings if your design had it */
/* .footer-col h4::after {
    content: ''; display: block; width: 30px; height: 2px;
    background: #90e390; margin-top: 10px;
} */

/* --- Links Columns --- */
.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #a0aec0;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #90e390; /* Brand Green */
    transform: translateX(5px); /* Slide effect */
}

/* --- Contact Column (Icons) --- */
.contact-list li {
    display: flex;
    align-items: flex-start; /* Aligns to top if text wraps */
    margin-bottom: 20px;
    color: #d0d7de; /* Brighter text for contact info */
}

.icon-wrap {
    min-width: 30px; /* Fixed width for icon alignment */
    color: #ff5e78; /* Pink/Red color for icons (Matches the image pin/phone) */
    font-size: 1rem;
    margin-top: 2px; /* Slight adjustment to align with text */
}

/* Specific color adjustments for different icons if needed */
.fa-location-dot { color: #ff5e78; } /* Pink Pin */
.fa-phone { color: #ff5e78; }
.fa-envelope { color: #ffffff; } /* White Mail */
.fa-clock { color: #a0aec0; }    /* Grey Clock */


/* --- Copyright Bar --- */
.footer-bottom {
    background-color: #05080c; /* Darker shade */
    padding: 25px 0;
    text-align: center;
    border-top: 1px solid #21262d; /* Subtle border */
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #484f58;
}

/* ================= Footer Mobile Responsive ================= */
@media (max-width: 968px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr; /* 2x2 Layout on tablets */
        gap: 50px;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr; /* Stack all on phone */
        text-align: left; /* Keep left align like the image */
    }
    
    .footer-desc {
        max-width: 100%;
    }
}



/* SOCIAL LOGOS */

.top-bar {
    background: #2b2b2b;
    font-size: 0.85rem;
    color: #fff;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Left */
.top-bar-left span {
    color: #e0e0e0;
}

/* Right */
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.guarantee {
    color: #c9f7c2;
    font-weight: 500;
}

/* 🔴 Social Icons */
.top-social a {
    color: #f5a623;
    margin-left: 10px;
    font-size: 0.9rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.top-social a:hover {
    color: #7ce47a;
    transform: translateY(-2px);
}
