/* ================================================================ */
/* IMPORT الخطوط الفاخرة */
/* ================================================================ */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;800;900&family=Playfair+Display:wght@400;700;900&display=swap');

/* ================================================================ */
/* VARIABLES - ثوابت التصميم الذهبية */
/* ================================================================ */
:root {
    --primary: #2d5a27;
    --primary-dark: #1a3a16;
    --primary-light: #4a8a42;
    --gold: #d4a843;
    --gold-light: #f0d894;
    --gold-glow: rgba(212, 168, 67, 0.4);
    --gold-glow-strong: rgba(212, 168, 67, 0.6);
    --white: #ffffff;
    --black: #0a0d0a;
    --dark-bg: #0a0d0a;
    --light-bg: #f5f8f4;
    --gray-text: #4a5e47;
    --shadow: 0 25px 60px rgba(0,0,0,0.12);
    --shadow-glow: 0 25px 60px rgba(212, 168, 67, 0.2);
    --shadow-dark: 0 25px 60px rgba(0,0,0,0.4);
    --radius: 20px;
    --radius-sm: 12px;
    --transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    --font-ar: 'Cairo', 'Segoe UI', sans-serif;
    --font-en: 'Playfair Display', 'Times New Roman', serif;
}

/* ================================================================ */
/* RESET & BASE */
/* ================================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-ar);
    background: var(--white);
    color: var(--black);
    line-height: 1.8;
    overflow-x: hidden;
    cursor: none;
}

.container {
    width: 92%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 15px 0;
    position: relative;
    z-index: 2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

/* ================================================================ */
/* PRELOADER - شاشة التحميل */
/* ================================================================ */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    z-index: 999999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-ring {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.loader-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 6px solid var(--gold);
    border-radius: 50%;
    animation: loaderRing 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: var(--gold) transparent transparent transparent;
}

.loader-ring div:nth-child(1) { animation-delay: -0.45s; }
.loader-ring div:nth-child(2) { animation-delay: -0.3s; }
.loader-ring div:nth-child(3) { animation-delay: -0.15s; }

@keyframes loaderRing {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loader-text {
    margin-top: 25px;
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: 5px;
    animation: loaderPulse 1.5s ease-in-out infinite;
}

@keyframes loaderPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.9); }
}

/* ================================================================ */
/* CURSOR مخصص فاخر */
/* ================================================================ */
.custom-cursor {
    width: 40px;
    height: 40px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    transition: all 0.15s ease;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 30px var(--gold-glow);
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    transition: all 0.05s ease;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px var(--gold-glow-strong);
}

body:hover .custom-cursor {
    opacity: 1;
}

@media (max-width: 768px) {
    .custom-cursor, .cursor-dot {
        display: none;
    }
    body { cursor: auto; }
}

/* ================================================================ */
/* PARTICLES BACKGROUND */
/* ================================================================ */
#particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

/* ================================================================ */
/* SELECTION */
/* ================================================================ */
::selection {
    background: var(--gold);
    color: var(--white);
}

/* ================================================================ */
/* SCROLLBAR */
/* ================================================================ */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--dark-bg);
}
::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
    box-shadow: 0 0 20px var(--gold-glow);
}

/* ================================================================ */
/* TYPOGRAPHY & BUTTONS */
/* ================================================================ */
.gold-text {
    color: var(--gold);
    text-shadow: 0 0 30px var(--gold-glow);
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--white);
    padding: 5px 25px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
    box-shadow: 0 0 30px var(--gold-glow);
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--gray-text);
    max-width: 600px;
    margin: 0 auto;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(45, 90, 39, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::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: var(--transition);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(45, 90, 39, 0.4);
}

.btn-glow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--white);
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid rgba(255,255,255,0.3);
    transition: var(--transition);
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.btn-glow:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 0 40px var(--gold-glow);
}

/* ================================================================ */
/* HEADER - الهيدر الفاخر */
/* ================================================================ */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    padding: 10px 0;
    transition: var(--transition);
    background: rgba(10, 13, 10, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 168, 67, 0.1);
}

header.scrolled {
    background: rgba(10, 13, 10, 0.95);
    box-shadow: 0 5px 40px rgba(0,0,0,0.5);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 50px;
    filter: brightness(0) invert(1);
    transition: var(--transition);
}

.logo:hover img {
    filter: brightness(0) invert(1) drop-shadow(0 0 20px var(--gold-glow));
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-ar {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 2px;
}

.logo-en {
    font-family: var(--font-en);
    font-size: 0.7rem;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* ================================================================ */
/* MAIN NAV */
/* ================================================================ */
.main-nav {
    display: flex;
    gap: 25px;
    align-items: center;
}

.main-nav > li > a {
    color: rgba(255,255,255,0.7);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 6px 0;
    position: relative;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.main-nav > li > a i {
    font-size: 0.8rem;
    opacity: 0.5;
}

.main-nav > li > a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
    box-shadow: 0 0 20px var(--gold-glow);
}

.main-nav > li > a:hover,
.main-nav > li > a.active {
    color: var(--white);
}

.main-nav > li > a:hover::after,
.main-nav > li > a.active::after {
    width: 100%;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 40px;
    right: 0;
    background: rgba(10, 13, 10, 0.95);
    backdrop-filter: blur(20px);
    min-width: 220px;
    padding: 15px 0;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(212, 168, 67, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
    box-shadow: var(--shadow-dark);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 8px 25px;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
    transition: var(--transition);
    border-right: 3px solid transparent;
}

.dropdown-menu li a:hover {
    color: var(--gold);
    padding-right: 30px;
    border-right-color: var(--gold);
}

/* NAV ACTIONS */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.language-switch {
    color: rgba(255,255,255,0.6);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
}

.language-switch .active {
    color: var(--gold);
    cursor: pointer;
}

.language-switch .divider {
    margin: 0 5px;
    color: rgba(255,255,255,0.2);
}

.language-switch a {
    color: rgba(255,255,255,0.6);
    cursor: pointer;
}

.language-switch a:hover {
    color: var(--white);
}

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--white);
    border-radius: 10px;
    transition: var(--transition);
}

.hamburger:hover span {
    background: var(--gold);
}

/* ================================================================ */
/* HERO - البانر الرئيسي الفاخر */
/* ================================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--dark-bg);
    overflow: hidden;
    padding: 120px 0 60px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 30%, rgba(212, 168, 67, 0.08) 0%, transparent 70%);
    z-index: 1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    z-index: 2;
    position: relative;
}

.hero-content {
    z-index: 3;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 168, 67, 0.15);
    border: 1px solid rgba(212, 168, 67, 0.2);
    color: var(--gold);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--white);
}

.hero-content h1 .gold-text {
    display: inline-block;
    animation: goldPulse 3s ease-in-out infinite;
}

@keyframes goldPulse {
    0%, 100% { text-shadow: 0 0 30px var(--gold-glow); }
    50% { text-shadow: 0 0 60px var(--gold-glow), 0 0 100px rgba(212, 168, 67, 0.2); }
}

.hero-title-line {
    display: block;
    font-size: 2.5rem;
    color: rgba(255,255,255,0.5);
    font-weight: 300;
}

.hero-content h2 {
    font-size: 1.6rem;
    color: rgba(255,255,255,0.7);
    font-weight: 400;
    margin-top: 5px;
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.6);
    max-width: 500px;
    line-height: 1.9;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.hero-stat .number {
    display: block;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--white);
}

.hero-stat .label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
}

/* HERO VISUAL */
.hero-visual {
    position: relative;
    z-index: 3;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.hero-image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.floating-badge {
    position: absolute;
    background: rgba(10, 13, 10, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 168, 67, 0.2);
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 600;
    animation: floatBadge 3s ease-in-out infinite;
    box-shadow: var(--shadow-dark);
}

.floating-badge i {
    color: var(--gold);
    font-size: 1.2rem;
}

.badge-1 {
    top: 20px;
    left: 20px;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 20px;
    right: 20px;
    animation-delay: 1.5s;
}

.badge-3 {
    top: 50%;
    right: -20px;
    animation-delay: 3s;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Floating Shapes */
.floating-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(212, 168, 67, 0.05);
    border: 1px solid rgba(212, 168, 67, 0.05);
    animation: floatShape 8s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -50px;
    right: -50px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -30px;
    left: -30px;
    animation-delay: 2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: -20px;
    animation-delay: 4s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: -30px;
    animation-delay: 6s;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(10px, -15px) scale(1.05); }
    66% { transform: translate(-5px, 10px) scale(0.95); }
}

/* SCROLL INDICATOR */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: rgba(255,255,255,0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    letter-spacing: 2px;
    animation: scrollBounce 2s ease-in-out infinite;
    transition: var(--transition);
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ================================================================ */
/* TRUST SECTION */
/* ================================================================ */
.trust-section {
    background: var(--dark-bg);
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.trust-scroll {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 35px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.5);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.trust-item:hover {
    color: var(--gold);
    transform: scale(1.05);
}

.trust-item i {
    color: var(--gold);
    font-size: 1.2rem;
}

/* ================================================================ */
/* ABOUT - من نحن */
/* ================================================================ */
.about {
    padding: 100px 0;
    background: var(--white);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.image-container img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    display: block;
}

.image-experience {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 20px 30px;
    border-radius: var(--radius-sm);
    text-align: center;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.image-experience span {
    display: block;
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1;
}

.image-experience p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.about-content .about-desc {
    color: var(--gray-text);
    margin-bottom: 18px;
    font-size: 1.05rem;
}

.about-content .about-desc strong {
    color: var(--primary);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 25px 0 30px;
}

.about-feature {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 12px 15px;
    background: var(--light-bg);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.about-feature:hover {
    transform: translateX(-5px);
    box-shadow: var(--shadow);
}

.about-feature i {
    color: var(--gold);
    font-size: 1.3rem;
    margin-top: 3px;
}

.about-feature h4 {
    font-size: 0.95rem;
    color: var(--primary-dark);
}

.about-feature p {
    font-size: 0.85rem;
    color: var(--gray-text);
}

/* ================================================================ */
/* STATS SECTION - الإحصائيات */
/* ================================================================ */
.stats-section {
    background: var(--primary-dark);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(212,168,67,0.05) 0%, transparent 70%);
    animation: rotateBg 30s linear infinite;
}

@keyframes rotateBg {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 25px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.stat-item {
    color: var(--white);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 8px;
}

.stat-number {
    display: block;
    font-size: 3.2rem;
    font-weight: 900;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.7;
}

/* ================================================================ */
/* PRODUCTS - المنتجات بسلايدر */
/* ================================================================ */
.products {
    padding: 100px 0 80px;
    background: var(--light-bg);
}

.products-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 30px;
    border-radius: 50px;
    border: 2px solid rgba(45, 90, 39, 0.15);
    background: transparent;
    color: var(--gray-text);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 8px 25px rgba(45, 90, 39, 0.2);
}

.products-slider-wrapper {
    padding: 0 20px;
}

.products-swiper {
    padding: 20px 0 60px;
}

.swiper-slide {
    height: auto;
}

.product-card-swiper {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0,0,0,0.04);
}

.product-card-swiper:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-glow);
    border-color: var(--gold-light);
}

.product-card-swiper .product-image {
    position: relative;
    background: #f5f8f4;
    aspect-ratio: 4/3; /* نسبة عرض:ارتفاع 4:3 */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-swiper .product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
    padding: 10px;
}

.product-card-swiper:hover .product-image img {
    transform: scale(1.1);
}

.product-card-swiper .product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--white);
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(212, 168, 67, 0.3);
}

.product-card-swiper .product-info {
    padding: 20px 22px;
}

.product-card-swiper .product-info h4 {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.product-card-swiper .product-info .product-category {
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-card-swiper .product-info p {
    color: var(--gray-text);
    font-size: 0.9rem;
    margin-top: 6px;
}

/* Swiper buttons */
.swiper-button-next,
.swiper-button-prev {
    color: var(--gold);
    background: rgba(255,255,255,0.95);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--gold);
    color: var(--white);
    box-shadow: 0 0 30px var(--gold-glow);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.2rem;
}

.swiper-pagination-bullet {
    background: var(--gray-text);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--gold);
    opacity: 1;
    box-shadow: 0 0 20px var(--gold-glow);
}

/* ================================================================ */
/* QUALITY - الجودة */
/* ================================================================ */
.quality {
    padding: 100px 0;
    background: var(--white);
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.quality-card {
    background: var(--light-bg);
    padding: 35px 25px;
    border-radius: var(--radius);
    text-align: center;
    position: relative;
    transition: var(--transition);
    border: 1px solid transparent;
}

.quality-card:hover {
    border-color: var(--gold-light);
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
}

.quality-number {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(212, 168, 67, 0.3);
}

.quality-icon {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.quality-card h4 {
    font-size: 1.15rem;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.quality-card p {
    color: var(--gray-text);
    font-size: 0.95rem;
}

.quality-certificates {
    text-align: center;
}

.quality-certificates h3 {
    font-size: 1.6rem;
    color: var(--primary-dark);
    margin-bottom: 25px;
}

.certificates-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.certificate {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--light-bg);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    color: var(--primary-dark);
    transition: var(--transition);
    border: 1px solid transparent;
}

.certificate i {
    color: var(--gold);
    font-size: 1.2rem;
}

.certificate:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--gold);
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(45, 90, 39, 0.2);
}

.certificate:hover i {
    color: var(--white);
}

/* ================================================================ */
/* EXPORT - التصدير */
/* ================================================================ */
.export {
    padding: 100px 0;
    background: var(--light-bg);
}

.export-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.export-item {
    display: flex;
    gap: 18px;
    margin-bottom: 25px;
    padding: 15px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.export-item:hover {
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateX(-5px);
}

.export-icon {
    font-size: 2rem;
    color: var(--gold);
    min-width: 50px;
    text-align: center;
}

.export-item h4 {
    color: var(--primary-dark);
    font-size: 1.1rem;
}

.export-item p {
    color: var(--gray-text);
}

.export-visual {
    position: relative;
}

.export-map-container {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}

.export-map-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.export-stats-overlay {
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;
    display: flex;
    gap: 20px;
}

.export-stat {
    background: rgba(10, 13, 10, 0.85);
    backdrop-filter: blur(20px);
    padding: 15px 25px;
    border-radius: var(--radius-sm);
    text-align: center;
    flex: 1;
    color: var(--white);
    border: 1px solid rgba(212, 168, 67, 0.1);
}

.export-stat span {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
}

.export-stat p {
    margin: 0;
    font-size: 0.85rem;
    opacity: 0.7;
}

/* ================================================================ */
/* NEWSLETTER - النشرة البريدية */
/* ================================================================ */
.newsletter {
    background: var(--primary-dark);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212,168,67,0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.newsletter-content {
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 2;
}

.newsletter-content h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.newsletter-content h3 .gold-text {
    text-shadow: 0 0 40px var(--gold-glow);
}

.newsletter-content p {
    opacity: 0.7;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 12px;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 24px;
    border-radius: 50px;
    border: none;
    font-size: 1rem;
    background: rgba(255,255,255,0.08);
    color: var(--white);
    transition: var(--transition);
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.3);
}

.newsletter-form input:focus {
    outline: none;
    background: rgba(255,255,255,0.15);
    box-shadow: 0 0 30px var(--gold-glow);
}

.newsletter-form button {
    padding: 16px 35px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px var(--gold-glow);
}

/* ================================================================ */
/* CONTACT - اتصل بنا */
/* ================================================================ */
.contact {
    padding: 100px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-card {
    display: flex;
    gap: 18px;
    padding: 20px;
    background: var(--light-bg);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateX(-5px);
    box-shadow: var(--shadow);
}

.contact-card i {
    font-size: 1.8rem;
    color: var(--gold);
    min-width: 45px;
    text-align: center;
    margin-top: 3px;
}

.contact-card h4 {
    color: var(--primary-dark);
    font-size: 1rem;
}

.contact-card p {
    color: var(--gray-text);
    margin: 0;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--light-bg);
    border-radius: 50%;
    font-size: 1.2rem;
    color: var(--primary);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(45, 90, 39, 0.2);
}

.working-hours {
    padding: 20px;
    background: var(--light-bg);
    border-radius: var(--radius-sm);
}

.working-hours h4 {
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.working-hours p {
    color: var(--gray-text);
    margin: 5px 0;
}

.working-hours i {
    color: var(--gold);
    margin-left: 10px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 16px 20px;
    border: 2px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--light-bg);
    width: 100%;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--gold);
    background: var(--white);
    outline: none;
    box-shadow: 0 0 0 5px var(--gold-glow);
}

/* ================================================================ */
/* FOOTER - الفوتر الفاخر */
/* ================================================================ */
footer {
    background: var(--dark-bg);
    color: rgba(255,255,255,0.6);
    padding: 70px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand img {
    height: 50px;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    max-width: 300px;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 168, 67, 0.3);
}

footer h4 {
    color: var(--white);
    margin-bottom: 18px;
    font-size: 1.1rem;
}

footer ul li {
    margin-bottom: 10px;
}

footer ul li a {
    transition: var(--transition);
}

footer ul li a:hover {
    color: var(--gold);
    padding-right: 5px;
}

footer .footer-contact p {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

footer .footer-contact i {
    color: var(--gold);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.9rem;
}

.footer-bottom span {
    color: var(--gold);
    font-weight: 700;
}

/* ================================================================ */
/* RESPONSIVE - استجابة كاملة */
/* ================================================================ */
@media (max-width: 1200px) {
    .quality-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .about-wrapper {
        grid-template-columns: 1fr;
    }
    
    .export-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-content h1 {
        font-size: 3.2rem;
    }
    
    .hero-content h2 {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: rgba(10, 13, 10, 0.98);
        backdrop-filter: blur(20px);
        padding: 80px 30px 30px;
        gap: 15px;
        transition: all 0.4s ease;
        box-shadow: -10px 0 40px rgba(0,0,0,0.5);
        z-index: 9999;
        overflow-y: auto;
    }
    
    .main-nav.open {
        display: flex;
        right: 0;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        border: none;
        padding: 10px 20px;
    }
    
    .hero-content h1 {
        font-size: 2.6rem;
    }
    
    .hero-title-line {
        font-size: 1.6rem;
    }
    
    .hero-image-wrapper img {
        height: 300px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .quality-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .products-slider-wrapper {
        padding: 0;
    }
    
    .floating-badge {
        display: none;
    }
    
    .hero-stats {
        gap: 25px;
    }
    
    .hero-stat .number {
        font-size: 1.6rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .export-stats-overlay {
        flex-direction: column;
        position: relative;
        bottom: 0;
        left: 0;
        right: 0;
        margin-top: -20px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-title-line {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-glow {
        width: 100%;
        justify-content: center;
    }
    
    .quality-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .trust-scroll {
        gap: 15px;
    }
    
    .trust-item {
        font-size: 0.8rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
}
/* ================================================================ */
/* WhatsApp Floating Button - زر واتساب الثابت */
/* ================================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 65px;
    height: 65px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 35px;
    line-height: 65px;
    z-index: 999;
    box-shadow: 0 4px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.12) rotate(-5deg);
    box-shadow: 0 8px 40px rgba(37, 211, 102, 0.6);
    background: #20b858;
    color: #fff;
}

.whatsapp-float i {
    font-size: 36px;
    line-height: 1;
}

/* أداة التلميح (Tooltip) */
.whatsapp-tooltip {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    font-family: 'Cairo', 'Segoe UI', sans-serif;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid rgba(0, 0, 0, 0.85);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    bottom: 75px;
}

/* تأثير النبض */
@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* استجابة للجوال */
@media (max-width: 576px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 28px;
        bottom: 20px;
        left: 20px;
    }
    .whatsapp-float i {
        font-size: 28px;
    }
    .whatsapp-tooltip {
        display: none;
    }
}
/* ================================================================ */
/* FOOTER - الفوتر (النسخة النهائية - موسعة) */
/* ================================================================ */
footer {
    background: var(--dark-bg);
    color: rgba(255,255,255,0.6);
    padding: 60px 0 25px;
    position: relative;
    width: 100%;
    display: block;
    margin: 0;
    clear: both;
    overflow: hidden;
}

/* إجبار الفوتر على أخذ العرض الكامل */
footer .container {
    width: 100%;
    max-width: 100%;
    padding: 0 40px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 30px;
    width: 100%;
}

.footer-grid > div {
    display: flex;
    flex-direction: column;
}

.footer-grid > div ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-grid > div ul li {
    margin-bottom: 8px;
}

.footer-grid > div ul li a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-grid > div ul li a:hover {
    color: var(--gold);
    padding-right: 5px;
}

/* العلامة التجارية */
.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-brand img {
    height: 50px;
    margin-bottom: 12px;
    filter: brightness(0) invert(1);
    width: fit-content;
}

.footer-brand p {
    max-width: 350px;
    font-size: 0.95rem;
    margin-bottom: 15px;
    opacity: 0.8;
    line-height: 1.7;
}

/* أيقونات السوشيال ميديا */
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 5px;
    flex-wrap: wrap;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
    font-size: 1rem;
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 168, 67, 0.3);
}

.footer-social a[style*="background: #25D366"]:hover {
    background: #1da851 !important;
    transform: translateY(-3px) scale(1.05);
}

/* عناوين الفوتر */
footer h4 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 700;
}

/* معلومات التواصل */
.footer-grid > div:last-child p {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.footer-grid > div:last-child i {
    color: var(--gold);
    width: 20px;
    font-size: 1rem;
}

/* أسفل الفوتر */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.85rem;
    opacity: 0.7;
}

.footer-bottom span {
    color: var(--gold);
    font-weight: 700;
}

/* ================================================================ */
/* RESPONSIVE - استجابة الفوتر */
/* ================================================================ */
@media (max-width: 1200px) {
    footer .container {
        padding: 0 30px;
    }
}

@media (max-width: 992px) {
    footer .container {
        padding: 0 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    footer .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        text-align: right;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        align-items: center;
        text-align: center;
    }
    
    .footer-brand p {
        max-width: 100%;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-grid > div:last-child p {
        justify-content: flex-start;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    footer .container {
        padding: 0 15px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .footer-brand {
        grid-column: 1;
    }
    
    .footer-grid > div:last-child p {
        justify-content: center;
    }
    
    footer h4 {
        text-align: center;
    }
    
    .footer-grid > div ul li {
        text-align: center;
    }
}
/* ================================================================ */
/* BULK EXPORT - التصدير بالجملة */
/* ================================================================ */
.bulk-export {
    padding: 80px 0;
    background: var(--light-bg);
    position: relative;
}

/* المميزات */
.bulk-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.bulk-feature {
    background: var(--white);
    padding: 30px 25px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: 1px solid transparent;
}

.bulk-feature:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
    border-color: var(--gold-light);
}

.bulk-feature i {
    font-size: 2.8rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.bulk-feature h4 {
    font-size: 1.15rem;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.bulk-feature p {
    color: var(--gray-text);
    font-size: 0.95rem;
}

/* أنواع الزيتون */
.bulk-olive-types {
    margin-bottom: 60px;
    text-align: center;
}

.bulk-olive-types h3 {
    font-size: 1.6rem;
    color: var(--primary-dark);
    margin-bottom: 25px;
}

.olive-types-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.olive-type {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 12px 25px;
    border-radius: 50px;
    box-shadow: var(--shadow);
    font-weight: 600;
    color: var(--primary-dark);
    transition: var(--transition);
}

.olive-type:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

.olive-type i {
    font-size: 1rem;
}

/* خيارات التغليف */
.bulk-packaging {
    margin-bottom: 60px;
    text-align: center;
}

.bulk-packaging h3 {
    font-size: 1.6rem;
    color: var(--primary-dark);
    margin-bottom: 25px;
}

.packaging-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.packaging-item {
    background: var(--white);
    padding: 30px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    border: 2px solid transparent;
}

.packaging-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    border-color: var(--gold-light);
}

.packaging-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.packaging-weight {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-dark);
}

.packaging-type {
    display: block;
    font-size: 1rem;
    color: var(--gray-text);
    margin: 5px 0;
}

.packaging-net {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    padding: 2px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

/* المقاسات */
.bulk-sizes {
    margin-bottom: 60px;
    text-align: center;
}

.bulk-sizes h3 {
    font-size: 1.6rem;
    color: var(--primary-dark);
    margin-bottom: 25px;
}

.sizes-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.size-item {
    background: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    box-shadow: var(--shadow);
    font-weight: 700;
    color: var(--primary-dark);
    transition: var(--transition);
    font-size: 1.05rem;
    border: 1px solid rgba(0,0,0,0.04);
}

.size-item:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(45, 90, 39, 0.2);
}

/* مراحل التجهيز */
.bulk-process {
    margin-bottom: 40px;
}

.process-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--white);
    padding: 20px 25px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    min-width: 120px;
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.step-icon {
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 8px;
}

.process-step span {
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 0.95rem;
}

.process-arrow {
    font-size: 1.5rem;
    color: var(--gold);
    opacity: 0.5;
}

/* زر التواصل */
.bulk-cta {
    text-align: center;
    margin-top: 20px;
}

/* استجابة للجوال */
@media (max-width: 992px) {
    .bulk-features {
        grid-template-columns: repeat(2, 1fr);
    }
    .packaging-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .bulk-features {
        grid-template-columns: 1fr;
    }
    .packaging-grid {
        grid-template-columns: 1fr;
    }
    .olive-types-grid {
        flex-direction: column;
        align-items: center;
    }
    .process-steps {
        flex-direction: column;
    }
    .process-arrow {
        transform: rotate(90deg);
    }
    .sizes-grid {
        gap: 10px;
    }
    .size-item {
        padding: 8px 18px;
        font-size: 0.9rem;
    }
}
/* ================================================================ */
/* إصلاح مشكلة المساحة البيضاء والعرض على الموبايل */
/* ================================================================ */

/* 1. منع أي overflow جانبي */
html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* 2. إجبار كل العناصر على أخذ العرض الكامل */
* {
    max-width: 100%;
    box-sizing: border-box;
}

/* 3. إصلاح الـ container على الموبايل */
@media (max-width: 768px) {
    .container {
        width: 100%;
        max-width: 100%;
        padding: 10px 15px !important;
        margin: 0 auto;
        overflow: hidden;
    }
}

/* 4. إصلاح أي عنصر فيه padding زايد */
@media (max-width: 768px) {
    .hero-container,
    .about-wrapper,
    .export-grid,
    .contact-grid,
    .footer-grid,
    .bulk-features,
    .packaging-grid,
    .quality-grid,
    .blog-grid {
        padding: 0 5px !important;
        margin: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* 5. إصلاح العناصر اللي بتتعدى العرض */
@media (max-width: 768px) {
    img {
        max-width: 100% !important;
        height: auto !important;
    }
    
    .hero-image-wrapper img {
        height: 250px !important;
        object-fit: cover;
    }
    
    .floating-badge {
        display: none !important;
    }
    
    .floating-shapes {
        display: none !important;
    }
}

/* 6. إصلاح الـ stats-grid */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
        padding: 0 5px !important;
    }
    
    .stat-number {
        font-size: 1.8rem !important;
    }
}

/* 7. إصلاح الـ bulk-export على الموبايل */
@media (max-width: 768px) {
    .bulk-export {
        padding: 40px 0 !important;
    }
    
    .bulk-features {
        grid-template-columns: 1fr 1fr !important;
        gap: 15px !important;
    }
    
    .bulk-feature {
        padding: 15px !important;
    }
    
    .bulk-feature i {
        font-size: 2rem !important;
    }
    
    .olive-types-grid {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 10px !important;
    }
    
    .olive-type {
        padding: 8px 16px !important;
        font-size: 0.85rem !important;
    }
    
    .packaging-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    .packaging-item {
        padding: 20px !important;
    }
    
    .packaging-weight {
        font-size: 1.5rem !important;
    }
    
    .sizes-grid {
        gap: 8px !important;
    }
    
    .size-item {
        padding: 6px 14px !important;
        font-size: 0.85rem !important;
    }
    
    .process-steps {
        flex-direction: column !important;
        gap: 5px !important;
    }
    
    .process-arrow {
        transform: rotate(90deg) !important;
    }
}

/* 8. إصلاح الـ hero على الموبايل */
@media (max-width: 768px) {
    .hero {
        padding: 100px 0 40px !important;
        min-height: auto !important;
    }
    
    .hero-container {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        text-align: center !important;
    }
    
    .hero-content h1 {
        font-size: 2.2rem !important;
    }
    
    .hero-title-line {
        font-size: 1.2rem !important;
    }
    
    .hero-content h2 {
        font-size: 1rem !important;
    }
    
    .hero-desc {
        font-size: 0.95rem !important;
        padding: 0 5px !important;
    }
    
    .hero-stats {
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 15px !important;
    }
    
    .hero-stat .number {
        font-size: 1.4rem !important;
    }
    
    .hero-buttons {
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .btn-primary,
    .btn-glow {
        width: 100% !important;
        justify-content: center !important;
        padding: 12px 20px !important;
        font-size: 0.9rem !important;
    }
}

/* 9. إصلاح الـ about على الموبايل */
@media (max-width: 768px) {
    .about {
        padding: 40px 0 !important;
    }
    
    .about-wrapper {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .image-container img {
        height: 300px !important;
    }
    
    .image-experience {
        padding: 10px 20px !important;
    }
    
    .image-experience span {
        font-size: 2rem !important;
    }
}

/* 10. إصلاح الـ quality على الموبايل */
@media (max-width: 768px) {
    .quality {
        padding: 40px 0 !important;
    }
    
    .quality-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 15px !important;
    }
    
    .quality-card {
        padding: 20px 15px !important;
    }
    
    .quality-icon {
        font-size: 2rem !important;
    }
}

/* 11. إصلاح الـ blog على الموبايل */
@media (max-width: 768px) {
    .blog {
        padding: 40px 0 !important;
    }
    
    .blog-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
}

/* 12. إصلاح الـ contact على الموبايل */
@media (max-width: 768px) {
    .contact {
        padding: 40px 0 !important;
    }
    
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .form-row {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
}

/* 13. إصلاح الـ newsletter على الموبايل */
@media (max-width: 768px) {
    .newsletter {
        padding: 40px 0 !important;
    }
    
    .newsletter-content h3 {
        font-size: 1.5rem !important;
    }
    
    .newsletter-form {
        flex-direction: column !important;
        padding: 0 10px !important;
    }
    
    .newsletter-form button {
        width: 100% !important;
    }
}

/* 14. إصلاح الـ trust-section على الموبايل */
@media (max-width: 768px) {
    .trust-section {
        padding: 15px 0 !important;
    }
    
    .trust-scroll {
        gap: 12px !important;
    }
    
    .trust-item {
        font-size: 0.75rem !important;
    }
}

/* 15. إصلاح الـ whatsapp-float على الموبايل */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px !important;
        height: 50px !important;
        font-size: 24px !important;
        bottom: 15px !important;
        left: 15px !important;
    }
    
    .whatsapp-float i {
        font-size: 24px !important;
    }
    
    .whatsapp-tooltip {
        display: none !important;
    }
}
/* ================================================================ */
/* إصلاح الهيدر الثابت */
/* ================================================================ */

/* 1. إضافة مسافة أعلى الصفحة عشان المحتوى ما يختفيش تحت الهيدر */
body {
    padding-top: 80px;
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
}

/* 2. التأكد من أن الهيدر فوق كل العناصر */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: rgba(10, 13, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(212, 168, 67, 0.1);
}

/* 3. منع تداخل الهيدر مع أي عنصر تاني */
header * {
    z-index: 1;
    position: relative;
}

/* 4. على الموبايل، خلي الهيدر أخف */
@media (max-width: 768px) {
    body {
        padding-top: 65px; /* ارتفاع أقل على الموبايل */
    }
    
    header {
        padding: 5px 0;
    }
    
    .logo img {
        height: 35px !important;
    }
    
    .logo-ar {
        font-size: 1rem !important;
    }
    
    .logo-en {
        font-size: 0.5rem !important;
    }
}

/* 5. إصلاح الـ hero عشان ما يتداخلش مع الهيدر */
.hero {
    padding-top: 30px; /* تقليل padding عشان ما يبقاش في مسافة مزدوجة */
    min-height: auto;
}

@media (max-width: 768px) {
    .hero {
        padding-top: 0;
        min-height: auto;
        padding: 80px 0 40px;
    }
}
/* ================================================================ */
/* HAMBURGER - شكل X عند الفتح */
/* ================================================================ */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px 5px;
    z-index: 99999;
    position: relative;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 10px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.hamburger:hover span {
    background: var(--gold);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
}
