/* -----------------------------------------------------------
   1. GLOBAL RESET & FONTS
----------------------------------------------------------- */
:root {
    --primary-orange: #FF5E14;
    --dark-bg: #111111;
    --white: #ffffff;
    --light-gray: #f9f9f9;
}

*,
*::before,
*::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    font-family: 'Noto Sans Arabic', Tahoma, sans-serif;
    direction: rtl;
    background-color: var(--light-gray);
    overflow-x: hidden;
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    width: 100%;
}

/* -----------------------------------------------------------
   2. TOP BAR & HEADER
----------------------------------------------------------- */
.top-bar { background: var(--dark-bg); color: white; padding: 10px 0; font-size: 14px; border-bottom: 2px solid var(--primary-orange); overflow: hidden; }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; }
.whatsapp-link { color: #25D366 !important; margin-right: 15px; text-decoration: none; font-weight: bold; }
.whatsapp-link i { color: #25D366 !important; }

header { background: white; padding: 10px 0; box-shadow: 0 2px 10px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 1000; overflow: visible; }
header .container { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 60px; width: auto; display: block; }
.logo span { color: var(--primary-orange); }

nav ul { display: flex; list-style: none; }
nav ul li { margin-right: 20px; }
nav ul li a { text-decoration: none; color: #333; font-weight: 600; transition: 0.3s; }
nav ul li a:hover, nav ul li a.active { color: var(--primary-orange) !important; }
nav ul li a.active { border-bottom: 2px solid var(--primary-orange); }

/* -----------------------------------------------------------
   3. HOME PAGE SLIDER (SWIPER)
----------------------------------------------------------- */
.slider-container { height: 65vh; position: relative; overflow: hidden; background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%); }
@media (max-width: 768px) { .slider-container { height: 42vh !important; } }
@media (max-width: 400px) { .slider-container { height: 36vh !important; } }
.heroSlider { width: 100%; height: 100%; }
.heroSlider .swiper-wrapper { width: 100%; height: 100%; }
.swiper-slide { display: flex; justify-content: center; align-items: flex-end; padding-bottom: 80px; position: relative; width: 100%; height: 100%; overflow: hidden; }
.hero-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.slide-content { position: relative; z-index: 10; text-align: center; color: white; background: rgba(0,0,0,0.6); padding: 15px 25px; border-radius: 8px; width: auto; max-width: 90%; }
.slide-content h1 { font-size: 28px; color: var(--primary-orange); margin-bottom: 5px; font-weight: bold; }
.slide-content p { font-size: 16px; margin: 0; }
/* Swiper arrows — same style as lightbox orange circles */
.swiper-button-next, .swiper-button-prev { background: var(--primary-orange); color: #fff !important; border: none; border-radius: 50%; top: 50%; transform: translateY(-50%); z-index: 20; transition: opacity 0.3s; width: auto !important; height: auto !important; padding: 15px; }
.swiper-button-next:hover, .swiper-button-prev:hover { opacity: 0.85; }
.swiper-button-next::after, .swiper-button-prev::after { font-size: 22px; color: #fff !important; font-weight: 700; }
.swiper-button-next { left: 20px; right: auto; }
.swiper-button-prev { right: 20px; left: auto; }

/* Phone number — green */
.top-bar span { color: inherit; }
a[href^="tel:"] { color: #28a745; text-decoration: none; }
a[href^="tel:"]:hover { color: #218838; }
.swiper-pagination-bullet-active { background: var(--primary-orange) !important; }

/* -----------------------------------------------------------
   4. ABOUT PAGE (GLASSMORPHISM)
----------------------------------------------------------- */
.about-page {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('about-bg.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 60px 0;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}
.about-hero h1 { color: #fff !important; text-align: center; margin-bottom: 40px; font-size: 32px; }
.about-text, .global-trade-box, .val-box {
    background-color: rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    border-right: 6px solid var(--primary-orange) !important;
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 12px;
    color: #fff !important;
    box-sizing: border-box;
    max-width: 100%;
}
.about-page h2, .about-page h3 { color: var(--primary-orange) !important; margin-bottom: 10px; }
.about-page p { color: #f1f1f1 !important; line-height: 1.8; font-size: 17px; }
.val-box { display: flex; align-items: center; gap: 20px; box-sizing: border-box; max-width: 100%; }
.val-box i { font-size: 40px; color: var(--primary-orange) !important; animation: icon-float 3s infinite; flex-shrink: 0; }

@keyframes icon-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* -----------------------------------------------------------
   5. SECTION TITLES
----------------------------------------------------------- */
.section-title {
    text-align: center;
    margin-bottom: 30px;
}
.section-title h2 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    position: relative;
    display: inline-block;
}
.section-title .line {
    width: 80px;
    height: 4px;
    background: var(--primary-orange);
    margin: 10px auto 0;
    border-radius: 2px;
}

/* -----------------------------------------------------------
   5. PRODUCTS GRID & TABLES
----------------------------------------------------------- */
.news-ticker-container { background: var(--primary-orange); color: white; height: 45px; overflow: hidden; white-space: nowrap; margin: 20px 0; border-radius: 5px; display: flex; align-items: center; }
.ticker-text-move { display: inline-block; animation: move-and-pause 30s linear infinite; font-weight: bold; padding: 0 20px; }
@keyframes move-and-pause { 0% { transform: translateX(-100%); } 93% { transform: translateX(100vw); } 100% { transform: translateX(100vw); } }

.products-grid, .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 20px 0;
}
.product-item { background: #fff; border-radius: 10px; padding: 15px; box-shadow: 0 4px 8px rgba(0,0,0,0.1); border-bottom: 3px solid var(--primary-orange); text-align: center; box-sizing: border-box; max-width: 100%; }
.prod-img, .gallery-img { width: 100%; height: 220px; object-fit: cover; border-radius: 8px; cursor: pointer; transition: 0.3s; display: block; max-width: 100%; }

.product-table { width: 100%; border-collapse: collapse; margin-top: 10px; font-size: 13px; }
.product-table th { text-align: right; padding: 5px; color: #777; width: 45%; }
.product-table td { text-align: left; padding: 5px; font-weight: bold; color: #333; }

/* -----------------------------------------------------------
   6. MODALS
----------------------------------------------------------- */
.modal { display: none; position: fixed; z-index: 9999; left: 0; top: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.95); justify-content: center; align-items: center; }
.modal-content { position: relative; max-width: 90%; max-height: 90%; display: flex; }
.modal-content img, .modal-content video { max-width: 100%; max-height: 85vh; border-radius: 10px; border: 2px solid var(--primary-orange); }
.close-modal { position: absolute; top: 20px; left: 40px; color: white; font-size: 50px; cursor: pointer; z-index: 10001; }
.modal-prev, .modal-next { position: absolute; top: 50%; background: var(--primary-orange); color: white; border: none; padding: 15px; cursor: pointer; border-radius: 50%; transform: translateY(-50%); z-index: 10002; }
.modal-next { left: 20px; } .modal-prev { right: 20px; }

/* -----------------------------------------------------------
   7. FLOATING BUTTONS
----------------------------------------------------------- */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white !important;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 2px 4px 15px rgba(0,0,0,0.3);
    z-index: 10000;
    animation: pulse-whatsapp 2s infinite;
    text-decoration: none;
    /* Constrain pulse animation so box-shadow doesn't overflow */
    isolation: isolate;
}
@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.back-to-top { position: fixed; bottom: 30px; left: 30px; background-color: var(--primary-orange); color: white !important; width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; z-index: 999; transition: 0.3s; visibility: hidden; opacity: 0; text-decoration: none; }
.back-to-top.show { visibility: visible; opacity: 1; }

.quote-btn { display: flex; align-items: center; justify-content: center; background-color: var(--primary-orange); color: white !important; text-decoration: none; padding: 10px; margin-top: 15px; border-radius: 5px; font-weight: bold; font-size: 14px; gap: 8px; box-sizing: border-box; max-width: 100%; }
.quote-btn:hover { background-color: #25D366; }

/* -----------------------------------------------------------
   8. FOOTER
----------------------------------------------------------- */
footer { background: var(--dark-bg); color: white; padding: 60px 0 20px; border-top: 5px solid var(--primary-orange); margin-top: 50px; overflow: hidden; }
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 100%;
}
.footer-item h3 { font-size: 18px; margin-bottom: 15px; color: #fff; border-bottom: 2px solid var(--primary-orange); padding-bottom: 8px; }
.footer-item ul { list-style: none; padding: 0; margin: 0; }
.footer-item ul li { padding: 5px 0; }
.footer-item ul li a { font-size: 14px; transition: color 0.3s; }
.footer-item p { font-size: 14px; color: #ccc; margin: 5px 0; }
.footer-bottom { text-align: center; padding-top: 20px; margin-top: 30px; border-top: 1px solid #333; color: #888; }
.brand-color {
    color: #FF5E14;
}

/* -----------------------------------------------------------
   9. COLOR FIXES
----------------------------------------------------------- */
.top-bar-right span, .top-bar-left span {
    color: #ffffff !important;
    text-decoration: none !important;
}
/* Phone number in top bar — green */
.top-bar-right span.phone-number,
.top-bar-left span.phone-number {
    color: #ffffff  !important;
}
.top-bar-right .whatsapp-link span,
.top-bar-left .whatsapp-link span {
    color: #25D366 !important;
}

footer a, footer .footer-item ul li a {
    color: #ffffff !important;
    text-decoration: none;
}

footer a:hover {
    color: var(--primary-orange) !important;
}

footer .fa-whatsapp {
    color: #25D366 !important;
}

footer a[href*="wa.me"] {
    color: #25D366 !important;
}

footer a[href*="wa.me"]:hover {
    color: var(--primary-orange) !important;
}

/* -----------------------------------------------------------
   10. CONTACT PAGE OVERRIDES
   (fixes issues from contact.html inline <style>)
----------------------------------------------------------- */
.contact-header {
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 0 50px;
    text-align: center;
    box-sizing: border-box;
    max-width: 100%;
    overflow: hidden;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
    margin-top: -40px;
    box-sizing: border-box;
    max-width: 100%;
}

.contact-info-side {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    box-sizing: border-box;
    max-width: 100%;
}

.contact-form-side {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    box-sizing: border-box;
    max-width: 100%;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    box-sizing: border-box;
    max-width: 100%;
}

.contact-item i {
    width: 45px;
    height: 45px;
    background: var(--primary-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.map-section {
    margin: 40px 0;
    overflow: hidden;
    max-width: 100%;
}

.map-section iframe {
    width: 100%;
    max-width: 100%;
}

/* -----------------------------------------------------------
   11. AOS ANIMATION FIXES
   Prevent AOS transforms from causing horizontal overflow
----------------------------------------------------------- */
[data-aos][data-aos][data-aos-duration="400"],
[data-aos][data-aos][data-aos-duration="600"],
[data-aos][data-aos][data-aos-duration="800"],
[data-aos][data-aos][data-aos-duration="1000"],
[data-aos][data-aos][data-aos-duration="1200"] {
    max-width: 100%;
    box-sizing: border-box;
}

/* -----------------------------------------------------------
   12. MOBILE RESPONSIVE
----------------------------------------------------------- */

/* --- Global video styling --- */
video {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    background: #000;
    display: block;
}
/* Slider videos must fill the slide like images */
.swiper-slide video.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    border-radius: 0;
    z-index: 1;
    background: transparent;
}
@media (max-width: 768px) {

    /* --- Global overflow prevention --- */
    html, body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }

    /* --- Container: fix content-box causing overflow --- */
    .container,
    .top-bar .container,
    header .container,
    footer .container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 15px !important;
        box-sizing: border-box !important;
        margin: 0 auto !important;
    }

    /* --- Top bar --- */
    .top-bar .container {
        flex-direction: row !important;
        justify-content: space-around !important;
        font-size: 10px !important;
        padding: 5px 10px !important;
    }
    .whatsapp-link { margin-right: 5px !important; }

    /* --- Header & Nav --- */
    header .container {
        flex-direction: column;
        padding: 5px 10px !important;
    }
    nav ul {
        flex-wrap: nowrap;
        justify-content: center;
        gap: 2px;
        width: 100%;
        padding: 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    nav ul li { margin-right: 5px; flex-shrink: 0; }
    nav ul li a { font-size: 11px !important; padding: 2px 4px !important; white-space: nowrap; }
    .logo img { height: 45px; }

    /* --- Slider --- */
    .swiper-slide { padding-bottom: 40px !important; }
    .slide-content { padding: 6px 12px !important; background: rgba(0,0,0,0.75) !important; max-width: 88% !important; overflow: hidden !important; border-radius: 6px !important; }
    .slide-content h1 { font-size: 16px !important; margin-bottom: 2px !important; line-height: 1.3 !important; }
    .slide-content p { font-size: 12px !important; line-height: 1.3 !important; }

    /* --- Swiper navigation buttons: orange circles like lightbox --- */
    .swiper-button-next,
    .swiper-button-prev {
        display: block !important;
        width: auto !important;
        height: auto !important;
        background: var(--primary-orange) !important;
        border: none !important;
        border-radius: 50% !important;
        padding: 10px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        z-index: 20 !important;
    }
    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 16px !important;
        color: #fff !important;
        font-weight: 700 !important;
    }
    .swiper-button-next { left: 8px !important; right: auto !important; }
    .swiper-button-prev { right: 8px !important; left: auto !important; }

    /* --- Products grid: better mobile readability --- */
    .products-grid,
    .gallery-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
        padding: 8px 0 !important;
        max-width: 100%;
    }
    .product-item { padding: 10px !important; }
    .prod-img { height: 130px !important; }
    .product-info h3 { font-size: 12px !important; margin: 6px 0 !important; line-height: 1.4 !important; }
    .product-table { font-size: 11px !important; }
    .product-table th, .product-table td { padding: 3px 4px !important; }
    .quote-btn { font-size: 11px !important; padding: 7px 4px !important; }

    /* --- Section titles: centered on mobile --- */
    .section-title h2 {
        font-size: 22px !important;
    }
    .section-title .line {
        width: 60px !important;
    }

    /* --- About page: fix background-attachment & overflow --- */
    .about-page {
        background-attachment: scroll !important;
        overflow: hidden !important;
    }
    .about-hero h1 { font-size: 22px !important; }
    .about-text, .global-trade-box {
        padding: 20px 15px !important;
        box-sizing: border-box !important;
        max-width: 100% !important;
    }
    .val-box {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px !important;
        box-sizing: border-box !important;
        max-width: 100% !important;
    }
    .val-box i { margin-bottom: 10px; }

    /* --- Contact page: stack vertically & prevent overflow --- */
    .contact-wrapper {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        padding: 0 !important;
        box-sizing: border-box !important;
        max-width: 100% !important;
    }
    .contact-info-side,
    .contact-form-side {
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important;
        box-sizing: border-box !important;
        max-width: 100% !important;
    }
    .contact-item {
        box-sizing: border-box !important;
        max-width: 100% !important;
    }

    /* --- Contact header fix --- */
    .contact-header {
        padding: 60px 15px 40px !important;
        box-sizing: border-box !important;
    }

    /* --- Map section: prevent iframe overflow --- */
    .map-section {
        margin: 20px 0 !important;
        overflow: hidden !important;
        max-width: 100% !important;
    }
    .map-section iframe {
        width: 100% !important;
        max-width: 100% !important;
        display: block !important;
    }

    /* --- Footer grid: use 1fr to prevent overflow --- */
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        max-width: 100% !important;
    }
    .footer-item {
        box-sizing: border-box !important;
        max-width: 100% !important;
    }

    /* --- Floating buttons: keep within viewport --- */
    .back-to-top { left: 10px !important; bottom: 15px !important; width: 40px !important; height: 40px !important; }
    .floating-whatsapp {
        right: 10px !important;
        bottom: 15px !important;
        width: 48px !important;
        height: 48px !important;
        font-size: 28px;
        /* Contain the pulse box-shadow within viewport */
        clip-path: inset(-15px -15px -15px -15px) !important;
    }

    /* --- AOS animation: prevent horizontal overflow on mobile --- */
    [data-aos="fade-left"],
    [data-aos="fade-right"] {
        transform: none !important;
        opacity: 1 !important;
        transition: none !important;
    }
    [data-aos][data-aos][data-aos] {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
}

/* Extra-small screens (<= 400px) */
@media (max-width: 400px) {
    .products-grid,
    .gallery-grid {
        grid-template-columns: 1fr !important;
    }

    .product-item { padding: 12px !important; }
    .product-table { font-size: 12px !important; }
    .product-info h3 { font-size: 13px !important; }
    .quote-btn { font-size: 12px !important; padding: 8px 6px !important; }

    .container,
    .top-bar .container,
    header .container,
    footer .container {
        padding: 0 10px !important;
    }

    nav ul li a {
        font-size: 10px !important;
    }

    /* Slider extra-small */
    .slide-content { padding: 4px 8px !important; max-width: 92% !important; }
    .slide-content h1 { font-size: 13px !important; margin-bottom: 1px !important; }
    .slide-content p { font-size: 10px !important; }
}

/* -----------------------------------------------------------
   13. MULTILINGUAL & LTR SUPPORT
----------------------------------------------------------- */

/* --- Language Switcher --- */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
}
.lang-btn {
    background: transparent;
    border: 2px solid transparent;
    color: #666;
    padding: 4px 10px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
    font-family: inherit;
    line-height: 1;
}
.lang-btn:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}
.lang-btn.active {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    color: #fff !important;
}

/* --- LTR direction overrides (English) --- */
body.dir-ltr,
html[dir="ltr"] body {
    direction: ltr;
    text-align: left;
    font-family: 'Segoe UI', Arial, sans-serif;
}

html[dir="ltr"] nav ul li {
    margin-right: 0;
    margin-left: 20px;
}

html[dir="ltr"] .whatsapp-link {
    margin-right: 0;
    margin-left: 15px;
}

html[dir="ltr"] .about-text,
html[dir="ltr"] .global-trade-box,
html[dir="ltr"] .val-box {
    border-right: none !important;
    border-left: 6px solid var(--primary-orange) !important;
}

html[dir="ltr"] .product-table th {
    text-align: left;
}

html[dir="ltr"] .product-table td {
    text-align: right;

}

html[dir="ltr"] .floating-whatsapp {
    right: auto !important;
    left: 30px !important;
}

html[dir="ltr"] .back-to-top {
    left: auto !important;
    right: 30px !important;
}

html[dir="ltr"] .close-modal {
    left: auto;
    right: 40px;
}

html[dir="ltr"] .modal-next {
    left: auto;
    right: 20px;
}

html[dir="ltr"] .modal-prev {
    right: auto;
    left: 20px;
}

html[dir="ltr"] .swiper-button-next {
    left: auto;
    right: 20px;
}

html[dir="ltr"] .swiper-button-prev {
    right: auto;
    left: 20px;
}

/* Ticker animation direction for LTR */
html[dir="ltr"] .ticker-text-move {
    animation-name: move-and-pause-ltr;
}
@keyframes move-and-pause-ltr {
    0% { transform: translateX(100%); }
    93% { transform: translateX(-100vw); }
    100% { transform: translateX(-100vw); }
}

/* Language switcher mobile adjustments */
@media (max-width: 768px) {
    .lang-switcher {
        gap: 8px;
        padding: 10px 0;
        margin-top: 8px;
        border-top: 1px solid #eee;
        justify-content: center;
    }
    .lang-btn {
        padding: 6px 16px;
        font-size: 13px;
        border-radius: 25px;
        min-width: 60px;
        text-align: center;
    }
    .lang-btn[data-lang="ku"] {
        background: #e8f5e9;
        color: #2e7d32;
        border: 2px solid #4caf50;
    }
    .lang-btn[data-lang="ar"] {
        background: #e3f2fd;
        color: #1565c0;
        border: 2px solid #2196f3;
    }
    .lang-btn[data-lang="en"] {
        background: #fff3e0;
        color: #e65100;
        border: 2px solid #ff9800;
    }
    .lang-btn[data-lang="ku"]:hover,
    .lang-btn[data-lang="ar"]:hover,
    .lang-btn[data-lang="en"]:hover {
        opacity: 0.85;
        transform: scale(1.05);
    }
    .lang-btn[data-lang="ku"].active {
        background: #4caf50 !important;
        border-color: #4caf50 !important;
        color: #fff !important;
    }
    .lang-btn[data-lang="ar"].active {
        background: #2196f3 !important;
        border-color: #2196f3 !important;
        color: #fff !important;
    }
    .lang-btn[data-lang="en"].active {
        background: var(--primary-orange) !important;
        border-color: var(--primary-orange) !important;
        color: #fff !important;
    }
    html[dir="ltr"] .floating-whatsapp {
        left: 10px;
    }
    html[dir="ltr"] .back-to-top {
        right: 10px;
    }
    html[dir="ltr"] nav ul li {
        margin-left: 5px;
    }
    html[dir="ltr"] .whatsapp-link {
        margin-left: 5px;
    }
    html[dir="ltr"] .swiper-button-next {
        right: 8px;
    }
    html[dir="ltr"] .swiper-button-prev {
        left: 8px;
    }
}

/* Language switcher is now real links instead of JS buttons */
.lang-btn { text-decoration: none; display: inline-block; }
