/* ============================================
   YASMIN AGRICULTURAL - Premium Stylesheet
   Green & Earth Tones Theme
============================================ */

/* ============================================
   CSS VARIABLES
============================================ */
:root {
    /* Primary Colors */
    --green: #2d5a27;
    --green-dark: #1e3d1a;
    --green-light: #4a8f41;
    --green-bright: #6abf5e;
    
    /* Secondary Colors */
    --earth: #8b6914;
    --earth-light: #c9a227;
    --brown: #5c4033;
    
    /* Background Colors */
    --white: #ffffff;
    --off-white: #f8faf7;
    --light-gray: #f0f4ee;
    --gray: #e5ebe3;
    
    /* Text Colors */
    --text-dark: #1a2e16;
    --text-primary: #2d3b29;
    --text-secondary: #5a6b55;
    --text-light: #8a9a85;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--green), var(--green-light));
    --gradient-dark: linear-gradient(135deg, var(--green-dark), var(--green));
    --gradient-gold: linear-gradient(135deg, var(--earth), var(--earth-light));
    
    /* Fonts */
    --font-arabic: 'Tajawal', sans-serif;
    --font-english: 'Montserrat', 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, 90, 39, 0.08);
    --shadow-md: 0 10px 30px rgba(45, 90, 39, 0.12);
    --shadow-lg: 0 20px 50px rgba(45, 90, 39, 0.15);
    --shadow-xl: 0 30px 70px rgba(45, 90, 39, 0.2);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-slower: 0.8s 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);
    background-color: var(--white);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

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

/* ============================================
   PRELOADER
============================================ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.loader-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-lg);
    animation: spin 1s linear infinite;
}

.loader-icon svg {
    width: 100%;
    height: 100%;
    color: var(--green-bright);
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.loader-text {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 2px;
}

/* ============================================
   FLOATING WHATSAPP BUTTON
============================================ */
.fab-whatsapp {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-normal);
}

.fab-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.fab-whatsapp svg {
    width: 30px;
    height: 30px;
    color: var(--white);
}

.fab-tooltip {
    position: absolute;
    right: 70px;
    background: var(--text-dark);
    color: var(--white);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.fab-whatsapp:hover .fab-tooltip {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   NAVBAR
============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: var(--transition-normal);
    padding: var(--spacing-md) 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
    padding: var(--spacing-sm) 0;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.logo-leaf {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.navbar.scrolled .logo-leaf {
    background: var(--gradient-primary);
}

.logo-leaf svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

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

.brand-ar {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
    transition: var(--transition-normal);
}

.navbar.scrolled .brand-ar {
    color: var(--green);
}

.brand-sub {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-normal);
}

.navbar.scrolled .brand-sub {
    color: var(--text-secondary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding: var(--spacing-sm) 0;
    transition: var(--transition-normal);
}

.navbar.scrolled .nav-link {
    color: var(--text-secondary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--green-bright);
    transition: var(--transition-normal);
}

.navbar.scrolled .nav-link::after {
    background: var(--green);
}

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

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--green);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

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

.nav-phone {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-lg);
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
}

.nav-phone svg {
    width: 18px;
    height: 18px;
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-sm);
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition-normal);
}

.navbar.scrolled .menu-toggle span {
    background: var(--green);
}

/* ============================================
   HERO SECTION
============================================ */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(30, 61, 26, 0.7) 0%, rgba(30, 61, 26, 0.9) 100%);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 0 var(--spacing-xl);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: var(--spacing-sm) var(--spacing-xl);
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-2xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge svg {
    width: 20px;
    height: 20px;
    color: var(--green-bright);
}

.hero-badge span {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
}

.hero-title {
    margin-bottom: var(--spacing-lg);
}

.title-line {
    display: block;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.2;
}

.title-highlight {
    display: block;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--green-bright);
    margin-top: var(--spacing-sm);
}

.hero-subtitle {
    font-family: var(--font-english);
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 5px;
    margin-bottom: var(--spacing-xl);
}

.hero-line {
    width: 80px;
    height: 4px;
    background: var(--gradient-gold);
    margin: 0 auto var(--spacing-xl);
    border-radius: 2px;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 650px;
    margin: 0 auto var(--spacing-2xl);
    line-height: 1.9;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-2xl);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
}

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

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(45, 90, 39, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(45, 90, 39, 0.4);
}

.btn-glow {
    animation: btnGlow 2s ease-in-out infinite;
}

@keyframes btnGlow {
    0%, 100% { box-shadow: 0 10px 30px rgba(45, 90, 39, 0.3); }
    50% { box-shadow: 0 10px 40px rgba(106, 191, 94, 0.5); }
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

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

.btn-white {
    background: var(--white);
    color: var(--green);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

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

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

.btn-full {
    width: 100%;
    justify-content: center;
}

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

/* Hero Stats */
.hero-stats {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--spacing-3xl);
    z-index: 10;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-lg) var(--spacing-xl);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat .stat-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-stat .stat-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.hero-stat .stat-number {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--white);
    font-family: var(--font-english);
    line-height: 1;
}

.hero-stat .stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Slider Navigation */
.hero-slider-nav {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--spacing-md);
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-normal);
}

.slider-dot.active,
.slider-dot:hover {
    background: var(--green-bright);
    transform: scale(1.2);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    z-index: 10;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 13px;
    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 ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { top: 8px; opacity: 1; }
    100% { top: 24px; opacity: 0; }
}

.scroll-indicator span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    writing-mode: vertical-rl;
}

/* Animation Classes */
.animate-fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.animate-fade-in:nth-child(1) { animation-delay: 0.2s; }
.animate-fade-in:nth-child(2) { animation-delay: 0.4s; }
.animate-fade-in:nth-child(3) { animation-delay: 0.6s; }
.animate-fade-in:nth-child(4) { animation-delay: 0.8s; }
.animate-fade-in:nth-child(5) { animation-delay: 1s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   MARQUEE SECTION
============================================ */
.marquee-section {
    background: var(--green);
    padding: var(--spacing-lg) 0;
    overflow: hidden;
    width: 100%;
}

.marquee-viewport {
    position: relative;
    height: 40px;
    overflow: hidden;
    width: 100%;
}

.marquee-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
}

.marquee-dot {
    width: 8px;
    height: 8px;
    background: var(--green-bright);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

/* ============================================
   SECTION STYLES
============================================ */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-4xl);
}

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

.section-badge {
    display: inline-block;
    background: var(--light-gray);
    color: var(--green);
    padding: var(--spacing-sm) var(--spacing-xl);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    border: 1px solid var(--gray);
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--green-dark);
    margin-bottom: var(--spacing-md);
}

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

.section-header-inline .section-underline {
    margin: 0;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: var(--spacing-lg) auto 0;
}

/* ============================================
   ABOUT SECTION
============================================ */
.about {
    padding: var(--spacing-5xl) 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-4xl);
    align-items: center;
    direction: ltr;
}

.about-grid .about-images,
.about-grid .about-content {
    direction: rtl;
}

.about-images {
    position: relative;
}

.about-img-main {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-img-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-img-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient-gold);
    color: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.badge-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    font-family: var(--font-english);
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 600;
}

.about-img-secondary {
    position: absolute;
    top: 50%;
    left: -60px;
    width: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--white);
}

.about-img-secondary img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.about-floating-card {
    position: absolute;
    top: 30px;
    right: -40px;
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.floating-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.floating-text span {
    display: block;
    font-weight: 700;
    color: var(--green);
}

.floating-text small {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.about-content {
    padding-right: var(--spacing-2xl);
}

.about-intro {
    font-size: 1.15rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.9;
}

.about-content > p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-2xl);
    line-height: 1.9;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
}

.about-feature {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: var(--off-white);
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.about-feature:hover {
    background: var(--light-gray);
    transform: translateX(-5px);
}

.about-feature .feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature .feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.feature-text h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--green);
    margin-bottom: var(--spacing-xs);
}

.feature-text p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ============================================
   PRODUCTS SECTION
============================================ */
.products {
    padding: var(--spacing-5xl) 0;
    background: var(--off-white);
}

.products-filter {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-3xl);
    flex-wrap: wrap;
}

.filter-btn {
    padding: var(--spacing-sm) var(--spacing-xl);
    background: var(--white);
    border: 2px solid var(--gray);
    border-radius: var(--radius-full);
    font-family: var(--font-arabic);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-normal);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
}

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

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

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

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

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

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

.product-badge {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: var(--earth);
    color: var(--white);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
}

.product-badge.new {
    background: var(--green);
}

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-xl);
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    transform: translateY(100%);
    transition: var(--transition-normal);
}

.product-card:hover .product-overlay {
    transform: translateY(0);
}

.product-btn {
    display: block;
    text-align: center;
    padding: var(--spacing-md) var(--spacing-xl);
    background: var(--white);
    color: var(--green);
    border-radius: var(--radius-full);
    font-weight: 700;
}

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

.product-info {
    padding: var(--spacing-xl);
}

.product-category {
    display: inline-block;
    background: var(--light-gray);
    color: var(--green);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.product-info h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.product-info > p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

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

.product-features span {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.product-features svg {
    width: 16px;
    height: 16px;
    color: var(--green);
}

.products-cta {
    text-align: center;
    margin-top: var(--spacing-3xl);
}

/* ============================================
   SERVICES SECTION
============================================ */
.services {
    padding: var(--spacing-5xl) 0;
    background: var(--white);
}

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

.service-card {
    background: var(--off-white);
    border: 1px solid var(--gray);
    border-radius: var(--radius-lg);
    padding: var(--spacing-2xl);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: var(--transition-slow);
}

.service-card:hover {
    background: var(--white);
    border-color: var(--green);
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px);
}

.service-card:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.service-card.featured {
    background: var(--gradient-dark);
    border: none;
}

.service-card.featured::before {
    background: var(--gradient-gold);
}

.service-card.featured h3,
.service-card.featured p,
.service-card.featured li {
    color: var(--white);
}

.service-card.featured .service-icon {
    background: rgba(255, 255, 255, 0.2);
}

.service-card.featured .service-number {
    color: rgba(255, 255, 255, 0.1);
}

.service-icon-wrapper {
    position: relative;
    margin-bottom: var(--spacing-xl);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon svg {
    width: 35px;
    height: 35px;
    color: var(--white);
}

.service-number {
    position: absolute;
    top: -10px;
    left: -10px;
    font-family: var(--font-english);
    font-size: 4rem;
    font-weight: 900;
    color: var(--gray);
    line-height: 1;
    transition: var(--transition-normal);
}

.service-card:hover .service-number {
    color: rgba(45, 90, 39, 0.1);
}

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

.service-card > p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.service-list li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding-right: var(--spacing-lg);
    position: relative;
}

.service-list li::before {
    content: '';
    position: absolute;
    right: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
}

.service-card.featured .service-list li::before {
    background: var(--green-bright);
}

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

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: var(--spacing-lg);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-xl);
    background: linear-gradient(transparent, rgba(30, 61, 26, 0.9));
    transform: translateY(100%);
    transition: var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay span {
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
}

/* ============================================
   TESTIMONIALS SECTION
============================================ */
.testimonials {
    padding: var(--spacing-5xl) 0;
    background: var(--white);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-2xl);
}

.testimonial-card {
    background: var(--off-white);
    border: 1px solid var(--gray);
    border-radius: var(--radius-lg);
    padding: var(--spacing-2xl);
    transition: var(--transition-normal);
}

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

.testimonial-rating {
    margin-bottom: var(--spacing-lg);
}

.testimonial-rating span {
    color: var(--earth-light);
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: var(--spacing-xl);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 800;
    font-size: 1.2rem;
}

.author-info h4 {
    font-weight: 700;
    color: var(--green);
    margin-bottom: var(--spacing-xs);
}

.author-info p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ============================================
   EQUIPMENT SHOWCASE SECTION
============================================ */
.equipment-showcase {
    padding: var(--spacing-5xl) 0;
    background: var(--white);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-2xl);
}

.showcase-item {
    display: flex;
    background: var(--off-white);
    border: 1px solid var(--gray);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-normal);
}

.showcase-item:hover {
    border-color: var(--green);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.showcase-image {
    width: 45%;
    min-height: 280px;
    overflow: hidden;
}

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

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

.showcase-content {
    flex: 1;
    padding: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.showcase-content h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--green);
    margin-bottom: var(--spacing-md);
}

.showcase-content > p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
}

.showcase-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.showcase-features li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.showcase-features li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ============================================
   STATS BANNER SECTION
============================================ */
.stats-banner {
    position: relative;
    padding: var(--spacing-4xl) 0;
    overflow: hidden;
}

.stats-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.stats-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 61, 26, 0.95), rgba(45, 90, 39, 0.9));
}

.stats-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    gap: var(--spacing-4xl);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-item .stat-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    transition: var(--transition-normal);
}

.stat-item:hover .stat-icon {
    background: var(--green-bright);
    transform: scale(1.1);
}

.stat-item .stat-icon svg {
    width: 32px;
    height: 32px;
    color: var(--white);
}

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

.stat-item .stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   BRANDS SECTION
============================================ */
.brands {
    padding: var(--spacing-5xl) 0;
    background: var(--off-white);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--spacing-xl);
}

.brand-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-xl);
    background: var(--white);
    border: 1px solid var(--gray);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
}

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

.brand-logo {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-english);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--white);
}

.brand-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
}

/* ============================================
   CTA SECTION
============================================ */
.cta-section {
    position: relative;
    padding: var(--spacing-5xl) 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 61, 26, 0.95), rgba(45, 90, 39, 0.9));
}

.cta-section .cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
}

.cta-section h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

.cta-section p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--spacing-2xl);
}

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

/* ============================================
   CONTACT SECTION
============================================ */
.contact {
    padding: var(--spacing-5xl) 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-4xl);
}

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

.contact-card {
    display: flex;
    gap: var(--spacing-lg);
    padding: var(--spacing-xl);
    background: var(--off-white);
    border: 1px solid var(--gray);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
}

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

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.contact-details h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--green);
    margin-bottom: var(--spacing-xs);
}

.contact-details p,
.contact-details a {
    color: var(--text-secondary);
}

.contact-details a:hover {
    color: var(--green);
}

.contact-form-wrapper {
    background: var(--off-white);
    border: 1px solid var(--gray);
    border-radius: var(--radius-lg);
    padding: var(--spacing-2xl);
}

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

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

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: var(--spacing-lg);
    background: var(--white);
    border: 2px solid var(--gray);
    border-radius: var(--radius-md);
    font-family: var(--font-arabic);
    font-size: 1rem;
    color: var(--text-primary);
    transition: var(--transition-normal);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(45, 90, 39, 0.1);
}

.form-group label {
    position: absolute;
    right: var(--spacing-lg);
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    pointer-events: none;
    transition: var(--transition-normal);
    background: var(--white);
    padding: 0 var(--spacing-sm);
}

.form-group textarea ~ label {
    top: var(--spacing-lg);
    transform: translateY(0);
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: 0;
    font-size: 0.85rem;
    color: var(--green);
}

/* ============================================
   FOOTER
============================================ */
.footer {
    background: var(--green-dark);
    color: var(--white);
}

.footer-top {
    padding: var(--spacing-4xl) 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--spacing-3xl);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.footer-logo .logo-leaf {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
}

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

.brand-name {
    font-size: 1.5rem;
    font-weight: 800;
}

.brand-tagline {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-brand > p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-xl);
    line-height: 1.8;
}

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

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.social-link:hover {
    background: var(--green-bright);
}

.social-link svg {
    width: 20px;
    height: 20px;
    color: var(--white);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xl);
}

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

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

.footer-links a:hover {
    color: var(--white);
    padding-right: var(--spacing-sm);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--green-bright);
}

.footer-bottom {
    padding: var(--spacing-xl) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-credits {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-credits a {
    color: var(--white);
    font-weight: 600;
}

.footer-credits a:hover {
    color: var(--green-bright);
}

/* ============================================
   RESPONSIVE DESIGN
============================================ */
@media (max-width: 1200px) {
    .hero-stats {
        gap: var(--spacing-xl);
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-3xl);
    }
    
    .about-content {
        padding-right: 0;
    }
    
    .about-img-secondary {
        display: none;
    }
    
    .about-floating-card {
        right: 20px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .showcase-item {
        flex-direction: column;
    }
    
    .showcase-image {
        width: 100%;
        min-height: 250px;
    }
    
    .stats-content {
        flex-wrap: wrap;
        gap: var(--spacing-2xl);
    }
    
    .stat-item {
        flex: 1 1 45%;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: var(--spacing-5xl) var(--spacing-2xl);
        gap: var(--spacing-xl);
        transition: var(--transition-normal);
        box-shadow: var(--shadow-xl);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu .nav-link {
        color: var(--text-secondary);
    }
    
    .nav-actions {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero-stats {
        position: static;
        transform: none;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: var(--spacing-3xl);
        padding: 0 var(--spacing-xl);
    }
    
    .hero-stat {
        flex: 1 1 45%;
        max-width: 200px;
    }
    
    .hero-slider-nav {
        bottom: 20px;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }
    
    .gallery-item.large,
    .gallery-item.wide {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        flex: 1 1 100%;
    }
    
    .stat-item .stat-number {
        font-size: 2.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 var(--spacing-md);
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stat {
        flex: 1 1 100%;
        max-width: 100%;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .brands-grid {
        grid-template-columns: 1fr;
    }
}
