/* style.css for Healthy Bitess Website */
/* Color Scheme & Design Philosophy - Optimized for Salad & Vegetable Business */
:root {
    /* Primary Colors - Enhanced for freshness */
    --fresh-green: #2E7D32; /* Deeper, richer green for trust */
    --light-green: #4CAF50; /* Vibrant green for freshness */
    --vibrant-orange: #FF5722; /* Warmer orange (like carrots, oranges) */
    --light-orange: #FF8A65; /* Softer orange accent */
    --berry-red: #E64A19; /* Tomato/berry red */
    --yellow-accent: #FFB300; /* Lemon/banana yellow */
    --clean-white: #FFFFFF;
    --soft-cream: #F9FBE7; /* Light celery green cream */
    --dark-gray: #2C3E50; /* Darker, more professional gray */
    --medium-gray: #546E7A;
    --light-gray: #ECEFF1;
    --shadow-color: rgba(76, 175, 80, 0.1); /* Green-tinted shadow */
    
    /* Accent Colors for food items */
    --tomato-red: #F44336;
    --carrot-orange: #FF9800;
    --spinach-green: #388E3C;
    --berry-purple: #7B1FA2;
    --lemon-yellow: #FFEB3B;
    
    /* Typography */
    --font-primary: 'Segoe UI', 'Roboto', Tahoma, Geneva, Verdana, sans-serif;
    --font-heading: 'Montserrat', 'Arial Rounded MT Bold', 'Helvetica Neue', sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 3rem;
    --space-xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-round: 50%;
    
    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.8s ease;
    
    /* Shadows */
    --shadow-light: 0 4px 12px var(--shadow-color);
    --shadow-medium: 0 8px 24px rgba(46, 125, 50, 0.15);
    --shadow-heavy: 0 12px 36px rgba(46, 125, 50, 0.2);
    
    /* Gradients */
    --green-gradient: linear-gradient(135deg, var(--fresh-green), var(--light-green));
    --orange-gradient: linear-gradient(135deg, var(--vibrant-orange), var(--yellow-accent));
    --fresh-gradient: linear-gradient(135deg, var(--light-green), var(--yellow-accent));
    
    /* Container */
    --container-width: 1200px;
}

/* Global Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--clean-white);
    overflow-x: hidden;
    transition: opacity var(--transition-medium);
}

body.fade-in {
    opacity: 1;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--space-sm);
    color: var(--dark-gray);
}

h1 { 
    font-size: 2.5rem; 
    color: var(--fresh-green);
}
h2 { 
    font-size: 2rem; 
    color: var(--fresh-green);
}
h3 { 
    font-size: 1.5rem; 
    color: var(--fresh-green);
}
h4 { 
    font-size: 1.25rem; 
    color: var(--vibrant-orange);
}

p {
    margin-bottom: var(--space-sm);
    color: var(--medium-gray);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

/* Section Styles */
.section {
    padding: var(--space-xl) 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: var(--space-md);
    color: var(--fresh-green);
    position: relative;
    padding-bottom: var(--space-sm);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--fresh-gradient);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--medium-gray);
    margin-bottom: var(--space-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    font-family: var(--font-heading);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.btn:active {
    transform: translateY(-1px);
}

.btn.primary-btn {
    background: var(--green-gradient);
    color: var(--clean-white);
}

.btn.primary-btn:hover {
    background: linear-gradient(135deg, var(--light-green), #45a049);
}

.btn.secondary-btn {
    background-color: transparent;
    color: var(--fresh-green);
    border: 2px solid var(--fresh-green);
}

.btn.secondary-btn:hover {
    background-color: var(--fresh-green);
    color: var(--clean-white);
}

.btn.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.btn.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E, #25D366);
}

.btn.outline-btn {
    background-color: transparent;
    color: var(--vibrant-orange);
    border: 2px solid var(--vibrant-orange);
}

.btn.outline-btn:hover {
    background-color: var(--vibrant-orange);
    color: var(--clean-white);
}

.btn.cta-btn {
    background: linear-gradient(135deg, var(--berry-red), var(--vibrant-orange));
    color: var(--clean-white);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 700;
}

.btn.cta-btn:hover {
    background: linear-gradient(135deg, var(--vibrant-orange), var(--berry-red));
    transform: scale(1.05);
}

.btn.small-btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
}

/* Pulse Animation for CTA */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(46, 125, 50, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(46, 125, 50, 0); }
    100% { box-shadow: 0 0 0 0 rgba(46, 125, 50, 0); }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Header & Navigation */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-light);
    padding: var(--space-sm) 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: transform var(--transition-fast), background-color var(--transition-fast);
}

.header.sticky {
    transform: translateY(0);
}

.header.hide {
    transform: translateY(-100%);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--fresh-green);
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 85px;
    width: auto;
    object-fit: contain;
}

.logo-text h1 {
    font-size: 1.6rem; /* slightly reduced for balance */
    color: var(--fresh-green);
    margin: 0;
}

.logo .tagline {
    font-size: 0.75rem;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .logo-img {
        height: 38px;
    }

    .logo-text h1 {
        font-size: 1.4rem;
    }
}


.logo .tagline {
    font-size: 0.8rem;
    color: var(--vibrant-orange);
    font-weight: 600;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.nav-menu ul {
    display: flex;
    gap: var(--space-md);
}

.nav-menu a {
    font-weight: 600;
    color: var(--dark-gray);
    padding: 0.5rem 0;
    position: relative;
    font-size: 0.95rem;
}

.nav-menu a:hover {
    color: var(--fresh-green);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--fresh-gradient);
    transition: width var(--transition-fast);
}

.nav-menu a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--fresh-green);
    cursor: pointer;
    padding: 0.5rem;
}

/* Hero Section */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--soft-cream) 0%, #E8F5E9 100%);
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 1;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
    z-index: 2;
}

.text-block {
    flex: 0 0 60%;
    padding-right: var(--space-lg);
}

.image-block {
    flex: 0 0 40%;
}

.hero-img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-heavy);
    transform: perspective(1000px) rotateY(-10deg);
    transition: transform var(--transition-medium);
    border: 8px solid var(--clean-white);
}

.hero-img:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.hero .subtitle {
    font-size: 1.1rem;
    color: var(--vibrant-orange);
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
}

.hero h2 {
    font-size: 3rem;
    color: var(--fresh-green);
    margin-bottom: var(--space-sm);
    line-height: 1.2;
}

.hero .lead {
    font-size: 1.2rem;
    color: var(--medium-gray);
    margin-bottom: var(--space-md);
}

.hero-btns {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

/* Animation Classes */
.animate-left {
    opacity: 0;
    transform: translateX(-100px);
    animation: slideInLeft 1s var(--transition-slow) forwards;
}

.animate-right {
    opacity: 0;
    transform: translateX(100px);
    animation: slideInRight 1s var(--transition-slow) forwards;
    animation-delay: 0.3s;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--transition-medium), transform var(--transition-medium);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Why Choose Us Cards */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.card {
    background-color: var(--clean-white);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
    border-top: 4px solid var(--fresh-green);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--fresh-gradient);
}

.card-icon {
    font-size: 3rem;
    color: var(--fresh-green);
    margin-bottom: var(--space-sm);
    transition: transform var(--transition-fast);
}

.card:hover .card-icon {
    transform: scale(1.2) rotate(5deg);
    color: var(--vibrant-orange);
}

.card h3 {
    color: var(--dark-gray);
    margin-bottom: var(--space-sm);
}

/* Category Cards */
.category-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.cat-card {
    background-color: var(--clean-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-fast);
    text-align: center;
    border: 2px solid var(--light-gray);
}

.cat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
    border-color: var(--fresh-green);
}

.cat-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.cat-card:hover img {
    transform: scale(1.05);
}

.cat-card h3 {
    margin: var(--space-md) var(--space-sm) var(--space-sm);
    color: var(--fresh-green);
}

.cat-card p {
    padding: 0 var(--space-sm);
    color: var(--medium-gray);
    margin-bottom: var(--space-md);
}

.cat-card .btn {
    margin-bottom: var(--space-md);
}

/* Testimonials Slider */
.testimonials {
    background: linear-gradient(135deg, var(--soft-cream), #F1F8E9);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="%234CAF50" opacity="0.03" d="M0,0 L100,0 L100,100 Z"/></svg>');
    background-size: cover;
}

.slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    height: 300px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity var(--transition-medium);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: var(--space-lg);
    background-color: var(--clean-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-light);
}

.slide.active {
    opacity: 1;
}

.stars {
    color: var(--yellow-accent);
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
}

.quote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--dark-gray);
    margin-bottom: var(--space-md);
    line-height: 1.8;
    position: relative;
    padding: 0 var(--space-md);
}

.quote::before,
.quote::after {
    content: '"';
    font-size: 2rem;
    color: var(--fresh-green);
    position: absolute;
    opacity: 0.3;
}

.quote::before {
    top: -10px;
    left: 0;
}

.quote::after {
    bottom: -20px;
    right: 0;
}

.customer {
    font-weight: 600;
    color: var(--fresh-green);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: var(--space-xs);
    margin-top: var(--space-md);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-round);
    background-color: var(--light-gray);
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

.dot.active {
    background-color: var(--fresh-green);
}

/* Add at the end of your CSS to override everything */
section h2.section-title,
section h3.section-title {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
}

/* Also fix any parent containers that might have text-align: left */
section .container:has(.section-title) {
    text-align: center !important;
}

/* CTA Banner - FIXED TEXT COLORS */
.cta-banner {
    background: var(--green-gradient);
    color: var(--clean-white);
    padding: var(--space-xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="white" opacity="0.1" d="M0,100 L100,0 L100,100 Z"/></svg>');
    background-size: cover;
}

.cta-banner h2 {
    color: var(--clean-white);
    margin-bottom: var(--space-sm);
    position: relative;
    z-index: 1;
}

.cta-banner p {
    font-size: 1.1rem;
    margin-bottom: var(--space-md);
    opacity: 0.9;
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.9);
}

.cta-banner .btn {
    margin: 0 var(--space-xs);
    position: relative;
    z-index: 1;
}

/* ============ FIXED FOOTER STYLES ============ */
.footer {
    background: linear-gradient(135deg, #1a472a 0%, #2E7D32 100%);
    color: #f0f0f0;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--orange-gradient);
}

.footer .container {
    max-width: var(--container-width);
    position: relative;
    z-index: 1;
}

/* Footer Grid Layout */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: start;
}

.footer-col {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Column 1: Logo & Slogan - FIXED TEXT COLORS */
.footer-col:first-child h3 {
    font-size: 1.8rem;
    color: var(--clean-white);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-brand {
    align-items: flex-start;
}

.footer-logo {
    width: 160px;
    height: 80px;
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.footer-logo img {
    width: 70%;
    height: 70%;
    object-fit: contain;
}

@media (max-width: 768px) {
    .footer-brand {
        align-items: center;
        text-align: center;
    }

    .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }
}


.footer-col:first-child .tagline {
    font-size: 0.9rem;
    color: var(--light-orange);
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
}

.footer-col:first-child p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.badge {
    background: rgba(255, 255, 255, 0.95);
    color: var(--fresh-green);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-fast);
}

.badge:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
}

/* Column 2: Contact - FIXED TEXT COLORS */
.footer-col:nth-child(2) h4 {
    color: var(--clean-white);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(255, 138, 101, 0.3);
    position: relative;
}

.footer-col:nth-child(2) h4::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--orange-gradient);
}

.footer-col:nth-child(2) p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-col:nth-child(2) i {
    color: var(--light-green);
    margin-top: 0.2rem;
    flex-shrink: 0;
    width: 20px;
}

/* Column 3: Quick Links - FIXED TEXT COLORS */
.footer-col:nth-child(3) h4 {
    color: var(--clean-white);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(255, 138, 101, 0.3);
    position: relative;
}

.footer-col:nth-child(3) h4::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--orange-gradient);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all var(--transition-fast);
    display: block;
    padding: 0.25rem 0;
}

.footer-links a:hover {
    color: var(--light-green);
    transform: translateX(5px);
}

/* Column 4: Payment Methods - FIXED TEXT COLORS */
.footer-col:last-child h4 {
    color: var(--clean-white);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(255, 138, 101, 0.3);
    position: relative;
}

.footer-col:last-child h4::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--orange-gradient);
}

.footer-col:last-child p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1rem;
}

/* Social Icons - FIXED COLORS */
.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    transition: all var(--transition-fast);
}

.social-icons a:hover {
    transform: translateY(-3px);
    color: white;
}

.social-icons a:nth-child(1):hover { background: #E4405F; }
.social-icons a:nth-child(2):hover { background: #1877F2; }
.social-icons a:nth-child(3):hover { background: #25D366; }

/* Footer Bottom Section - FIXED TEXT COLORS */
.footer hr {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* ============ FOOTER RESPONSIVE STYLES ============ */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .footer-col {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-col {
        min-height: auto;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-col:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        gap: 2rem;
    }
    
    .footer-col:nth-child(2) p {
        flex-direction: column;
        gap: 0.2rem;
    }
    
    .social-icons {
        justify-content: center;
    }
}

/* ============ ABOUT PAGE SPECIFIC STYLES ============ */

/* About Page Hero Specific Styles */
.about-hero {
    padding-top: 120px;
    min-height: 80vh;
}

/* Founder Introduction Styles */
.founder-intro {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-light);
    margin-top: 2rem;
    border-left: 4px solid var(--fresh-green);
}

.founder-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.founder-header h3 {
    color: var(--fresh-green);
    margin-bottom: 0;
    font-size: 1.4rem;
}

.founder-icon {
    color: var(--vibrant-orange);
    font-size: 1.5rem;
    background: rgba(255, 87, 34, 0.1);
    padding: 0.5rem;
    border-radius: var(--radius-round);
}

.founder-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
}

.founder-name::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1rem;
    height: 2px;
    background: var(--fresh-green);
}

.founder-quote {
    font-style: italic;
    color: var(--medium-gray);
    padding: 0.75rem;
    background: rgba(76, 175, 80, 0.05);
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    border-left: 3px solid var(--light-green);
}

.founder-credentials {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-sm);
    border: 1px solid var(--light-gray);
    transition: all var(--transition-fast);
}

.credential-item:hover {
    transform: translateX(5px);
    border-color: var(--fresh-green);
    box-shadow: var(--shadow-light);
}

.credential-item i {
    color: var(--fresh-green);
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
}

.credential-item span {
    color: var(--dark-gray);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Founder Photo Container */
.founder-photo-container {
    position: relative;
    display: inline-block;
}

.founder-photo {
    border-radius: var(--radius-lg);
    border: 8px solid var(--clean-white);
    box-shadow: var(--shadow-heavy);
    position: relative;
    z-index: 2;
}

.founder-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--vibrant-orange), var(--yellow-accent));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 3;
    box-shadow: var(--shadow-medium);
    animation: float 3s ease-in-out infinite;
}

.founder-badge i {
    font-size: 1rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Photo Decorations */
.photo-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.decoration-leaf {
    position: absolute;
    background: white;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-light);
    animation: rotate 20s linear infinite;
}

.decoration-leaf i {
    color: var(--fresh-green);
    font-size: 1.2rem;
}

.leaf-1 {
    top: -20px;
    left: -20px;
    background: linear-gradient(135deg, #F9FBE7, #E8F5E9);
    animation-delay: 0s;
}

.leaf-2 {
    bottom: -15px;
    left: 10%;
    background: linear-gradient(135deg, #FFF3E0, #FFECB3);
    animation-delay: 0.3s;
}

.leaf-3 {
    top: 50%;
    right: -15px;
    background: linear-gradient(135deg, #F1F8E9, #C8E6C9);
    animation-delay: 0.6s;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .about-hero {
        padding-top: 100px;
        min-height: auto;
    }
    
    .founder-intro {
        padding: 1rem;
    }
    
    .founder-header h3 {
        font-size: 1.2rem;
    }
    
    .founder-name {
        font-size: 1rem;
    }
    
    .founder-badge {
        top: 10px;
        right: 10px;
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .decoration-leaf {
        width: 35px;
        height: 35px;
    }
    
    .decoration-leaf i {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .founder-credentials {
        flex-direction: column;
    }
    
    .founder-badge {
        position: relative;
        top: auto;
        right: auto;
        margin: -15px auto 15px;
        width: fit-content;
    }
    
    .decoration-leaf {
        display: none;
    }
}

/* Our Journey Section */
.journey {
    background: linear-gradient(135deg, var(--soft-cream) 0%, #F1F8E9 100%);
    position: relative;
    overflow: hidden;
}

.journey::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="%234CAF50" opacity="0.03" d="M0,0 L100,0 L100,100 Z"/></svg>');
    background-size: cover;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
    margin-bottom: var(--space-xl);
}

.content-text h3 {
    color: var(--fresh-green);
    font-size: 1.8rem;
    margin-bottom: var(--space-sm);
    position: relative;
    padding-bottom: var(--space-sm);
}

.content-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--orange-gradient);
    border-radius: 2px;
}

.content-text p {
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: var(--space-md);
    font-size: 1.05rem;
}

/* Journey Stats */
.journey-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
    margin-top: var(--space-lg);
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-md);
    border: 1px solid var(--light-gray);
}

.stat {
    text-align: center;
    padding: var(--space-sm);
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--fresh-green);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--medium-gray);
    font-weight: 500;
}

/* Image Styling */
.content-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
    transition: transform var(--transition-medium);
}

.image-frame:hover {
    transform: scale(1.02);
}

.journey-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-medium);
}

.image-frame:hover .journey-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(46, 125, 50, 0.85), transparent);
    padding: var(--space-md);
    transform: translateY(100%);
    transition: transform var(--transition-medium);
}

.image-frame:hover .image-overlay {
    transform: translateY(0);
}

.overlay-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--clean-white);
    font-weight: 600;
}

.overlay-content i {
    font-size: 1.5rem;
    color: var(--yellow-accent);
}

.image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--fresh-green);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-medium);
    z-index: 2;
    backdrop-filter: blur(10px);
}

.image-badge i {
    font-size: 1rem;
}

.image-caption {
    margin-top: var(--space-sm);
    text-align: center;
}

.image-caption p {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--medium-gray);
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    border: 1px solid var(--light-gray);
}

.image-caption i {
    color: var(--fresh-green);
}

/* Milestones Grid */
.milestones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-xl);
    position: relative;
}

.milestones-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--fresh-gradient);
    z-index: 1;
}

.milestone-card {
    background: var(--clean-white);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-fast);
    position: relative;
    z-index: 2;
    border-top: 4px solid transparent;
}

.milestone-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
    border-top-color: var(--fresh-green);
}

.milestone-card:nth-child(1):hover { border-top-color: var(--vibrant-orange); }
.milestone-card:nth-child(2):hover { border-top-color: var(--light-green); }
.milestone-card:nth-child(3):hover { border-top-color: var(--berry-red); }
.milestone-card:nth-child(4):hover { border-top-color: var(--yellow-accent); }

.milestone-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--space-md);
    background: linear-gradient(135deg, var(--soft-cream), #E8F5E9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--fresh-green);
    transition: all var(--transition-fast);
}

.milestone-card:hover .milestone-icon {
    transform: scale(1.1);
    background: var(--fresh-gradient);
    color: var(--clean-white);
}

.milestone-card h4 {
    color: var(--dark-gray);
    margin-bottom: var(--space-sm);
    font-size: 1.2rem;
}

.milestone-card p {
    color: var(--medium-gray);
    font-size: 0.95rem;
    margin-bottom: var(--space-sm);
    line-height: 1.5;
}

.milestone-date {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(76, 175, 80, 0.1);
    color: var(--fresh-green);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 15px;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

/* Responsive Design */
@media (max-width: 992px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .content-text {
        text-align: center;
    }
    
    .content-text h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .journey-stats {
        grid-template-columns: repeat(2, 1fr);
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .milestones-grid::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .journey-image {
        height: 300px;
    }
    
    .journey-stats {
        grid-template-columns: 1fr;
    }
    
    .milestones-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .journey-image {
        height: 250px;
    }
    
    .milestones-grid {
        grid-template-columns: 1fr;
    }
    
    .image-badge {
        top: 10px;
        right: 10px;
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.stat-card {
    text-align: center;
    padding: var(--space-lg);
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-light);
    transition: transform var(--transition-fast);
    border-top: 4px solid var(--fresh-green);
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--vibrant-orange);
    margin-bottom: var(--space-sm);
}

.stat-card h3 {
    font-size: 2.5rem;
    color: var(--fresh-green);
    margin-bottom: var(--space-xs);
}

.community-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.comm-card {
    text-align: center;
    padding: var(--space-lg);
    background-color: var(--clean-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-light);
    transition: all var(--transition-fast);
    border: 2px solid transparent;
}

.comm-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
    border-color: var(--fresh-green);
}

.comm-icon {
    font-size: 3rem;
    color: var(--fresh-green);
    margin-bottom: var(--space-sm);
}

.values-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.value-item {
    padding: var(--space-md);
    background-color: var(--clean-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-light);
    transition: transform var(--transition-fast);
    border-left: 4px solid var(--vibrant-orange);
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-item h3 {
    color: var(--fresh-green);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.value-item h3 i {
    color: var(--vibrant-orange);
}

/* ============ MENU PAGE SPECIFIC STYLES ============ */
.menu-categories {
    background: linear-gradient(135deg, var(--soft-cream), #F1F8E9);
}

.category-filters {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background-color: var(--clean-white);
    border: 2px solid var(--light-gray);
    border-radius: 50px;
    font-weight: 600;
    color: var(--medium-gray);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--green-gradient);
    color: var(--clean-white);
    border-color: var(--fresh-green);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.menu-item {
    background-color: var(--clean-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-fast);
    border: 2px solid transparent;
}

.menu-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
    border-color: var(--fresh-green);
}

.menu-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.menu-item:hover img {
    transform: scale(1.1);
}

.menu-content {
    padding: var(--space-md);
}

.menu-content h3 {
    color: var(--fresh-green);
}

.price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--vibrant-orange);
    margin: var(--space-sm) 0;
}

.order-btn {
    width: 100%;
    margin-top: var(--space-sm);
}

.custom-order {
    background-color: var(--clean-white);
}

.custom-form-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: start;
    margin-top: var(--space-lg);
}

.form-preview {
    background: linear-gradient(135deg, #F9FBE7, #F1F8E9);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-light);
    border: 2px solid var(--light-gray);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 600;
    color: var(--dark-gray);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--fresh-green);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.custom-info ul {
    list-style-type: none;
    padding-left: 0;
    margin-top: var(--space-sm);
}

.custom-info li {
    margin-bottom: var(--space-xs);
    padding-left: 1.5rem;
    position: relative;
}

.custom-info li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--fresh-green);
    font-weight: bold;
}

.order-info .info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
}

.info-card {
    text-align: center;
    padding: var(--space-lg);
    background-color: var(--clean-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-light);
    transition: transform var(--transition-fast);
    border-top: 4px solid var(--vibrant-orange);
}

.info-card:hover {
    transform: translateY(-10px);
}

.info-icon {
    font-size: 2.5rem;
    color: var(--fresh-green);
    margin-bottom: var(--space-sm);
}

/* ============ GALLERY PAGE SPECIFIC STYLES ============ */
.gallery-filter {
    background: linear-gradient(135deg, var(--soft-cream), #F1F8E9);
    padding: var(--space-md) 0;
}

.masonry-grid {
    column-count: 3;
    column-gap: var(--space-md);
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: var(--space-md);
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-light);
    transition: transform var(--transition-fast);
    border: 3px solid var(--clean-white);
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-medium);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-medium);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(46, 125, 50, 0.8), transparent);
    color: var(--clean-white);
    padding: var(--space-md);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.gallery-item:hover .overlay {
    opacity: 1;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 1100;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: var(--radius-sm);
    border: 3px solid var(--clean-white);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    color: var(--clean-white);
    text-align: center;
    padding: var(--space-sm);
    background: rgba(46, 125, 50, 0.8);
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--clean-white);
    font-size: 3rem;
    cursor: pointer;
    z-index: 1101;
    background: rgba(46, 125, 50, 0.8);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--clean-white);
    font-size: 2rem;
    cursor: pointer;
    padding: var(--space-md);
    background-color: rgba(46, 125, 50, 0.8);
    border-radius: var(--radius-round);
}

.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: rgba(46, 125, 50, 1);
}

/* Instagram Feed */
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--space-sm);
    margin: var(--space-lg) 0;
}

.insta-post {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: transform var(--transition-fast);
    border: 3px solid var(--clean-white);
}

.insta-post:hover {
    transform: scale(1.05);
    border-color: var(--fresh-green);
}

.insta-post img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

.text-center {
    text-align: center;
}

.customer-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    height: 300px;
}

.customer-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity var(--transition-medium);
    display: flex;
    align-items: center;
    background-color: var(--clean-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-light);
    padding: var(--space-lg);
    border: 2px solid transparent;
}

.customer-slide.active {
    opacity: 1;
    border-color: var(--fresh-green);
}

.customer-img {
    flex: 0 0 40%;
    padding-right: var(--space-lg);
}

.customer-img img {
    width: 100%;
    border-radius: var(--radius-round);
    border: 5px solid var(--soft-cream);
    box-shadow: var(--shadow-light);
}

.customer-review {
    flex: 0 0 60%;
}

/* ============ CONTACT PAGE SPECIFIC STYLES ============ */

/* Section Header - Centered headings */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-xl);
}

.section-title {
    font-size: 2.5rem;
    color: var(--dark-green);
    margin-bottom: var(--space-sm);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--fresh-green);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    line-height: 1.6;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
}

.contact-card {
    text-align: center;
    padding: var(--space-lg);
    background-color: var(--clean-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-light);
    transition: all var(--transition-fast);
    border-top: 4px solid var(--fresh-green);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.contact-icon {
    font-size: 3rem;
    color: var(--fresh-green);
    margin-bottom: var(--space-md);
}

.order-process {
    background: linear-gradient(135deg, var(--soft-cream), #F1F8E9);
}

.process-steps {
    max-width: 800px;
    margin: var(--space-lg) auto 0;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--fresh-gradient);
    z-index: 1;
}

.step {
    display: flex;
    margin-bottom: var(--space-xl);
    position: relative;
    z-index: 2;
}

.step-number {
    flex: 0 0 80px;
    height: 80px;
    background: var(--green-gradient);
    color: var(--clean-white);
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-right: var(--space-md);
    box-shadow: var(--shadow-medium);
    border: 4px solid var(--clean-white);
}

.step-content {
    flex: 1;
    background-color: var(--clean-white);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-light);
    border-left: 4px solid var(--vibrant-orange);
}

.quick-order form {
    max-width: 800px;
    margin: var(--space-lg) auto 0;
    background: linear-gradient(135deg, #F9FBE7, #F1F8E9);
    padding: var(--space-xl);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-light);
    border: 2px solid var(--light-gray);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.form-actions {
    margin-top: var(--space-lg);
    text-align: center;
}

.form-note {
    margin-top: var(--space-sm);
    font-size: 0.9rem;
    color: var(--medium-gray);
}

.delivery-payment .info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.delivery-list li {
    margin-bottom: var(--space-xs);
    padding-left: var(--space-sm);
    position: relative;
}

.delivery-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--fresh-green);
    font-weight: bold;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.payment-method {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm);
    background-color: var(--light-gray);
    border-radius: var(--radius-sm);
    transition: transform var(--transition-fast);
}

.payment-method:hover {
    transform: translateX(5px);
    background-color: #E8F5E9;
}

.payment-method i {
    color: var(--vibrant-orange);
    font-size: 1.5rem;
}

/* FAQ Accordion */
.accordion {
    max-width: 800px;
    margin: var(--space-lg) auto 0;
}

.accordion-item {
    margin-bottom: var(--space-sm);
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.accordion-btn {
    width: 100%;
    padding: var(--space-md);
    background: var(--green-gradient);
    color: var(--clean-white);
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition-fast);
}

.accordion-btn:hover {
    background: linear-gradient(135deg, var(--light-green), #45a049);
}

.accordion-btn i {
    transition: transform var(--transition-fast);
}

.accordion-btn.active i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    background-color: var(--clean-white);
    transition: max-height var(--transition-medium);
}

.accordion-content p {
    padding: var(--space-md);
    margin: 0;
    color: var(--dark-gray);
}

/* FIX for contact cards - ensure proper vertical alignment */
.contact-card {
    text-align: center;
    padding: var(--space-lg);
    background-color: var(--clean-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-light);
    transition: all var(--transition-fast);
    border-top: 4px solid var(--fresh-green);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px; /* Optional: ensures consistent card height */
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .section-header {
        padding: 0 var(--space-sm);
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr; /* Stack form fields on mobile */
    }
    
    .delivery-payment .info-grid {
        grid-template-columns: 1fr; /* Stack delivery and payment on mobile */
    }
    
    .step {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: var(--space-sm);
    }
    
    .process-steps::before {
        left: 40px; /* Adjust for mobile */
    }
}


/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--green-gradient);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-fast);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: linear-gradient(135deg, var(--light-green), #45a049);
    transform: translateY(-5px);
}

/* Responsive Breakpoints */
@media (max-width: 1199px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .text-block {
        flex: 0 0 100%;
        padding-right: 0;
        margin-bottom: var(--space-lg);
    }
    
    .image-block {
        flex: 0 0 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .masonry-grid {
        column-count: 2;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--clean-white);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        padding: var(--space-xl);
        transition: left var(--transition-medium);
        z-index: 999;
        box-shadow: var(--shadow-medium);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        width: 100%;
        margin-bottom: var(--space-lg);
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero h2 {
        font-size: 2.2rem;
    }
    
    .cards, .category-cards, .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .custom-form-preview, 
    .journey .content-grid,
    .delivery-payment .info-grid,
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .masonry-grid {
        column-count: 1;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 60px;
        padding-right: 0;
    }
    
    .timeline-item:nth-child(even) {
        padding-left: 60px;
    }
    
    .customer-slide {
        flex-direction: column;
        text-align: center;
        padding: var(--space-md);
    }
    
    .customer-img {
        padding-right: 0;
        margin-bottom: var(--space-md);
    }
    
    .process-steps::before {
        left: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-sm);
    }
    
    .section {
        padding: var(--space-lg) 0;
    }
    
    .hero-btns {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        margin-bottom: var(--space-sm);
    }
    
    .filter-options, .category-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 200px;
        margin-bottom: var(--space-sm);
    }
    
    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: var(--space-md);
    }
    
    .process-steps::before {
        display: none;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Loading Spinner */
.spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 4px solid rgba(46, 125, 50, 0.3);
    border-top-color: var(--fresh-green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Toast Notifications */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--green-gradient);
    color: white;
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-heavy);
    z-index: 1200;
    opacity: 0;
    transition: transform var(--transition-medium), opacity var(--transition-medium);
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* Food-themed decorative elements */
.salad-icon::before {
    content: '🥗';
    margin-right: 0.5rem;
}

.fruit-icon::before {
    content: '🍎';
    margin-right: 0.5rem;
}

.veg-icon::before {
    content: '🥦';
    margin-right: 0.5rem;
}

.leaf-pattern {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="%234CAF50" opacity="0.05" d="M50,0 Q75,25 50,50 Q25,75 0,50 Q25,25 50,0 Z"/></svg>');
    background-size: 200px;
    background-repeat: repeat;
}