/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; line-height: 1.6; color: #333; overflow-x: hidden; transition: background-color 0.3s ease, color 0.3s ease; }

/* Dark mode variables */
:root {
    --primary-color: #2c5530;
    --secondary-color: #ff6b35;
    --whatsapp-color: #25d366;
    --bg-color: #ffffff;
    --text-color: #333333;
    --card-bg: #ffffff;
    --border-color: #ddd;
    --shadow: rgba(0,0,0,0.1);
}

[data-theme="dark"] {
    --primary-color: #4a7c59;
    --secondary-color: #ff8c6b;
    --whatsapp-color: #34e17a;
    --bg-color: #1a1a1a;
    --text-color: #e0e0e0;
    --card-bg: #2d2d2d;
    --border-color: #404040;
    --shadow: rgba(0,0,0,0.3);
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
}

/* Container */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Navigation */
.navbar { position: fixed; top: 0; width: 100%; background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border-color); z-index: 1000; transition: all 0.3s ease; }
[data-theme="dark"] .navbar { background: rgba(26,26,26,0.95); }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; height: 70px; }
.nav-logo h2 { color: var(--primary-color); font-weight: 600; }
.nav-menu { display: flex; list-style: none; gap: 30px; align-items: center; }
.nav-link { text-decoration: none; color: var(--text-color); font-weight: 500; transition: color 0.3s ease; position: relative; }
.nav-link:hover { color: var(--primary-color); }
.nav-link::after { content: ''; position: absolute; width: 0; height: 2px; bottom: -5px; left: 0; background-color: var(--primary-color); transition: width 0.3s ease; }
.nav-link:hover::after { width: 100%; }
.nav-toggle { display: none; flex-direction: column; cursor: pointer; }
.bar { width: 25px; height: 3px; background-color: var(--text-color); margin: 3px 0; transition: 0.3s; }

/* Theme Toggle */
.theme-toggle { background: none; border: 2px solid var(--primary-color); color: var(--primary-color); padding: 8px 12px; border-radius: 50%; cursor: pointer; transition: all 0.3s ease; font-size: 1rem; }
.theme-toggle:hover { background: var(--primary-color); color: var(--bg-color); transform: rotate(180deg); }

/* Buttons */
.btn { display: inline-block; padding: 12px 24px; text-decoration: none; border-radius: 8px; font-weight: 500; text-align: center; transition: all 0.3s ease; border: none; cursor: pointer; font-size: 16px; }
.btn-primary { background: var(--primary-color); color: white; }
.btn-primary:hover { background: #1e3a21; transform: translateY(-2px); }
.btn-secondary { background: var(--secondary-color); color: white; }
.btn-secondary:hover { background: #e55a2b; transform: translateY(-2px); }
.btn-whatsapp { background: var(--whatsapp-color); color: white; }
.btn-whatsapp:hover { background: #1cb854; transform: translateY(-2px); }
.btn-outline { background: rgba(255, 255, 255, 0.9); color: var(--primary-color); border: 2px solid var(--primary-color); backdrop-filter: blur(5px); }
.btn-outline:hover { background: var(--primary-color); color: white; }
[data-theme="dark"] .btn-outline { background: rgba(45, 45, 45, 0.9); }

/* Hero Section */
/* Hero Section */
.hero { 
    padding: 120px 0 80px; 
    background: url('chicken website pattern.jpg'); 
    background-size: 350px 350px;
    background-position: center;
    background-repeat: repeat;
    min-height: 90vh; 
    display: flex; 
    align-items: center; 
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .hero { 
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(45, 45, 45, 0.85) 100%), url('chicken website pattern.jpg'); 
    background-size: cover, 350px 350px;
    background-position: center, center;
    background-repeat: no-repeat, repeat;
}
.hero-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-content { background: rgba(255, 255, 255, 0.85); padding: 50px 40px; border-radius: 20px; backdrop-filter: blur(10px); box-shadow: 0 15px 40px rgba(0,0,0,0.15); width: 100%; }
[data-theme="dark"] .hero-content { background: rgba(26, 26, 26, 0.85); }
.hero-title { font-size: 3.8rem; font-weight: 700; color: var(--primary-color); margin-bottom: 25px; line-height: 1.1; }
[data-theme="dark"] .hero-title { color: #66a373; }
.hero-subtitle { font-size: 1.3rem; color: var(--text-color); margin-bottom: 35px; line-height: 1.5; opacity: 0.9; }
[data-theme="dark"] .hero-subtitle { color: #e0e0e0; opacity: 0.9; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 20px; justify-content: flex-start; }
.hero-image { position: relative; }
.hero-image img { width: 100%; height: 400px; object-fit: cover; border-radius: 20px; box-shadow: 0 20px 40px var(--shadow); }

/* Hero Actions Below Image */
.hero-actions {
    margin-top: 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

/* Payment Policy Notice in Hero */
.payment-policy-notice {
    width: 100%;
    background: rgba(255, 107, 53, 0.2);
    border: 2px solid var(--secondary-color);
    border-radius: 8px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    font-size: 1rem;
    text-align: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(255, 107, 53, 0.2);
}

.payment-policy-notice i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: bold;
}

.payment-policy-notice span {
    background: rgba(255, 255, 255, 0.95);
    color: #1a1a1a;
    font-weight: 700;
    padding: 8px 12px;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .payment-policy-notice {
    background: rgba(255, 140, 107, 0.25);
    border-color: #ff8c6b;
    box-shadow: 0 3px 10px rgba(255, 140, 107, 0.3);
}

[data-theme="dark"] .payment-policy-notice i {
    color: #ff8c6b;
}

[data-theme="dark"] .payment-policy-notice span {
    background: none;
    color: #e0e0e0;
    padding: 0;
    box-shadow: none;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Interactive Button Effects */
.btn-interactive {
    position: relative;
    overflow: hidden;
    animation: subtle-pulse 3s ease-in-out infinite;
}

.btn-interactive::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-interactive:hover::before {
    width: 300px;
    height: 300px;
}

.btn-interactive:hover {
    transform: translateY(-3px) scale(1.05);
    animation: none;
}

/* WhatsApp Button Special Effects */
.btn-whatsapp.btn-interactive {
    animation: whatsapp-glow 2s ease-in-out infinite alternate;
}

.btn-whatsapp.btn-interactive:hover {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Order Now Button Special Effects */
.btn-primary.btn-interactive {
    animation: order-shine 4s ease-in-out infinite;
}

.btn-primary.btn-interactive:hover {
    box-shadow: 0 8px 25px rgba(44, 85, 48, 0.4);
}

/* Email Order Button Effects */
.btn-outline.btn-interactive {
    animation: outline-pulsate 2s ease-in-out infinite;
}

.btn-outline.btn-interactive:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(44, 85, 48, 0.3);
    animation: none;
}

/* View Price List Button (also outline) */
.btn-outline:not(.btn-interactive) {
    animation: outline-pulsate 2.5s ease-in-out infinite;
}

.btn-outline:not(.btn-interactive):hover {
    animation: none;
}

/* Keyframe Animations */
@keyframes subtle-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

@keyframes whatsapp-glow {
    0% { box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3); }
    100% { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6); }
}

@keyframes order-shine {
    0%, 100% { box-shadow: 0 5px 20px rgba(44, 85, 48, 0.3); }
    50% { box-shadow: 0 8px 30px rgba(44, 85, 48, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2); }
}

@keyframes outline-pulsate {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(44, 85, 48, 0.2);
        border-color: var(--primary-color);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(44, 85, 48, 0.4);
        border-color: rgba(44, 85, 48, 0.8);
    }
}

@keyframes email-border-pulse {
    0%, 100% { border-color: var(--primary-color); }
    50% { border-color: rgba(44, 85, 48, 0.7); box-shadow: 0 0 15px rgba(44, 85, 48, 0.2); }
}

/* Section Headers with African accent */
.section-header { text-align: center; margin-bottom: 60px; position: relative; background: rgba(255, 255, 255, 0.85); padding: 30px; border-radius: 15px; backdrop-filter: blur(10px); box-shadow: 0 5px 20px rgba(0,0,0,0.1); }
[data-theme="dark"] .section-header { background: rgba(26, 26, 26, 0.85); }
.section-header h2 { font-size: 2.5rem; color: var(--primary-color); margin-bottom: 15px; font-weight: 600; }
.section-header p { font-size: 1.1rem; color: var(--text-color); max-width: 600px; margin: 0 auto; opacity: 0.8; }

.section-header::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #DAA520, #CD5C5C, #228B22, #8B4513);
    margin: 20px auto;
    border-radius: 2px;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; transform: scaleX(1.1); }
}
.section-image { margin-top: 30px; }
.section-image img { width: 100%; max-width: 600px; height: 150px; object-fit: cover; border-radius: 15px; box-shadow: 0 10px 30px var(--shadow); }

/* Products with African pattern */
.products { 
    padding: 80px 0; 
    background: var(--bg-color); 
    position: relative;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('chicken website pattern.jpg');
    background-size: 250px 250px;
    background-repeat: repeat;
    background-position: 0 0;
    opacity: 0.2;
    z-index: 0;
}

[data-theme="dark"] .products::before {
    opacity: 0.15;
}
.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; margin-bottom: 60px; position: relative; z-index: 1; }
.product-card { 
    background: var(--card-bg); 
    border-radius: 15px; 
    overflow: hidden; 
    box-shadow: 0 10px 30px var(--shadow); 
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #DAA520, #CD5C5C, #228B22, #8B4513);
    z-index: 2;
}

.product-card.featured {
    border: 3px solid rgba(218, 165, 32, 0.6);
    box-shadow: 0 15px 40px rgba(218, 165, 32, 0.2);
    transform: scale(1.02);
}

.product-card.featured::before {
    height: 8px;
    background: linear-gradient(90deg, #DAA520, #CD5C5C, #228B22, #8B4513);
    animation: shimmer 2s ease-in-out infinite;
}

.product-card.featured .product-info h3 {
    color: #DAA520;
    position: relative;
}

.product-card.featured .product-info h3::after {
    content: '⭐ POPULAR';
    position: absolute;
    top: -10px;
    right: 0;
    background: linear-gradient(135deg, #DAA520, #CD5C5C);
    color: white;
    font-size: 0.7rem;
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.bulk-options {
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.1), rgba(34, 139, 34, 0.1));
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    border-left: 4px solid var(--primary-color);
}

.bulk-options h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.bulk-options ul {
    list-style: none;
    padding: 0;
}

.bulk-options li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    color: var(--text-color);
    line-height: 1.6;
}

.bulk-options li::before {
    content: '🐔';
    position: absolute;
    left: 0;
    top: 0;
}
.product-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px var(--shadow); }
.product-image { height: 250px; overflow: hidden; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.product-card:hover .product-image img { transform: scale(1.05); }
.product-info { padding: 25px; }
.product-info h3 { font-size: 1.5rem; color: var(--primary-color); margin-bottom: 15px; font-weight: 600; }
.product-details { background: var(--bg-color); padding: 15px; border-radius: 8px; margin-bottom: 15px; border: 1px solid var(--border-color); }
.product-details p { margin-bottom: 5px; font-size: 0.9rem; color: var(--text-color); }
.product-description { color: var(--text-color); margin-bottom: 20px; line-height: 1.6; opacity: 0.8; }

/* Delivery Info */
.delivery-info { background: var(--card-bg); padding: 40px; border-radius: 15px; margin-top: 40px; box-shadow: 0 5px 15px var(--shadow); text-align: center; }
.delivery-info h3 { color: var(--primary-color); margin-bottom: 15px; font-size: 1.8rem; font-weight: 600; }
.delivery-info p { color: var(--text-color); margin-bottom: 30px; opacity: 0.8; }
.delivery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.delivery-item { text-align: center; padding: 20px; }
.delivery-item i { font-size: 2.5rem; color: var(--primary-color); margin-bottom: 15px; }
.delivery-item h4 { color: var(--text-color); margin-bottom: 10px; font-weight: 600; }
.delivery-item p { color: var(--text-color); opacity: 0.8; }

/* About */
.about { padding: 80px 0; background: var(--bg-color); }
[data-theme="dark"] .about { background: var(--card-bg); }
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-text h2 { font-size: 2.5rem; color: var(--primary-color); margin-bottom: 20px; font-weight: 600; }
.about-intro { font-size: 1.2rem; color: var(--text-color); margin-bottom: 30px; font-style: italic; opacity: 0.8; }
.about-features { margin-bottom: 30px; }
.feature { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 25px; }
.feature i { font-size: 1.5rem; color: var(--primary-color); margin-top: 5px; }
.feature h4 { color: var(--text-color); margin-bottom: 8px; font-weight: 600; }
.feature p { color: var(--text-color); line-height: 1.6; opacity: 0.8; }
.about-image img { width: 100%; height: 500px; object-fit: cover; border-radius: 15px; box-shadow: 0 15px 35px var(--shadow); }

/* Order */
.order { padding: 80px 0; background: var(--bg-color); }
.order-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
.step { text-align: center; padding: 30px; background: var(--card-bg); border-radius: 15px; position: relative; box-shadow: 0 5px 15px var(--shadow); }
.step-icon { margin-bottom: 20px; }
.step-icon img { width: 80px; height: 80px; object-fit: cover; border-radius: 50%; border: 3px solid var(--primary-color); }
.step-number { position: absolute; top: -20px; left: 50%; transform: translateX(-50%); width: 40px; height: 40px; background: var(--primary-color); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 1.2rem; }
.step h3 { margin: 20px 0; color: var(--primary-color); font-weight: 600; }
.order-methods, .payment-methods { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
.order-method, .payment-method { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 15px; background: var(--bg-color); border-radius: 10px; text-decoration: none; color: var(--text-color); transition: all 0.3s ease; min-width: 80px; border: 1px solid var(--border-color); }
.order-method:hover, .payment-method:hover { transform: translateY(-5px); box-shadow: 0 10px 20px var(--shadow); }
.order-method i, .payment-method i { font-size: 1.5rem; color: var(--primary-color); }
.delivery-options { display: grid; gap: 15px; }
.delivery-option { background: var(--bg-color); padding: 15px; border-radius: 10px; text-align: left; border: 1px solid var(--border-color); }
.delivery-option h4 { color: var(--primary-color); margin-bottom: 8px; font-weight: 600; }
.delivery-option p { color: var(--text-color); margin-bottom: 5px; opacity: 0.8; }

/* Payment Info Box in How to Order Section */
.payment-info-box {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(44, 85, 48, 0.1));
    border: 2px solid var(--secondary-color);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: left;
}

.payment-info-box h4 {
    color: var(--secondary-color);
    margin-bottom: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
}

.payment-info-box h4 i {
    font-size: 1.1rem;
}

.payment-info-box p {
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.6;
    font-weight: 500;
}

.payment-details {
    display: grid;
    gap: 8px;
}

.payment-detail {
    background: var(--bg-color);
    padding: 10px 15px;
    border-radius: 6px;
    border-left: 4px solid var(--primary-color);
    font-size: 0.9rem;
    color: var(--text-color);
}

[data-theme="dark"] .payment-info-box {
    background: linear-gradient(135deg, rgba(255, 140, 107, 0.15), rgba(74, 124, 89, 0.15));
    border-color: #ff8c6b;
}

[data-theme="dark"] .payment-info-box h4 {
    color: #ff8c6b;
}

/* Testimonials with pattern */
.testimonials { 
    padding: 80px 0; 
    background: url('chicken website pattern.jpg'); 
    background-size: 200px 200px;
    background-position: center;
    background-repeat: repeat;
}

[data-theme="dark"] .testimonials { 
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.90) 0%, rgba(45, 45, 45, 0.90) 100%), url('chicken website pattern.jpg'); 
    background-size: cover, 200px 200px;
    background-position: center, center;
    background-repeat: no-repeat, repeat;
}
.testimonials-content { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; align-items: flex-start; }
.testimonials-image { position: relative; }
.testimonials-image img { width: 100%; height: 400px; object-fit: cover; border-radius: 15px; box-shadow: 0 15px 35px var(--shadow); }
.testimonials-overlay { position: absolute; bottom: 20px; left: 20px; background: rgba(44, 85, 48, 0.9); color: white; padding: 20px; border-radius: 10px; }
.testimonials-overlay h3 { margin: 0 0 5px 0; font-weight: 600; }
.testimonials-overlay p { margin: 0; font-size: 0.9rem; }
.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 30px; }
.testimonial-card { background: var(--card-bg); padding: 30px; border-radius: 15px; box-shadow: 0 10px 30px var(--shadow); text-align: center; }
.stars { color: #ffc107; margin-bottom: 20px; font-size: 1.2rem; }
.testimonial-card p { color: var(--text-color); font-style: italic; margin-bottom: 25px; line-height: 1.6; opacity: 0.9; }
.customer-info { display: flex; align-items: center; justify-content: center; gap: 15px; }
.customer-photo { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 2px solid var(--primary-color); }
.customer-info h4 { color: var(--text-color); margin-bottom: 3px; font-weight: 600; }
.customer-info span { color: var(--text-color); font-size: 0.9rem; opacity: 0.7; }

/* Gallery */
.gallery { padding: 80px 0; background: var(--bg-color); }
[data-theme="dark"] .gallery { background: var(--card-bg); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.gallery-item { position: relative; overflow: hidden; border-radius: 15px; height: 250px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.gallery-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,0.7)); color: white; padding: 20px; transform: translateY(100%); transition: transform 0.3s ease; }
.gallery-item:hover .gallery-overlay { transform: translateY(0); }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay h4 { font-weight: 600; }

/* FAQ */
.faq { padding: 80px 0; background: var(--bg-color); }
[data-theme="dark"] .faq { background: var(--card-bg); }
.faq-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: flex-start; }
.faq-image { position: relative; }
.faq-image img { width: 100%; height: 400px; object-fit: cover; border-radius: 15px; box-shadow: 0 15px 35px var(--shadow); }
.faq-overlay { position: absolute; bottom: 20px; left: 20px; background: rgba(44, 85, 48, 0.9); color: white; padding: 20px; border-radius: 10px; }
.faq-overlay h3 { margin: 0 0 5px 0; font-weight: 600; }
.faq-overlay p { margin: 0; font-size: 0.9rem; }
.faq-container { max-width: 100%; }
.faq-item { background: var(--card-bg); margin-bottom: 15px; border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px var(--shadow); }
.faq-question { padding: 20px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; background: var(--card-bg); transition: background-color 0.3s ease; }
.faq-question:hover { background: var(--bg-color); }
.faq-question h3 { color: var(--text-color); font-weight: 600; font-size: 1.1rem; }
.faq-question i { color: var(--primary-color); transition: transform 0.3s ease; }
.faq-answer { padding: 0 20px; max-height: 0; overflow: hidden; transition: all 0.3s ease; }
.faq-item.active .faq-answer { padding: 20px; max-height: 200px; }
.faq-item.active .faq-question i { transform: rotate(45deg); }
.faq-answer p { color: var(--text-color); line-height: 1.6; opacity: 0.8; }

/* Contact */
.contact { padding: 80px 0; background: var(--bg-color); }
[data-theme="dark"] .contact { background: var(--card-bg); }
.contact-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info { display: flex; flex-direction: column; gap: 30px; }
.contact-image { position: relative; margin-bottom: 30px; }
.contact-image img { width: 100%; height: 300px; object-fit: cover; border-radius: 15px; box-shadow: 0 15px 35px var(--shadow); }
.contact-overlay { position: absolute; bottom: 20px; left: 20px; background: rgba(44, 85, 48, 0.9); color: white; padding: 15px; border-radius: 10px; }
.contact-overlay h3 { margin: 0 0 5px 0; font-weight: 600; }
.contact-overlay p { margin: 0; font-size: 0.9rem; }
.contact-item { display: flex; align-items: flex-start; gap: 20px; }
.contact-item i { font-size: 1.5rem; color: var(--primary-color); margin-top: 5px; }
.contact-item h4 { color: var(--text-color); margin-bottom: 8px; font-weight: 600; }
.contact-item a { color: var(--primary-color); text-decoration: none; font-weight: 500; }
.contact-item a:hover { text-decoration: underline; }
.contact-item p { color: var(--text-color); line-height: 1.6; opacity: 0.8; }
.contact-form { background: var(--card-bg); padding: 40px; border-radius: 15px; border: 1px solid var(--border-color); }
.contact-form h3 { color: var(--primary-color); margin-bottom: 25px; font-weight: 600; font-size: 1.5rem; }
.form-group { margin-bottom: 20px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 15px; border: 1px solid var(--border-color); border-radius: 8px; font-size: 16px; font-family: inherit; transition: border-color 0.3s ease; background: var(--bg-color); color: var(--text-color); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--primary-color); }
.form-group textarea { resize: vertical; min-height: 100px; }

/* Footer */
.footer { background: var(--primary-color); color: white; padding: 60px 0 20px; }
[data-theme="dark"] .footer { background: #1a2e1d; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-section h3, .footer-section h4 { margin-bottom: 20px; font-weight: 600; }
.footer-section p { color: rgba(255,255,255,0.8); line-height: 1.6; margin-bottom: 20px; }
.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 10px; }
.footer-section ul li a { color: rgba(255,255,255,0.8); text-decoration: none; transition: color 0.3s ease; }
.footer-section ul li a:hover { color: white; }
.footer-section ul li i { width: 20px; margin-right: 10px; color: rgba(255,255,255,0.6); }
.social-links { display: flex; gap: 15px; }
.social-links a { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: rgba(255,255,255,0.1); color: white; border-radius: 50%; text-decoration: none; transition: all 0.3s ease; }
.social-links a:hover { background: rgba(255,255,255,0.2); transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; text-align: center; }
.footer-bottom p { color: rgba(255,255,255,0.8); margin: 0; }

/* Floating Elements */
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; z-index: 1000; }
.whatsapp-float a { display: flex; align-items: center; justify-content: center; width: 60px; height: 60px; background: var(--whatsapp-color); color: white; border-radius: 50%; text-decoration: none; box-shadow: 0 5px 20px rgba(37,211,102,0.3); transition: all 0.3s ease; animation: pulse 2s infinite; }
.whatsapp-float a:hover { transform: scale(1.1); box-shadow: 0 8px 25px rgba(37,211,102,0.4); }
.whatsapp-float i { font-size: 1.5rem; }
.back-to-top { position: fixed; bottom: 30px; left: 30px; width: 50px; height: 50px; background: var(--primary-color); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0; visibility: hidden; transition: all 0.3s ease; z-index: 1000; }
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--primary-color); opacity: 0.8; transform: translateY(-3px); }

/* Modal */
.modal { display: none; position: fixed; z-index: 10000; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.5); backdrop-filter: blur(5px); }
.modal-content { background-color: var(--card-bg); margin: 2% auto; padding: 0; border-radius: 15px; width: 90%; max-width: 600px; max-height: 90vh; overflow-y: auto; box-shadow: 0 20px 60px var(--shadow); animation: modalSlideIn 0.3s ease; }
.modal-header { background: var(--primary-color); color: white; padding: 20px 25px; border-radius: 15px 15px 0 0; display: flex; justify-content: space-between; align-items: center; }
.modal-header h2 { margin: 0; font-size: 1.5rem; font-weight: 600; }
.close { color: white; font-size: 28px; font-weight: bold; cursor: pointer; line-height: 1; transition: color 0.3s ease; }
.close:hover { color: #ddd; }
.modal-body { padding: 25px; }

/* Mobile modal specific styles */
.mobile-modal {
    align-items: flex-end;
}

.mobile-modal .modal-content {
    width: 100%;
    max-width: 100%;
    margin: 0;
    border-radius: 15px 15px 0 0;
    max-height: 95vh;
    animation: modalSlideUp 0.3s ease;
}

@keyframes modalSlideUp {
    from { 
        opacity: 0; 
        transform: translateY(100%); 
    } 
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

/* Keyboard visibility adjustments for mobile */
.mobile-modal.keyboard-visible .modal-content {
    max-height: 70vh;
}

.mobile-modal.keyboard-visible .modal-body {
    padding-bottom: 80px;
}

.mobile-modal.keyboard-visible .form-actions {
    position: fixed;
    bottom: 0;
    padding: 12px 15px;
}
.login-section { text-align: center; }
.login-section h3 { color: var(--primary-color); margin-bottom: 10px; font-weight: 600; }
.login-section p { color: var(--text-color); margin-bottom: 25px; opacity: 0.8; }
.login-options { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.or-divider { position: relative; width: 100%; text-align: center; margin: 20px 0; }
.or-divider::before { content: ''; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: var(--border-color); }
.or-divider span { background: var(--card-bg); padding: 0 15px; color: var(--text-color); font-weight: 500; opacity: 0.8; }
.manual-email { width: 100%; max-width: 300px; display: flex; flex-direction: column; gap: 15px; }
.manual-email input { width: 100%; padding: 12px 15px; border: 1px solid var(--border-color); border-radius: 8px; font-size: 16px; transition: border-color 0.3s ease; background: var(--bg-color); color: var(--text-color); }
.manual-email input:focus { outline: none; border-color: var(--primary-color); }
.order-form-section { animation: fadeIn 0.5s ease; }
.user-info { background: var(--bg-color); padding: 15px; border-radius: 10px; margin-bottom: 25px; display: flex; align-items: center; gap: 15px; border: 1px solid var(--border-color); }
.user-avatar { width: 50px; height: 50px; border-radius: 50%; background: var(--primary-color); color: white; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 1.2rem; }
.user-details { flex: 1; display: flex; flex-direction: column; }
.user-details span:first-child { font-weight: 600; color: var(--text-color); }
.user-details span:last-child { font-size: 0.9rem; color: var(--text-color); opacity: 0.7; }
.btn-link { background: none; border: none; color: var(--primary-color); text-decoration: underline; cursor: pointer; font-size: 0.9rem; padding: 5px; }
.btn-link:hover { color: var(--primary-color); opacity: 0.8; }

/* Payment Notice Styling */
.payment-notice {
    background: linear-gradient(135deg, rgba(44, 85, 48, 0.1), rgba(255, 107, 53, 0.1));
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
    position: relative;
}

.payment-notice-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.payment-notice-header i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.payment-notice-header h4 {
    color: var(--primary-color);
    margin: 0;
    font-weight: 600;
    font-size: 1.1rem;
}

.payment-notice p {
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.6;
    font-weight: 500;
}

.payment-notice ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.payment-notice li {
    color: var(--text-color);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.payment-notice li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

[data-theme="dark"] .payment-notice {
    background: linear-gradient(135deg, rgba(74, 124, 89, 0.15), rgba(255, 140, 107, 0.15));
    border-color: #66a373;
}

[data-theme="dark"] .payment-notice-header i,
[data-theme="dark"] .payment-notice-header h4 {
    color: #66a373;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; color: var(--text-color); }
.price-estimate { background: var(--bg-color); padding: 15px; border-radius: 8px; text-align: center; margin-bottom: 20px; border: 1px solid var(--border-color); }
.price-estimate h4 { color: var(--primary-color); margin: 0 0 5px 0; font-size: 1.2rem; }
.form-actions { display: flex; gap: 15px; justify-content: flex-end; margin-top: 25px; }

/* Animations */
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
@keyframes modalSlideIn { from { opacity: 0; transform: translateY(-50px); } to { opacity: 1; transform: translateY(0); } }

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-container { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .hero-title { font-size: 2.5rem; }
    .hero-buttons { justify-content: center; }
    .about-content { grid-template-columns: 1fr; gap: 40px; }
    .contact-content { grid-template-columns: 1fr; gap: 40px; }
    .faq-content { grid-template-columns: 1fr; gap: 40px; }
    .testimonials-content { grid-template-columns: 1fr; gap: 40px; }
    .products-grid { grid-template-columns: 1fr; }
    .nav-menu { position: fixed; left: -100%; top: 70px; flex-direction: column; background-color: var(--card-bg); width: 100%; text-align: center; transition: 0.3s; box-shadow: 0 10px 27px var(--shadow); padding: 20px 0; }
    .nav-menu.active { left: 0; }
    .nav-menu li { margin: 15px 0; }
    .nav-toggle { display: flex; }
    .nav-toggle.active .bar:nth-child(2) { opacity: 0; }
    .nav-toggle.active .bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .nav-toggle.active .bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
    .section-header h2 { font-size: 2rem; }
    .hero { padding: 100px 0 60px; }
    .form-row { grid-template-columns: 1fr; }
    .step-icon img { width: 60px; height: 60px; }
    .contact-image img { height: 250px; }
    .faq-image img { height: 300px; }
    .testimonials-image img { height: 300px; }
    .theme-toggle { padding: 6px 10px; font-size: 0.9rem; }
}
.price-estimate small { color: var(--text-color); opacity: 0.7; font-style: italic; }
.form-actions { display: flex; gap: 15px; justify-content: flex-end; margin-top: 25px; padding-top: 20px; border-top: 1px solid var(--border-color); }

/* Animations */
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-50px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(50px); } to { opacity: 1; transform: translateX(0); } }
@keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.05); } 100% { transform: scale(1); } }
@keyframes modalSlideIn { from { opacity: 0; transform: translateY(-50px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu { position: fixed; left: -100%; top: 70px; flex-direction: column; background-color: var(--card-bg); width: 100%; text-align: center; transition: 0.3s; box-shadow: 0 10px 27px var(--shadow); padding: 20px 0; }
    .nav-menu.active { left: 0; }
    .nav-menu li { margin: 10px 0; }
    .nav-toggle { display: flex; }
    .nav-toggle.active .bar:nth-child(2) { opacity: 0; }
    .nav-toggle.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .nav-toggle.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
    .hero-container { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .hero-title { font-size: 2.5rem; }
    .hero-buttons { justify-content: center; }
    .about-content { grid-template-columns: 1fr; gap: 40px; }
    .contact-content { grid-template-columns: 1fr; gap: 40px; }
    .products-grid { grid-template-columns: 1fr; }
    .delivery-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
    .order-steps { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .whatsapp-float { bottom: 20px; right: 20px; }
    .back-to-top { bottom: 20px; left: 20px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .btn { width: 100%; max-width: 250px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    
    /* Enhanced Modal Mobile Experience */
    .modal-content { 
        width: 95%; 
        margin: 2% auto; 
        max-height: 95vh; 
        display: flex;
        flex-direction: column;
        border-radius: 15px 15px 0 0;
    }
    .modal-header { 
        padding: 15px 20px; 
        flex-shrink: 0;
        border-radius: 15px 15px 0 0;
    }
    .modal-header h2 { font-size: 1.3rem; }
    
    /* Scrollable modal body */
    .modal-body { 
        padding: 20px 20px 100px 20px; /* Add bottom padding for sticky buttons */
        flex: 1;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Sticky action buttons on mobile */
    .form-actions { 
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--card-bg);
        padding: 15px 20px;
        border-top: 1px solid var(--border-color);
        box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
        z-index: 10001;
        display: flex;
        gap: 10px;
        margin-top: 0;
        border-radius: 0;
    }
    
    .form-actions .btn { 
        flex: 1;
        padding: 14px 16px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 8px;
        min-height: 48px; /* Touch-friendly size */
    }
    
    /* Cancel button styling */
    .form-actions .btn-secondary {
        background: var(--border-color);
        color: var(--text-color);
        border: 1px solid var(--border-color);
    }
    
    .form-actions .btn-secondary:hover {
        background: #ccc;
        transform: none;
    }
    
    /* Primary button emphasis */
    .form-actions .btn-primary {
        background: var(--primary-color);
        border: none;
        box-shadow: 0 2px 8px rgba(44, 85, 48, 0.3);
    }
    
    .form-actions .btn-primary:hover {
        background: #1e3a21;
        transform: none;
        box-shadow: 0 4px 12px rgba(44, 85, 48, 0.4);
    }
    
    /* Form adjustments for better mobile experience */
    .order-form-section form {
        margin-bottom: 20px;
    }
    
    /* Ensure price estimate is visible above sticky buttons */
    .price-estimate {
        margin-bottom: 30px;
        position: relative;
        z-index: 1;
    }
    
    /* Input field improvements for mobile */
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevent zoom on iOS */
        min-height: 44px; /* Touch-friendly */
        padding: 12px 15px;
    }
    
    .form-group textarea {
        min-height: 100px;
        resize: vertical;
    }
    
    /* Modal positioning adjustments */
    .modal {
        padding: 0;
    }
    
    /* Dark mode support for mobile form actions */
    [data-theme="dark"] .form-actions {
        background: var(--card-bg);
        border-top-color: var(--border-color);
        box-shadow: 0 -5px 15px rgba(0,0,0,0.3);
    }
    
    [data-theme="dark"] .form-actions .btn-secondary {
        background: var(--border-color);
        color: var(--text-color);
    }
}

/* Tablet Responsive - Medium screens */
@media (max-width: 1024px) and (min-width: 769px) {
    /* Modal adjustments for tablet */
    .modal-content {
        width: 85%;
        max-width: 700px;
    }
    
    .modal-body {
        padding: 25px 30px 80px 30px;
    }
    
    /* Sticky buttons for tablet when modal is tall */
    .form-actions {
        position: sticky;
        bottom: 0;
        background: var(--card-bg);
        padding: 20px 30px;
        border-top: 1px solid var(--border-color);
        margin-top: 30px;
        box-shadow: 0 -3px 10px rgba(0,0,0,0.1);
        z-index: 10001;
    }
    
    .form-actions .btn {
        min-height: 44px;
        padding: 12px 20px;
        font-size: 16px;
    }
    
    /* Form improvements for tablet */
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 16px;
    }
    
    .form-row {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    [data-theme="dark"] .form-actions {
        background: var(--card-bg);
        border-top-color: var(--border-color);
    }
}