﻿:root {
    --primary-color: #2d5016;
    --primary-dark: #1a3009;
    --primary-light: #4a7a26;
    --accent-color: #f4c430;
    --accent-dark: #d4a520;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #fafaf8;
    --bg-white: #ffffff;
    --border-color: #e5e5e0;
    --font-display: 'Playfair Display', serif;
    --font-body: 'Work Sans', sans-serif;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.16);
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--bg-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    animation: slideDown 0.6s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.navbar {
    padding: 1.25rem 0;
}

    .navbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition-base);
}

    .logo:hover {
        transform: scale(1.02);
    }

.logo-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    color: white;
    transition: var(--transition-base);
}

.logo:hover .logo-icon {
    transform: rotate(5deg);
    box-shadow: var(--shadow-md);
}

.logo-icon svg {
    width: 28px;
    height: 28px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-primary {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.logo-secondary {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

    .nav-menu a {
        font-weight: 500;
        font-size: 0.95rem;
        color: var(--text-dark);
        text-decoration: none;
        transition: var(--transition-fast);
        position: relative;
        padding: 0.5rem 0;
    }

        .nav-menu a:not(.btn-nav-cta)::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-color);
            transition: width var(--transition-base);
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .nav-menu a:hover {
            color: var(--primary-color);
        }

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

    .mobile-menu-toggle span {
        display: block;
        width: 100%;
        height: 3px;
        background: var(--primary-color);
        border-radius: 3px;
        transition: all var(--transition-base);
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

/* Dropdown Arrow */
.dropdown-arrow {
    width: 14px;
    height: 14px;
    margin-left: 0.35rem;
    transition: var(--transition-fast);
    display: inline-block;
    vertical-align: middle;
}

.dropdown.active .dropdown-arrow,
.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.btn-nav-cta {
    background: var(--primary-color);
    color: white !important;
    padding: 0.65rem 1.5rem !important;
    border-radius: 8px;
    transition: var(--transition-base);
}

    .btn-nav-cta::after {
        display: none;
    }

    .btn-nav-cta:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

.dropdown {
    position: relative;
}

    .dropdown > a {
        cursor: pointer;
    }

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    padding: 0.75rem 0;
    min-width: 240px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-base);
    margin-top: 0.5rem;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown > a::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.5rem;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid currentColor;
    transition: var(--transition-fast);
}

.dropdown:hover > a::after {
    transform: rotate(180deg);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    transition: var(--transition-fast);
}

    .dropdown-menu a::after {
        display: none;
    }

    .dropdown-menu a:hover {
        background: var(--bg-light);
        color: var(--primary-color);
    }

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.03) 0%, rgba(244, 196, 48, 0.05) 100%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 30%, rgba(45, 80, 22, 0.04) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(244, 196, 48, 0.06) 0%, transparent 50%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 0.8s ease 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease both;
}

    .hero-badge svg {
        width: 16px;
        height: 16px;
    }

.hero-title {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-title-line {
    display: block;
    animation: fadeInUp 0.8s ease both;
}

    .hero-title-line:nth-child(1) {
        animation-delay: 0.1s;
    }

    .hero-title-line:nth-child(2) {
        animation-delay: 0.2s;
    }

    .hero-title-line:nth-child(3) {
        animation-delay: 0.3s;
    }

.hero-title-accent {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 600px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease 0.5s both;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.stat {
    text-align: left;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.hero-visual {
    position: relative;
    animation: fadeIn 1s ease 0.4s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.hero-image-wrapper {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: 24px;
    overflow: hidden;
}

.hero-image-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    position: relative;
}

    .hero-image-bg::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,255,255,0.03) 10px, rgba(255,255,255,0.03) 20px);
        animation: slidePattern 20s linear infinite;
    }

@keyframes slidePattern {
    0% {
        transform: translateX(0) translateY(0);
    }

    100% {
        transform: translateX(28.28px) translateY(28.28px);
    }
}

.hero-image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    border: 3px solid var(--accent-color);
    border-radius: 24px;
    z-index: -1;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

.scroll-indicator svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
}

    .btn svg {
        width: 18px;
        height: 18px;
        transition: var(--transition-fast);
    }

.btn-primary {
    background: var(--primary-color);
    color: white;
}

    .btn-primary:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

        .btn-primary:hover svg {
            transform: translateX(4px);
        }

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--border-color);
}

    .btn-secondary:hover {
        background: var(--bg-light);
        border-color: var(--primary-color);
        transform: translateY(-2px);
        box-shadow: var(--shadow-sm);
    }

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

    .btn-outline:hover {
        background: var(--primary-color);
        color: white;
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

        .btn-outline:hover svg {
            transform: translateX(4px);
        }

.btn-large {
    padding: 1.15rem 2.5rem;
    font-size: 1.05rem;
}

/* ============================================
   SECTIONS
   ============================================ */

.main-content {
    flex: 1;
    margin-bottom: 0 !important;
}

    .main-content > section:last-child {
        margin-bottom: 0 !important;
        border-bottom: none !important;
    }
section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-color);
    background: rgba(45, 80, 22, 0.08);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   ABOUT PREVIEW
   ============================================ */

.about-preview {
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-intro {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.08), rgba(45, 80, 22, 0.12));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition-base);
}

.feature-item:hover .feature-icon {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
}

.feature-text h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.feature-text p {
    color: var(--text-light);
    line-height: 1.6;
}

.about-card {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    padding: 3rem;
    border-radius: 20px;
    color: white;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

    .about-card::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
        animation: rotate 20s linear infinite;
    }

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.quote-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

    .quote-icon svg {
        width: 28px;
        height: 28px;
    }

.quote-text {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    position: relative;
}

.quote-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

    .quote-author strong {
        font-family: var(--font-display);
        font-size: 1.1rem;
    }

    .quote-author span {
        font-size: 0.9rem;
        opacity: 0.9;
    }

/* ============================================
   PRODUCTS SHOWCASE
   ============================================ */

.products-showcase {
    background: var(--bg-light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition-base);
    border: 1px solid var(--border-color);
}

    .product-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
        border-color: var(--primary-color);
    }

.product-card-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(45, 80, 22, 0.03) 0%, transparent 70%);
    transition: var(--transition-slow);
}

.product-card:hover .product-card-bg {
    transform: scale(1.5);
    background: radial-gradient(circle, rgba(45, 80, 22, 0.06) 0%, transparent 70%);
}

.product-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.08), rgba(45, 80, 22, 0.12));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: var(--transition-base);
}

.product-card:hover .product-icon {
    transform: scale(1.05);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    box-shadow: var(--shadow-md);
}

.product-icon svg {
    width: 40px;
    height: 40px;
}

.product-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.product-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
}

    .product-link:hover {
        gap: 0.75rem;
    }

    .product-link svg {
        width: 18px;
        height: 18px;
        transition: var(--transition-fast);
    }

.product-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 0;
}

    .product-features li {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: var(--text-light);
        font-size: 0.9rem;
    }

        .product-features li::before {
            content: '✓';
            width: 18px;
            height: 18px;
            background: rgba(45, 80, 22, 0.1);
            color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 0.75rem;
            flex-shrink: 0;
        }

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta-pattern {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255,255,255,0.03) 20px, rgba(255,255,255,0.03) 40px);
    animation: slidePattern 30s linear infinite;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

    .cta-content h2 {
        font-family: var(--font-display);
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        letter-spacing: -0.02em;
    }

    .cta-content p {
        font-size: 1.25rem;
        margin-bottom: 2.5rem;
        opacity: 0.95;
    }

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: white;
    color: var(--primary-color);
}

    .cta-section .btn-primary:hover {
        background: var(--bg-light);
        box-shadow: var(--shadow-xl);
    }

.cta-section .btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

    .cta-section .btn-secondary:hover {
        background: rgba(255, 255, 255, 0.25);
        border-color: white;
    }

/* ============================================
   FOOTER
   ============================================ */

.main-footer {
    position: relative;
    background: #1a1a1a;
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 2rem;
    border: none !important;
    outline: none !important;
    font-family: var(--font-body);
    box-shadow: none !important;
}
    .main-footer::before,
    .main-footer::after {
        display: none !important;
    }
    .main-footer .container {
        border: none !important;
        outline: none !important;
        border-top: none !important;
    }
        .main-footer .container::before,
        .main-footer .container::after {
            display: none !important;
        }
.footer-wave {
    display: none !important;
    height: 0 !important;
    border: none !important;
    outline: none !important;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
    border: none !important;
    outline: none !important;
    border-top: none !important;
    box-shadow: none !important;
}
    .footer-grid::before,
    .footer-grid::after {
        display: none !important;
    }
.footer-col {
    font-family: var(--font-body);
    border: none !important;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: var(--font-body);
}

    .footer-logo .logo-icon {
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    }

    .footer-logo svg {
        width: 24px;
        height: 24px;
    }

    .footer-logo span {
        font-family: var(--font-body);
        font-weight: 700;
        letter-spacing: 0.05em;
    }

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
    font-family: var(--font-body);
}

.footer-desc {
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(244, 196, 48, 0.15);
    color: var(--accent-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--font-body);
}

    .footer-badge svg {
        width: 16px;
        height: 16px;
    }

    .footer-badge span {
        font-family: var(--font-body);
        font-weight: 500;
    }

.footer-col h4 {
    color: white;
    font-family: var(--font-body);
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

    .footer-col ul li a {
        font-family: var(--font-body);
    }

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-fast);
    display: inline-block;
    font-family: var(--font-body);
}

    .footer-col a:hover {
        color: white;
        transform: translateX(4px);
    }

.footer-contact li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

    .footer-contact li span {
        font-family: var(--font-body);
    }

.footer-contact svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 0.25rem;
    color: var(--accent-color);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

    .footer-social a {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255, 255, 255, 0.7);
        transition: var(--transition-base);
    }

        .footer-social a:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-4px);
        }

    .footer-social svg {
        width: 20px;
        height: 20px;
    }

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-body);
}

    .footer-bottom p {
        font-family: var(--font-body);
    }

.footer-credit {
    font-family: var(--font-body);
}

    .footer-credit a {
        color: var(--accent-color);
        text-decoration: none;
        transition: var(--transition-fast);
        font-family: var(--font-body);
    }

        .footer-credit a:hover {
            color: white;
        }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    /* Mobile Navigation */
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 100px 2rem 2rem;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
        transition: right var(--transition-base);
        z-index: 1000;
        overflow-y: auto;
    }

        .nav-menu.active {
            right: 0;
        }

        .nav-menu li {
            width: 100%;
            margin-bottom: 0;
        }

        .nav-menu a {
            padding: 1rem 0;
            display: block;
            border-bottom: 1px solid var(--border-color);
        }

    .dropdown {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        margin-top: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--transition-base);
        background: var(--bg-light);
    }

    .dropdown.active .dropdown-menu {
        max-height: 500px;
        padding: 0.5rem 0;
    }

    .dropdown-menu li {
        padding-left: 1rem;
    }

    .dropdown-menu a {
        padding: 0.75rem 0;
        font-size: 0.9rem;
    }

    .btn-nav-cta {
        background: var(--primary-color);
        color: white !important;
        border-radius: 8px;
        text-align: center;
        border-bottom: none;
    }

    body.menu-open {
        overflow: hidden;
    }

        body.menu-open::before {
            content: '';
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
            animation: fadeIn 0.3s ease;
        }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .nav-menu {
        display: none;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .carousel-prev {
        left: 1rem;
    }

    .carousel-next {
        right: 1rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   PAGE HERO
   ============================================ */

.page-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.03), rgba(244, 196, 48, 0.05));
    text-align: center;
    margin-bottom: 4rem;
}

.page-hero-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.page-hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-story {
    background: white;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.content-main h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.content-main p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.owner-quote {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 2.5rem;
    border-radius: 16px;
    margin: 3rem 0;
    position: relative;
}

    .owner-quote::before {
        content: '"';
        font-family: var(--font-display);
        font-size: 6rem;
        position: absolute;
        top: -1rem;
        left: 1.5rem;
        opacity: 0.2;
    }

    .owner-quote p {
        font-size: 1.25rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
        color: white;
    }

    .owner-quote footer {
        font-size: 1rem;
        opacity: 0.9;
    }

.highlight-box {
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
}

    .highlight-box h3 {
        font-family: var(--font-display);
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        color: var(--text-dark);
    }

    .highlight-box ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .highlight-box li {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        color: var(--text-dark);
    }

        .highlight-box li::before {
            content: '✓';
            width: 24px;
            height: 24px;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            flex-shrink: 0;
        }

.values-section {
    background: var(--bg-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: var(--transition-base);
}

    .value-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
        border-color: var(--primary-color);
    }

    .value-card h3 {
        font-family: var(--font-display);
        font-size: 1.5rem;
        color: var(--primary-color);
        margin-bottom: 1rem;
    }

    .value-card p {
        color: var(--text-light);
        line-height: 1.6;
    }

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-section {
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contact-info h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-info > p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
}

.contact-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.08), rgba(45, 80, 22, 0.12));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

    .contact-icon svg {
        width: 28px;
        height: 28px;
    }

.contact-item h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

    .contact-item a:hover {
        color: var(--primary-dark);
    }

.contact-form-wrapper {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

    .contact-form-wrapper h2 {
        font-family: var(--font-display);
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 2rem;
        color: var(--text-dark);
    }

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

    .form-group label {
        font-weight: 600;
        color: var(--text-dark);
        font-size: 0.95rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.85rem 1.25rem;
        border: 2px solid var(--border-color);
        border-radius: 8px;
        font-family: var(--font-body);
        font-size: 1rem;
        transition: var(--transition-fast);
        background: white;
    }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.1);
        }

    .form-group textarea {
        resize: vertical;
        min-height: 120px;
    }

/* ============================================
   PROJECTS PAGE
   ============================================ */

.projects-section {
    background: white;
}

.projects-intro {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-light);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.stats-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 6rem;
}

.stat-box {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
}

    .stat-box:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-xl);
    }

    .stat-box .stat-number {
        font-family: var(--font-display);
        font-size: 3.5rem;
        font-weight: 700;
        line-height: 1;
        margin-bottom: 1rem;
    }

    .stat-box .stat-label {
        font-size: 1rem;
        opacity: 0.95;
        font-weight: 500;
    }

.testimonials-section {
    margin-top: 4rem;
}

    .testimonials-section h2 {
        font-family: var(--font-display);
        font-size: 2.5rem;
        text-align: center;
        margin-bottom: 3rem;
        color: var(--text-dark);
    }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: var(--transition-base);
}

    .testimonial-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
        border-color: var(--primary-color);
    }

.testimonial-stars {
    color: var(--accent-color);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.25rem;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

    .testimonial-author strong {
        font-family: var(--font-display);
        color: var(--text-dark);
        font-size: 1.05rem;
    }

    .testimonial-author span {
        color: var(--text-light);
        font-size: 0.9rem;
    }

/* ============================================
   PRODUCT DETAIL PAGES
   ============================================ */

.product-detail-section {
    background: white;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.product-detail-content h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.product-intro {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.product-features-detailed h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-detail {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-detail-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.08), rgba(45, 80, 22, 0.12));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

    .feature-detail-icon svg {
        width: 28px;
        height: 28px;
    }

.feature-detail h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.feature-detail p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.product-specs {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 16px;
    margin-bottom: 3rem;
}

    .product-specs h3 {
        font-family: var(--font-display);
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
        color: var(--text-dark);
    }

.specs-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0;
}

    .specs-list li {
        padding-left: 1.5rem;
        position: relative;
        color: var(--text-dark);
        line-height: 1.6;
    }

        .specs-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary-color);
            font-weight: bold;
        }

    .specs-list strong {
        color: var(--primary-color);
    }

/* ============================================
   IMAGE CAROUSEL
   ============================================ */

.image-carousel {
    position: relative;
}

.carousel-container {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-light);
    box-shadow: var(--shadow-lg);
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

    .carousel-slide.active {
        opacity: 1;
    }

    .carousel-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
    z-index: 10;
    box-shadow: var(--shadow-md);
}

    .carousel-btn:hover {
        background: white;
        transform: translateY(-50%) scale(1.1);
        box-shadow: var(--shadow-lg);
    }

    .carousel-btn svg {
        width: 24px;
        height: 24px;
        color: var(--primary-color);
    }

.carousel-prev {
    left: 1.5rem;
}

.carousel-next {
    right: 1.5rem;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
    padding: 0;
}

    .indicator:hover {
        border-color: var(--primary-color);
        transform: scale(1.2);
    }

    .indicator.active {
        background: var(--primary-color);
        border-color: var(--primary-color);
    }

.project-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.08), rgba(45, 80, 22, 0.12));
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 1.5rem;
}

    .project-badge svg {
        width: 20px;
        height: 20px;
    }

/* ============================================
   BENEFITS SECTION
   ============================================ */

.benefits-section {
    background: var(--bg-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: var(--transition-base);
}

    .benefit-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
        border-color: var(--primary-color);
    }

    .benefit-card h3 {
        font-family: var(--font-display);
        font-size: 1.5rem;
        color: var(--primary-color);
        margin-bottom: 1rem;
    }

    .benefit-card p {
        color: var(--text-light);
        line-height: 1.6;
        margin: 0;
    }

/* ============================================
   BLAZOR ERROR UI
   ============================================ */

#blazor-error-ui {
    background: #ffebe9;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* ============================================
   FOOTER - NUCLEAR OPTION
   ============================================ */

.main-footer,
.main-footer *,
.main-footer *::before,
.main-footer *::after {
    border-top: none !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.main-footer {
    position: relative;
    background: #1a1a1a;
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 2rem;
    font-family: var(--font-body);
    margin-top: 0 !important;
}

    .main-footer .container {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }

.footer-wave {
    display: none !important;
}