/* ===== CSS VARIABLES & RESET ===== */
:root {
    /* Agriculture Color Palette */
    --green-dark: #0f4c2e;
    --green-primary: #1a6b3c;
    --green-mid: #2d8a4e;
    --green-light: #4caf50;
    --green-pale: #e8f5e9;

    --gold-dark: #9a7b2d;
    --gold-primary: #c8a951;
    --gold-light: #e8d48b;

    --earth-dark: #3e2723;
    --earth-mid: #5d4037;
    --earth-light: #8d6e63;

    --white: #ffffff;
    --off-white: #f9faf8;
    --gray-100: #f1f3ef;
    --gray-200: #e0e4dc;
    --gray-300: #c5cbbe;
    --gray-600: #5a6354;
    --gray-800: #2c3328;
    --gray-900: #1a1f17;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.6s ease;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.16);
    --shadow-glow: 0 0 30px rgba(76, 175, 80, 0.3);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    color: var(--gray-800);
    background: var(--off-white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: all var(--transition-medium);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(15, 76, 46, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
}

.logo-v {
    color: var(--green-light);
    font-size: 1.9rem;
}

.logo-highlight {
    color: var(--white);
}

.logo-leaf {
    font-size: 0.9em;
    margin-left: -2px;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 8px;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    padding: 8px 18px;
    border-radius: 8px;
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--gold-primary);
    border-radius: 2px;
}

/* Hamburger */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    position: relative;
    transition: var(--transition-fast);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }

.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle.active .hamburger::after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('images/hero-bg.png') center/cover no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(15, 31, 17, 0.65) 0%,
        rgba(15, 76, 46, 0.55) 40%,
        rgba(26, 107, 60, 0.45) 70%,
        rgba(15, 31, 17, 0.7) 100%
    );
    z-index: 1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(200, 169, 81, 0.4);
    border-radius: 50%;
    animation: float-particle linear infinite;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-10vh) scale(1);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 24px;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-badge i {
    font-size: 1rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 24px;
}

.title-line-1 {
    display: block;
    font-size: clamp(3rem, 8vw, 6rem);
    color: var(--white);
    letter-spacing: -2px;
}

.title-line-2 {
    display: block;
    font-size: clamp(3rem, 8vw, 6rem);
    color: var(--white);
    letter-spacing: -2px;
}

.hero-globe {
    font-size: 0.75em;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 640px;
    margin: 0 auto 28px;
    font-weight: 400;
    line-height: 1.8;
}

.hero-services {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.service-tag {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold-light);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.service-divider {
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.2rem;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--green-primary), var(--green-mid));
    color: var(--white);
    padding: 16px 36px;
    border-radius: 60px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: all var(--transition-medium);
    box-shadow: 0 8px 32px rgba(26, 107, 60, 0.4);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(26, 107, 60, 0.6);
    background: linear-gradient(135deg, var(--green-mid), var(--green-light));
}

.hero-cta i {
    font-size: 0.9rem;
    animation: bounce-arrow 2s infinite;
}

@keyframes bounce-arrow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-line {
    width: 2px;
    height: 50px;
    background: linear-gradient(180deg, rgba(255,255,255,0.6), transparent);
    border-radius: 2px;
    animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ===== SECTION BASE ===== */
.section {
    padding: var(--section-padding);
    position: relative;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--green-primary);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-label i {
    font-size: 0.85rem;
}

.section-label-center {
    justify-content: center;
    display: flex;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.section-title-center {
    text-align: center;
}

.text-accent {
    color: var(--green-primary);
}

.section-text {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 20px;
}

.section-text-center {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== SPLIT LAYOUT ===== */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.split-layout-reverse {
    direction: rtl;
}

.split-layout-reverse > * {
    direction: ltr;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.image-frame:hover img {
    transform: scale(1.05);
}

.image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--green-primary), var(--gold-primary));
    border-radius: 20px;
    z-index: -1;
}

.image-accent-alt {
    bottom: auto;
    top: -20px;
    right: auto;
    left: -20px;
}

/* ===== CONSULTANTS SECTION ===== */
.section-consultants {
    background: var(--off-white);
}

.section-bg-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    transition: all var(--transition-fast);
}

.feature-item:hover {
    border-color: var(--green-mid);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.feature-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-pale);
    color: var(--green-primary);
    border-radius: 10px;
    font-size: 1rem;
    flex-shrink: 0;
}

.feature-item span {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-800);
}

/* ===== IRRIGATION SECTION ===== */
.section-irrigation {
    background: var(--white);
}

.dealer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--green-pale), rgba(200, 169, 81, 0.1));
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid var(--green-mid);
    margin-bottom: 20px;
}

.dealer-badge i {
    color: var(--gold-primary);
}

.dealer-badge span {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--green-dark);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.stat-card {
    text-align: center;
    padding: 24px 16px;
    background: linear-gradient(145deg, var(--green-pale), var(--white));
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    transition: all var(--transition-medium);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--green-mid);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--green-primary);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== TRADING & MARKETING SECTION ===== */
.section-trading {
    background: var(--gray-100);
    overflow: hidden;
}

.trading-bg-overlay {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at top left, rgba(26, 107, 60, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(200, 169, 81, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.center-content {
    margin-bottom: 60px;
}

.products-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--gray-900);
    text-align: center;
    margin-bottom: 16px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-medium);
    border: 1px solid var(--gray-200);
}

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

.product-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

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

.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(15, 76, 46, 0.85) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-overlay span {
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-info {
    padding: 18px 20px;
    text-align: center;
}

.product-info h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.product-info p {
    font-size: 0.85rem;
    color: var(--gray-600);
    font-weight: 500;
}

/* ===== CONTACT SECTION ===== */
.section-contact {
    background: var(--white);
    padding-bottom: 60px;
}

.contact-logo {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.contact-logo-v {
    color: var(--green-primary);
    font-size: 3rem;
}

.contact-logo-agro {
    color: var(--green-mid);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-card {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--off-white);
    border-radius: 14px;
    border: 1px solid var(--gray-200);
    margin-bottom: 16px;
    transition: all var(--transition-fast);
}

.contact-card:hover {
    border-color: var(--green-mid);
    box-shadow: var(--shadow-sm);
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--green-primary), var(--green-mid));
    color: var(--white);
    border-radius: 12px;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-detail h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.contact-detail p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.contact-detail a {
    color: var(--green-primary);
    font-weight: 500;
}

.contact-detail a:hover {
    color: var(--green-mid);
    text-decoration: underline;
}

.social-links {
    margin-top: 8px;
    padding: 20px;
}

.social-links h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: 12px;
    color: var(--gray-600);
    font-size: 1.1rem;
    transition: all var(--transition-fast);
    border: 1px solid var(--gray-200);
}

.social-icons a:hover {
    background: var(--green-primary);
    color: var(--white);
    border-color: var(--green-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--off-white);
    padding: 36px;
    border-radius: 20px;
    border: 1px solid var(--gray-200);
}

.contact-form-wrapper h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 16px;
    position: relative;
}

.form-group label {
    display: none;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--gray-800);
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    outline: none;
    transition: all var(--transition-fast);
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--green-mid);
    box-shadow: 0 0 0 4px rgba(45, 138, 78, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-300);
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--green-primary), var(--green-mid));
    color: var(--white);
    padding: 14px 36px;
    border: none;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-medium);
    box-shadow: 0 4px 16px rgba(26, 107, 60, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 107, 60, 0.4);
    background: linear-gradient(135deg, var(--green-mid), var(--green-light));
}

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

.btn-submit i {
    font-size: 0.9rem;
    transition: transform var(--transition-fast);
}

.btn-submit:hover i {
    transform: translateX(4px);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--gray-900);
    padding: 30px 0;
    text-align: center;
}

.footer-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.footer-credit {
    margin-top: 8px;
    font-size: 0.8rem !important;
    color: rgba(255, 255, 255, 0.35) !important;
}

.footer-credit i {
    color: var(--green-mid);
    font-size: 0.75rem;
}

/* ===== SCROLL ANIMATIONS ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.split-layout .animate-on-scroll:nth-child(2) {
    transition-delay: 0.2s;
}

.features-grid .feature-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.features-grid.animated .feature-item:nth-child(1) { transition-delay: 0.1s; }
.features-grid.animated .feature-item:nth-child(2) { transition-delay: 0.2s; }
.features-grid.animated .feature-item:nth-child(3) { transition-delay: 0.3s; }
.features-grid.animated .feature-item:nth-child(4) { transition-delay: 0.4s; }

.features-grid.animated .feature-item {
    opacity: 1;
    transform: translateY(0);
}

.products-grid .product-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow var(--transition-medium), border-color var(--transition-medium);
}

.products-grid.animated .product-card:nth-child(1) { transition-delay: 0.1s; }
.products-grid.animated .product-card:nth-child(2) { transition-delay: 0.2s; }
.products-grid.animated .product-card:nth-child(3) { transition-delay: 0.3s; }
.products-grid.animated .product-card:nth-child(4) { transition-delay: 0.4s; }
.products-grid.animated .product-card:nth-child(5) { transition-delay: 0.5s; }

.products-grid.animated .product-card {
    opacity: 1;
    transform: translateY(0);
}

.stats-row .stat-card {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow var(--transition-medium), border-color var(--transition-medium);
}

.stats-row.animated .stat-card:nth-child(1) { transition-delay: 0.1s; }
.stats-row.animated .stat-card:nth-child(2) { transition-delay: 0.25s; }
.stats-row.animated .stat-card:nth-child(3) { transition-delay: 0.4s; }

.stats-row.animated .stat-card {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .split-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .split-layout-reverse {
        direction: ltr;
    }

    .image-frame img {
        height: 350px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 70px 0;
    }

    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(15, 76, 46, 0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 100px 30px 30px;
        gap: 4px;
        transition: right var(--transition-medium);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 14px 18px;
        border-radius: 10px;
    }

    .hero-services {
        gap: 8px;
    }

    .service-tag {
        font-size: 0.85rem;
    }

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

    .stats-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

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

    .contact-form-wrapper {
        padding: 24px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .product-image {
        height: 160px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-image {
        height: 200px;
    }

    .contact-logo {
        font-size: 2rem;
    }

    .contact-logo-v {
        font-size: 2.4rem;
    }
}
