/* ========================================
   NUTRIHAR - Premium Food Brand Website
   Colorful, Playful, FMCG Style
   ======================================== */

/* ==========================================
   CSS VARIABLES / DESIGN TOKENS
   ========================================== */
:root {
    /* Brand Colors - Vibrant & Earthy */
    --color-primary: #5B8C3E;
    --color-primary-light: #7DB356;
    --color-primary-dark: #3D6B1E;
    --color-primary-bg: #E8F5E0;
    
    --color-secondary: #F5A623;
    --color-secondary-light: #FFD54F;
    --color-secondary-dark: #E09000;
    
    --color-accent-red: #E74C3C;
    --color-accent-orange: #FF8C42;
    --color-accent-yellow: #FFD93D;
    --color-accent-brown: #8B5A2B;
    
    /* Backgrounds */
    --color-bg-cream: #FFFEF7;
    --color-bg-light-green: #F0F7EC;
    --color-bg-light-yellow: #FFFBEB;
    --color-bg-white: #FFFFFF;
    
    /* Text Colors */
    --color-text-dark: #1A1A1A;
    --color-text-body: #444444;
    --color-text-muted: #777777;
    --color-text-light: #FFFFFF;
    
    /* Platform Colors */
    --color-amazon: #FF9900;
    --color-flipkart: #2874F0;
    --color-jiomart: #0078AD;
    --color-instagram: #E4405F;
    
    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Nunito', sans-serif;
    
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.5rem;
    --font-size-5xl: 3.5rem;
    --font-size-6xl: 4.5rem;
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    
    /* Layout */
    --container-max: 1200px;
    --container-padding: 1.5rem;
    
    /* Borders & Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-product: 0 15px 50px rgba(91, 140, 62, 0.2);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
    
    /* Z-index */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal: 400;
    
    /* Header */
    --header-height: 100px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text-body);
    background-color: var(--color-bg-cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img,
picture,
video,
svg {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

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

ul,
ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text-dark);
}

strong {
    color: var(--color-primary);
    font-weight: 700;
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section {
    padding: var(--space-16) 0;
}

@media (min-width: 768px) {
    .section {
        padding: var(--space-20) 0;
    }
}

@media (min-width: 1024px) {
    .section {
        padding: var(--space-24) 0;
    }
}

.section__title {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    color: var(--color-text-dark);
    margin-bottom: var(--space-4);
}

@media (min-width: 768px) {
    .section__title {
        font-size: var(--font-size-4xl);
    }
}

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

.section__subtitle {
    font-size: var(--font-size-lg);
    color: var(--color-text-muted);
    text-align: center;
    margin-bottom: var(--space-12);
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-8);
    font-family: var(--font-heading);
    font-size: var(--font-size-base);
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn--primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: var(--color-text-light);
    box-shadow: 0 4px 15px rgba(91, 140, 62, 0.3);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(91, 140, 62, 0.4);
}

.btn--large {
    padding: var(--space-5) var(--space-10);
    font-size: var(--font-size-lg);
}

.btn--full {
    width: 100%;
}

/* ==========================================
   HEADER / NAVIGATION
   ========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background-color: rgba(255, 254, 247, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: var(--z-fixed);
    transition: all var(--transition-base);
}

.header--scrolled {
    box-shadow: var(--shadow-md);
    height: 80px;
}

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

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

.nav__logo-img {
    height: 85px;
    width: auto;
}

@media (min-width: 768px) {
    .nav__logo-img {
        height: 100px;
    }
}

@media (min-width: 1024px) {
    .nav__logo-img {
        height: 110px;
    }
}

.header--scrolled .nav__logo-img {
    height: 65px;
}

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

.nav__list {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

.nav__link {
    font-family: var(--font-heading);
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--color-text-dark);
    transition: color var(--transition-fast);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--color-primary);
    border-radius: var(--radius-full);
    transition: width var(--transition-base);
}

.nav__link:hover {
    color: var(--color-primary);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__link--cta {
    padding: var(--space-3) var(--space-6);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: var(--color-text-light);
    border-radius: var(--radius-full);
}

.nav__link--cta::after {
    display: none;
}

.nav__link--cta:hover {
    color: var(--color-text-light);
    transform: scale(1.05);
}

.nav__toggle,
.nav__close {
    display: none;
    color: var(--color-text-dark);
}

/* Mobile Navigation */
@media (max-width: 767px) {
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--color-bg-white);
        flex-direction: column;
        justify-content: center;
        padding: var(--space-8);
        box-shadow: var(--shadow-xl);
        transition: right var(--transition-slow);
        z-index: var(--z-modal);
    }
    
    .nav__menu.show-menu {
        right: 0;
    }
    
    .nav__list {
        flex-direction: column;
        gap: var(--space-6);
    }
    
    .nav__link {
        font-size: var(--font-size-xl);
    }
    
    .nav__close {
        display: block;
        position: absolute;
        top: var(--space-6);
        right: var(--space-6);
    }
    
    .nav__toggle {
        display: block;
    }
}

/* Overlay for mobile menu */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: calc(var(--z-modal) - 1);
}

.nav-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    background: linear-gradient(135deg, var(--color-bg-light-green) 0%, var(--color-bg-light-yellow) 50%, var(--color-bg-cream) 100%);
    position: relative;
    overflow: hidden;
}

/* Background Shapes */
.hero__bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.hero__shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
}

.hero__shape--1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--color-primary-light), transparent);
    top: -100px;
    right: -100px;
}

.hero__shape--2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--color-secondary-light), transparent);
    bottom: 10%;
    left: -100px;
}

.hero__shape--3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--color-accent-orange), transparent);
    top: 40%;
    right: 20%;
    opacity: 0.2;
}

.hero__container {
    display: grid;
    gap: var(--space-8);
    align-items: center;
    padding: var(--space-8) 0;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .hero__container {
        grid-template-columns: 1fr 1.2fr;
        gap: var(--space-12);
        padding: var(--space-12) 0;
    }
}

.hero__content {
    text-align: center;
}

@media (min-width: 1024px) {
    .hero__content {
        text-align: left;
    }
}

.hero__title {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    color: var(--color-text-dark);
    margin-bottom: var(--space-4);
    line-height: 1.1;
}

@media (min-width: 768px) {
    .hero__title {
        font-size: var(--font-size-5xl);
    }
}

@media (min-width: 1024px) {
    .hero__title {
        font-size: var(--font-size-6xl);
    }
}

.hero__title--highlight {
    color: var(--color-primary);
    position: relative;
}

.hero__subtitle {
    font-size: var(--font-size-lg);
    color: var(--color-text-muted);
    margin-bottom: var(--space-8);
    font-weight: 600;
}

@media (min-width: 768px) {
    .hero__subtitle {
        font-size: var(--font-size-xl);
    }
}

/* Hero Products Display */
.hero__products {
    position: relative;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (min-width: 768px) {
    .hero__products {
        height: 550px;
    }
}

@media (min-width: 1024px) {
    .hero__products {
        height: 600px;
    }
}

.hero__product {
    position: absolute;
    transition: all var(--transition-slow);
}

.hero__product img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    transition: all var(--transition-base);
}

.hero__product:hover img {
    transform: scale(1.05) rotate(2deg);
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.2));
}

/* Product Positioning - 5 Products */
.hero__product--1 {
    width: 200px;
    height: 270px;
    z-index: 5;
    transform: rotate(-5deg);
}

.hero__product--2 {
    width: 180px;
    height: 240px;
    z-index: 4;
    left: 5%;
    top: 15%;
    transform: rotate(8deg);
}

.hero__product--3 {
    width: 190px;
    height: 250px;
    z-index: 3;
    right: 5%;
    top: 10%;
    transform: rotate(-8deg);
}

.hero__product--4 {
    width: 170px;
    height: 220px;
    z-index: 2;
    left: 15%;
    bottom: 5%;
    transform: rotate(10deg);
}

.hero__product--5 {
    width: 160px;
    height: 210px;
    z-index: 1;
    right: 10%;
    bottom: 10%;
    transform: rotate(-12deg);
}

@media (min-width: 768px) {
    .hero__product--1 {
        width: 260px;
        height: 350px;
    }
    .hero__product--2 {
        width: 230px;
        height: 310px;
        left: 0;
    }
    .hero__product--3 {
        width: 240px;
        height: 320px;
        right: 0;
    }
    .hero__product--4 {
        width: 210px;
        height: 280px;
        left: 10%;
    }
    .hero__product--5 {
        width: 200px;
        height: 270px;
        right: 5%;
    }
}

@media (min-width: 1024px) {
    .hero__product--1 {
        width: 300px;
        height: 400px;
        left: 30%;
        top: 5%;
    }
    .hero__product--2 {
        width: 270px;
        height: 360px;
        left: -5%;
        top: 20%;
    }
    .hero__product--3 {
        width: 260px;
        height: 350px;
        right: -5%;
        top: 5%;
    }
    .hero__product--4 {
        width: 240px;
        height: 320px;
        left: 5%;
        bottom: 0;
    }
    .hero__product--5 {
        width: 230px;
        height: 310px;
        right: 10%;
        bottom: 5%;
    }
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about {
    background-color: var(--color-bg-white);
    position: relative;
}

.about__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about__title {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    margin-bottom: var(--space-6);
}

@media (min-width: 768px) {
    .about__title {
        font-size: var(--font-size-4xl);
    }
}

.about__title span {
    color: var(--color-primary);
}

.about__text {
    font-size: var(--font-size-lg);
    color: var(--color-text-body);
    line-height: 1.8;
    margin-bottom: var(--space-4);
}

.about__tagline {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-6);
    background: linear-gradient(135deg, var(--color-primary-bg) 0%, var(--color-bg-light-yellow) 100%);
    border-radius: var(--radius-full);
    margin-top: var(--space-6);
    font-weight: 700;
    color: var(--color-primary-dark);
}

.about__tagline-icon {
    font-size: var(--font-size-xl);
}

/* ==========================================
   WHY NUTRIHAR SECTION
   ========================================== */
.why {
    background: linear-gradient(180deg, var(--color-bg-light-green) 0%, var(--color-bg-cream) 100%);
}

.why__grid {
    display: grid;
    gap: var(--space-6);
    margin-top: var(--space-12);
}

@media (min-width: 640px) {
    .why__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .why__grid {
        grid-template-columns: repeat(5, 1fr);
        gap: var(--space-4);
    }
}

.why__card {
    background-color: var(--color-bg-white);
    padding: var(--space-8) var(--space-6);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.why__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.why__icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary-bg) 0%, var(--color-bg-light-yellow) 100%);
    color: var(--color-primary);
    border-radius: 50%;
    margin: 0 auto var(--space-5);
}

.why__card-title {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: var(--space-2);
}

.why__card-text {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* ==========================================
   PRODUCTS SECTION
   ========================================== */
.products {
    background-color: var(--color-bg-white);
}

.products__grid {
    display: grid;
    gap: var(--space-6);
}

@media (min-width: 640px) {
    .products__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .products__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-8);
    }
}

.product-card {
    background: linear-gradient(145deg, var(--color-bg-light-green) 0%, var(--color-bg-light-yellow) 100%);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

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

.product-card__image {
    aspect-ratio: 1;
    padding: var(--space-6);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-card__image img {
    width: 85%;
    height: 85%;
    object-fit: contain;
    transition: all var(--transition-base);
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

.product-card:hover .product-card__image img {
    transform: scale(1.08) rotate(-3deg);
}

.product-card__content {
    padding: var(--space-4) var(--space-6) var(--space-6);
    background-color: var(--color-bg-white);
    text-align: center;
}

.product-card__title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: var(--space-2);
}

.product-card__desc {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* ==========================================
   WHERE TO BUY SECTION
   ========================================== */
.buy {
    background: linear-gradient(180deg, var(--color-bg-cream) 0%, var(--color-bg-light-green) 100%);
}

.buy__grid {
    display: grid;
    gap: var(--space-4);
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .buy__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-6);
    }
}

.buy__card {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-6);
    background-color: var(--color-bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.buy__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    transition: all var(--transition-base);
}

.buy__card--amazon::before {
    background-color: var(--color-amazon);
}

.buy__card--flipkart::before {
    background-color: var(--color-flipkart);
}

.buy__card--jiomart::before {
    background-color: var(--color-jiomart);
}

.buy__card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.buy__card:hover::before {
    width: 100%;
    opacity: 0.1;
}

.buy__card-icon {
    width: 60px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.buy__platform-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.buy__card-content {
    flex: 1;
}

.buy__card-title {
    font-family: var(--font-heading);
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--color-text-dark);
}

.buy__card-text {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

.buy__card-arrow {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--color-text-muted);
    transition: all var(--transition-fast);
}

.buy__card:hover .buy__card-arrow {
    transform: translateX(5px);
    color: var(--color-primary);
}

/* Instagram Section */
.buy__instagram {
    margin-top: var(--space-12);
    text-align: center;
}

.buy__instagram-content {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-6) var(--space-10);
    background: linear-gradient(135deg, #f8e1e6 0%, #fce4ec 50%, #fff3e0 100%);
    border-radius: var(--radius-xl);
}

.buy__instagram-label {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    font-weight: 600;
}

.buy__instagram-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    background: linear-gradient(135deg, var(--color-instagram) 0%, #C13584 100%);
    color: var(--color-text-light);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: var(--font-size-base);
    transition: all var(--transition-base);
}

.buy__instagram-link svg {
    fill: var(--color-text-light);
}

.buy__instagram-link:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(228, 64, 95, 0.4);
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact {
    background-color: var(--color-bg-white);
}

.contact__grid {
    display: grid;
    gap: var(--space-10);
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .contact__grid {
        grid-template-columns: 1fr 1.2fr;
        gap: var(--space-12);
        align-items: start;
    }
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.contact__detail {
    display: flex;
    gap: var(--space-4);
    align-items: flex-start;
}

.contact__detail-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary-bg) 0%, var(--color-bg-light-yellow) 100%);
    color: var(--color-primary);
    border-radius: 50%;
    flex-shrink: 0;
}

.contact__detail h4 {
    font-size: var(--font-size-base);
    font-weight: 700;
    color: var(--color-text-muted);
    margin-bottom: var(--space-2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact__detail a,
.contact__detail p {
    font-size: var(--font-size-xl);
    color: var(--color-text-dark);
    font-weight: 700;
}

@media (min-width: 768px) {
    .contact__detail a,
    .contact__detail p {
        font-size: var(--font-size-2xl);
    }
}

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

.contact__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-instagram) 0%, #C13584 100%);
    color: var(--color-text-light);
    border-radius: 50%;
    transition: all var(--transition-base);
}

.contact__social-link:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(228, 64, 95, 0.4);
}

/* Contact Form */
.contact__form-wrapper {
    background: linear-gradient(145deg, var(--color-bg-light-green) 0%, var(--color-bg-light-yellow) 100%);
    padding: var(--space-8);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form__group {
    margin-bottom: var(--space-5);
}

.form__label {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: var(--space-2);
}

.form__input {
    width: 100%;
    padding: var(--space-4);
    font-size: var(--font-size-base);
    background-color: var(--color-bg-white);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.form__input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(91, 140, 62, 0.1);
}

.form__input::placeholder {
    color: var(--color-text-muted);
}

.form__textarea {
    resize: vertical;
    min-height: 100px;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    color: var(--color-text-light);
    padding: var(--space-6) 0;
}

.footer__bottom {
    text-align: center;
}

.footer__bottom p {
    font-size: var(--font-size-sm);
    opacity: 0.9;
}

/* ==========================================
   SCROLL ANIMATIONS
   ========================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   REDUCED MOTION
   ========================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* ==========================================
   PRINT STYLES
   ========================================== */
@media print {
    .header,
    .hero__bg-shapes,
    .buy,
    .contact__form-wrapper {
        display: none;
    }
    
    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }
}
