/* ===== CSS Variables ===== */
:root {
    /* Brand Colors - Inspired by Anuga Logo */
    --primary-green: #2D5F3E;
    --primary-green-dark: #1E4229;
    --primary-green-light: #3D7A52;
    --primary-green-glow: rgba(45, 95, 62, 0.4);
    --gold: #D4A537;
    --gold-light: #E8C56B;
    --gold-dark: #B8912A;
    --gold-glow: rgba(212, 165, 55, 0.4);

    /* Neutral Colors */
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #e9ecef;
    --gray: #6c757d;
    --dark: #212529;
    --darker: #1a1a1a;

    /* Semantic Colors */
    --success: #28a745;
    --danger: #dc3545;
    --warning: #ffc107;
    --info: #17a2b8;

    /* Premium Gradients */
    --gradient-premium: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-gold: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
    --gradient-green: linear-gradient(135deg, var(--primary-green-light) 0%, var(--primary-green) 50%, var(--primary-green-dark) 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    --gradient-aurora: linear-gradient(135deg, #00d2ff 0%, #3a7bd5 50%, #00d2ff 100%);

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);

    /* Enhanced Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow-gold: 0 0 40px rgba(212, 165, 55, 0.3);
    --shadow-glow-green: 0 0 40px rgba(45, 95, 62, 0.3);
    --shadow-3d: 0 20px 60px rgba(0, 0, 0, 0.2), 0 8px 25px rgba(0, 0, 0, 0.15);

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-elastic: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ===== Reset & Base Styles ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    /* Reduce scroll jank */
    scroll-padding-top: 80px;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.7;
    color: var(--darker);
    background-color: var(--white);
    overflow-x: hidden;
    /* Enable font smoothing */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Optimize text rendering */
    text-rendering: optimizeLegibility;
}

/* ===== Container ===== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(45, 95, 62, 0.1);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow);
    background: rgba(255, 255, 255, 0.98);
}

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

.nav-logo {
    height: 55px;
    width: auto;
    object-fit: contain;
}

.logo-link {
    display: flex;
    align-items: center;
}

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

.nav-link {
    display: block;
    padding: 10px 20px;
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-green);
}

.nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary-green);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 50%, #0f2818 100%);
    z-index: -3;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(212, 165, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 165, 55, 0.08) 0%, transparent 40%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    /* GPU acceleration for smoother parallax */
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    z-index: -2;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.hero-logo-wrapper {
    margin-bottom: 30px;
}

.hero-logo {
    height: 150px;
    width: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.hero-title {
    margin-bottom: 25px;
}

.hero-title-main {
    display: block;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
}

.hero-title-sub {
    display: block;
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 400;
    color: var(--gold-light);
    margin-top: 10px;
}

.hero-description {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(212, 165, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 165, 55, 0.4);
}

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-3px);
}

/* ===== Hero Stats ===== */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 80px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 5px;
}

/* ===== Hero Scroll Indicator ===== */
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateX(-50%) translateY(12px);
        opacity: 0.3;
    }
}

/* ===== Section Styles ===== */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(45, 95, 62, 0.1) 0%, rgba(45, 95, 62, 0.05) 100%);
    color: var(--primary-green);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 20px;
    border: 1px solid rgba(45, 95, 62, 0.2);
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--primary-green-dark);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
}

/* ===== About Section ===== */
.about {
    background: var(--off-white);
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.about-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--light-gray);
    text-align: center;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.about-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
}

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

.about-card h3 {
    font-size: 1.4rem;
    color: var(--primary-green-dark);
    margin-bottom: 15px;
}

.about-card p,
.about-card ul {
    color: var(--gray);
    line-height: 1.8;
}

.about-card ul {
    list-style: none;
    padding: 0;
}

.about-card li {
    padding: 8px 0;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.about-card li::before {
    content: '✓';
    color: var(--gold);
    font-weight: bold;
}

/* ===== Products Section ===== */
.products {
    background: var(--white);
}

.products-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
    z-index: -1;
}

.product-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 12px 30px;
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
    color: var(--gray);
}

.category-btn:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.category-btn.active {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    border-color: var(--primary-green);
    color: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--light-gray);
    position: relative;
    /* Performance optimization */
    contain: layout style;
    will-change: transform, box-shadow;
}

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

.product-card.featured {
    grid-column: span 1;
}

.product-image-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--light-gray) 100%);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: var(--transition-slow);
    /* GPU acceleration for smooth zoom */
    will-change: transform;
    transform: translateZ(0);
}

.product-card:hover .product-image {
    transform: scale(1.05) translateZ(0);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 15px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
}

.product-badge.premium {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
}

.product-content {
    padding: 25px;
    text-align: center;
}

.product-name {
    font-size: 1.2rem;
    color: var(--primary-green-dark);
    margin-bottom: 10px;
    font-weight: 600;
}

.product-description {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.7;
}

.product-specs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.spec {
    padding: 5px 12px;
    background: var(--off-white);
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--primary-green);
    font-weight: 500;
}

.product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(45, 95, 62, 0.1) 0%, rgba(212, 165, 55, 0.1) 100%);
}

.product-placeholder svg {
    width: 80px;
    height: 80px;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.product-placeholder span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
}

.children-product {
    background: linear-gradient(135deg, rgba(45, 95, 62, 0.15) 0%, rgba(212, 165, 55, 0.15) 100%);
}

/* ===== Vision Section ===== */
.vision {
    background: var(--primary-green);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.vision .section-title,
.vision .section-subtitle {
    color: var(--white);
}

.vision .section-badge {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.vision-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    text-align: center;
}

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

.vision-card.vision-primary {
    background: rgba(212, 165, 55, 0.2);
    border-color: rgba(212, 165, 55, 0.3);
}

.vision-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
}

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

.vision-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.vision-card p,
.vision-card li {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

.vision-card ul {
    list-style: none;
    padding: 0;
}

.vision-card li {
    padding: 8px 0;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.vision-card li::before {
    content: '✓';
    color: var(--gold);
    font-weight: bold;
}

/* ===== Features Section ===== */
.features {
    background: var(--off-white);
}

.features-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
    z-index: -1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 40px 25px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.feature-item h3 {
    font-size: 1.3rem;
    color: var(--primary-green-dark);
    margin-bottom: 10px;
}

.feature-item p {
    color: var(--gray);
    line-height: 1.7;
}

/* ===== Contact Section ===== */
.contact {
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: start;
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.contact-item h3 {
    font-size: 1.1rem;
    color: var(--primary-green-dark);
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--gray);
    line-height: 1.7;
}

.contact-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 400px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== Footer ===== */
.footer {
    background: var(--darker);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 25px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    line-height: 1.8;
    max-width: 300px;
}

.footer-links h4,
.footer-social h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

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

.footer-links a:hover {
    color: var(--gold);
    padding-right: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 5px;
        box-shadow: var(--shadow-md);
        transform: translateY(-150%);
        transition: var(--transition);
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-link {
        padding: 15px 20px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-stats {
        gap: 30px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .contact-map {
        height: 300px;
    }
}

@media (max-width: 480px) {
    section {
        padding: 60px 0;
    }

    .hero-logo {
        height: 100px;
    }

    .hero-description {
        font-size: 1rem;
    }

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

    .vision-grid,
    .about-content,
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Loading Screen ===== */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader-wrapper.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    width: 120px;
    height: auto;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loader-text {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 20px;
    font-size: 1rem;
    animation: fadeInOut 1.5s infinite;
}

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

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

@keyframes fadeInOut {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

/* ===== WhatsApp Floating Button ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    cursor: pointer;
    transition: var(--transition);
    animation: bounceIn 0.8s ease-out 1s backwards;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
    fill: white;
}

.whatsapp-float::before {
    content: 'تواصل معنا';
    position: absolute;
    right: 70px;
    background: var(--dark);
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.whatsapp-float:hover::before {
    opacity: 1;
    visibility: visible;
}

.whatsapp-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.4);
    animation: pulsing 2s infinite;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulsing {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* ===== Scroll to Top Button ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(45, 95, 62, 0.3);
    border: none;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(45, 95, 62, 0.4);
}

.scroll-top svg {
    width: 24px;
    height: 24px;
    color: white;
}

/* ===== Enhanced Product Cards ===== */
.product-card {
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.6s;
    z-index: 1;
}

.product-card:hover::before {
    left: 100%;
}

/* ===== Enhanced About Cards ===== */
.about-card {
    position: relative;
    overflow: hidden;
}

.about-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 165, 55, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

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

/* ===== Glowing Text Effect for Section Titles ===== */
.section-title {
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 2px;
}

/* ===== Particles Background for Hero ===== */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(212, 165, 55, 0.3);
    border-radius: 50%;
    animation: float 10s infinite ease-in-out;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.particle:nth-child(2) {
    left: 20%;
    animation-delay: 1s;
    animation-duration: 10s;
}

.particle:nth-child(3) {
    left: 30%;
    animation-delay: 2s;
    animation-duration: 9s;
}

.particle:nth-child(4) {
    left: 40%;
    animation-delay: 3s;
    animation-duration: 11s;
}

.particle:nth-child(5) {
    left: 50%;
    animation-delay: 0.5s;
    animation-duration: 7s;
}

.particle:nth-child(6) {
    left: 60%;
    animation-delay: 1.5s;
    animation-duration: 12s;
}

.particle:nth-child(7) {
    left: 70%;
    animation-delay: 2.5s;
    animation-duration: 8s;
}

.particle:nth-child(8) {
    left: 80%;
    animation-delay: 3.5s;
    animation-duration: 10s;
}

.particle:nth-child(9) {
    left: 90%;
    animation-delay: 4s;
    animation-duration: 9s;
}

.particle:nth-child(10) {
    left: 15%;
    animation-delay: 0.8s;
    animation-duration: 11s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
        transform: translateY(80vh) scale(1);
    }

    90% {
        opacity: 1;
        transform: translateY(10vh) scale(1);
    }

    100% {
        opacity: 0;
        transform: translateY(0) scale(0);
    }
}

/* ===== Partners Section ===== */
.partners {
    background: var(--off-white);
    padding: 80px 0;
}

.partners-title {
    text-align: center;
    font-size: 1.3rem;
    color: var(--gray);
    margin-bottom: 40px;
    font-weight: 500;
}

.partners-slider {
    display: flex;
    overflow: hidden;
    position: relative;
}

.partners-track {
    display: flex;
    animation: scroll 20s linear infinite;
}

.partner-logo {
    flex-shrink: 0;
    padding: 20px 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo img {
    height: 60px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
}

.partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ===== Testimonials Section ===== */
.testimonials {
    background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--light-gray);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-quote {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.testimonial-info h4 {
    color: var(--primary-green-dark);
    font-size: 1rem;
    margin-bottom: 3px;
}

.testimonial-info span {
    color: var(--gray);
    font-size: 0.85rem;
}

/* ===== Enhanced Buttons ===== */
.btn {
    position: relative;
    overflow: hidden;
}

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

.btn:active::after {
    width: 300px;
    height: 300px;
}

/* ===== Counter Animation Enhancement ===== */
.stat-item {
    position: relative;
    padding: 20px;
}

.stat-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    opacity: 0;
    transition: var(--transition);
}

.stat-item:hover::before {
    opacity: 1;
}

/* ===== Enhanced Feature Items ===== */
.feature-item {
    position: relative;
}

.feature-icon {
    position: relative;
}

.feature-icon::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px dashed var(--gold);
    opacity: 0;
    animation: rotate 10s linear infinite;
    transition: var(--transition);
}

.feature-item:hover .feature-icon::after {
    opacity: 1;
}

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

/* ===== Nav Link Active State ===== */
.nav-link.active {
    color: var(--primary-green);
}

.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* ===== Image Hover Zoom Effect ===== */
.product-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(45, 95, 62, 0.05) 100%);
    pointer-events: none;
}

/* ===== Enhanced Contact Form ===== */
.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-green-dark);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--off-white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(45, 95, 62, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* ===== Gradient Border Animation ===== */
.hero-logo-wrapper {
    position: relative;
    display: inline-block;
}

.hero-logo-wrapper::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(45deg, var(--gold), var(--primary-green), var(--gold-light), var(--primary-green-light));
    background-size: 300% 300%;
    animation: gradientBorder 4s ease infinite;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
}

@keyframes gradientBorder {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* ===== Mouse Trail Effect Container ===== */
.cursor-trail {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    mix-blend-mode: difference;
    background: var(--gold);
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
    opacity: 0;
}

body:hover .cursor-trail {
    opacity: 0.5;
}

/* ===== Mobile Responsive Additions ===== */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        width: 55px;
        height: 55px;
    }

    .whatsapp-float::before {
        display: none;
    }

    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .cursor-trail {
        display: none;
    }
}

/* ====================================================================
   PREMIUM ENHANCEMENTS - STUNNING VISUAL EFFECTS
   ==================================================================== */

/* ===== Text Gradient Animation ===== */
.hero-title-main {
    background: linear-gradient(90deg, #ffffff 0%, var(--gold-light) 25%, #ffffff 50%, var(--gold-light) 75%, #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShimmer 4s linear infinite;
}

@keyframes textShimmer {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

/* ===== Glowing Hero Section ===== */
.hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(ellipse at center, rgba(212, 165, 55, 0.15) 0%, transparent 70%);
    z-index: -1;
    animation: heroGlow 5s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* ===== Premium Button Styles ===== */
.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 50%, var(--gold) 100%);
    background-size: 200% auto;
    box-shadow: 0 8px 25px rgba(212, 165, 55, 0.3),
        0 3px 10px rgba(0, 0, 0, 0.1),
        inset 0 -2px 0 rgba(0, 0, 0, 0.1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    background-position: right center;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(212, 165, 55, 0.4),
        0 5px 15px rgba(0, 0, 0, 0.15),
        var(--shadow-glow-gold);
}

.btn-secondary {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ===== Premium Card 3D Effects ===== */
.product-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--off-white) 100%);
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: var(--transition-elastic);
}

.product-card:hover {
    transform: translateY(-12px) rotateX(2deg) rotateY(-2deg);
    box-shadow: var(--shadow-3d),
        0 0 30px rgba(45, 95, 62, 0.1);
}

.product-card::before {
    background: linear-gradient(135deg, transparent 0%, rgba(212, 165, 55, 0.2) 50%, transparent 100%);
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
}

.product-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, transparent 60%, rgba(45, 95, 62, 0.05) 100%);
    z-index: 2;
    transition: var(--transition);
}

.product-card:hover .product-image-wrapper::before {
    background: linear-gradient(180deg, rgba(212, 165, 55, 0.1) 0%, transparent 30%, rgba(45, 95, 62, 0.1) 100%);
}

/* ===== Glassmorphism About Cards ===== */
.about-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.95) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transform-style: preserve-3d;
    transition: var(--transition-elastic);
}

.about-card:hover {
    transform: translateY(-10px) rotateX(2deg);
    box-shadow: var(--shadow-3d),
        0 0 40px rgba(45, 95, 62, 0.1);
    border-color: var(--gold-light);
}

.about-icon {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 50%, var(--primary-green) 100%);
    background-size: 200% auto;
    box-shadow: 0 8px 20px rgba(45, 95, 62, 0.3);
    transition: var(--transition-bounce);
}

.about-card:hover .about-icon {
    background-position: right center;
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 30px rgba(45, 95, 62, 0.4);
}

/* ===== Vision Cards Premium Glass Effect ===== */
.vision-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: var(--transition-elastic);
    position: relative;
    overflow: hidden;
}

.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.vision-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(212, 165, 55, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15),
        0 0 30px rgba(212, 165, 55, 0.15);
}

.vision-card.vision-primary {
    background: linear-gradient(135deg, rgba(212, 165, 55, 0.2) 0%, rgba(212, 165, 55, 0.1) 100%);
    border-color: rgba(212, 165, 55, 0.4);
}

.vision-card.vision-primary:hover {
    background: linear-gradient(135deg, rgba(212, 165, 55, 0.3) 0%, rgba(212, 165, 55, 0.15) 100%);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2),
        var(--shadow-glow-gold);
}

/* ===== Feature Items Glow Effect ===== */
.feature-item {
    background: linear-gradient(135deg, var(--white) 0%, var(--off-white) 100%);
    border: 1px solid transparent;
    transition: var(--transition-elastic);
    position: relative;
    overflow: hidden;
}

.feature-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--gold), var(--primary-green));
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

.feature-item:hover::after {
    width: 80%;
}

.feature-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-3d);
    border-color: var(--gold-light);
}

.feature-icon {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 50%, var(--gold) 100%);
    background-size: 200% auto;
    box-shadow: 0 10px 25px rgba(45, 95, 62, 0.3);
    animation: featureGlow 3s ease-in-out infinite;
    transition: var(--transition-bounce);
}

.feature-item:hover .feature-icon {
    background-position: right center;
    transform: scale(1.15) rotate(10deg);
    animation: none;
}

@keyframes featureGlow {

    0%,
    100% {
        box-shadow: 0 10px 25px rgba(45, 95, 62, 0.3);
    }

    50% {
        box-shadow: 0 10px 35px rgba(45, 95, 62, 0.5), 0 0 20px rgba(212, 165, 55, 0.2);
    }
}

/* ===== Navigation Premium Effects ===== */
.navbar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(45, 95, 62, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08), 0 0 50px rgba(45, 95, 62, 0.05);
}

.nav-link {
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 95, 62, 0.1) 0%, rgba(212, 165, 55, 0.1) 100%);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    border-radius: 8px;
    z-index: -1;
}

.nav-link:hover::before {
    transform: translateX(0);
}

/* ===== Contact Section Premium ===== */
.contact-item {
    background: linear-gradient(135deg, var(--white) 0%, var(--off-white) 100%);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid var(--light-gray);
    transition: var(--transition-elastic);
}

.contact-item:hover {
    transform: translateX(-10px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold-light);
}

.contact-icon {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 50%, var(--gold) 100%);
    background-size: 200% auto;
    box-shadow: 0 8px 20px rgba(45, 95, 62, 0.25);
    transition: var(--transition-bounce);
}

.contact-item:hover .contact-icon {
    background-position: right center;
    transform: scale(1.1) rotate(-5deg);
}

/* ===== Premium Section Badges ===== */
.section-badge {
    background: linear-gradient(135deg, rgba(45, 95, 62, 0.1) 0%, rgba(212, 165, 55, 0.1) 100%);
    border: 1px solid rgba(45, 95, 62, 0.2);
    box-shadow: 0 4px 15px rgba(45, 95, 62, 0.1);
    position: relative;
    overflow: hidden;
}

.section-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: badgeShine 3s infinite;
}

@keyframes badgeShine {

    0%,
    100% {
        left: -100%;
    }

    50% {
        left: 100%;
    }
}

/* ===== Footer Premium Styling ===== */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 50%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.social-links a {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-bounce);
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-color: var(--gold);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(212, 165, 55, 0.4);
}

/* ===== Animated Background Mesh ===== */
.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(212, 165, 55, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(61, 122, 82, 0.1) 0%, transparent 50%);
    animation: meshMove 15s ease-in-out infinite alternate;
}

@keyframes meshMove {
    0% {
        background-position: 0% 0%, 100% 100%, 50% 50%;
    }

    100% {
        background-position: 100% 100%, 0% 0%, 50% 20%;
    }
}

/* ===== Stats Counter Glow ===== */
.stat-number {
    text-shadow: 0 0 20px var(--gold-glow), 0 0 40px rgba(212, 165, 55, 0.2);
    transition: var(--transition);
}

.stat-item:hover .stat-number {
    text-shadow: 0 0 30px var(--gold-glow), 0 0 60px rgba(212, 165, 55, 0.4);
    transform: scale(1.05);
}

/* ===== Category Buttons Premium ===== */
.category-btn {
    background: linear-gradient(135deg, var(--white) 0%, var(--off-white) 100%);
    border: 2px solid var(--light-gray);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.category-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(45, 95, 62, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

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

.category-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(45, 95, 62, 0.15);
    border-color: var(--primary-green-light);
}

.category-btn.active {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 50%, var(--primary-green) 100%);
    background-size: 200% auto;
    border-color: var(--primary-green);
    box-shadow: 0 8px 25px rgba(45, 95, 62, 0.4);
    animation: activeBtn 2s ease infinite;
}

@keyframes activeBtn {

    0%,
    100% {
        background-position: left center;
    }

    50% {
        background-position: right center;
    }
}

/* ===== Enhanced WhatsApp Button ===== */
.whatsapp-float {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 50%, #25D366 100%);
    background-size: 200% auto;
    animation: whatsappGlow 3s ease-in-out infinite;
}

@keyframes whatsappGlow {

    0%,
    100% {
        background-position: left center;
        box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    }

    50% {
        background-position: right center;
        box-shadow: 0 6px 35px rgba(37, 211, 102, 0.6), 0 0 20px rgba(37, 211, 102, 0.3);
    }
}

/* ===== Scroll Top Premium ===== */
.scroll-top {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 50%, var(--primary-green) 100%);
    background-size: 200% auto;
}

.scroll-top:hover {
    background-position: right center;
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 15px 40px rgba(45, 95, 62, 0.5);
}

/* ===== Section Dividers ===== */
section:not(.hero)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--primary-green), var(--gold), transparent);
    opacity: 0.5;
}

/* ===== Product Badge Shine ===== */
.product-badge {
    position: relative;
    overflow: hidden;
}

.product-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: badgeGlow 2s infinite;
}

@keyframes badgeGlow {

    0%,
    100% {
        left: -100%;
    }

    50%,
    60% {
        left: 100%;
    }
}

/* ===== Improved Loading Screen ===== */
.loader-wrapper {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 50%, #0a1f12 100%);
}

.loader-logo {
    filter: drop-shadow(0 10px 30px rgba(212, 165, 55, 0.4));
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top-color: var(--gold);
    border-right-color: var(--gold-light);
    box-shadow: 0 0 30px rgba(212, 165, 55, 0.3);
}

/* ===== Hero Logo 3D Effect ===== */
.hero-logo {
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3)) drop-shadow(0 0 30px rgba(212, 165, 55, 0.2));
    animation: heroLogoFloat 4s ease-in-out infinite;
}

@keyframes heroLogoFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ===== Smooth Page Transitions ===== */
body.loaded {
    animation: pageLoad 0.5s ease-out;
}

@keyframes pageLoad {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ===== Selection Styling ===== */
::selection {
    background: var(--gold);
    color: var(--white);
}

::-moz-selection {
    background: var(--gold);
    color: var(--white);
}

/* ===== Scrollbar Styling ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--off-white);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-green), var(--primary-green-light));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--gold), var(--gold-dark));
}