/* =========================================
   VARIABLES & DESIGN TOKENS
   ========================================= */
:root {
    /* Color Palette */
    --primary-blue: #1E3A8A;
    --secondary-blue: #3B82F6;
    --white: #FFFFFF;
    --off-white: #F9FAFB;
    --green-accent: #22C55E;
    --cream-accent: #FFF7ED;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --border-color: #E5E7EB;
    
    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing & Layout */
    --section-padding: 5rem 1rem;
    --border-radius: 16px;
    --border-radius-sm: 8px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    /* Transitions */
    --transition: all 0.3s ease;
}

/* =========================================
   RESET & BASE STYLES
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* For sticky header */
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-blue);
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: var(--section-padding);
}

.bg-light {
    background-color: var(--off-white);
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--secondary-blue);
    border-radius: 2px;
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-header {
    margin-bottom: 3.5rem;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn i {
    width: 18px;
    height: 18px;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    border-radius: 12px;
}

.btn-primary {
    background-color: var(--green-accent);
    color: var(--white);
    box-shadow: 0 4px 14px 0 rgba(34, 197, 94, 0.39);
}

.btn-primary:hover {
    background-color: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

.btn-secondary {
    background-color: var(--primary-blue);
    color: var(--white);
    box-shadow: 0 4px 14px 0 rgba(30, 58, 138, 0.39);
}

.btn-secondary:hover {
    background-color: #1e3a8a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
}

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

.btn-outline:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

/* =========================================
   HEADER & NAVIGATION
   ========================================= */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

#main-header.scrolled {
    box-shadow: var(--shadow-sm);
    border-bottom-color: var(--border-color);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    letter-spacing: -0.5px;
}

.desktop-nav {
    display: flex;
    gap: 2rem;
}

.desktop-nav a {
    font-weight: 500;
    color: var(--text-dark);
}

.desktop-nav a:hover {
    color: var(--secondary-blue);
}

.header-actions {
    display: flex;
    gap: 1rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--primary-blue);
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: var(--white);
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--border-color);
}

.mobile-menu.active {
    display: flex;
    animation: slideDown 0.3s ease forwards;
}

.mobile-link {
    padding: 1rem 0;
    font-weight: 500;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-dark);
}

.mobile-link:last-child {
    border-bottom: none;
}

.mobile-menu .btn {
    margin-top: 1rem;
    justify-content: center;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    padding: 160px 0 80px;
    background-color: var(--off-white);
    background-image: radial-gradient(var(--cream-accent) 1px, transparent 1px);
    background-size: 30px 30px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--cream-accent);
    color: #C2410C;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    border: 1px solid #FED7AA;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.trust-badges {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.trust-badges span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.trust-badges i {
    color: var(--green-accent);
    width: 20px;
    height: 20px;
}

.hero-image {
    position: relative;
}

.floating-img {
    animation: float 6s ease-in-out infinite;
    width: 100%;
    max-width: 600px;
    height: auto;
}

/* =========================================
   TRUST BAR
   ========================================= */
.trust-bar {
    background-color: var(--white);
    padding: 3rem 0;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 10;
}

.trust-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.trust-icon {
    width: 50px;
    height: 50px;
    background-color: var(--cream-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-blue);
}

.trust-icon i {
    width: 24px;
    height: 24px;
}

.trust-text {
    display: flex;
    flex-direction: column;
}

.trust-text strong {
    font-family: var(--font-heading);
    color: var(--primary-blue);
    font-size: 1.125rem;
}

.trust-text span {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* =========================================
   ABOUT SECTION
   ========================================= */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.about-content p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.125rem;
}

.about-list {
    margin-top: 2rem;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.about-list i {
    color: var(--green-accent);
    background-color: #DCFCE7;
    border-radius: 50%;
    padding: 4px;
    width: 24px;
    height: 24px;
}

/* =========================================
   PRODUCTS SECTION
   ========================================= */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-blue);
}

.product-img-wrapper {
    height: 220px;
    overflow: hidden;
    position: relative;
    background-color: var(--off-white);
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.05);
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.product-info p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* =========================================
   BRANDS SECTION
   ========================================= */
.brands-slider-wrapper {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    padding: 1rem 0;
    margin-bottom: 2rem;
}

.brands-slider-wrapper::before,
.brands-slider-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.brands-slider-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--white) 0%, transparent 100%);
}
.brands-slider-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--white) 0%, transparent 100%);
}

.brands-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: scroll-brands 30s linear infinite;
}

.brands-slider-wrapper:hover .brands-track {
    animation-play-state: paused;
}

@keyframes scroll-brands {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 1rem)); }
}

.brand-card {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 16px;
    position: relative;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    width: 250px;
    flex-shrink: 0;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    gap: 1rem;
    height: 100%;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-blue);
}

.logo-container {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
}

.logo-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.brand-card:hover .logo-container img {
    transform: scale(1.05);
}

.brand-category {
    font-size: 0.85rem;
    color: var(--text-light);
    background-color: var(--off-white);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
}

.brands-microcopy {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* =========================================
   USP SECTION
   ========================================= */
.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.usp-card {
    background-color: var(--off-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.usp-card:hover {
    background-color: var(--white);
    box-shadow: var(--shadow-lg);
    border-color: var(--cream-accent);
    transform: translateY(-5px);
}

.usp-icon {
    width: 64px;
    height: 64px;
    background-color: var(--white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--secondary-blue);
    box-shadow: var(--shadow-sm);
}

.usp-icon i {
    width: 32px;
    height: 32px;
}

.usp-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.usp-card p {
    color: var(--text-light);
}

/* =========================================
   DELIVERY SECTION
   ========================================= */
.delivery-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.delivery-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    margin-top: 1.5rem;
}

.area-badge {
    background-color: var(--white);
    color: var(--primary-blue);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.ordering-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step {
    display: flex;
    gap: 1rem;
}

.step-num {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background-color: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: var(--font-heading);
}

.step h4 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.step p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* =========================================
   TESTIMONIALS SECTION
   ========================================= */
.testimonials-slider-wrapper {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    padding: 1rem 0;
}

/* Gradient Fade Masks for smooth infinite illusion */
.testimonials-slider-wrapper::before,
.testimonials-slider-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.testimonials-slider-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--off-white) 0%, transparent 100%);
}
.testimonials-slider-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--off-white) 0%, transparent 100%);
}

.testimonials-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.testimonials-slider-wrapper:hover .testimonials-track {
    animation-play-state: paused;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 1rem)); } /* -50% width minus half the gap */
}

.testimonial-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    position: relative;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    width: 380px; /* Fixed width for consistent horizontal scrolling */
    flex-shrink: 0;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.star-filled {
    width: 20px;
    height: 20px;
    color: #FBBF24;
    fill: #FBBF24;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    color: var(--text-dark);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatar {
    width: 48px;
    height: 48px;
    background-color: var(--cream-accent);
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.testimonial-author h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--primary-blue);
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-details {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.icon-box {
    width: 48px;
    height: 48px;
    background-color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.contact-item h4 {
    margin-bottom: 0.25rem;
}

.contact-item p, .contact-item a {
    color: var(--text-light);
}

.contact-item a:hover {
    color: var(--secondary-blue);
}

.contact-map {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 400px;
    border: 8px solid var(--white);
    outline: 1px solid var(--border-color);
}

/* =========================================
   PARTNER PAGE
   ========================================= */
.partner-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Premium Benefits List */
.premium-benefits-list {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}

.premium-benefits-list li {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1rem;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition);
    border-left: 4px solid var(--primary-blue);
}

.premium-benefits-list li:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
    border-color: var(--green-accent);
}

.benefit-icon {
    width: 36px;
    height: 36px;
    background: var(--off-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    flex-shrink: 0;
}

/* Farmer Image Box */
.farmer-image-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.farmer-image-box img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.farmer-image-box:hover img {
    transform: scale(1.05);
}

/* Process Cards */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.process-card {
    background: var(--white);
    padding: 3rem 2rem 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--border-color);
    text-align: center;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.process-card .step-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(10, 37, 64, 0.3);
    border: 4px solid var(--white);
}

.process-card h4 {
    font-size: 1.35rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.process-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .partner-intro-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
}

/* =========================================
   FORMS SECTION
   ========================================= */
.forms-section {
    background-color: var(--white);
}

.forms-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.form-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.form-title {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--off-white);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--off-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(10, 37, 64, 0.1);
    background-color: var(--white);
}

.checkbox-group .checkbox-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.checkbox-options label {
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    margin-bottom: 0;
}

.checkbox-options input[type="checkbox"] {
    width: auto;
    width: 1.25rem;
    height: 1.25rem;
    accent-color: var(--primary-blue);
    cursor: pointer;
}

.btn-block {
    width: 100%;
    margin-top: 1rem;
    justify-content: center;
}

.success-message {
    background-color: #d1fae5;
    color: #065f46;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 4rem 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 400px;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.social-links a:hover {
    background-color: var(--green-accent);
    transform: translateY(-3px);
}

.footer-links h4 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* =========================================
   FLOATING WHATSAPP
   ========================================= */
.floating-wa {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.floating-wa i {
    width: 32px;
    height: 32px;
}

.floating-wa:hover {
    transform: scale(1.1);
    background-color: #128C7E;
}

/* =========================================
   GALLERY SECTION
   ========================================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 1.5rem;
    color: white;
    opacity: 0;
    transition: var(--transition);
    transform: translateY(10px);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-overlay h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Grid Layout (Asymmetric 5 items) */
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 1; grid-row: span 1; }
.gallery-item:nth-child(3) { grid-column: span 1; grid-row: span 1; }
.gallery-item:nth-child(4) { grid-column: span 1; grid-row: span 1; }
.gallery-item:nth-child(5) { grid-column: span 1; grid-row: span 1; }

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

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

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

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

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: var(--primary-blue);
}

.trust-text {
    margin-top: 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-blue);
}

/* =========================================
   ANIMATIONS
   ========================================= */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

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

/* Fade In Classes for JS Intersection Observer */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-right {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-left {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.appear {
    opacity: 1;
    transform: translate(0);
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 992px) {
    .hero h1 { font-size: 2.75rem; }
    .hero-container, .about-container, .delivery-container, .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image { grid-row: 2; }
    .delivery-image { grid-row: 1; }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .desktop-nav, .desktop-only {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        padding: 120px 0 60px;
        text-align: center;
    }
    
    .hero h1 { font-size: 2.25rem; }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn { width: 100%; max-width: 300px; }
    
    .trust-badges {
        justify-content: center;
    }
    
    .trust-container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .section-title { font-size: 2rem; }
    
    .footer-container {
        grid-template-columns: 1fr;
    }

    /* Mobile Testimonial Slider Overrides */
    .testimonials-slider-wrapper::before,
    .testimonials-slider-wrapper::after {
        display: none;
    }
    
    .testimonials-slider-wrapper {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding-bottom: 1.5rem;
        scrollbar-width: none; /* Firefox */
    }
    
    .testimonials-slider-wrapper::-webkit-scrollbar {
        display: none; /* Chrome/Safari/Opera */
    }
    
    .testimonials-track {
        animation: none !important;
        width: auto;
    }
    
    .testimonial-card {
        scroll-snap-align: center;
        width: 85vw;
        max-width: 350px;
    }

    /* Mobile Brands Slider Overrides */
    .brands-slider-wrapper::before,
    .brands-slider-wrapper::after {
        display: none;
    }
    
    .brands-slider-wrapper {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding-bottom: 1.5rem;
        scrollbar-width: none;
    }
    
    .brands-slider-wrapper::-webkit-scrollbar {
        display: none;
    }
    
    .brands-track {
        animation: none !important;
        width: auto;
    }
    
    .brand-card {
        scroll-snap-align: center;
        width: 60vw;
        max-width: 200px;
    }
    
    /* Mobile Gallery Overrides */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 1rem;
    }
    .gallery-item {
        height: 200px;
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }
    .gallery-item:nth-child(1) { 
        grid-column: span 2 !important; 
        height: 250px;
    }

    /* Mobile Forms Overrides */
    .forms-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-card {
        padding: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
    
    .checkbox-group .checkbox-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto;
    }
    .gallery-item {
        height: 250px;
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }
    .gallery-item:nth-child(1) { 
        grid-column: span 2 !important; 
        grid-row: span 2 !important;
        height: 100%;
    }
}
