/* ============================================
   GHADAINAA - Premium Stylesheet
   Food Industry Theme - Natural Colors
============================================ */

/* ============================================
   CSS VARIABLES - Food Industry Colors
============================================ */
:root {
    /* Primary Colors - Food Industry Theme */
    --green-dark: #2d5016;
    --green-primary: #4a7c2a;
    --green-light: #6ba844;
    --orange-primary: #f57c00;
    --orange-light: #ff9800;
    --brown-dark: #5d4037;
    --white: #ffffff;
    
    /* Secondary Colors */
    --green-medium: #3d6a1f;
    --green-pale: #e8f5e3;
    --orange-pale: #fff3e0;
    --brown-light: #8d6e63;
    --gray-light: #f5f7fa;
    --gray: #e0e6ed;
    --gray-dark: #6b7c93;
    
    /* Text Colors */
    --text-dark: #2d5016;
    --text-primary: #1a3a0f;
    --text-secondary: #5a6b4f;
    --text-light: #8a9a7f;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--green-dark), var(--green-medium));
    --gradient-green: linear-gradient(135deg, var(--green-dark), var(--green-light));
    --gradient-hero: linear-gradient(135deg, rgba(45, 80, 22, 0.95), rgba(61, 106, 31, 0.9));
    --gradient-orange: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
    
    /* Fonts */
    --font-arabic: 'Cairo', sans-serif;
    --font-english: 'IBM Plex Sans Arabic', sans-serif;
    --font-display: 'Noto Sans Arabic', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    --spacing-4xl: 5rem;
    --spacing-5xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(45, 80, 22, 0.08);
    --shadow-md: 0 10px 30px rgba(45, 80, 22, 0.12);
    --shadow-lg: 0 20px 50px rgba(45, 80, 22, 0.15);
    --shadow-xl: 0 30px 70px rgba(45, 80, 22, 0.2);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

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

body {
    font-family: var(--font-arabic), 'Noto Sans Arabic', 'IBM Plex Sans Arabic', sans-serif;
    background-color: var(--white);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

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

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

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

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

/* ============================================
   PRELOADER - Premium Luxury Design
============================================ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a1929 0%, #1a3a0f 50%, #0a1929 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 1s ease, visibility 1s ease;
    overflow: hidden;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    animation: slide-out-fwd-center 0.8s ease both;
}

/* Animated Background Orbs */
.preloader-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: orb-float 8s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--green-light), var(--green-primary));
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--orange-light), var(--orange-primary));
    bottom: -100px;
    right: -100px;
    animation-delay: 2s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--green-primary), var(--green-dark));
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
}

@keyframes orb-float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-50px, 50px) scale(0.9);
    }
}

.preloader-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    text-align: center;
}

/* Factory Animation */
.factory-loader {
    position: relative;
    width: 400px;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Factory Building */
.factory-building {
    position: relative;
    width: 200px;
    height: 150px;
    margin-bottom: 2rem;
}

.factory-roof {
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 40px solid var(--green-dark);
    margin: 0 auto;
    animation: shadow-pop-tl 2s ease-in-out infinite;
}

.factory-body {
    width: 180px;
    height: 110px;
    background: var(--green-medium);
    margin: 0 auto;
    border-radius: 0 0 8px 8px;
    position: relative;
    box-shadow: 0 10px 30px rgba(45, 80, 22, 0.3);
}

.factory-window {
    width: 30px;
    height: 30px;
    background: var(--orange-light);
    border-radius: 4px;
    position: absolute;
    top: 20px;
    animation: blink 2s ease-in-out infinite;
}

.factory-window:nth-child(1) {
    left: 20px;
    animation-delay: 0s;
}

.factory-window:nth-child(2) {
    left: 75px;
    animation-delay: 0.5s;
}

.factory-window:nth-child(3) {
    left: 130px;
    animation-delay: 1s;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Conveyor Belt */
.conveyor-belt {
    position: relative;
    width: 350px;
    height: 60px;
    background: linear-gradient(to right, #8d6e63 0%, #6d4c41 50%, #8d6e63 100%);
    border-radius: 30px;
    margin-top: 1rem;
    box-shadow: inset 0 4px 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.belt-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: repeating-linear-gradient(
        to right,
        #fff 0px,
        #fff 20px,
        transparent 20px,
        transparent 40px
    );
    transform: translateY(-50%);
    animation: belt-move 2s linear infinite;
}

@keyframes belt-move {
    0% { transform: translateY(-50%) translateX(0); }
    100% { transform: translateY(-50%) translateX(40px); }
}

/* Product Box */
.product-box {
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    animation: box-move 3s linear infinite;
}

.product-box .box-top {
    width: 100%;
    height: 8px;
    background: var(--green-dark);
    border-radius: 2px 2px 0 0;
}

.product-box .box-body {
    width: 100%;
    height: 32px;
    background: var(--green-light);
    border-radius: 0 0 2px 2px;
    position: relative;
}

.product-box .box-body::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid var(--white);
    border-radius: 2px;
}

@keyframes box-move {
    0% { left: -50px; opacity: 0; }
    10% { opacity: 1; }
    70% { left: 300px; opacity: 1; }
    100% { left: 400px; opacity: 0; }
}

/* Packaging Machine */
.packaging-machine {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 80px;
}

.machine-arm {
    width: 60px;
    height: 8px;
    background: var(--brown-dark);
    border-radius: 4px;
    position: absolute;
    top: 20px;
    left: 10px;
    animation: arm-pack 3s ease-in-out infinite;
    transform-origin: left center;
}

@keyframes arm-pack {
    0%, 100% { transform: rotate(0deg) translateX(0); }
    25% { transform: rotate(-15deg) translateX(10px); }
    50% { transform: rotate(0deg) translateX(20px); }
    75% { transform: rotate(15deg) translateX(10px); }
}

.wrapping-film {
    position: absolute;
    top: 30px;
    left: 20px;
    width: 40px;
    height: 40px;
    border: 3px dashed var(--orange-light);
    border-radius: 4px;
    opacity: 0;
    animation: wrap-product 3s ease-in-out infinite;
}

@keyframes wrap-product {
    0%, 60% { opacity: 0; transform: scale(0.8); }
    65%, 85% { opacity: 1; transform: scale(1); }
    90%, 100% { opacity: 0; transform: scale(1.1); }
}

/* Loading Text Animation */
.loader-text-container {
    margin-top: 2rem;
}

.loader-card {
    --bg-color: #f5f7fa;
    background-color: var(--bg-color);
    padding: 1rem 2rem;
    border-radius: 1.25rem;
    box-shadow: 0 4px 15px rgba(45, 80, 22, 0.1);
}

.loader-words {
    overflow: hidden;
    position: relative;
    height: 40px;
    display: flex;
    align-items: center;
}

.loader-words::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        var(--bg-color) 10%,
        transparent 30%,
        transparent 70%,
        var(--bg-color) 90%
    );
    z-index: 20;
}

.loader-word {
    display: block;
    height: 100%;
    padding-left: 6px;
    color: var(--green-dark);
    font-family: var(--font-arabic);
    font-weight: 600;
    font-size: 1.1rem;
    animation: spin-words 4s infinite;
    position: absolute;
    width: 100%;
    text-align: center;
}

@keyframes spin-words {
    10% {
        transform: translateY(-102%);
    }
    25% {
        transform: translateY(-100%);
    }
    35% {
        transform: translateY(-202%);
    }
    50% {
        transform: translateY(-200%);
    }
    60% {
        transform: translateY(-302%);
    }
    75% {
        transform: translateY(-300%);
    }
    85% {
        transform: translateY(-402%);
    }
    100% {
        transform: translateY(-400%);
    }
}

/* ============================================
   ANIMATIONS - Additional Effects
============================================ */

/* Shadow Pop Animation */
@keyframes shadow-pop-tl {
  0% {
    box-shadow: 0 0 #3e3e3e, 0 0 #3e3e3e, 0 0 #3e3e3e, 0 0 #3e3e3e, 0 0 #3e3e3e, 0 0 #3e3e3e, 0 0 #3e3e3e, 0 0 #3e3e3e;
    transform: translateX(0) translateY(0);
  }
  100% {
    box-shadow: -1px -1px #3e3e3e, -2px -2px #3e3e3e, -3px -3px #3e3e3e, -4px -4px #3e3e3e, -5px -5px #3e3e3e, -6px -6px #3e3e3e, -7px -7px #3e3e3e, -8px -8px #3e3e3e;
    transform: translateX(8px) translateY(8px);
  }
}

/* Slide Out Forward Center */
@keyframes slide-out-fwd-center {
  0% {
    transform: translateZ(1);
    opacity: 1;
  }
  100% {
    transform: translateZ(600px);
    opacity: 0;
  }
}

/* ============================================
   ANIMATIONS
============================================ */
@keyframes bounce-in-top {
  0% {
    transform: translateY(-500px);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    transform: translateY(0);
    animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    transform: translateY(-65px);
    animation-timing-function: ease-in;
  }
  72% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
  81% {
    transform: translateY(-28px);
    animation-timing-function: ease-in;
  }
  90% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
  95% {
    transform: translateY(-8px);
    animation-timing-function: ease-in;
  }
  100% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
}

.bounce-in-top {
	animation: bounce-in-top 1.1s both;
}

/* Animation removed - replaced with professional Arabic typography */

/* ============================================
   FLOATING ACTION BUTTON
============================================ */
.fab-phone {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: var(--green-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: var(--transition-normal);
}

.fab-phone:hover {
    transform: scale(1.1);
    background: var(--green-medium);
}

.fab-phone svg {
    width: 28px;
    height: 28px;
}

.fab-tooltip {
    position: absolute;
    right: 70px;
    background: var(--green-dark);
    color: var(--white);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-normal);
}

.fab-phone:hover .fab-tooltip {
    opacity: 1;
}

/* ============================================
   NAVBAR - Premium Modern Design
============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 1px 20px rgba(45, 80, 22, 0.08);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(45, 80, 22, 0.08);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 30px rgba(45, 80, 22, 0.12);
    border-bottom-color: rgba(45, 80, 22, 0.12);
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--spacing-md) var(--spacing-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-xl);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    transition: var(--transition-normal);
    position: relative;
    z-index: 10;
}

.nav-brand:hover {
    transform: scale(1.02);
}

.nav-logo {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-green);
    border-radius: var(--radius-md);
    padding: var(--spacing-sm);
    box-shadow: 0 4px 15px rgba(45, 80, 22, 0.2);
    transition: var(--transition-normal);
}

.nav-brand:hover .nav-logo {
    transform: rotate(5deg) scale(1.05);
    box-shadow: 0 6px 20px rgba(45, 80, 22, 0.3);
}

.logo-icon {
    width: 100%;
    height: 100%;
    color: var(--white);
}

.nav-brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-ar {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--green-dark);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.brand-sub {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    flex: 1;
    justify-content: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-weight: 600;
    color: var(--text-primary);
    position: relative;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 0.95rem;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 0;
    height: 2px;
    background: var(--gradient-green);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--green-pale);
    border-radius: var(--radius-md);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-link:hover::before {
    width: 80%;
}

.nav-link:hover::after {
    opacity: 1;
}

.nav-link:hover {
    color: var(--green-dark);
    transform: translateY(-2px);
}

.nav-link.active {
    color: var(--green-dark);
    font-weight: 700;
}

.nav-link.active::before {
    width: 80%;
    background: var(--green-dark);
}

.nav-link.active::after {
    opacity: 1;
    background: var(--green-pale);
}

.nav-link span {
    position: relative;
    z-index: 1;
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.nav-phone-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-pale);
    border-radius: var(--radius-md);
    color: var(--green-dark);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nav-phone-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-green);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-phone-link svg {
    width: 20px;
    height: 20px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.nav-phone-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 80, 22, 0.2);
}

.nav-phone-link:hover::before {
    opacity: 1;
}

.nav-phone-link:hover svg {
    color: var(--white);
    transform: rotate(15deg);
}

.nav-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    background: var(--gradient-green);
    color: var(--white);
    border-radius: var(--radius-md);
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(45, 80, 22, 0.25);
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.nav-cta:hover::before {
    width: 300px;
    height: 300px;
}

.nav-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(45, 80, 22, 0.35);
}

.nav-cta:active {
    transform: translateY(-1px);
}

.nav-cta svg {
    width: 20px;
    height: 20px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.nav-cta:hover svg {
    transform: rotate(15deg) scale(1.1);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 32px;
    height: 32px;
    padding: 0;
    background: transparent;
    position: relative;
    z-index: 1001;
}

.nav-toggle span {
    width: 100%;
    height: 3px;
    background: var(--green-dark);
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    background: var(--green-dark);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background: var(--green-dark);
}

/* ============================================
   HERO SECTION
============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 
        inset 0 0 300px rgba(45, 80, 22, 0.95),
        inset 0 -200px 200px rgba(45, 80, 22, 0.7),
        0 30px 80px rgba(0, 0, 0, 0.4),
        0 0 150px rgba(45, 80, 22, 0.3);
    filter: brightness(0.75) contrast(1.15) saturate(1.1);
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(45, 80, 22, 0.4) 0%,
        rgba(45, 80, 22, 0.6) 50%,
        rgba(45, 80, 22, 0.85) 100%
    );
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.4;
    z-index: 2;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(107, 168, 68, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(245, 124, 0, 0.1) 0%, transparent 50%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: var(--spacing-5xl) var(--spacing-xl);
}

.hero-text {
    text-align: center;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto var(--spacing-4xl);
}

.hero-badge {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: translateY(-25px);
    position: relative;
}

.hero-title {
    font-size: clamp(1.5rem, 4vw, 2.75rem);
    font-weight: 800;
    margin-bottom: var(--spacing-xl);
    line-height: 1.3;
    font-family: var(--font-arabic), 'Noto Sans Arabic', sans-serif;
    letter-spacing: -0.01em;
    transition: var(--transition-normal);
    text-shadow: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.title-line {
    display: block;
}

.hero-description {
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: var(--spacing-2xl);
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
}

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

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
    width: 32px;
    height: 32px;
    margin: 0 auto var(--spacing-md);
    color: var(--green-light);
}

.stat-icon svg {
    width: 100%;
    height: 100%;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: var(--font-english);
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
    opacity: 0.8;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 15px;
    margin: 0 auto var(--spacing-sm);
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.5; transform: translateX(-50%) translateY(10px); }
}

/* ============================================
   BUTTONS
============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition-normal);
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--green-dark);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--green-medium);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--green-dark);
}

.btn-large {
    padding: var(--spacing-lg) var(--spacing-2xl);
    font-size: 1.1rem;
}

.btn svg {
    width: 20px;
    height: 20px;
}

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

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

.section-badge {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    background: var(--green-pale);
    color: var(--green-dark);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    transform: translateY(-25px);
    position: relative;
}

.section-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--green-dark);
    font-family: var(--font-arabic), 'Noto Sans Arabic', sans-serif;
    letter-spacing: -0.01em;
    line-height: 1.3;
    transition: var(--transition-normal);
    text-shadow: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.section-underline {
    width: 80px;
    height: 4px;
    background: var(--orange-primary);
    margin: 0 auto var(--spacing-lg);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   ABOUT SECTION - Creative Premium Design
============================================ */
.about {
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-light) 20%, var(--white) 100%);
    padding: var(--spacing-5xl) 0;
    position: relative;
    overflow: hidden;
}

.about-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.about-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(107, 168, 68, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(245, 124, 0, 0.06) 0%, transparent 40%),
        linear-gradient(135deg, transparent 0%, rgba(45, 80, 22, 0.02) 50%, transparent 100%);
}

.about-main-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--spacing-4xl);
    margin-bottom: var(--spacing-4xl);
    position: relative;
    z-index: 1;
}

/* Main Hero Image */
.about-hero-image {
    position: relative;
    height: 100%;
    min-height: 600px;
}

.about-main-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(45, 80, 22, 0.2);
    transition: var(--transition-normal);
}

.about-main-image:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 70px rgba(45, 80, 22, 0.3);
}

.image-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(45, 80, 22, 0.3) 0%,
        rgba(45, 80, 22, 0.1) 50%,
        transparent 100%
    );
    border-radius: var(--radius-xl);
}

/* Experience Card */
.experience-card {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 50px rgba(45, 80, 22, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
    min-width: 180px;
    border: 2px solid rgba(107, 168, 68, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.experience-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 60px rgba(45, 80, 22, 0.35);
    border-color: var(--green-light);
}

.experience-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-green);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 6px 20px rgba(45, 80, 22, 0.3);
    animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 6px 20px rgba(45, 80, 22, 0.3);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 8px 25px rgba(45, 80, 22, 0.4);
    }
}

.experience-icon svg {
    width: 30px;
    height: 30px;
}

.experience-content {
    text-align: center;
}

.experience-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--green-dark);
    font-family: var(--font-english);
    line-height: 1;
    margin-bottom: var(--spacing-xs);
}

.experience-label {
    display: block;
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.experience-decoration {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 40px;
    height: 40px;
    background: var(--orange-light);
    border-radius: 50%;
    opacity: 0.3;
    animation: float-decoration 3s ease-in-out infinite;
}

@keyframes float-decoration {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(10px, -10px) rotate(180deg);
    }
}

/* Content Wrapper */
.about-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-3xl);
}

.about-text-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.about-intro-card {
    background: var(--white);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(45, 80, 22, 0.1);
    border: 2px solid var(--green-pale);
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
}

.about-intro-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-green);
    opacity: 0.8;
}

.about-intro-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(45, 80, 22, 0.15);
    border-color: var(--green-light);
}

.intro-icon {
    width: 40px;
    height: 40px;
    background: var(--green-pale);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-dark);
    margin-bottom: var(--spacing-lg);
    transition: var(--transition-normal);
}

.about-intro-card:hover .intro-icon {
    background: var(--gradient-green);
    color: var(--white);
    transform: rotate(5deg) scale(1.1);
}

.intro-icon svg {
    width: 20px;
    height: 20px;
}

.intro-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--green-dark);
    margin-bottom: var(--spacing-md);
}

.about-intro {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-primary);
}

.about-intro strong {
    color: var(--green-dark);
    font-weight: 800;
}

.about-description {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-secondary);
    background: var(--white);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 30px rgba(45, 80, 22, 0.08);
    border-right: 4px solid var(--green-light);
}

/* Features Grid */
.about-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

.about-feature-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 30px rgba(45, 80, 22, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.about-feature-card:hover::before {
    transform: scaleX(1);
}

.about-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(45, 80, 22, 0.2);
    border-color: var(--green-light);
    background: linear-gradient(135deg, var(--white) 0%, var(--green-pale) 100%);
}

.feature-card-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--spacing-lg);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-green);
    border-radius: var(--radius-lg);
    opacity: 0.1;
    transition: var(--transition-normal);
}

.about-feature-card:hover .icon-bg {
    opacity: 0.2;
    transform: scale(1.1);
}

.feature-card-icon svg {
    width: 24px;
    height: 24px;
    color: var(--green-dark);
    position: relative;
    z-index: 1;
    transition: var(--transition-normal);
}

.about-feature-card:hover .feature-card-icon svg {
    color: var(--green-dark);
    transform: scale(1.15) rotate(5deg);
}

.about-feature-card h4 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--green-dark);
    margin-bottom: var(--spacing-sm);
}

.about-feature-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.feature-card-decoration {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, var(--green-light) 0%, transparent 70%);
    opacity: 0.1;
    border-radius: 50%;
    transition: var(--transition-normal);
}

.about-feature-card:hover .feature-card-decoration {
    opacity: 0.2;
    transform: scale(1.5);
}

/* Secondary Images */
.about-secondary-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.secondary-image {
    aspect-ratio: 4/3;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(45, 80, 22, 0.15);
    transition: var(--transition-normal);
    cursor: pointer;
}

.secondary-image:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 60px rgba(45, 80, 22, 0.25);
}

.image-overlay-hover {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.85), rgba(61, 106, 31, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: var(--radius-lg);
}

.secondary-image:hover .image-overlay-hover {
    opacity: 1;
}

.image-overlay-hover span {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
    padding: var(--spacing-md);
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.secondary-image:hover .image-overlay-hover span {
    transform: translateY(0);
}

/* ============================================
   VISION & MISSION SECTION
============================================ */
.vision-mission {
    background: var(--gray-light);
    padding: var(--spacing-5xl) 0;
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-3xl);
    margin-bottom: var(--spacing-4xl);
}

.vm-card {
    position: relative;
    width: 100%;
    min-height: 350px;
    border-radius: 14px;
    z-index: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 20px 20px 60px rgba(190, 190, 190, 0.3), -20px -20px 60px rgba(255, 255, 255, 0.8);
    transition: var(--transition-normal);
}

.vm-card:hover {
    transform: translateY(-5px);
    box-shadow: 25px 25px 70px rgba(190, 190, 190, 0.4), -25px -25px 70px rgba(255, 255, 255, 0.9);
}

/* Blob Animation Background */
.vm-card .blob {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    opacity: 0.6;
    filter: blur(40px);
    animation: blob-bounce 8s infinite ease;
    pointer-events: none;
}

.vm-card .blob-green {
    background: linear-gradient(135deg, var(--green-light), var(--green-primary));
}

.vm-card .blob-orange {
    background: linear-gradient(135deg, var(--orange-light), var(--orange-primary));
}

@keyframes blob-bounce {
    0% {
        transform: translate(-100%, -100%) translate3d(0, 0, 0);
    }
    25% {
        transform: translate(-100%, -100%) translate3d(100%, 0, 0);
    }
    50% {
        transform: translate(-100%, -100%) translate3d(100%, 100%, 0);
    }
    75% {
        transform: translate(-100%, -100%) translate3d(0, 100%, 0);
    }
    100% {
        transform: translate(-100%, -100%) translate3d(0, 0, 0);
    }
}

/* Glass Morphism Background */
.vm-card .bg {
    position: relative;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    margin: 5px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 10px;
    overflow: hidden;
    outline: 2px solid rgba(255, 255, 255, 0.8);
    padding: var(--spacing-3xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.vm-card .bg .vm-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--spacing-lg);
    background: var(--gradient-green);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    position: relative;
    z-index: 3;
}

.mission-card .bg .vm-icon {
    background: var(--gradient-orange);
}

.vm-icon svg {
    width: 24px;
    height: 24px;
}

.vm-card .bg h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 3;
}

.vm-card .bg p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
    position: relative;
    z-index: 3;
}

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

.values-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: var(--spacing-2xl);
}

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

.value-item {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-md);
    border: 2px solid var(--green-pale);
    transition: var(--transition-normal);
}

.value-item:hover {
    border-color: var(--green-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.value-name {
    font-weight: 600;
    color: var(--green-dark);
    font-size: 1.05rem;
}

/* ============================================
   PRODUCTS SECTION - Creative Masonry Layout
============================================ */
.products {
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-light) 30%, var(--white) 100%);
    padding: var(--spacing-5xl) 0;
    position: relative;
    overflow: hidden;
}

.products-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.products-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 30%, rgba(107, 168, 68, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 85% 70%, rgba(245, 124, 0, 0.05) 0%, transparent 50%);
}

/* Masonry Grid Layout - Improved Balance */
.products-masonry {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(280px, auto);
    gap: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

/* Large Card - Takes 6 columns */
.product-card-large {
    grid-column: 1 / 7;
    grid-row: span 2;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(45, 80, 22, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--green-pale);
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 500px;
}

.product-card-large:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 70px rgba(45, 80, 22, 0.25);
    border-color: var(--green-light);
}

.product-image {
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(45, 80, 22, 0.7) 100%);
    transition: var(--transition-normal);
}

.product-card-large:hover .product-overlay {
    background: linear-gradient(180deg, transparent 0%, rgba(45, 80, 22, 0.5) 100%);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--orange-light);
    color: var(--white);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(245, 124, 0, 0.3);
}

.product-content {
    padding: var(--spacing-2xl);
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.product-icon-large {
    width: 44px;
    height: 44px;
    background: var(--gradient-green);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: var(--spacing-lg);
    box-shadow: 0 6px 20px rgba(45, 80, 22, 0.25);
    transition: var(--transition-normal);
}

.product-card-large:hover .product-icon-large {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(45, 80, 22, 0.35);
}

.product-icon-large svg {
    width: 22px;
    height: 22px;
}

.product-card-large h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--green-dark);
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
}

.product-card-large p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: var(--spacing-lg);
    flex: 1;
    min-height: 60px;
}

.product-features {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.feature-tag {
    background: var(--green-pale);
    color: var(--green-dark);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
}

/* Medium Cards - 6 columns, consistent height */
.product-card-medium {
    grid-column: 7 / 13;
    grid-row: span 1;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    box-shadow: 0 10px 40px rgba(45, 80, 22, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--green-pale);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 240px;
}

.product-card-medium:nth-child(3) {
    grid-row: span 1;
}

.product-card-medium:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(45, 80, 22, 0.2);
    border-color: var(--green-light);
}

.product-card-medium.featured {
    background: linear-gradient(135deg, var(--white) 0%, var(--green-pale) 100%);
    border-color: var(--green-light);
}

.featured-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gradient-green);
    color: var(--white);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(45, 80, 22, 0.3);
}

.product-icon-wrapper {
    position: relative;
    width: 48px;
    height: 48px;
    margin-bottom: var(--spacing-lg);
    flex-shrink: 0;
}

.product-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-green);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    position: relative;
    z-index: 2;
    transition: var(--transition-normal);
    box-shadow: 0 6px 20px rgba(45, 80, 22, 0.25);
}

.icon-glow {
    position: absolute;
    inset: -10px;
    background: var(--green-light);
    border-radius: var(--radius-lg);
    opacity: 0.3;
    filter: blur(15px);
    z-index: 1;
    animation: pulse-glow 2s ease-in-out infinite;
}

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

.product-card-medium:hover .product-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 25px rgba(45, 80, 22, 0.35);
}

.product-icon svg {
    width: 40px;
    height: 40px;
}

.product-card-medium h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--green-dark);
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
}

.product-card-medium p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: var(--spacing-lg);
    flex: 1;
    min-height: 60px;
}

.product-stats {
    display: flex;
    gap: var(--spacing-lg);
    margin-top: auto;
    padding-top: var(--spacing-lg);
    border-top: 2px solid var(--green-pale);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--green-dark);
    font-family: var(--font-english);
    line-height: 1;
}

.stat-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Wide Card - Takes 6 columns */
.product-card-wide {
    grid-column: 1 / 7;
    grid-row: span 1;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(45, 80, 22, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--green-pale);
    display: flex;
    flex-direction: row;
    position: relative;
    min-height: 240px;
}

.product-card-wide:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 25px 70px rgba(45, 80, 22, 0.25);
    border-color: var(--green-light);
}

.product-image-small {
    width: 320px;
    min-width: 280px;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    flex-shrink: 0;
}

.product-card-wide .product-content {
    flex: 1;
    padding: var(--spacing-2xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.product-card-wide .product-icon-wrapper {
    margin-bottom: var(--spacing-md);
}

.product-card-wide h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--green-dark);
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
}

.product-card-wide p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

/* Tall Card - Takes 6 columns */
.product-card-tall {
    grid-column: 7 / 13;
    grid-row: span 2;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(45, 80, 22, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--green-pale);
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 500px;
}

.product-card-tall:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 70px rgba(45, 80, 22, 0.25);
    border-color: var(--green-light);
}

.product-card-tall .product-image {
    height: 280px;
    flex-shrink: 0;
}

.product-card-tall .product-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card-tall h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--green-dark);
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
}

.product-card-tall p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: var(--spacing-lg);
    flex: 1;
}

/* ============================================
   SERVICES SECTION
============================================ */
.services {
    background: var(--gray-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
}

.service-card {
    background: var(--white);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-lg);
    text-align: center;
    border: 2px solid var(--gray);
    transition: var(--transition-normal);
}

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

.service-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient-green);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    color: var(--white);
}

.service-icon svg {
    width: 22px;
    height: 22px;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: var(--spacing-md);
}

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

/* ============================================
   WHY US SECTION
============================================ */
.why-us {
    background: var(--white);
}

.why-us-grid {
    display: flex;
    flex-direction: row;
    gap: var(--spacing-xl);
    overflow-x: auto;
    overflow-y: hidden;
    padding: var(--spacing-md) 0;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--green-light) var(--gray);
    -webkit-overflow-scrolling: touch;
}

.why-us-grid::-webkit-scrollbar {
    height: 8px;
}

.why-us-grid::-webkit-scrollbar-track {
    background: var(--gray);
    border-radius: 10px;
}

.why-us-grid::-webkit-scrollbar-thumb {
    background: var(--green-light);
    border-radius: 10px;
}

.why-us-grid::-webkit-scrollbar-thumb:hover {
    background: var(--green-dark);
}

.why-card {
    background: var(--white);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid var(--gray);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateY(-100px);
    flex: 0 0 300px;
    min-width: 280px;
    max-width: 350px;
}

.why-card.animate-in {
    opacity: 1;
    animation: bounce-in-top 1.1s both;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-green);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-slow);
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-card:hover {
    border-color: var(--green-dark);
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 30px 70px rgba(45, 80, 22, 0.25);
    background: linear-gradient(to bottom, var(--white) 0%, var(--green-pale) 100%);
}

.why-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-green);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    color: var(--white);
    transition: var(--transition-normal);
}

.why-card:hover .why-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-md);
}

.why-icon svg {
    width: 24px;
    height: 24px;
}

.why-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: var(--spacing-md);
}

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

.why-card-large {
    min-height: 320px;
}

.why-card-medium {
    min-height: 250px;
}

.why-card-small {
    min-height: 200px;
}

/* ============================================
   GALLERY SECTION
============================================ */
.gallery {
    background: var(--gray-light);
    padding: var(--spacing-5xl) 0 var(--spacing-2xl) 0;
}

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

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    border: 2px solid var(--gray);
    transition: var(--transition-normal);
}

.gallery-item:hover {
    border-color: var(--green-dark);
    box-shadow: var(--shadow-md);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.8), rgba(61, 106, 31, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: var(--radius-lg);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    padding: var(--spacing-md);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ============================================
   CTA SECTION
============================================ */
.cta-section {
    position: relative;
    padding: var(--spacing-4xl) 0;
    background: var(--gradient-hero);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    overflow: hidden;
    margin-top: -var(--spacing-2xl);
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(45, 80, 22, 0.85) 0%,
        rgba(61, 106, 31, 0.8) 50%,
        rgba(45, 80, 22, 0.85) 100%
    );
    backdrop-filter: blur(2px);
}

.cta-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
    padding: var(--spacing-xl);
}

.cta-content::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--orange-primary);
    border-radius: 2px;
    opacity: 0.8;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: var(--spacing-lg);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-2xl);
    opacity: 0.95;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: var(--white);
    color: var(--green-dark);
    border: 2px solid var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-white:hover {
    background: var(--green-pale);
    color: var(--green-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--green-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}

/* ============================================
   CONTACT SECTION
============================================ */
.contact {
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-light) 30%, var(--white) 100%);
    padding: var(--spacing-5xl) 0;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(107, 168, 68, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(245, 124, 0, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(45, 80, 22, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.contact-header {
    text-align: center;
    margin-bottom: var(--spacing-4xl);
    position: relative;
    z-index: 1;
}

.contact-header .section-subtitle {
    max-width: 700px;
    margin: var(--spacing-lg) auto 0;
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.contact-info-wrapper-centered {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-2xl);
    margin-top: var(--spacing-3xl);
}

.contact-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--green-pale) 100%);
    padding: var(--spacing-3xl);
    border-radius: var(--radius-xl);
    box-shadow: 0 15px 50px rgba(45, 80, 22, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--spacing-xl);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(107, 168, 68, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(107, 168, 68, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    padding: 2px;
    background: var(--gradient-green);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 70px rgba(45, 80, 22, 0.25);
    border-color: var(--green-light);
    background: linear-gradient(135deg, var(--white) 0%, rgba(107, 168, 68, 0.05) 100%);
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-card:hover::after {
    opacity: 1;
}

.contact-card .contact-icon-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.contact-card .contact-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto;
}

.contact-card .contact-details {
    text-align: center;
    width: 100%;
}

.contact-card .contact-details h4 {
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: var(--spacing-md);
}

.contact-card .contact-details h4::after {
    display: none;
}

.contact-card .contact-details p {
    font-size: 0.95rem;
    margin-bottom: var(--spacing-sm);
}

.contact-card .contact-label {
    font-size: 0.85rem;
    margin-top: var(--spacing-sm);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--spacing-4xl);
    align-items: start;
    position: relative;
    z-index: 1;
}

/* Contact Info Wrapper */
.contact-info-wrapper {
    position: sticky;
    top: 100px;
}

.contact-info-header {
    margin-bottom: var(--spacing-2xl);
    padding-bottom: var(--spacing-xl);
    border-bottom: 3px solid var(--green-pale);
}

.contact-info-header h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--green-dark);
    margin-bottom: var(--spacing-sm);
}

.contact-info-header p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.contact-info {
    background: var(--white);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 50px rgba(45, 80, 22, 0.12);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    border: 2px solid var(--green-pale);
    transition: var(--transition-normal);
}

.contact-info:hover {
    box-shadow: 0 20px 60px rgba(45, 80, 22, 0.18);
    transform: translateY(-8px);
    border-color: var(--green-light);
}

.contact-item {
    display: flex;
    gap: var(--spacing-lg);
    align-items: flex-start;
    padding: var(--spacing-xl);
    border-radius: var(--radius-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 0;
    background: var(--gradient-green);
    transition: height 0.4s ease;
    border-radius: 0 0 0 4px;
}

.contact-item:hover::before {
    height: 100%;
}

.contact-item:hover {
    background: linear-gradient(135deg, var(--green-pale) 0%, rgba(255, 255, 255, 0.8) 100%);
    transform: translateX(-10px);
    border-color: var(--green-light);
    box-shadow: 0 8px 25px rgba(45, 80, 22, 0.12);
}

/* Icon Wrapper with Pulse */
.contact-icon-wrapper {
    position: relative;
    flex-shrink: 0;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-green);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 6px 20px rgba(45, 80, 22, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.icon-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75px;
    height: 75px;
    background: var(--green-light);
    border-radius: var(--radius-lg);
    opacity: 0;
    animation: pulse-icon 2s ease-in-out infinite;
    z-index: 1;
}

@keyframes pulse-icon {
    0%, 100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 10px 30px rgba(45, 80, 22, 0.35);
}

.contact-icon svg {
    width: 20px;
    height: 20px;
}

.contact-details {
    flex: 1;
    position: relative;
    z-index: 2;
}

.contact-details h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--green-dark);
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.contact-details h4::after {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(to left, var(--green-light), transparent);
    border-radius: 2px;
}

.contact-details p {
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: var(--spacing-xs);
}

.contact-link {
    color: var(--green-dark);
    text-decoration: none;
    transition: var(--transition-normal);
    display: inline-block;
    position: relative;
}

.contact-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--green-light);
    transition: width 0.3s ease;
}

.contact-link:hover {
    color: var(--green-light);
}

.contact-link:hover::after {
    width: 100%;
}

.contact-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-top: var(--spacing-xs);
    opacity: 0.8;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    position: relative;
}

.form-header {
    margin-bottom: var(--spacing-2xl);
    padding-bottom: var(--spacing-xl);
    border-bottom: 3px solid var(--green-pale);
}

.form-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--green-dark);
    margin-bottom: var(--spacing-sm);
}

.form-header p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.contact-form {
    background: var(--white);
    padding: var(--spacing-3xl);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(45, 80, 22, 0.12);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
    position: relative;
    border: 2px solid var(--green-pale);
    transition: var(--transition-normal);
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 6px;
    height: 100%;
    background: var(--gradient-green);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    opacity: 1;
}

.contact-form::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-green);
    opacity: 0.3;
}

.contact-form:hover {
    box-shadow: 0 25px 70px rgba(45, 80, 22, 0.18);
    transform: translateY(-8px);
    border-color: var(--green-light);
}

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

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.form-group label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: var(--spacing-sm);
    display: block;
    position: relative;
    padding-right: var(--spacing-md);
}

.form-group label::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 18px;
    background: var(--green-light);
    border-radius: 2px;
}

.form-group input,
.form-group textarea {
    padding: var(--spacing-lg) var(--spacing-xl) var(--spacing-lg) 3.5rem;
    border: 2px solid var(--gray);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white);
    color: var(--text-primary);
    width: 100%;
    position: relative;
}

.form-group textarea {
    padding: var(--spacing-lg) var(--spacing-xl) var(--spacing-lg) 3.5rem;
    min-height: 150px;
    resize: vertical;
    font-family: inherit;
}

.input-icon {
    position: absolute;
    right: var(--spacing-lg);
    top: calc(50% + 12px);
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: var(--green-light);
    pointer-events: none;
    transition: var(--transition-normal);
    z-index: 1;
}

.textarea-icon {
    top: calc(50% + 8px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
    opacity: 0.3;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green-dark);
    box-shadow: 0 0 0 4px rgba(107, 168, 68, 0.1),
                0 6px 20px rgba(45, 80, 22, 0.12);
    transform: translateY(-2px);
    background: var(--white);
    padding-right: var(--spacing-xl);
    padding-left: 3.5rem;
}

.form-group input:focus + .input-icon,
.form-group textarea:focus + .input-icon {
    color: var(--green-dark);
    transform: translateY(-50%) scale(1.1);
}

.form-group input:hover:not(:focus),
.form-group textarea:hover:not(:focus) {
    border-color: var(--green-light);
    background: var(--green-pale);
}

.btn-submit {
    margin-top: var(--spacing-md);
    width: 100%;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-submit:hover::before {
    width: 300px;
    height: 300px;
}

/* ============================================
   FOOTER
============================================ */
.footer {
    background: var(--green-dark);
    color: var(--white);
    padding: var(--spacing-4xl) 0 var(--spacing-xl);
}

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

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-logo {
    width: 60px;
    height: 60px;
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo .logo-icon {
    width: 100%;
    height: 100%;
    color: var(--white);
}

.footer-col h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
}

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

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-normal);
}

.footer-col a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.social-links a:hover {
    background: var(--green-light);
    transform: translateY(-3px);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
}

.footer-credits {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.credits-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.credits-link {
    color: var(--green-light);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.credits-link:hover {
    color: var(--green-primary);
    text-decoration: underline;
}

/* ============================================
   RESPONSIVE DESIGN
============================================ */
@media (max-width: 992px) {
    .navbar-container {
        padding: var(--spacing-md) var(--spacing-lg);
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 350px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        padding: var(--spacing-4xl) var(--spacing-xl);
        box-shadow: -5px 0 30px rgba(45, 80, 22, 0.15);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        gap: 0;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-item {
        width: 100%;
        border-bottom: 1px solid var(--green-pale);
    }
    
    .nav-item:last-child {
        border-bottom: none;
    }
    
    .nav-link {
        width: 100%;
        padding: var(--spacing-lg) var(--spacing-md);
        font-size: 1.1rem;
        justify-content: flex-start;
    }
    
    .nav-link::before {
        display: none;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-link.active {
        background: var(--green-pale);
        color: var(--green-dark);
        border-radius: var(--radius-md);
    }
    
    .nav-actions {
        gap: var(--spacing-sm);
    }
    
    .nav-phone-link {
        display: none;
    }
    
    .fab-phone {
        display: none;
    }
    
    .nav-cta {
        padding: var(--spacing-sm) var(--spacing-lg);
        font-size: 0.9rem;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .brand-sub {
        display: none;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .about-main-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-3xl);
    }
    
    .about-hero-image {
        min-height: 400px;
        order: 1;
    }
    
    .about-content-wrapper {
        order: 2;
    }
    
    .about-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-secondary-images {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-secondary-images .secondary-image:last-child {
        grid-column: 1 / -1;
    }
    
    .contact-info-cards {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        margin-top: var(--spacing-2xl);
    }
    
    .contact-card {
        padding: var(--spacing-2xl);
    }
    
    .contact-card .contact-icon {
        width: 80px;
        height: 80px;
    }
    
    .vm-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-3xl);
    }
    
    /* VM Cards Responsive */
    .vm-card {
        min-height: 300px;
    }
    
    .vm-card .blob {
        width: 150px;
        height: 150px;
    }
    
    .vm-card .bg {
        padding: var(--spacing-2xl);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-info-header h3,
    .form-header h3 {
        font-size: 1.5rem;
    }
    
    .about-features-grid {
        grid-template-columns: 1fr;
    }
    
    .about-secondary-images {
        grid-template-columns: 1fr;
    }
    
    .about-hero-image {
        min-height: 350px;
    }
    
    .experience-card {
        bottom: 20px;
        right: 20px;
        padding: var(--spacing-xl);
        min-width: 150px;
    }
    
    .experience-number {
        font-size: 2.5rem;
    }
    
    .experience-label {
        font-size: 1rem;
    }
    
    .why-us-grid {
        flex-direction: row;
        overflow-x: auto;
    }
    
    .why-card-large,
    .why-card-medium,
    .why-card-small {
        flex: 0 0 280px;
        min-width: 250px;
        min-height: auto;
        margin-top: 0 !important;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar-container {
        padding: var(--spacing-sm) var(--spacing-md);
    }
    
    .nav-logo {
        width: 40px;
        height: 40px;
    }
    
    .brand-ar {
        font-size: 1.2rem;
    }
    
    .nav-cta {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 0.85rem;
    }
    
    .nav-cta span {
        display: none;
    }
    
    .nav-cta svg {
        width: 20px;
        height: 20px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .products-masonry {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: minmax(280px, auto);
        gap: var(--spacing-lg);
    }
    
    .product-card-large {
        grid-column: 1 / -1;
        grid-row: span 2;
        min-height: 450px;
    }
    
    .product-card-medium {
        grid-column: 1 / -1;
        grid-row: span 1;
        min-height: 220px;
    }
    
    .product-card-wide {
        grid-column: 1 / -1;
        grid-row: span 1;
        flex-direction: column;
        min-height: 220px;
    }
    
    .product-image-small {
        width: 100%;
        height: 200px;
        min-width: 100%;
    }
    
    .product-card-tall {
        grid-column: 1 / -1;
        grid-row: span 2;
        min-height: 450px;
    }
    
    .product-card-tall .product-image {
        height: 200px;
    }
    
    .product-card-large .product-image {
        height: 200px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-large {
        width: 100%;
        justify-content: center;
    }
    
    .why-us-grid {
        flex-direction: row;
        overflow-x: auto;
    }
    
    .why-card-large,
    .why-card-medium,
    .why-card-small {
        flex: 0 0 260px;
        min-width: 240px;
        min-height: auto;
        margin-top: 0 !important;
    }
    
    .products-masonry {
        grid-template-columns: 1fr;
    }
    
    .product-card-large,
    .product-card-medium,
    .product-card-wide,
    .product-card-tall {
        grid-column: 1;
        grid-row: auto;
    }
}

@media (max-width: 480px) {
    .navbar-container {
        padding: var(--spacing-md);
    }
    
    .nav-brand-text {
        font-size: 0.9rem;
    }
    
    .brand-ar {
        font-size: 1.1rem;
    }
    
    section {
        padding: var(--spacing-3xl) 0;
    }
    
    /* VM Cards Mobile */
    .vm-card {
        min-height: 280px;
    }
    
    .vm-card .blob {
        width: 120px;
        height: 120px;
        filter: blur(30px);
    }
    
    .vm-card .bg {
        padding: var(--spacing-xl);
    }
    
    .vm-card .bg .vm-icon {
        width: 60px;
        height: 60px;
    }
    
    .vm-card .bg h3 {
        font-size: 1.3rem;
    }
    
    .vm-card .bg p {
        font-size: 0.95rem;
    }
    
    /* Preloader Mobile */
    .factory-loader {
        width: 280px;
        height: 220px;
    }
    
    .factory-building {
        width: 120px;
        height: 100px;
    }
    
    .factory-body {
        width: 110px;
        height: 70px;
    }
    
    .factory-roof {
        border-left-width: 60px;
        border-right-width: 60px;
        border-bottom-width: 30px;
    }
    
    .factory-window {
        width: 20px;
        height: 20px;
    }
    
    .factory-window:nth-child(1) {
        left: 10px;
    }
    
    .factory-window:nth-child(2) {
        left: 45px;
    }
    
    .factory-window:nth-child(3) {
        left: 80px;
    }
    
    .conveyor-belt {
        width: 250px;
        height: 50px;
    }
    
    .product-box {
        width: 30px;
        height: 30px;
    }
    
    .product-box .box-top {
        height: 6px;
    }
    
    .product-box .box-body {
        height: 24px;
    }
    
    .packaging-machine {
        width: 60px;
        height: 60px;
        right: 30px;
    }
    
    .machine-arm {
        width: 45px;
        height: 6px;
    }
    
    .wrapping-film {
        width: 30px;
        height: 30px;
    }
    
    .loader-card {
        padding: 0.75rem 1.25rem;
    }
    
    .loader-word {
        font-size: 0.95rem;
    }
    
    .loader-words {
        height: 35px;
    }
}
