:root {
    /* Primary Color Palette */
    --primary-color: #2D5A27;
    /* Deep Forest Green */
    --primary-light: #4A7C44;
    --primary-dark: #1E3B1A;

    /* Secondary & Accent Colors */
    --secondary-color: #F8F5F0;
    /* Soft Garlic Cream */
    --accent-color: #8B4513;
    /* Onion Skin Brown */
    --accent-gold: #D4AF37;

    /* Text Colors */
    --text-main: #2C2C2C;
    --text-muted: #666666;
    --text-light: #FFFFFF;

    /* Layout Variables */
    --section-padding: 80px 20px;
    --border-radius: 8px;
    --transition-speed: 0.3s;
    --container-width: 1200px;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

body {
    font-family: var(--font-family);
    color: var(--text-main);
    background-color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-dark);
}

a {
    text-decoration: none;
    transition: var(--transition-speed);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* --- Navigation --- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
}

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

.logo img {
    height: 35px;
    width: auto;
    display: block;
}

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

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

.nav-links a {
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
}

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

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--text-light);
    margin-top: 0;
    padding: 100px 0;
    overflow: hidden;
    /* Contain the zooming images */
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    animation: kenBurns 15s linear infinite alternate;
}

@keyframes kenBurns {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.15);
    }
}

.hero .container {
    position: relative;
    z-index: 2;
    /* ABOVE the slider */
}

.hero-content {
    max-width: 850px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    color: var(--text-light);
    font-size: 4.5rem;
    margin: 25px 0;
    line-height: 1.1;
    font-weight: 800;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 45px;
    opacity: 0.95;
    max-width: 650px;
    line-height: 1.5;
}

.trust-badges {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    opacity: 0.8;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-item i {
    color: var(--accent-gold);
}

.btn-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
}

.btn-primary {
    background-color: #25D366;
    /* WhatsApp Green */
    color: white;
}

.btn-secondary {
    background-color: var(--primary-color);
    color: white;
}

/* --- About & Values --- */
.section {
    padding: var(--section-padding);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.sub-heading {
    display: inline-block;
    color: var(--accent-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 15px;
    position: relative;
    padding-left: 50px;
}

.sub-heading::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 35px;
    height: 2px;
    background: var(--accent-gold);
}

.sub-heading.centered {
    padding-left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.sub-heading.centered::before {
    position: static;
    transform: none;
}

.sub-heading.centered::after {
    content: '';
    width: 35px;
    height: 2px;
    background: var(--accent-gold);
}

.about-text h2 {
    font-size: 2.25rem;
    line-height: 1.25;
}

.about-text p {
    font-size: 1.05rem;
    margin: 25px 0 35px;
    color: var(--text-main);
    opacity: 0.85;
}

.premium-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.premium-list li {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.list-icon {
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.8rem;
    box-shadow: 0 4px 10px rgba(45, 90, 39, 0.2);
}

.list-content strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 3px;
    color: var(--primary-dark);
}

.list-content span {
    font-size: 0.9rem;
    opacity: 0.7;
}

.about-visual {
    position: relative;
}

.image-stack {
    position: relative;
    z-index: 1;
}

.image-stack .main-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    display: block;
}

.visual-deco {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--accent-gold) 2px, transparent 2px);
    background-size: 15px 15px;
    z-index: -1;
    opacity: 0.3;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--primary-dark);
    color: white;
    padding: 25px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.experience-badge .number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-gold);
    line-height: 1;
}

.experience-badge .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
    white-space: nowrap;
}

/* --- Products --- */
.bg-light {
    background-color: var(--secondary-color);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

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

.product-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition-speed);
}

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

.product-img {
    height: 250px;
    object-fit: cover;
    width: 100%;
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    margin-bottom: 15px;
}

.tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    background: var(--secondary-color);
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* --- Logistics & Minimal Purchase --- */
.logistics-card {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: white;
    padding: 60px 40px;
    border-radius: 16px;
    margin-top: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.logistics-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.logistics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.threshold-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition-speed);
}

.threshold-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
    border-color: var(--accent-gold);
}

.threshold-card i {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
    display: block;
}

.threshold-card h4 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.threshold-card .amount {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 5px;
}

.threshold-card small {
    display: block;
    opacity: 0.8;
    font-size: 0.85rem;
}

/* --- Testimonials --- */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-light);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.05;
    font-family: serif;
    line-height: 1;
}

.stars {
    color: #FFD700;
    /* Gold */
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-main);
    line-height: 1.7;
    margin-bottom: 30px;
    flex-grow: 1;
    font-size: 1.05rem;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.user-avatar {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.user-info strong {
    display: block;
    color: var(--primary-dark);
    font-size: 1rem;
    margin-bottom: 2px;
}

.user-info span {
    font-size: 0.85rem;
    opacity: 0.7;
    display: flex;
    align-items: center;
    gap: 5px;
}

.verified-badge {
    color: #3b82f6;
    font-size: 0.8rem;
}

/* --- CTA Section --- */
.cta-section {
    background: linear-gradient(rgba(45, 90, 39, 0.9), rgba(45, 90, 39, 0.9)), url('hero_warehouse_stock_1772900770726.png') center/cover no-repeat fixed;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.cta-section h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section .btn-primary {
    padding: 20px 50px;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    border: 2px solid transparent;
}

.cta-section .btn-primary:hover {
    background-color: white;
    color: #25D366;
    border-color: #25D366;
}

/* --- CTA Floating --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* --- Footer --- */
footer {
    background: #1a3317;
    /* Even darker green */
    color: white;
    padding: 80px 20px 40px;
    border-top: 4px solid var(--accent-gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-brand-top {
    display: flex;
    align-items: center;
    gap: 25px;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

.footer-contact li {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    align-items: center;
}

.footer-contact i {
    color: var(--accent-gold);
    width: 24px;
    /* Fixed width for icon alignment */
    text-align: center;
    font-size: 1.2rem;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* --- Gallery Section --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    /* Increased gap */
    margin-top: 40px;
}

.gallery-item {
    background: white;
    padding: 10px;
    /* Card effect padding */
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    /* Stronger shadow for card */
    transition: all 0.4s ease;
    display: flex;
    /* Ensure content stretches */
    flex-direction: column;
}

.gallery-item-img-wrapper {
    width: 100%;
    aspect-ratio: 4 / 3;
    /* Fixed aspect ratio for ALL images */
    overflow: hidden;
    border-radius: 4px;
    /* Slight inner radius */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* This makes sure the image fills the 4:3 box without distortion */
    transition: transform 0.5s ease;
    display: block;
}

/* --- Expanded Features --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-item {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-light);
}

.feature-item i {
    color: var(--primary-color);
    margin-bottom: 25px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-item h4 {
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-size: 1.25rem;
    font-weight: 700;
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.7;
    opacity: 0.8;
}

/* --- FAQs Section --- */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.faq-item {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-item h4 {
    color: var(--primary-dark);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.faq-item p {
    font-size: 0.95rem;
    opacity: 0.8;
}

/* Responsive & Efficiency Optimization */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .about-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 50px 0;
        /* Reduced mobile padding */
    }

    .container {
        padding: 0 20px;
    }

    /* Navigation Mobile */
    .menu-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: var(--primary-color);
        cursor: pointer;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        align-items: center;
        padding-top: 40px;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .nav-links a {
        font-size: 1.1rem;
    }

    /* Hero Optimization - More Efficient */
    .hero {
        min-height: 100vh;
        min-height: 100svh;
        padding: 100px 0 40px;
        text-align: center;
        background-attachment: scroll;
        /* Fix for iOS Safari */
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 25px;
        padding: 0 10px;
    }

    .trust-badges {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        margin-top: 30px;
    }

    .trust-badge {
        padding: 6px 12px;
        font-size: 0.75rem;
    }

    .btn-group {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 14px;
    }

    /* Horizontal Scrollers - Efficiency */
    .testimonial-grid,
    .features-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 10px 20px 30px;
        margin-left: -20px;
        margin-right: -20px;
        gap: 20px;
        scrollbar-width: none;
        /* Hide scrollbar Firefox */
    }

    .testimonial-grid::-webkit-scrollbar,
    .features-grid::-webkit-scrollbar {
        display: none;
        /* Hide scrollbar Chrome/Safari */
    }

    .testimonial-card,
    .feature-item {
        flex: 0 0 85%;
        /* Shows partial next card to indicate scroll */
        scroll-snap-align: center;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    /* Product Grid - Vertical Stacking (User Preference) */
    .product-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0;
        margin: 0;
    }

    .product-card {
        width: 100%;
        margin-bottom: 10px;
    }

    /* About Section Stacking */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .sub-heading {
        justify-content: center;
        padding-left: 0;
        gap: 10px;
    }

    .sub-heading::before {
        position: static;
    }

    .sub-heading::after {
        content: '';
        width: 30px;
        height: 2px;
        background: var(--accent-gold);
    }

    .premium-list li {
        text-align: left;
        font-size: 0.9rem;
    }

    .about-visual {
        margin-top: 20px;
    }

    .experience-badge {
        left: 50%;
        transform: translateX(-50%);
        bottom: -15px;
        padding: 12px 18px;
    }

    .cta-section {
        background-attachment: scroll;
        /* Fix for iOS Safari */
    }

    /* Logistics & Footer */
    .logistics-card {
        padding: 40px 20px;
    }

    .logistics-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 30px !important;
        /* Reduced from 50px */
        text-align: center !important;
    }

    .footer-brand {
        margin-bottom: 20px;
    }

    .footer-brand-top {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        /* Reduced from 15px */
        justify-content: center;
        margin-bottom: 10px;
        /* Reduced from 15px */
    }

    .footer-brand-top img {
        height: 70px !important;
        /* Reduced from 100px */
    }

    .footer-brand-top div {
        display: none !important;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        /* Reduced from 15px */
    }

    .footer-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        /* Reduced from 25px */
    }

    .footer-contact li {
        justify-content: center;
        text-align: center;
        flex-direction: row;
        /* Back to row but with wrap or small font */
        gap: 10px;
    }

    .footer-heading {
        font-size: 1.2rem;
        margin-bottom: 20px;
        color: var(--accent-gold);
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .footer-links li,
    .footer-contact li {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .product-card,
    .testimonial-card,
    .feature-item {
        flex: 0 0 90%;
    }
}

/* Hide toggle on desktop */
.menu-toggle {
    display: none;
}

/* --- Restored Gallery & Lightbox Styles --- */
.hidden-gallery-item {
    display: none;
}

.hidden-gallery-item.show {
    display: block;
    animation: fadeInGallery 0.5s ease forwards;
}

@keyframes fadeInGallery {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Lightbox Modal Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    object-fit: contain;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    z-index: 2001;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--accent-gold);
    text-decoration: none;
    cursor: pointer;
}

/* --- FAQ Section Enhancements --- */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: white;
    transition: background-color 0.3s ease;
}

.faq-question h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    transition: color 0.3s ease;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.4s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), padding 0.4s ease;
    background-color: var(--secondary-color);
    padding: 0 25px;
}

.faq-answer p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* FAQ Active State */
.faq-item.active {
    border-color: var(--primary-light);
    box-shadow: 0 6px 15px rgba(45, 90, 39, 0.1);
}

.faq-item.active .faq-question {
    background-color: rgba(45, 90, 39, 0.03);
}

.faq-item.active .faq-question h4 {
    color: var(--primary-color);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    /* Adjust if content is longer */
    padding: 20px 25px;
}

/* --- Floating Actions Enhancements --- */

/* WhatsApp Button Pulse */
.whatsapp-float {
    animation: pulseWhatsApp 2s infinite;
}

@keyframes pulseWhatsApp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 100px;
    /* Positioned above the WhatsApp float */
    right: 30px;
    background-color: var(--primary-light);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: all 0.4s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
    color: white;
}