/* Reset بسيط */

@font-face {
    font-family: "Remachine Script";
    src: url("../fonts/RemachineScript-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Tahoma, sans-serif;
    background: #000;
    color: #f5f5f5;
    position: relative;
    overflow-x: hidden;
}

/* خلفية متحركة بألوان الزيتون */
/* ===== خلفية زيتونية متحركة (Olive Animated Background) ===== */


/* خلفية متحركة بألوان التمر */
.bg-olive {
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 45% 30%, #138b2d 0, #000000 55%),
        radial-gradient(circle at 100% 100%, #03772f 0, #000000 60%);
    background-size: 200% 200%;
    animation: hurma-bg-move 18s ease-in-out infinite alternate;
    opacity: 0.9;
}

@keyframes hurma-bg-move {
    0% {
        background-position: 0% 0%, 100% 100%;
    }
    100% {
        background-position: 100% 100%, 0% 0%;
    }
}



/* الهيدر العلوي */
.top-bar {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 0.9rem 1.8rem;
    background: rgba(0, 0, 0, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-main {
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 1rem;
}

/* .brand-sub {
    font-size: 0.8rem;
    opacity: 0.7;
} */

.brand-home {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

/* شعار Zeytinyağı Dünyası فقط */
.brand-main {
    font-family: "Remachine Script", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 3rem;
    letter-spacing: 0.12em;
    text-transform: none;
    background: linear-gradient(90deg, #05ca57, #025f26);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: normal;
}

.brand-sub {
    font-family: "Calibri", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1rem;
    color: #07c220;
    opacity: 0.9;
    letter-spacing: 2px;
}


/* المنيو */
.top-nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
}

.top-nav a {
    color: #67eb8f;
    text-decoration: none;
    position: relative;
    padding-block: 0.25rem;
}

.top-nav a::after {
    content: "";
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #a8eec5, #03df83);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.18s ease;
}

.top-nav a:hover::after {
    transform: scaleX(1);
}

/* زر عوالمنا */
.worlds-btn-wrap {
    display: flex;
    align-items: center;
}

.worlds-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    border: 4px solid #05832b;
    color: #058826;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    background: white;
    transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.worlds-btn:hover {
    background: #03741b;
    color: #f0ebeb;
    transform: translateY(-1px);
}

/* شريط اللغات – نفس روح الصفحة الرئيسية */
.lang-selector {
    background: #050505;
    padding: 0.45rem 1.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lang-selector ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    justify-content: flex-start;
}

.lang-selector .lang-item {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.28rem 0.6rem;
    border-radius: 999px;
    border: 1px solid transparent;
    text-decoration: none;
    font-size: 0.7rem;
    color: #f5f5f5;
    background: rgba(255, 255, 255, 0.04);
    transition: background 0.2s ease, transform 0.15s ease, border-color 0.2s ease;
}

.lang-selector .lang-item img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.lang-selector .lang-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
}

.lang-selector .lang-item.active {
    border-color: #8fdc7f;
    background: rgba(143, 220, 127, 0.12);
}


main.hero {
    min-height: calc(100vh - 160px);
    display: flex;
    flex-direction: column;
    padding: 2rem 1.5rem 3rem;
}

/* HERO SLIDER */
.hero-slider {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9);
    min-height: 500px;
    max-height: 520px;
}

/* نخفي الراديوز */
.hero-slider input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* الكونتينر بتاع السلايدز */
.hero-slides {
    position: absolute;
    width: 100%;
    height: 100%;
}

/* كل سلايد */
.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 2.5rem 3rem;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.02);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

/* Overlay غامق فوق الصورة */
/* .hero-slide__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.35));
    z-index: 0;
} */

.hero-slide__content {
    position: relative;
    max-width: 520px;
    z-index: 1;
    text-align: right;
    color: rgb(87, 85, 85);
    text-shadow:
        0 0 8px  #fff,
        0 0 16px #fff,
        0 0 24px #fff,
        0 0 32px #fff;
}

.hero-slide__content h1 {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
    color: #000; /* نص أسود زي ما هو */

    /* شادو أبيض قوي حوالين الكلام */
    text-shadow:
        -1px -1px 3px rgba(255, 255, 255, 0.95),
         1px -1px 3px rgba(255, 255, 255, 0.95),
        -1px  1px 3px rgba(255, 255, 255, 0.95),
         1px  1px 3px rgba(255, 255, 255, 0.95),
         0px  0px 10px rgba(255, 255, 255, 0.9);
}


.hero-slide__content p {
    font-size: 1.25rem;
    line-height: 1.9;
    opacity: 1;
    color: #000;

    text-shadow:
        -1px -1px 2px rgba(255, 255, 255, 0.9),
         1px -1px 2px rgba(255, 255, 255, 0.9),
        -1px  1px 2px rgba(255, 255, 255, 0.9),
         1px  1px 2px rgba(255, 255, 255, 0.9),
         0px  0px 6px rgba(255, 255, 255, 0.85);
}


/* خلفيات السلايدز (غيّر الصور لما تجهز) */
.hero-slide--1 {
    background-image: url("../images/hero/Zeytin-1.png");
}

.hero-slide--2 {
    background-image: url("../images/hero/Zeytin-2.png");
}

.hero-slide--3 {
    background-image: url("../images/hero/Zeytin-3.png");
}

.hero-slide--4 {
    background-image: url("../images/hero/Zeytin-4.png");
}

.hero-slide--5 {
    background-image: url("../images/hero/Zeytin-5.png");
}

.hero-slide--6 {
    background-image: url("../images/hero/Zeytin-6.png");
}
.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(146, 144, 144, 0.582); /* غمّق الصورة – غيّر الرقم 0.25 لزيادة أو تقليل */
    z-index: 0;
}


.hero-slide__content {
    position: relative;
    z-index: 1;
}

/* الربط بين الراديو و السلايد – إظهار كل سلايد حسب الراديو */

#slide-1:checked ~ .hero-slides .hero-slide--1 {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

#slide-2:checked ~ .hero-slides .hero-slide--2 {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

#slide-3:checked ~ .hero-slides .hero-slide--3 {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

#slide-4:checked ~ .hero-slides .hero-slide--4 {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

#slide-5:checked ~ .hero-slides .hero-slide--5 {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

#slide-6:checked ~ .hero-slides .hero-slide--6 {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}


/* المؤشرات (حبات التمر) */
.hero-dots {
    position: absolute;
    inset-inline: 0;
    bottom: 1.4rem;
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    z-index: 2;
}

.hero-dot {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    cursor: pointer;
    padding: 0.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.55);
    transition:
        transform 0.15s ease,
        box-shadow 0.15s ease,
        background 0.15s ease,
        opacity 0.15s ease;
}

.hero-dot img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* تمييز التمراية الخاصة بكل سلايد */
#slide-1:checked ~ .hero-dots label[for="slide-1"],
#slide-2:checked ~ .hero-dots label[for="slide-2"],
#slide-3:checked ~ .hero-dots label[for="slide-3"],
#slide-4:checked ~ .hero-dots label[for="slide-4"],
#slide-5:checked ~ .hero-dots label[for="slide-5"],
#slide-6:checked ~ .hero-dots label[for="slide-6"] {
    opacity: 1;
    transform: scale(1.35);
    box-shadow: 0 0 18px rgba(3, 228, 41, 0.9);
    background: rgba(2, 109, 56, 0.897);
}



/* سلايدر الزيت */
.oil-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4rem 2rem;
    gap: 2rem;
}

.oil-section.reverse {
    flex-direction: row-reverse;
}


/* النقط */
.dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 0.8rem;
}

.dot {
    width: 35px;
    height: 35px;
    background-image: url("../images/dots/date-1.png");
    background-size: cover;
    cursor: pointer;
    opacity: 0.4;
    transition: 0.3s;
}

.dot.active {
    opacity: 1;
    transform: scale(1.25);
}


/* تنسيق عام للقسم */

.oil-text {
    width: 50%;
    color: #e9f8e1;
}

.oil-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #07c220;
}

.oil-text p {
    font-size: 1.2rem;
    line-height: 2.1;
}
.oil-slider .slides img {
    width: 75%;
    display: none;
    border-radius: 18px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.oil-slider .slides img.active {
    display: block;
    opacity: 1;
}

/* النقاط */
/* 
.oil-slider .dot.active {
    opacity: 1;
    transform: scale(1.2);
}


/* main h1 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

main p {
    font-size: 0.95rem;
    opacity: 0.8;
} */

/* واتساب عائم – STANDARD */
.whatsapp-float {
    position: fixed;
    inset-inline-end: 1.1rem;
    inset-block-end: 1.1rem;
    z-index: 20;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 0.9rem;
    border-radius: 999px;
    background: #171817;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
    transform-origin: center;
    animation: wa-pulse 2.6s infinite ease-in-out;
}

.wa-icon {
    width: 45px;
    height: 45px;
    display: inline-block;
    background-image: url("../images/whatsapp.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

.wa-text {
    white-space: nowrap;
}

@keyframes wa-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 14px 32px rgba(0, 0, 0, 0.9);
    }
}



/* Responsive */
@media (max-width: 900px) {
    .hero-inner {
        padding: 2rem 1.1rem 2.3rem;
    }
}

@media (max-width: 768px) {
    .top-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .lang-selector ul {
        justify-content: flex-start;
    }

    /* على الموبايل نخلي أسماء اللغات أقل ظهوراً */
    .lang-item span {
        display: none;
    }

    .lang-item {
        padding-inline: 0.35rem;
    }

    .hero-text {
        text-align: right;
    }
}

    .hero-inner {
        border-radius: 18px;
    }


/* الحاوية اللي جواها كل السلايدات */
.hero-slides {
    min-height: 280px;   /* جرّب 320 أو 340 لو عايز السلايدر أطول */
}

/* كل سلايد ياخد الخلفية بالكامل */
.hero-slide {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* تحريك محتوى النص شوية لتحت داخل السلايد */
.hero-slide_content {
    padding-top: 1.8rem;   /* لو لسه قريب من الحافة زوّدها لـ 2.2 أو 2.5 */
     line-height: 1.9;
    opacity: 0.9;
}

/* قسم قياسي عام */
/* .section {
    margin-top: 2.5rem;
    padding: 1.8rem 1.5rem 2.4rem;
    border-radius: 22px;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.88),
        rgba(40, 20, 8, 0.9)
    );
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.85);
} */


/* سكشن عام */
/* .olive-section {
    padding: 4rem 2rem;
}

.olive-container {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    justify-content: space-between;
}

/* عكس الاتجاه للسكشن الثاني */
/* .olive-section.reverse .olive-container {
    flex-direction: row-reverse;
}

/* السلايدر */
/* .olive-slider {
    width: 48%;
    position: relative;
} */ 

/* .olive-slider .slides img {
    width: 100%;
    border-radius: 18px;
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
} */

/* .olive-slider .slides img.active {
    display: block;
    opacity: 1;
} */

/* النقط */
/* .olive-dots {
    margin-top: 0.9rem;
    display: flex;
    justify-content: center;
    gap: 0.4rem;
}

.olive-dots .dot {
    width: 26px;
    height: 26px;
    background-image: url('assets/images/dots/date-1.png');
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
    opacity: 0.55;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.olive-dots .dot.active {
    opacity: 1;
    transform: scale(1.1);
} */

/* النص */
/* .olive-text {
    width: 48%;
    color: #f8f8f8;
}

.olive-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #c6ff9a;
}

.olive-text p {
    font-size: 1.15rem;
    line-height: 2;
    opacity: 0.92;
} */

/* موبايل */
@media (max-width: 900px) {
    .olive-container {
        flex-direction: column;
    }

    .olive-section.reverse .olive-container {
        flex-direction: column;
    }

    .olive-slider,
    .olive-text {
        width: 100%;
    }
}



.contact-phone,
.contact-email {
    direction: ltr;
    unicode-bidi: bidi-override;
    text-align: right;
}


/* ===== قسم خدماتنا ===== */

.sherif {
    font-family: "Remachine Script", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    /* font-weight: bold; */
    font-size: 35px;
    color: #07c220;
}

.services-section {
    padding: 4rem 1.8rem 4.5rem;
    display: flex;
    justify-content: center;
}

.services-inner {
    width: 100%;
    max-width: 980px;
    margin-inline: auto;
    background: radial-gradient(circle at 10% 0%, #1b130f, #050301 70%);
    border-radius: 28px;
    padding: 2.5rem 2.7rem 3rem;
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.85);
    text-align: right;
}

.section-title {
    font-size: 1.9rem;
    margin-bottom: 1.4rem;
    color: #07c220;
}

.services-intro {
    font-size: 0.98rem;
    line-height: 2;
    margin-bottom: 1.4rem;
    opacity: 0.9;
}


/* ===== قسم خدماتنا – حبات تمر بدل الـ bullets ===== */

.services-bullets {
    margin-top: 1.2rem;
}

/* نشيل النقط الافتراضية من الليست */
.services-bullets ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* كل سطر خدمة */
.services-bullets li {
    position: relative;
    padding-right: 2.4rem;      /* مساحة لحبة التمر على اليمين */
    margin-bottom: 0.55rem;
    line-height: 1.9;
    font-size: 0.96rem;
    text-align: right;          /* خلي النص نفسه يمين */
}

/* أيقونة حبة التمر */
.services-bullets li::before {
    content: "";
    position: absolute;
    right: 0;                   /* بدّلنا inset-inline-end بـ right علشان نثبتها يمين */
    top: 50%;
    transform: translateY(-50%); /* نزلها لنص الأيقونة بالضبط */
    width: 20px;
    height: 20px;
    background-image: url("../images/dots/date-1.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* ===== قسم تواصل معنا ===== */

.contact-section {
    padding: 4rem 1.8rem 4.5rem;
    display: flex;
    justify-content: flex-end;   /* ناحية اليمين في RTL */
}

.contact-inner {
    width: 100%;
    max-width: 980px;
    margin-inline: auto;
    background: radial-gradient(circle at 10% 0%, #1b130f, #050301 70%);
    border-radius: 28px;
    padding: 2.7rem 2.7rem 3rem;
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.85);

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
}

/* كل عمود (مصر / تركيا) */
.contact-block {
    text-align: right;           /* كل نصوص العمود ناحية اليمين */
}

.contact-block h3 {
    font-size: 1.4rem;
    margin-bottom: 0.9rem;
    color: #07c220;
    text-align: center;          /* العنوان نفسه في المنتصف */
}

.contact-block p {
    font-size: 0.96rem;
    line-height: 1.9;
    margin-bottom: 0.25rem;
    opacity: 0.9;
}

/* أرقام التليفون */
.contact-phone {
    direction: ltr;              /* ترتيب الأرقام من الشمال لليمين */
    unicode-bidi: bidi-override;
    text-align: right;           /* لكن السطر كله ملزوق في اليمين */
    display: block;
}

/* ===== أعمدة الفوتر الإضافية ===== */

/* عمود روابط الموقع */
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 0.3rem;
}

/* شكل روابط الفوتر العادية */
.footer-link,
.footer-link:link,
.footer-link:visited {
  color: #f8f6f2;           /* نفس لون نص الفوتر */
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-link:hover {
  color: #f0c27b;          /* ذهبي خفيف على الهوفر */
}

/* كن وكيلاً لمنتجاتنا (عنوان على شكل رابط) */
.footer-title-link,
.footer-title-link:link,
.footer-title-link:visited {
  color: #07c220;          /* نفس لون عناوين الأعمدة */
  text-decoration: none;
  font-weight: 700;
}

.footer-title-link:hover {
  color: #ebe9e5;
}

/* عمود تابعنا */
.footer-social {
  display: block;          /* يلغي الـ flex القديم لو موجود */
  text-align: center;
}

.footer-social .social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.4rem;
}

.footer-social .social-icons img {
  width: 30px;
  height: 30px;
  display: block;
}

/* رابط سياسة الخصوصية تحت الأيقونات */
.footer-privacy {
  margin-top: 0.9rem;
}

.footer-privacy a,
.footer-privacy a:link,
.footer-privacy a:visited {
  color: #07c220;
  text-decoration: none;
  font-size: 1.4rem;
}

.footer-privacy a:hover {
  color: #f1f0ed;
}



/* ================================
   صفحة الوكيل – agent.html
================================ */

/* الباكجراوند العام */
.inner-hero {
    width: 100%;
    background: url("assets/images/hero-bg.jpg") center/cover no-repeat;
    padding: 5rem 1rem;
    text-align: center;
    border-bottom: 4px solid #000;
    position: relative;
}

.inner-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

.inner-hero__content {
    position: relative;
    z-index: 10;
}

.inner-hero h1 {
    font-size: 2.4rem;
    color: #f8f6f2;
    text-shadow: 0 0 18px rgba(255,255,255,0.55);
}

.inner-hero p {
    color: #07c220;
    margin-top: 0.7rem;
    font-size: 1.1rem;
    text-shadow: 0 0 12px rgba(0,0,0,0.6);
}


/* ====== الكارد الرئيسي ====== */
.agent-section {
    padding: 4rem 1.8rem;
    display: flex;
    justify-content: center;
}

.agent-inner {
    max-width: 980px;
    background: radial-gradient(circle at 20% 0%, #1b130f, #050301 75%);
    padding: 2.7rem;
    border-radius: 26px;
    box-shadow: 0 26px 60px rgba(0,0,0,0.85);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.4rem;
    align-items: center;
}


/* ====== صورة الوكيل ====== */
.agent-image img {
    width: 100%;
    border-radius: 22px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.65);
}


/* ====== النص ====== */
.agent-text p {
    color: #f8f6f2;
    line-height: 2;
    font-size: 1.05rem;
    margin-bottom: 1rem;
    opacity: 0.92;
}


/* ====== موبايل ====== */
@media (max-width: 768px) {
    .agent-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .agent-text p {
        text-align: center;
    }
}


/* ================================
   صفحة سياسة الخصوصية privacy.html
================================ */

.privacy-section {
    padding: 4rem 1.8rem;
    display: flex;
    justify-content: center;
}

.privacy-inner {
    max-width: 980px;
    background: radial-gradient(circle at 20% 0%, #1b130f, #050301 75%);
    padding: 2.7rem;
    border-radius: 26px;
    box-shadow: 0 26px 60px rgba(0,0,0,0.85);
}

.privacy-inner h2 {
    color: #07c220;
    margin-top: 1.7rem;
    margin-bottom: 0.6rem;
    font-size: 1.4rem;
}

.privacy-inner p,
.privacy-inner ul li {
    color: #f8f6f2;
    font-size: 1.05rem;
    line-height: 2;
    margin-bottom: 0.8rem;
    opacity: 0.92;
}

.privacy-inner ul {
    margin: 0 0 1rem;
    padding: 0 1.2rem;
}

/* فوتر */
.main-footer {
    text-align: center;
    font-size: 0.75rem;
    padding: 0.9rem 1rem 1.3rem;
    color: #b3b3b3;
    opacity: 0.7;
}

/* ===========================
   MOBILE FIX (max-width: 600px)
   =========================== */
@media (max-width: 600px) {

    /* الحاويات الأساسية */
    .services-inner,
    .contact-inner,
    .agent-inner,
    .privacy-inner {
        padding: 1.4rem !important;
        border-radius: 18px !important;
        max-width: 95% !important;
    }

    /* نصوص طويلة */
    .services-bullets li,
    .services-intro,
    .oil-text p,
    .agent-text p,
    .privacy-inner p {
        font-size: 0.9rem !important;
        line-height: 1.7 !important;
    }

    /* العناوين */
    .section-title,
    .oil-text h2,
    .agent-block h3 {
        font-size: 1.4rem !important;
        text-align: center !important;
    }

    /* السلايدر */
    .hero-slider {
        min-height: 300px !important;
        max-height: 330px !important;
    }

    .hero-slide__content {
        max-width: 90% !important;
        text-align: center !important;
        padding: 0 !important;
    }

    .hero-slide__content h1 {
        font-size: 1.3rem !important;
    }

    .hero-slide__content p {
        font-size: 1rem !important;
    }

    /* زر الواتساب */
    .whatsapp-float {
        left: 0.8rem !important;
        bottom: 0.8rem !important;
        padding: 0.45rem 0.7rem !important;
    }

    .wa-icon {
        width: 36px !important;
        height: 36px !important;
    }

    .wa-text {
        font-size: 0.75rem !important;
    }

    /* زبط المحتوى الداخلي */
    .oil-section {
        flex-direction: column !important;
        text-align: center !important;
        padding: 2rem 1rem !important;
    }

    .oil-text {
        width: 100% !important;
    }

    .oil-slider .slides img {
        width: 95% !important;
    }

    /* إزالة المساحات الفارغة العمودية */
    .services-section,
    .contact-section {
        padding: 2rem 1rem !important;
    }
}

/* ================================================= */
/* === تفعيل المحاذاة لليسار للغة التركية والإنجليزية === */
/* ================================================= */

html[dir="ltr"] .hero-slide__content {
    text-align: left;
}

/* عكس اتجاه السلايدر ليبدأ من اليسار */
html[dir="ltr"] .hero-slide {
    justify-content: flex-start; 
}

/* محاذاة النصوص في قسم الخدمات */
html[dir="ltr"] .services-inner {
    text-align: left;
}

/* عكس مكان أيقونة التمرة في القائمة */
html[dir="ltr"] .services-bullets li {
    text-align: left;
    padding-right: 0;
    padding-left: 2.4rem; /* مسافة للأيقونة على اليسار */
}

html[dir="ltr"] .services-bullets li::before {
    right: auto;
    left: 0; /* نقل الأيقونة لليسار */
}

/* محاذاة قسم التواصل */
html[dir="ltr"] .contact-section {
    justify-content: flex-start;
}

html[dir="ltr"] .contact-block {
    text-align: left;
}

html[dir="ltr"] .contact-phone, 
html[dir="ltr"] .contact-email {
    text-align: left;
}