/* ==========================================================================
   GRAND AURA Logistics - Premium Stylesheet
   ========================================================================== */

/* ====== 1. CSS VARIABLES & TOKENS ====== */
:root {
    /* Color Palette */
    --gold: #D4AF37;
    --gold-dark: #B5952F;
    --gold-light: #E8CC6B;
    --black: #0A0A0A;
    --black-light: #141414;
    --gray-dark: #1A1A1A;
    --gray: #333333;
    --gray-light: #F5F5F5;
    --white: #FFFFFF;
    
    /* Typography */
    --font-ar: 'Tajawal', sans-serif;
    --font-en: 'Inter', sans-serif;
    --font-ur: 'Noto Nastaliq Urdu', serif;
    
    /* Transitions */
    --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Shadows */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.3);
    --shadow-gold: 0 10px 25px rgba(212, 175, 55, 0.2);
    --shadow-gold-hover: 0 15px 35px rgba(212, 175, 55, 0.35);
}

/* ====== 2. RESET & BASE ====== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

img {
    max-width: 100%;
    height: auto;
}

body {
    font-family: var(--font-ar);
    color: var(--white);
    background-color: var(--black);
    line-height: 1.7;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: opacity 0.3s ease;
}

html[lang="ar"] body, html[lang="ar"] input, html[lang="ar"] button, html[lang="ar"] textarea { font-family: var(--font-ar); }
html[lang="en"] body, html[lang="en"] input, html[lang="en"] button, html[lang="en"] textarea { font-family: var(--font-en); }
html[lang="ur"] body, html[lang="ur"] input, html[lang="ur"] button, html[lang="ur"] textarea { font-family: var(--font-ur); }

body.fade-transition {
    opacity: 0;
}

/* Typography Utilities */
.en-text {
    font-family: var(--font-en);
    font-weight: 400;
    letter-spacing: 0.5px;
    direction: ltr;
    display: inline-block;
}

.en-title {
    font-family: var(--font-en);
    font-weight: 800;
    display: block;
    margin-top: 15px;
    font-size: 0.7em;
    letter-spacing: 1px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
    line-height: 1.3;
}

p {
    margin-bottom: 15px;
    color: #cccccc;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 120px 0;
}

.bg-dark {
    background-color: var(--black-light);
}

.text-center { text-align: center; }
.text-gold { color: var(--gold) !important; }
.text-gray { color: #888888 !important; }

/* Margins */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.ml-2 { margin-left: 0.5rem; }
.mr-2 { margin-right: 0.5rem; }

/* Display & Flex */
.d-inline-block { display: inline-block; }
.d-flex { display: flex; }
.gap-3 { gap: 1rem; }

/* Text Sizes */
.text-sm { font-size: 0.85rem; }
.text-md { font-size: 1.05rem; }
.text-xs { font-size: 0.75rem; }

/* Special Text Effects */
.gold-gradient {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hover-gold:hover {
    color: var(--gold) !important;
}

/* ====== 3. COMPONENTS ====== */

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--black);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
}

.loader .circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: var(--gold);
    border-bottom-color: var(--gold);
    border-radius: 50%;
    animation: spin 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

.loader .circle:nth-child(2) {
    width: 50px;
    height: 50px;
    top: 15px;
    left: 15px;
    border-top-color: var(--white);
    border-bottom-color: transparent;
    animation: spin 1s linear infinite reverse;
}

.loader-text {
    font-family: var(--font-en);
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--white);
    font-size: 0.9rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    transition: var(--transition-fast);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--black);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--gold-dark);
    transition: var(--transition-fast);
    z-index: -1;
}

.btn-primary:hover::before {
    width: 100%;
}

.btn-primary:hover {
    color: var(--black);
    box-shadow: var(--shadow-gold-hover);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--gold);
    color: var(--gold);
}

.btn-outline:hover {
    background-color: var(--gold);
    color: var(--black);
    box-shadow: var(--shadow-gold);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 18px 45px;
    font-size: 1.15rem;
}

/* Section Titles */
.section-title {
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.section-title .line {
    height: 4px;
    width: 70px;
    background-color: var(--gold);
    border-radius: 2px;
    position: relative;
}

.section-title .line::after {
    content: '';
    position: absolute;
    top: 0;
    right: 80px; /* RTL aware */
    width: 15px;
    height: 4px;
    background-color: var(--gold);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gold);
    margin-top: 20px;
    font-weight: 500;
}

/* ====== 4. HEADER & NAV ====== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    transition: var(--transition-fast);
    background-color: transparent;
}

header.scrolled {
    background-color: rgba(10, 10, 10, 0.98);
    padding: 15px 0;
    backdrop-filter: blur(15px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.6);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-img {
    max-height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

.footer-brand .logo-img {
    max-height: 60px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-list a {
    position: relative;
    font-weight: 600;
    display: inline-block;
    padding: 5px 0;
    font-size: 1.05rem;
}

.nav-list a .en-text {
    display: block;
    font-size: 0.7rem;
    color: #888;
    margin-top: 2px;
    transition: var(--transition-fast);
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0; /* RTL aware */
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: var(--transition-fast);
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--gold);
}

.nav-list a:hover .en-text,
.nav-list a.active .en-text {
    color: var(--gold-light);
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-en);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.lang-switch:hover {
    color: var(--gold);
}

.hamburger {
    display: none;
    font-size: 1.8rem;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition-fast);
}

.hamburger:hover {
    color: var(--gold);
}

/* ====== 5. HERO SECTION ====== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    /* Use a dark premium logistics stock photo */
    background: url('../img/hero_bg.png') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.75) 50%, rgba(10,10,10,0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background-color: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 30px;
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    backdrop-filter: blur(5px);
}

.hero-title {
    font-size: 4.2rem;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.hero-slogan {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 25px;
    font-weight: 600;
}

.hero-desc {
    font-size: 1.25rem;
    margin-bottom: 45px;
    max-width: 700px;
    color: #e0e0e0;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 60px;
    border: 2px solid var(--white);
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    opacity: 0.7;
    transition: var(--transition-fast);
}

.scroll-down i {
    font-size: 1.2rem;
    animation: scrollBounce 2s infinite;
}

.scroll-down:hover {
    opacity: 1;
    border-color: var(--gold);
    color: var(--gold);
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* ====== 6. ABOUT SECTION ====== */
/* Legacy grid - kept for reference */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* New layout: text + badge side by side */
.about-text-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    margin-bottom: 50px;
}

.about-badge-col {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-founded-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(212,175,55,0.05));
    border: 2px solid var(--gold);
    box-shadow: 0 0 30px rgba(212,175,55,0.15);
}

.about-founded-badge .founded-year {
    font-family: var(--font-en);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.about-founded-badge .founded-label {
    font-size: 0.9rem;
    color: #aaa;
    margin-top: 5px;
}

/* Full-width promotional image */
.about-main-img-wrap {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    border: 1px solid rgba(212,175,55,0.15);
    line-height: 0;
}

.about-main-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    /* Desktop: natural aspect ratio of image */
    max-height: 520px;
    object-position: center;
}

/* Tablet */
@media (max-width: 900px) {
    .about-text-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .about-badge-col {
        justify-content: center;
    }
    .about-main-img {
        max-height: 380px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .about-founded-badge {
        width: 100px;
        height: 100px;
    }
    .about-founded-badge .founded-year {
        font-size: 1.7rem;
    }
    .about-main-img {
        max-height: 220px;
    }
    .about-text-grid {
        margin-bottom: 30px;
    }
}

.about-content p {
    font-size: 1.15rem;
    margin-bottom: 20px;
}

.about-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to left, transparent, rgba(212, 175, 55, 0.3), transparent);
    margin: 30px 0;
}

.image-wrapper {
    position: relative;
    border-radius: 15px;
    padding: 10px;
}

.image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0; /* RTL aware */
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold);
    border-radius: 15px;
    transform: translate(15px, 15px); /* RTL aware */
    z-index: 0;
    transition: var(--transition-fast);
}

.image-wrapper:hover::before {
    transform: translate(10px, 10px);
}

.about-img-actual {
    border-radius: 12px;
    position: relative;
    z-index: 1;
    width: 100%;
    display: block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    object-fit: cover;
}

/* For the new square promotional image */
.about-image-square .about-img-actual {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 768px) {
    .about-image-square .about-img-actual {
        aspect-ratio: 4 / 3;
    }
}

.image-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(45deg, var(--gray-dark), var(--black));
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 6rem;
    color: var(--gold);
    border-radius: 15px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.glow-effect {
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--gold);
    filter: blur(100px);
    opacity: 0.15;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    left: 10px; /* RTL aware */
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
    color: var(--black);
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
    border: 6px solid var(--black);
    z-index: 2;
}

.experience-badge .year {
    font-size: 2.2rem;
    font-weight: 800;
    font-family: var(--font-en);
    line-height: 1;
    margin-bottom: 4px;
}

.experience-badge .text {
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.2;
}

/* Hide badge on mobile to avoid overlapping the square promotional image */
@media (max-width: 768px) {
    .experience-badge {
        display: none;
    }
}

/* ====== 7. WHY CHOOSE US ====== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--black);
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.03);
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0; /* RTL aware */
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition-fast);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0; /* RTL aware */
    width: 4px;
    height: 0;
    background-color: var(--gold);
    transition: var(--transition-fast);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: var(--shadow-md);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover::after {
    height: 100%;
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 25px;
    transition: var(--transition-fast);
}

.feature-card:hover .icon-wrapper {
    background: var(--gold);
    color: var(--black);
    transform: scale(1.1) rotate(5deg);
}

/* ====== 8. SERVICES SECTION ====== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.service-card {
    background-color: var(--gray-dark);
    border-radius: 15px;
    transition: var(--transition-fast);
    border-bottom: 4px solid transparent;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 100%;
}

.service-card:hover {
    background-color: #222;
    transform: translateY(-10px);
    border-bottom-color: var(--gold);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.service-icon {
    width: 100%;
    height: 180px;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.05) 0%, rgba(10, 10, 10, 1) 100%);
    color: var(--gold);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 4.5rem;
    transition: var(--transition-slow);
}

.service-card:hover .service-icon {
    font-size: 5.5rem;
    color: var(--gold-light);
}

.service-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.partners-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

/* Legacy badge kept for fallback */
.partner-badge {
    font-family: var(--font-en);
    font-size: 1.4rem;
    font-weight: 700;
    color: #555;
    padding: 15px 30px;
    background-color: var(--black-light);
    border: 1px solid #222;
    border-radius: 8px;
    transition: var(--transition-fast);
    letter-spacing: 1px;
}

.partner-badge:hover {
    color: var(--gold);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.1);
    transform: translateY(-3px);
}

/* Partner Cards with Logo Image */
.partner-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 24px 28px;
    transition: var(--transition-fast);
    cursor: default;
    min-width: 160px;
}

.partner-card:hover {
    border-color: rgba(212, 175, 55, 0.35);
    background: rgba(212, 175, 55, 0.05);
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.partner-logo-wrap {
    width: 100px;
    height: 100px;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    flex-shrink: 0;
}

.partner-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.partner-name {
    font-family: var(--font-en);
    font-size: 0.95rem;
    font-weight: 700;
    color: #aaa;
    letter-spacing: 0.5px;
    transition: var(--transition-fast);
    text-align: center;
}

.partner-card:hover .partner-name {
    color: var(--gold);
}

/* ====== 9. STATISTICS ====== */
.statistics {
    position: relative;
    background: url('../img/hero_bg.png') center/cover fixed;
}

.statistics-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.92);
}

.relative-z {
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 10px;
    background: rgba(255,255,255,0.02);
    backdrop-filter: blur(5px);
    transition: var(--transition-fast);
}

.stat-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.counter, .counter-percent {
    font-size: 4rem;
    font-weight: 800;
    font-family: var(--font-en);
    color: var(--white);
    margin-bottom: 5px;
    line-height: 1;
    display: inline-block;
}

.counter-percent {
    color: var(--white);
}

/* ====== 10. CTA SECTION ====== */
.cta {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4IiBoZWlnaHQ9IjgiPgo8cmVjdCB3aWR0aD0iOCIgaGVpZ2h0PSI4IiBmaWxsPSIjZmZmIiBmaWxsLW9wYWNpdHk9IjAuMDUiLz4KPC9zdmc+') repeat;
    opacity: 0.3;
}

.cta h2, .text-dark-bold {
    color: var(--black);
}

.text-dark-desc {
    color: #333;
    font-weight: 500;
    font-size: 1.2rem;
}

.cta .btn-primary {
    background-color: var(--black);
    color: var(--gold);
}

.cta .btn-primary::before {
    background-color: var(--gray-dark);
}

.cta .btn-primary:hover {
    color: var(--gold-light);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* ====== 11. CONTACT SECTION ====== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    background-color: var(--gray-dark);
    padding: 50px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 35px;
}

.info-item .icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
    color: var(--gold);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    font-size: 1.8rem;
    margin-left: 20px; /* RTL aware */
    flex-shrink: 0;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.info-content h4 {
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.info-content p {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.social-btn {
    width: 50px;
    height: 50px;
    background-color: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 1.3rem;
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
}

.social-btn:hover {
    background-color: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.map-wrapper {
    height: 100%;
    min-height: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1524661135-423995f22d0b?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80') center/cover no-repeat;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.85);
}

.map-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 30px;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.map-content i.fa-map-location-dot {
    font-size: 3rem;
    color: var(--gold);
}

/* ====== 12. FOOTER ====== */
.footer {
    background-color: #050505;
    padding: 80px 0 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
}

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

.footer-newsletter p {
    color: #aaaaaa;
    font-size: 0.95rem;
    line-height: 1.6;
}

.newsletter-form {
    width: 100%;
}

.newsletter-input-group {
    display: flex;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background-color: rgba(255, 255, 255, 0.03);
    transition: var(--transition-fast);
}

.newsletter-input-group:focus-within {
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.newsletter-input {
    width: 100%;
    padding: 12px 20px;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 0.95rem;
    outline: none;
}

[dir="ltr"] .newsletter-input {
    direction: ltr;
}

.newsletter-btn {
    background-color: var(--gold);
    color: var(--black);
    border: none;
    padding: 0 20px;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-btn:hover {
    background-color: var(--white);
    color: var(--black);
}

.footer-brand p {
    max-width: 350px;
}

.footer-heading {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0; /* RTL aware */
    width: 40px;
    height: 2px;
    background-color: var(--gold);
}

.footer-links ul li, .footer-services ul li {
    margin-bottom: 15px;
}

.footer-links ul li a, .footer-services ul li a {
    color: #aaaaaa;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links ul li a::before, .footer-services ul li a::before {
    content: '\f104'; /* FontAwesome angle-left for RTL */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--gold);
    font-size: 0.8rem;
    transition: var(--transition-fast);
}

.footer-links ul li a:hover, .footer-services ul li a:hover {
    color: var(--white);
    transform: translateX(-5px); /* RTL aware */
}

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

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px; /* RTL aware */
    width: 50px;
    height: 50px;
    background-color: var(--gold);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-md);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--white);
    transform: translateY(-5px);
}

/* ====== 13. ANIMATIONS & UTILITIES ====== */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px); /* Adjust for RTL */
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px); /* Adjust for RTL */
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.appear {
    opacity: 1;
    transform: translate(0);
}

/* ====== 14. RESPONSIVE MEDIA QUERIES ====== */
@media (max-width: 1024px) {
    .hero-title { font-size: 3.5rem; }
    .about-grid, .contact-grid { gap: 40px; }
}

@media (max-width: 992px) {
    .about-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .experience-badge {
        right: auto;
        left: 20px;
        bottom: 20px;
    }
    
    .image-wrapper::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .fade-in-right, .fade-in-left {
        transform: translateY(20px);
    }
    
    .fade-in-right.appear, .fade-in-left.appear {
        transform: translate(0);
    }

    .hamburger {
        display: block;
        position: relative;
        z-index: 1010;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        height: 100vh;
        background-color: var(--black);
        flex-direction: column;
        justify-content: center;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0,0,0,0.8);
        padding: 40px;
        border-left: 1px solid rgba(212, 175, 55, 0.2);
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        width: 100%;
        text-align: center;
        gap: 25px;
        margin-bottom: 40px;
    }
    
    .nav-list a {
        display: block;
        padding: 10px 0;
        font-size: 1.4rem;
    }
    
    .nav-actions {
        flex-direction: column;
        width: 100%;
        gap: 25px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-slogan {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .section-padding {
        padding: 80px 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        padding: 30px 20px;
    }
    
    .info-item {
        flex-direction: column;
    }
    
    .info-item .icon {
        margin-left: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.2rem; }
    .section-title h2 { font-size: 2.2rem; }
    
    .counter, .counter-percent {
        font-size: 3rem;
    }
    
    .services-grid, .features-grid, .stats-grid, .form-grid {
        grid-template-columns: 1fr;
    }

    .logo-img { max-height: 40px; }
    .footer-brand .logo-img { max-height: 50px; }
}

/* ====== 10.5 DRIVER REGISTRATION ====== */
.registration {
    position: relative;
    background: url('../img/registration_bg.png') center/cover fixed;
}

.registration-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10,10,10,0.95) 0%, rgba(20,20,20,0.85) 100%);
    backdrop-filter: blur(8px);
}

.registration-form-wrapper {
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    backdrop-filter: blur(15px);
    position: relative;
    z-index: 2;
}

.form-section {
    background: rgba(10, 10, 10, 0.5);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 25px;
    transition: var(--transition-fast);
}

.form-section:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.form-section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.form-section-header i {
    font-size: 1.8rem;
    color: var(--gold);
}

.form-section-header h4 {
    margin: 0;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.input-group {
    position: relative;
    display: flex;
    flex-direction: column;
}

.input-group label {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--white);
    display: flex;
    flex-direction: column;
}

.lang-hint {
    font-family: var(--font-en);
    font-size: 0.75rem;
    color: #888;
    margin-top: 2px;
    font-weight: 400;
}

.input-group input[type="text"],
.input-group input[type="tel"],
.input-group input[type="email"],
.input-group input[type="number"],
.input-group input[type="date"],
.input-group select.form-select {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 15px 20px 15px 45px; /* LTR padding: icon on left, text starts at 45px */
    border-radius: 8px;
    font-family: var(--font-ar);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.input-group select.form-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center; /* LTR: dropdown arrow on the right */
    background-size: 16px;
}

.input-group select.form-select option {
    background-color: #1a1a1a;
    color: var(--white);
}

/* Custom Saudi Phone Input Styling */
.phone-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: var(--transition-fast);
    direction: ltr; /* Phone prefixes and numbers are strictly left-to-right */
    width: 100%;
}

.phone-input-wrapper:focus-within {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
    background: rgba(0, 0, 0, 0.6);
}

.phone-prefix {
    padding: 15px 15px 15px 20px;
    color: var(--gold);
    font-weight: 700;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.05rem;
    user-select: none;
    background: rgba(212, 175, 55, 0.05);
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.phone-input-wrapper input {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 15px 20px !important;
    font-size: 1rem;
    letter-spacing: 1.5px;
    color: var(--white);
    flex: 1;
    width: 100%;
}

[dir="rtl"] .input-group input,
[dir="rtl"] .input-group select.form-select {
    padding: 15px 45px 15px 20px; /* RTL padding: icon on right, text starts at 45px */
}

[dir="rtl"] .input-group select.form-select {
    background-position: left 20px center; /* RTL: dropdown arrow on the left */
}

/* Custom Calendar Icon for Date inputs */
.input-group input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(0.8) sepia(1) saturate(5) hue-rotate(15deg); /* Elegant gold calendar indicator */
    cursor: pointer;
    opacity: 0.8;
    transition: var(--transition-fast);
}

.input-group input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
    filter: invert(1) sepia(1) saturate(5) hue-rotate(15deg);
}

.input-group input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
    background: rgba(0, 0, 0, 0.6);
}

.input-icon {
    position: absolute;
    top: 48px;
    left: 15px; /* LTR: Icon is on the left */
    right: auto;
    color: var(--gold);
    font-size: 1.1rem;
    opacity: 0.7;
    transition: var(--transition-fast);
}

[dir="rtl"] .input-icon {
    right: 15px; /* RTL: Icon is on the right */
    left: auto;
}

.input-group input:focus + .input-icon {
    opacity: 1;
}

/* Custom Radio Buttons */
.radio-options {
    display: flex;
    gap: 25px;
    margin-top: 5px;
}

.radio-container, .checkbox-container {
    display: block;
    position: relative;
    padding-right: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 1.1rem;
    user-select: none;
    color: #ddd;
    transition: var(--transition-fast);
}

.radio-container:hover, .checkbox-container:hover {
    color: var(--white);
}

.radio-container input, .checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark, .check-box {
    position: absolute;
    top: 0;
    right: 0;
    height: 22px;
    width: 22px;
    background-color: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    transition: var(--transition-fast);
}

.checkbox-container .check-box {
    border-radius: 4px;
}

.radio-container:hover input ~ .checkmark, 
.checkbox-container:hover input ~ .check-box {
    background-color: rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
}

.radio-container input:checked ~ .checkmark,
.checkbox-container input:checked ~ .check-box {
    background-color: var(--gold);
    border-color: var(--gold);
}

.checkmark:after, .check-box:after {
    content: "";
    position: absolute;
    display: none;
}

.radio-container input:checked ~ .checkmark:after,
.checkbox-container input:checked ~ .check-box:after {
    display: block;
}

.radio-container .checkmark:after {
    top: 6px;
    left: 6px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--black);
}

.checkbox-container .check-box:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid var(--black);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

/* File Upload */
.file-upload-box {
    position: relative;
    border: 2px dashed rgba(212, 175, 55, 0.4);
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    transition: var(--transition-fast);
    cursor: pointer;
    overflow: hidden;
}

.file-upload-box:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
}

.file-upload-box input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 10;
}

.file-upload-box i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 10px;
    display: block;
}

.file-upload-box span {
    color: #aaa;
    font-size: 0.95rem;
}

.file-upload-box.has-file {
    border-style: solid;
    border-color: #28a745;
    background: rgba(40, 167, 69, 0.1);
}

.file-upload-box.has-file i {
    color: #28a745;
}

/* Form Buttons */
.form-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.submit-btn {
    min-width: 280px;
    height: 60px;
    position: relative;
}

.btn-whatsapp {
    background-color: #25D366;
    color: #fff;
    border-color: transparent;
    min-width: 280px;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    color: #fff;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    transform: translateY(-2px);
}

.btn-loader {
    display: none;
    width: 25px;
    height: 25px;
    border: 3px solid rgba(0,0,0,0.3);
    border-top-color: var(--black);
    border-radius: 50%;
    animation: spin 1s infinite linear;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -12.5px;
    margin-left: -12.5px;
}

.submit-btn.loading .btn-text {
    opacity: 0;
}

.submit-btn.loading .btn-loader {
    display: block;
}

/* Success Popup */
.success-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}

.success-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.success-popup-box {
    background: var(--gray-dark);
    border: 1px solid var(--gold);
    border-radius: 15px;
    padding: 50px 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    transform: scale(0.8) translateY(30px);
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 25px 50px rgba(0,0,0,0.5), inset 0 0 20px rgba(212, 175, 55, 0.1);
}

.success-popup-overlay.active .success-popup-box {
    transform: scale(1) translateY(0);
}

.success-icon {
    font-size: 5rem;
    color: #28a745;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(40, 167, 69, 0.4);
}

.success-popup-box h3 {
    color: var(--gold);
    font-size: 1.8rem;
}

/* Sticky WhatsApp globally */
.sticky-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px; /* RTL aware: right side typically */
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.2rem;
    z-index: 999;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    transition: var(--transition-fast);
    animation: pulse 2s infinite;
}

.sticky-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-5px) scale(1.1);
}

.registration {
    min-height: 100vh;
    padding-top: 150px;
    padding-bottom: 80px;
    position: relative;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 768px) {
    .registration {
        padding-top: 100px !important;
        padding-bottom: 50px !important;
    }
    .registration-form-wrapper {
        padding: 20px 12px;
        border-radius: 12px;
        margin-top: 20px !important;
    }
    .form-section {
        padding: 20px 12px;
        margin-bottom: 20px;
    }
    .form-section-header h4 {
        font-size: 1.15rem;
    }
    .form-section-header i {
        font-size: 1.5rem;
    }
    .form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .file-upload-box {
        padding: 20px 10px;
    }
    .file-upload-box i {
        font-size: 2rem;
    }
    .radio-options {
        flex-direction: column;
        gap: 10px;
    }
    .submit-btn, .btn-whatsapp {
        min-width: 100%;
        width: 100%;
    }
    .sticky-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }
    .back-to-top {
        left: 20px;
        bottom: 20px;
    }
}

/* ====== 13. MULTILINGUAL & LTR SUPPORT ====== */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 3px 6px;
    border-radius: 20px;
}
.lang-btn {
    background: none;
    border: none;
    color: var(--white);
    font-family: var(--font-en);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    padding: 5px 8px;
    border-radius: 15px;
    transition: var(--transition-fast);
}
.lang-btn.active {
    background: var(--gold);
    color: var(--black);
}
.lang-btn:hover:not(.active) {
    color: var(--gold);
}

/* LTR Adjustments */
[dir="ltr"] .nav-list a::after {
    left: 0;
    right: auto;
}
[dir="ltr"] .section-title .line::after {
    left: 80px;
    right: auto;
}
[dir="ltr"] .image-wrapper::before {
    left: 0;
    right: auto;
    transform: translate(-15px, 15px);
}
[dir="ltr"] .image-wrapper:hover::before {
    transform: translate(-10px, 10px);
}
[dir="ltr"] .experience-badge {
    right: 10px;
    left: auto;
}
[dir="ltr"] .feature-card::before, [dir="ltr"] .feature-card::after {
    left: 0;
    right: auto;
}
[dir="ltr"] .input-group input {
    padding: 15px 20px 15px 45px;
}
[dir="ltr"] .input-icon {
    left: 15px;
    right: auto;
}
[dir="ltr"] .radio-container, [dir="ltr"] .checkbox-container {
    padding-left: 35px;
    padding-right: 0;
}
[dir="ltr"] .checkmark, [dir="ltr"] .check-box {
    left: 0;
    right: auto;
}
[dir="ltr"] .radio-container .checkmark:after {
    left: 6px;
}
[dir="ltr"] .checkbox-container .check-box:after {
    left: 7px;
}
[dir="ltr"] .back-to-top {
    right: 30px;
    left: auto;
}
[dir="ltr"] .sticky-whatsapp {
    left: 30px;
    right: auto;
}
[dir="ltr"] .info-item .icon {
    margin-right: 20px;
    margin-left: 0;
}

/* ====== 15. FAQ ACCORDION SECTION ====== */
.faq-accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background-color: var(--gray-dark);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    transition: var(--transition-fast);
    user-select: none;
    gap: 15px;
}

.faq-question:hover {
    color: var(--gold);
}

.faq-chevron {
    font-size: 0.95rem;
    color: var(--gold);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s ease;
    background-color: rgba(0, 0, 0, 0.15);
    border-top: 1px solid transparent;
}

.faq-answer p {
    padding: 24px 28px;
    color: #b0b0b0;
    line-height: 1.8;
    font-size: 0.95rem;
    margin: 0;
}

.faq-item.active {
    border-color: rgba(212, 175, 55, 0.35);
    background-color: rgba(212, 175, 55, 0.02);
}

.faq-item.active .faq-question {
    color: var(--gold);
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    border-top-color: rgba(255, 255, 255, 0.03);
}

