@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600&display=swap');

/* ===================================
   CSS Variables & Design Tokens
   =================================== */
:root {
    /* Color Palette */
    --color-primary: #f9c13d;
    --color-primary-dark: #e0ad2d;
    --color-primary-light: #ffd15c;
    --color-secondary: #2D5016;
    --color-secondary-dark: #1F3810;
    --color-secondary-light: #4A7C2C;
    --color-accent: #2D5016;
    --color-accent-dark: #1F3810;

    --color-bg: #f9c13d;
    --color-bg-alt: #ffd15c;
    --color-surface: #FFFFFF;
    --color-text: #2C2C2C;
    --color-text-light: #666666;
    --color-text-lighter: #999999;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #F4B942 0%, #FFC857 100%);
    --gradient-hero: linear-gradient(135deg, rgba(244, 185, 66, 0.95) 0%, rgba(255, 200, 87, 0.9) 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;

    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Inter', sans-serif;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===================================
   Reset & Base Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 600;
}

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

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

ul {
    list-style: none;
}

/* ===================================
   Utility Classes
   =================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--color-bg);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-base);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
}

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

.logo-image {
    width: 80px;
    height: 50px;
    object-fit: contain;
}

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

.logo h1 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-secondary);
    letter-spacing: 2px;
    line-height: 1;
}

.logo span {
    font-size: 0.75rem;
    color: var(--color-accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: var(--spacing-lg);
}

.nav-links a {
    font-weight: 500;
    color: #FFFFFF;
    transition: var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-base);
}

.nav-links a:hover {
    color: #2C2C2C;
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-secondary);
    border-radius: 2px;
    transition: var(--transition-base);
}

/* ===================================
   Hero Section
   =================================== */
/* Hero Section - Dark Theme */
.hero {
    min-height: 100vh;
    background: #fcc840;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: var(--spacing-2xl) 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(45, 80, 22, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(210, 105, 30, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--spacing-2xl) var(--spacing-xl);
    padding-top: 120px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    color: white;
}

.hero-tagline {
    font-size: 1.1rem;
    font-style: italic;
    color: #2D5016;
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero-heading {
    font-family: var(--font-primary);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: var(--spacing-md);
    color: white;
    text-transform: uppercase;
    letter-spacing: -2px;
    text-shadow:
        3px 3px 6px rgba(0, 0, 0, 0.2);
}

.accent-text {
    display: block;
    color: #2D5016;
    font-size: 1.3em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-offer {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 800;
    color: #2D5016;
    margin-bottom: var(--spacing-md);
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: white;
    margin-bottom: var(--spacing-xl);
    max-width: 500px;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

/* Hero Image Section */
.hero-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 600px;
}

.hero-product-image {
    position: relative;
    z-index: 3;
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

/* Splash Effects */
.splash-effect {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.6;
    animation: splash 4s ease-in-out infinite;
}

.splash-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(244, 185, 66, 0.6) 0%, transparent 70%);
    top: 10%;
    right: 20%;
    animation-delay: 0s;
}

.splash-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(234, 88, 12, 0.5) 0%, transparent 70%);
    bottom: 15%;
    right: 10%;
    animation-delay: 1.5s;
}

.splash-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(45, 80, 22, 0.4) 0%, transparent 70%);
    top: 50%;
    left: 10%;
    animation-delay: 3s;
}

@keyframes splash {

    0%,
    100% {
        transform: scale(1) translate(0, 0);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.2) translate(10px, -10px);
        opacity: 0.8;
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-2xl);
    }

    .hero-text {
        order: 1;
    }

    .hero-image-wrapper {
        order: 2;
        height: 400px;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .hero {
        min-height: auto;
        padding: var(--spacing-3xl) 0;
    }

    .hero-heading {
        font-size: 2.5rem;
    }

    .hero-image-wrapper {
        height: 300px;
    }

    .splash-effect {
        width: 150px !important;
        height: 150px !important;
    }
}

/* ===================================
   Buttons
   =================================== */
/* Modern Button Styles */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    font-family: var(--font-secondary);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 25px rgba(76, 175, 80, 0.4);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: white;
    color: #2D5016;
    border: 2px solid white;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: white;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.4);
}

.btn-secondary:active {
    transform: translateY(-1px);
}

.btn-product {
    background: linear-gradient(135deg, #F4B942 0%, #FFC857 100%);
    color: #2D5016;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(244, 185, 66, 0.3);
}

.btn-product:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 25px rgba(244, 185, 66, 0.4);
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    padding: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: var(--spacing-md);
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.3);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(76, 175, 80, 0.4);
}

.btn-submit:active {
    transform: translateY(-1px);
}

.btn-submit.loading .btn-text {
    opacity: 0;
}

.btn-submit.loading .btn-loader {
    display: block;
}

.btn-loader {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* ===================================
   Sections
   =================================== */
section {
    padding: var(--spacing-3xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.section-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-sm);
}

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

/* ===================================
   About/Features Section
   =================================== */
.about {
    background: var(--color-surface);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.feature-card {
    background: var(--color-bg);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-base);
    border: 2px solid transparent;
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    animation: float 3s ease-in-out infinite;
    color: #FFFFFF;
}

.feature-card:nth-child(1) .feature-icon {
    animation-delay: 0s;
}

.feature-card:nth-child(2) .feature-icon {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) .feature-icon {
    animation-delay: 0.4s;
}

.feature-card:nth-child(4) .feature-icon {
    animation-delay: 0.6s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.feature-card h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-sm);
}

.feature-card p {
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ===================================
   Our Story Section
   =================================== */
.our-story {
    background: var(--color-bg-alt);
    overflow: hidden;
}

.story-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-3xl);
}

.story-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.story-card.reverse {
    direction: rtl;
}

.story-card.reverse>* {
    direction: ltr;
}

.story-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
}

.story-image:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
}

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.story-content {
    padding: var(--spacing-lg);
}

.story-content h3 {
    font-family: var(--font-primary);
    font-size: 1.75rem;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-md);
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-light);
}

/* ===================================
   Products Section
   =================================== */
.products {
    background: var(--color-bg-alt);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-xl);
    max-width: 900px;
    margin: 0 auto;
}

.product-card {
    background: var(--color-surface);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
}

.product-image {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: var(--color-secondary);
    color: var(--color-surface);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-lg);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-badge.premium {
    background: var(--gradient-primary);
}

.product-content {
    padding: var(--spacing-lg);
}

.product-title {
    font-family: var(--font-primary);
    font-size: 1.75rem;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-sm);
}

.product-description {
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.nutrition-info {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
}

.nutrition-badge {
    flex: 1;
    min-width: 90px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    padding: var(--spacing-sm);
    border-radius: var(--radius-md);
    text-align: center;
    color: white;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.nutrition-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.nutrition-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
    margin-bottom: 2px;
}

.nutrition-value {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    font-family: var(--font-primary);
}

.nutrition-unit {
    display: block;
    font-size: 0.65rem;
    opacity: 0.85;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-md);
}

.feature-tag {
    background: var(--color-bg);
    color: var(--color-secondary);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-md);
    border-top: 2px solid var(--color-bg);
}

.product-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.75rem;
    color: var(--color-text-lighter);
    text-transform: uppercase;
}

.price {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent);
}

/* ===================================
   Order Section
   =================================== */
.order-section {
    background: var(--color-surface);
}

.order-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--spacing-2xl);
    align-items: start;
}

.order-info h2 {
    font-family: var(--font-primary);
    font-size: 1.75rem;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-md);
}

.order-info>p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-xl);
    line-height: 1.7;
}

.order-benefits {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.benefit-item {
    display: flex;
    gap: var(--spacing-md);
    align-items: start;
}

.benefit-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.benefit-item h4 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    color: var(--color-secondary);
    margin-bottom: 4px;
}

.benefit-item p {
    color: var(--color-text-light);
}

.order-form-container {
    position: relative;
}

.order-form {
    background: var(--color-bg);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.order-form h3 {
    font-family: var(--font-primary);
    font-size: 1.75rem;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-sm);
}

.form-intro {
    color: var(--color-text-light);
    margin-bottom: var(--spacing-lg);
    font-size: 1rem;
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--spacing-xs);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--spacing-sm);
    border: 2px solid #E5E5E5;
    border-radius: var(--radius-md);
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: var(--transition-fast);
    background: var(--color-surface);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(244, 185, 66, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-note {
    font-size: 0.85rem;
    color: var(--color-text-lighter);
    text-align: center;
    margin-top: var(--spacing-md);
}

.success-message {
    display: none;
    text-align: center;
    padding: var(--spacing-2xl);
    background: var(--color-bg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.success-message.show {
    display: block;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    color: var(--color-surface);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto var(--spacing-lg);
    animation: checkmark 0.6s ease 0.3s backwards;
}

@keyframes checkmark {
    0% {
        transform: scale(0) rotate(45deg);
    }

    50% {
        transform: scale(1.2) rotate(45deg);
    }

    100% {
        transform: scale(1) rotate(0deg);
    }
}

.success-message h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-sm);
}

.success-message p {
    color: var(--color-text-light);
    margin-bottom: var(--spacing-lg);
    font-size: 1.1rem;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--color-secondary);
    color: var(--color-surface);
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-section h3,
.footer-section h4 {
    font-family: var(--font-primary);
    margin-bottom: var(--spacing-md);
}

.footer-section h3 {
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.footer-section span {
    font-size: 0.7rem;
    color: var(--color-primary);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
}

.footer-section a:hover {
    color: var(--color-primary);
    padding-left: 4px;
}

.contact-info li {
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* ===================================
   Scroll Animations
   =================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 968px) {
    .order-wrapper {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--color-surface);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: var(--spacing-xl);
        transition: var(--transition-base);
        box-shadow: var(--shadow-lg);
    }

    .nav-links a {
        color: #2C2C2C;
        font-size: 1.2rem;
    }

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

    .mobile-toggle {
        display: flex;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Hero Section Mobile Fixes */
    .hero-container {
        grid-template-columns: 1fr;
        padding-top: 80px;
        gap: var(--spacing-xl);
        text-align: center;
    }

    .hero-text {
        order: 2;
    }

    .hero-image-wrapper {
        order: 1;
        max-width: 300px;
        margin: 0 auto;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .hero-heading {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .hero-offer {
        font-size: clamp(1.2rem, 4vw, 2rem);
    }

    .hero-subtitle {
        font-size: 1rem;
        margin: 0 auto;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
        text-align: center;
    }



    .hero-text {
        order: 1;
    }

    /* Story cards mobile layout - image on top */
    .story-card {
        display: flex;
        flex-direction: column;
        gap: var(--spacing-lg);
    }

    .story-card.reverse {
        direction: ltr;
        flex-direction: column;
    }

    .story-image {
        order: 1;
        width: 100%;
        margin: 0;
    }

    .story-content {
        order: 2;
    }

    .story-image img {
        height: 300px;
        width: 100%;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

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

    section {
        padding: var(--spacing-2xl) 0;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-3xl: 3rem;
        --spacing-2xl: 2rem;
    }

    .order-form {
        padding: var(--spacing-lg);
    }

    .feature-card {
        padding: var(--spacing-lg);
    }
}

/* Product Delivery Info */
.product-delivery-info {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding-top: var(--spacing-sm);
    margin-top: var(--spacing-sm);
    font-size: 0.85rem;
    color: var(--color-success);
    font-weight: 500;
}

.product-delivery-info svg {
    width: 16px;
    height: 16px;
}