/* ============================================
   Reset & Base Styles - Unique Design
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* 🎨 Natural Color Palette - Green & Orange Theme */
    --primary-green: #2D5A27;
    --primary-green-light: #3d7a35;
    --primary-green-dark: #1e3d1a;
    --primary-orange: #E67E22;
    --primary-orange-light: #f59e4f;
    --primary-orange-dark: #c96a1a;

    /* Background Colors */
    --white: #FFFFFF;
    --light-gray: #F4F4F4;
    --dark-bg: #FFFFFF;
    --darker-bg: #F4F4F4;
    --dark-surface: #FFFFFF;
    --dark-elevated: #F4F4F4;

    /* Glassmorphism */
    --glass-white: rgba(45, 90, 39, 0.1);
    --glass-white-hover: rgba(45, 90, 39, 0.15);
    --glass-border: rgba(45, 90, 39, 0.2);
    --glass-shadow: rgba(0, 0, 0, 0.1);

    /* Accent Colors */
    --accent-green: #2D5A27;
    --accent-orange: #E67E22;
    --glow-green: rgba(45, 90, 39, 0.2);
    --glow-orange: rgba(230, 126, 34, 0.3);

    /* Text Colors */
    --text-primary: #2D5A27;
    --text-secondary: #555555;
    --text-muted: #777777;
    --text-white: #FFFFFF;

    /* Gradients */
--gradient-primary: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
--gradient-secondary: linear-gradient(135deg, var(--primary-green-light) 0%, var(--primary-green) 100%);
    --gradient-mesh: radial-gradient(at 0% 0%, rgba(45, 90, 39, 0.1) 0%, transparent 50%),
        radial-gradient(at 100% 100%, rgba(230, 126, 34, 0.1) 0%, transparent 50%);

    /* Typography - Natural Fonts */
    --font-arabic-heading: 'Cairo', 'Almarai', 'Tajawal', sans-serif;
    --font-arabic: 'Tajawal', 'Cairo', sans-serif;
    --font-english: 'Inter', 'Roboto', sans-serif;

    /* Spacing */
    --section-padding: 120px 0;
    --container-padding: 0 30px;

    /* Transitions & Animations */
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Effects */
    --blur-amount: 20px;
    --shadow-glow: 0 0 30px var(--glow-green), 0 0 60px var(--glow-orange);
    --shadow-elevated: 0 20px 60px rgba(0, 0, 0, 0.5);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-arabic);
    font-weight: 400;
    color: var(--text-primary);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

/* Animated Background Mesh */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-mesh);
    opacity: 0.5;
    z-index: -1;
    animation: meshMove 20s ease-in-out infinite;
}

@keyframes meshMove {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(5%, -5%) scale(1.1);
    }

    66% {
        transform: translate(-5%, 5%) scale(0.9);
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* ============================================
   Navigation - Glassmorphism Dark Mode
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(var(--blur-amount));
    -webkit-backdrop-filter: blur(var(--blur-amount));
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 32px rgba(45, 90, 39, 0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
}

.logo span {
    font-size: 1.8rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    filter: drop-shadow(0 0 20px var(--glow-green));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    position: relative;
    padding: 8px 0;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--glow-green);
}

.nav-link:hover {
    color: var(--accent-green);
    text-shadow: 0 0 20px var(--glow-green);
}

.nav-link:hover::before {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--gradient-primary);
    transition: var(--transition-fast);
    border-radius: 2px;
    box-shadow: 0 0 10px var(--glow-green);
}

.lang-btn {
    background: var(--gradient-primary);
    color: var(--text-white);
    border: none;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-family: var(--font-arabic);
    box-shadow: 0 2px 10px var(--glow-green);
    position: relative;
    overflow: hidden;
}

.lang-btn::before {
    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;
}

.lang-btn:hover::before {
    width: 300px;
    height: 300px;
}

.lang-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 30px var(--glow-orange);
}

/* ============================================
   Hero Section - Split Layout
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: var(--white);
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: var(--gradient-primary);
    opacity: 0.1;
    transform: skewX(-15deg);
    transform-origin: top right;
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.hero-text-side {
    animation: fadeInLeft 0.8s ease;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--glass-white);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-right: 3px solid var(--primary-green);
    border-radius: 0 30px 30px 0;
    margin-bottom: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-green);
    box-shadow: 0 0 20px var(--glow-green);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--primary-green);
    font-family: var(--font-arabic-heading);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-green);
    font-family: var(--font-arabic-heading);
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 16px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    cursor: pointer;
    font-family: var(--font-arabic-heading);
}

.btn-primary {
    background: var(--primary-green);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(45, 90, 39, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(45, 90, 39, 0.4);
    background: var(--primary-green-light);
}

.btn-outline {
    background: var(--white);
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
    box-shadow: 0 2px 10px rgba(45, 90, 39, 0.1);
}

.btn-outline:hover {
    background: var(--primary-green);
    color: var(--text-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(45, 90, 39, 0.3);
}

.hero-stats-inline {
    display: flex;
    gap: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
}

.stat-inline {
    display: flex;
    flex-direction: column;
}

.stat-number-inline {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
    filter: drop-shadow(0 0 20px var(--glow-green));
}

.stat-label-inline {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.hero-visual-side {
    position: relative;
    height: 600px;
    animation: fadeInRight 0.8s ease;
}

.hero-visual-content {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-icon {
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--glass-white);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-green);
    font-size: 2.2rem;
    box-shadow: 0 15px 50px var(--glass-shadow);
    animation: floatIcon 6s ease-in-out infinite;
}

.icon-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.icon-2 {
    bottom: 20%;
    right: 5%;
    animation-delay: 1.5s;
}

.icon-3 {
    top: 50%;
    left: 5%;
    animation-delay: 3s;
}

.icon-4 {
    top: 70%;
    right: 30%;
    animation-delay: 4.5s;
}

.hero-main-visual {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: floatLogo 6s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(45, 90, 39, 0.2));
}

@keyframes floatLogo {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.85rem;
    animation: bounceDown 2s infinite;
}

.scroll-indicator i {
    font-size: 1.2rem;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }

    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes bounceDown {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ============================================
   About Section - Asymmetric Layout
   ============================================ */
.about {
    position: relative;
    padding: var(--section-padding);
    background: var(--light-gray);
    overflow: hidden;
}

.about-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, var(--glow-green) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, var(--glow-orange) 0%, transparent 50%);
    pointer-events: none;
}

.about-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 100px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-image-section {
    position: relative;
}

.about-image-frame {
    position: relative;
    padding: 40px;
    background: linear-gradient(135deg, var(--dark-surface) 0%, var(--dark-elevated) 100%);
    border-radius: 12px;
    transform: rotate(0deg);
    transition: var(--transition-smooth);
}

.about-image-frame:hover {
    transform: scale(1.02);
}

.about-image-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.image-card {
    background: var(--primary-green);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    color: var(--text-white);
    transition: var(--transition-smooth);
}

.image-card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: none;
}

.image-card span {
    font-size: 0.9rem;
    font-weight: 600;
}

.image-card:hover {
    transform: translateY(-10px) scale(1.05);
}

.card-1 {
    grid-column: 1 / -1;
}

.about-text-section {
    position: relative;
}

.section-label {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(45, 90, 39, 0.1);
    color: var(--primary-green);
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-family: var(--font-arabic-heading);
}

.section-title-alt {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-green);
    font-family: var(--font-arabic-heading);
    margin-bottom: 30px;
    line-height: 1.2;
    letter-spacing: -1px;
    text-align: center;
}

.about-text-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 25px;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 40px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.highlight-item i {
    color: var(--primary-green);
    font-size: 1.3rem;
}

.highlight-item span {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* ============================================
   Values Section - Unique Grid
   ============================================ */
.values {
    padding: var(--section-padding);
    background: var(--white);
}

.values-header-section {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-intro {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-top: 20px;
}

.values-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}


.value-item-small {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    border: 2px solid rgba(45, 90, 39, 0.1);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 280px;
}

.value-item-small:hover {
    border-color: var(--primary-green);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(45, 90, 39, 0.15);
}

.value-icon-small {
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.value-item-small h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-green);
    font-family: var(--font-arabic-heading);
    margin-bottom: 15px;
}

.value-item-small p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ============================================
   Services Section - Masonry Style
   ============================================ */
.services {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.services-header-wrapper {
    margin-bottom: 80px;
    text-align: center;
}

.services-grid-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 12px;
    border: 2px solid rgba(45, 90, 39, 0.1);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(45, 90, 39, 0.15);
}

.service-card {
    min-height: 280px;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(45, 90, 39, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 30px;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    background: var(--primary-green);
    color: var(--text-white);
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-green);
    font-family: var(--font-arabic-heading);
    margin-bottom: 20px;
    line-height: 1.3;
}

.service-card p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ============================================
   Products Section - Showcase Layout
   ============================================ */
.products {
    padding: var(--section-padding);
    background: var(--white);
}

.products-header-wrapper {
    margin-bottom: 80px;
    text-align: center;
}

.products-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-item {
    background: var(--white);
    padding: 0;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.product-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-green);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.product-item:hover::after {
    transform: scaleX(1);
}

.product-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(45, 90, 39, 0.2);
    border-color: var(--primary-green);
}


.product-image-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    margin-bottom: 15px;
    border-radius: 12px 12px 0 0;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.product-item:hover .product-image {
    transform: scale(1.08);
}

.product-icon-wrapper {
    width: 50px;
    height: 50px;
    background: rgba(45, 90, 39, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary-green);
    margin: 0 auto 15px;
    transition: var(--transition-smooth);
    position: relative;
    z-index: 1;
}

.product-item:hover .product-icon-wrapper {
    transform: scale(1.15) rotate(10deg);
    background: var(--primary-green);
    color: var(--text-white);
}

.product-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-green);
    font-family: var(--font-arabic-heading);
    margin-bottom: 12px;
    padding: 0 25px;
}

.product-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    padding: 0 25px 25px;
}

/* ============================================
   Why Us Section - Feature Grid
   ============================================ */
.why-us {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.why-us-header-wrapper {
    margin-bottom: 80px;
    text-align: center;
}

.why-us-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 45px 35px;
    border-radius: 12px;
    border: 2px solid rgba(45, 90, 39, 0.1);
    transition: var(--transition-smooth);
    position: relative;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid var(--primary-green);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 0.3;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(45, 90, 39, 0.15);
    border-color: var(--primary-green);
}


.feature-icon-main {
    width: 80px;
    height: 80px;
    background: var(--primary-green);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 2.2rem;
    margin-bottom: 30px;
}

.feature-icon {
    width: 65px;
    height: 65px;
    background: rgba(45, 90, 39, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 1.8rem;
    margin-bottom: 25px;
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon {
    background: var(--primary-green);
    color: var(--text-white);
    transform: scale(1.1);
}

.feature-card h3,
.feature-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    font-family: var(--font-arabic-heading);
    margin-bottom: 15px;
}

.feature-card h4 {
    font-size: 1.3rem;
}

.feature-card p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   Contact Section - Modern Layout
   ============================================ */
.contact {
    padding: var(--section-padding);
    background: var(--white);
}

.contact-header-wrapper {
    margin-bottom: 80px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.contact-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    border: 2px solid rgba(45, 90, 39, 0.1);
    transition: var(--transition-smooth);
}

.contact-item:hover {
    border-color: var(--primary-green);
    transform: translateX(-10px);
    box-shadow: 0 15px 40px rgba(45, 90, 39, 0.15);
}

.contact-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: rgba(45, 90, 39, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 1.8rem;
    transition: var(--transition-smooth);
}

.contact-item:hover .contact-icon {
    background: var(--primary-green);
    color: var(--text-white);
    transform: scale(1.1) rotate(5deg);
}

.contact-details h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-green);
    font-family: var(--font-arabic-heading);
    margin-bottom: 12px;
}

.contact-details a,
.contact-details p {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.contact-details a:hover {
    color: var(--primary-orange);
}

a[href^="tel:"],
.phone-number {
    direction: ltr;
    text-align: left;
    display: inline-block;
    unicode-bidi: embed;
}

.map-container {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

/* ============================================
   Footer - Modern Design
   ============================================ */
.footer {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    color: var(--text-white);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="30" cy="30" r="2"/></g></svg>');
    opacity: 0.5;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.footer-logo-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.footer-logo h3 {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-white);
}

.footer-section p {
    line-height: 1.9;
    margin-bottom: 25px;
    opacity: 0.95;
    font-size: 1.05rem;
    color: var(--text-white);
}

.footer-section h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-white);
    font-family: var(--font-arabic-heading);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 15px;
}

.footer-section ul li a {
    color: var(--text-white);
    text-decoration: none;
    opacity: 0.9;
    transition: var(--transition-fast);
    font-size: 1.05rem;
    display: inline-block;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--primary-orange);
    padding-right: 10px;
    transform: translateX(-5px);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}

.footer-contact i {
    width: 25px;
    font-size: 1.2rem;
    color: var(--text-white);
    opacity: 0.9;
}

.footer-contact a {
    color: var(--text-white);
    opacity: 0.9;
    transition: var(--transition-fast);
}

.footer-contact a:hover {
    color: var(--primary-orange);
    opacity: 1;
}

.footer-contact a[href^="tel:"] {
    direction: ltr;
    text-align: left;
    display: inline-block;
    unicode-bidi: embed;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.95;
    font-size: 1rem;
    position: relative;
    z-index: 1;
    color: var(--text-white);
}

/* ============================================
   Back to Top & WhatsApp
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 55px;
    height: 55px;
    background: var(--primary-green);
    color: var(--text-white);
    border: none;
    border-radius: 12px;
    font-size: 1.3rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 999;
    box-shadow: 0 5px 20px rgba(45, 90, 39, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(45, 90, 39, 0.4);
}

.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 2.2rem;
    text-decoration: none;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    z-index: 998;
    transition: var(--transition-smooth);
    animation: pulseWhatsApp 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp .whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background-color: var(--black);
    color: var(--text-primary);
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 0.95rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    pointer-events: none;
    font-family: var(--font-arabic);
}

.floating-whatsapp .whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-right-color: var(--black);
}

.floating-whatsapp:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 80px;
}

@keyframes pulseWhatsApp {

    0%,
    100% {
        box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 5px 35px rgba(37, 211, 102, 0.6);
    }
}

/* ============================================
   RTL/LTR Support
   ============================================ */
html[dir="ltr"] {
    direction: ltr;
}

html[dir="ltr"] body {
    direction: ltr;
    text-align: left;
    font-family: var(--font-english);
}

html[dir="ltr"] .nav-menu {
    flex-direction: row-reverse;
}

html[dir="ltr"] .hero-container {
    grid-template-columns: 1fr 1.2fr;
}

html[dir="ltr"] .about-content-wrapper {
    grid-template-columns: 1.1fr 1fr;
}

html[dir="ltr"] .nav-link::before {
    left: 0;
    right: auto;
}

html[dir="ltr"] .why-us-item:hover,
html[dir="ltr"] .contact-item:hover {
    transform: translateX(10px);
}

html[dir="ltr"] .back-to-top {
    left: auto;
    right: 30px;
}

html[dir="ltr"] .floating-whatsapp {
    right: auto;
    left: 30px;
}

html[dir="ltr"] .floating-whatsapp .whatsapp-tooltip {
    right: auto;
    left: 75px;
}

html[dir="ltr"] .floating-whatsapp:hover .whatsapp-tooltip {
    left: 80px;
    right: auto;
}

html[dir="ltr"] .floating-whatsapp .whatsapp-tooltip::after {
    right: auto;
    left: -5px;
    border-right-color: transparent;
    border-left-color: var(--black);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1200px) {
    .hero-container {
        gap: 60px;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .about-content-wrapper {
        gap: 60px;
    }

    .values-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        flex-direction: column;
        background: var(--white);
        width: 300px;
        height: 100vh;
        padding: 100px 40px 40px;
        gap: 0;
        transition: var(--transition-smooth);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
        padding: 20px 0;
        border-bottom: 1px solid rgba(30, 111, 92, 0.1);
    }


    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-visual-side {
        height: 400px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .about-content-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image-frame {
        transform: rotate(0deg);
    }

    .products-showcase {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .product-featured {
        grid-column: span 1;
        grid-row: span 1;
    }

    .why-us-features-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .feature-main {
        grid-column: span 1;
        grid-row: span 1;
    }

    .services-grid-masonry {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .service-card {
        grid-row: span 1;
    }

    .values-showcase {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 70px 0;
        --container-padding: 0 20px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-stats-inline {
        flex-direction: column;
        gap: 25px;
    }

    .section-title-alt {
        font-size: 2.2rem;
    }

    .hero-visual-side {
        height: 300px;
    }

    .hero-main-visual {
        width: 300px;
        height: 300px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo span {
        font-size: 1.4rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-title-alt {
        font-size: 1.8rem;
    }

    .btn {
        padding: 14px 30px;
        font-size: 0.9rem;
    }

    .back-to-top {
        width: 50px;
        height: 50px;
        bottom: 20px;
        left: 20px;
    }

    .floating-whatsapp {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
        font-size: 2rem;
    }

    .floating-whatsapp .whatsapp-tooltip {
        display: none;
    }
}


