:root {
    --color-black: #050505;
    --color-black-light: #0d0d0d;
    --color-black-lighter: #151515;
    --color-white: #ffffff;
    --color-yellow: #FFD700;
    --color-yellow-hover: #FFC700;
    --color-gold: #FFD700;
    --color-gold-hover: #FFC700;
    --color-gray: #f5f5f5;
    --color-text: #ffffff;
    --color-text-muted: #aaaaaa;
    --color-text-light: #cccccc;
    --color-danger: #ff4444;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    --container-width: 1400px;
    --header-height: 60px;

    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);
    --transition-fast: 0.3s ease;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Accessibilité : lien d'évitement (skip link) */
.skip-link {
    position: absolute;
    top: -100px;
    left: 20px;
    padding: 12px 20px;
    background: var(--color-gold);
    color: var(--color-black);
    font-weight: 600;
    z-index: 10000;
    border-radius: 4px;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 20px;
    outline: 2px solid var(--color-white);
    outline-offset: 2px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-black-light);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.text-light {
    font-family: 'Arial Black', Gadget, sans-serif;
    color: var(--color-yellow);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}



.bg-dark {
    color: var(--color-black);
}

.bg-light-gray {
    background-color: var(--color-gray);
}

.section {
    padding: 70px 0;
}

.section-title {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.divider-gold {
    height: 3px;
    width: 80px;
    background-color: var(--color-yellow);
    margin: 15px auto 30px;
}

.text-accent {
    color: var(--color-yellow) !important;
}

.text-danger {
    color: var(--color-danger);
}

.bg-dark-alt {
    background-color: var(--color-black-light);
    color: var(--color-white);
}

.mt-2 {
    margin-top: 1rem;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.btn-gold {
    background-color: var(--color-yellow);
    color: var(--color-black);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.btn-gold:hover {
    background-color: var(--color-yellow-hover);
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.6), 0 10px 20px rgba(0, 0, 0, 0.4);
    filter: brightness(1.1);
}

.btn-gold-block {
    background-color: var(--color-yellow);
    color: var(--color-black);
    width: 100%;
    padding: 14px;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.btn-gold-block:hover {
    background-color: var(--color-yellow-hover);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.7), 0 6px 20px rgba(255, 215, 0, 0.5);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
    display: block;
}


.btn-whatsapp {
    background-color: #1a7a3c;
    /* Darker green: contrast ~5.5:1 with white */
    color: #ffffff;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-sm {
    padding: 8px 15px;
    font-size: 0.85rem;
    text-transform: none;
    /* Less aggressive for navbar */
    letter-spacing: 0.5px;
}

.btn-whatsapp:hover {
    background-color: #145c2d;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
    padding: 0 10px;
    /* Mobile Padding */
}

@media (min-width: 992px) {
    .header-container {
        padding: 0 30px;
        /* Desktop Padding */
    }
}

.logo {
    flex: 1;
    display: flex;
    align-items: center;
    padding-left: 0;
    /* Mobile: No padding */
}

@media (min-width: 992px) {
    .logo {
        padding-left: 30px;
        /* Desktop: Restore padding */
    }
}

.nav-menu {
    /* Mobile First: Hidden/Off-canvas style */
    position: fixed;
    top: 60px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 60px);
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    padding: 40px;
    transition: 0.4s;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    z-index: 1001;
    overflow-y: auto;
}

.nav-menu.active {
    right: 0;
}

@media (min-width: 992px) {
    .nav-menu {
        position: static;
        right: auto;
        width: auto;
        height: auto;
        background: transparent;
        backdrop-filter: none;
        padding: 0;
        border-top: none;
        display: flex;
        flex-direction: row;
        justify-content: center;
        overflow-y: visible;
        flex: 2;
    }
}

#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgb(255, 255, 255);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition-fast);
}

.logo-img {
    height: 60px;
    width: auto;
    max-width: none;
    /* Prevent flex container from squishing width */
    display: block;
    transition: var(--transition-fast);
}

.logo:hover .logo-img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.footer .logo-img {
    height: 80px;
    max-width: none;
}

.nav-links {
    display: flex;
    gap: 60px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    color: var(--color-black);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-gold);
    transition: var(--transition-fast);
}

.nav-links a:hover::after {
    width: 100%;
    box-shadow: 0 0 10px var(--color-gold);
}

.header-actions {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 35px;
}

.header-tagline {
    display: none;
    /* Mobile First: Hidden */
    font-size: 0.9rem;
    font-weight: 500;
    font-family: 'Great Vibes', cursive;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--color-text-muted);
    white-space: nowrap;
    animation: romanticGlow 3s infinite ease-in-out;
    letter-spacing: 1px;
}

@media (min-width: 992px) {
    .header-tagline {
        display: inline-block;
        /* Desktop: Visible */
    }
}

@keyframes romanticGlow {

    0%,
    100% {
        text-shadow: 0 0 2px rgba(255, 255, 255, 0.1);
        transform: scale(1);
    }

    50% {
        text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
        transform: scale(1.05);
    }
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-left: 10px;
    border-left: 1px solid rgba(0, 0, 0, 0.05);
}

.lang-icon-wrapper {
    font-size: 1.1rem;
    color: var(--color-black);
    display: flex;
    align-items: center;
}

.lang-list-vertical {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1;
    gap: 2px;
    /* Spacing between touch targets */
}

.lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    color: #595959;
    /* Contrast 7.1:1 on white – WCAG AA */
    padding: 4px 6px;
    /* Min 24px touch target height */
    min-height: 24px;
    text-align: left;
    transition: var(--transition-fast);
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.lang-btn:hover {
    color: var(--color-gold);
}

.lang-btn.active {
    color: var(--color-gold);
}

[dir="rtl"] .lang-switcher {
    border-left: none;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    padding-left: 0;
    padding-right: 10px;
}

[dir="rtl"] .lang-btn {
    text-align: right;
}

.mobile-toggle {
    display: none;
    /* Changed: Hidden as requested */
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-black);
}

@media (min-width: 992px) {
    .mobile-toggle {
        display: none;
    }
}

.hero-new {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: var(--header-height);
    padding-bottom: 60px;
    text-align: center;
    background:
        linear-gradient(to bottom,
            rgba(255, 255, 255, 0.2) 0%,
            rgba(0, 0, 0, 0.3) 100%,
            var(--color-black-light) 100%),
        url('../assets/hero-bg.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    /* Ensure it scrolls with content */
    overflow: hidden;
}

@supports (height: 100dvh) {
    .hero-new {
        min-height: 100dvh;
    }
}

.hero-container-centered {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding-bottom: 50px;
}

.hero-text-centered {
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-title-new {
    font-family: 'benguit';
    font-size: 1.8rem;
    line-height: 1.3;
    font-weight: 400;
    margin-bottom: 30px;
    padding: 0 10px;
    color: var(--color-white);
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 215, 0, 0.2);
}

@media (min-width: 768px) {
    .hero-title-new {
        font-size: 3rem;
    }
}

@media (min-width: 992px) {
    .hero-title-new {
        font-size: 5rem;
        line-height: 1.4;
        margin-bottom: 60px;
        padding: 0;
    }
}

.hero-title-new span {
    display: inline-block;
    animation: wave-text 2s ease-in-out infinite;
    animation-delay: calc(0.1s * var(--i));
}

@keyframes wave-text {

    0%,
    100% {
        transform: translateY(0);
    }

    20% {
        transform: translateY(-15px);
        color: var(--color-yellow);
    }
}


.contact-bar-wrapper {
    background-color: transparent;
    border-bottom: none;
    padding: 15px 0;
    width: 100%;
    position: absolute;
    bottom: 20px;
    left: 0;
    z-index: 10;
}

.contact-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
    padding: 0 20px;
}

.contact-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    width: 100%;
}

.address-row .contact-bar-item {
    font-size: 1.4rem;
    font-weight: 600;
}

.social-row .contact-bar-item {
    font-size: 1.1rem;
}

.contact-bar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-white);
    font-family: 'Comic Sans MS', 'Comic Sans', cursive;
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact-bar-item:hover {
    color: var(--color-yellow);
    transform: translateY(-2px);
}

.contact-bar-item i {
    font-size: 1.3rem;
    color: var(--color-yellow);
}

.car-split-container {
    display: grid;
    grid-template-columns: 1fr;
    /* Mobile & Tablet default */
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .car-split-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .car-split-container {
        grid-template-columns: repeat(2, 1fr);
        /* Changed to 2 columns as requested */
    }
}

.car-block {
    display: flex;
    flex-direction: column;
    background: var(--color-black-light);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-fast);
    height: 100%;
}

.car-block:hover {
    border-color: var(--color-yellow);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
}

.car-block-image {
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
}

.car-block-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.car-block:hover .car-block-image img {
    transform: scale(1.05);
}

.car-block-details {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.car-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.car-price {
    font-size: 1.4rem;
    color: var(--color-white);
    margin-bottom: 20px;
    font-weight: 300;
}

.car-price .price-amount {
    font-weight: 700;
    color: var(--color-yellow);
}

.car-specs-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.spec-row {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-gray);
    font-size: 0.9rem;
}

.modal-form-title {
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 10px;
}

.detail-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-row .form-group {
    flex: 1;
}

.clean-input {
    width: 100%;
    /* Mobile First: 100% */
    padding: 12px;
    border: 1px solid #000000;
    border-radius: 6px;
    background: #f9f9f9;
    font-family: var(--font-body);
    transition: var(--transition-fast);
}

.clean-input:focus {
    border-color: var(--color-yellow);
    background: white;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.clean-input-file {
    width: 100%;
    padding: 10px;
    background: #043b55d3;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .car-block {
        flex-direction: column;
    }

    .car-block-image {
        min-height: 250px;
    }

    .contact-bar {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}


.contact-container {
    display: grid;
    grid-template-columns: 1fr;
    /* Mobile First: 1 col */
    gap: 60px;
    margin-bottom: 50px;
}

@media (min-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr 1fr;
    }
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-top: 5px;
}

.info-item h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}


.fade-up,
.fade-right,
.fade-left {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-right {
    transform: translateX(-30px);
}

.fade-left {
    transform: translateX(30px);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.footer {
    background-color: var(--color-black-light);
    color: var(--color-white);
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    /* Mobile First: 1 col */
    gap: 50px;
    margin-bottom: 50px;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }
}

@media (min-width: 992px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
}

.footer-desc {
    color: var(--color-text-light);
    margin-top: 20px;
    margin-bottom: 30px;
    font-size: 0.95rem;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: var(--color-gold);
    color: var(--color-black);
}

.footer-col h4 {
    color: var(--color-white);
    margin-bottom: 25px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background-color: var(--color-gold);
}

@media (min-width: 768px) {
    .footer-col h4::after {
        left: 0;
        transform: none;
    }
}

.footer-links li,
.footer-contact li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--color-text-light);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-gold);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    color: var(--color-text-light);
}

.footer-contact i {
    color: var(--color-gold);
    margin-top: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: var(--color-text-light);
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    [dir="rtl"] .footer-col h4::after {
        left: auto;
        right: 0;
        transform: none;
    }
}

[dir="rtl"] .footer-links a:hover {
    padding-left: 0;
    padding-right: 5px;
}



/* RTL Support */
[dir="rtl"] {
    font-family: 'Tahoma', 'Segoe UI', sans-serif;
    /* Better for Arabic */
}

[dir="rtl"] .nav-links {
    padding-right: 0;
}

[dir="rtl"] .logo-text,
[dir="rtl"] .logo-sub {
    text-align: right;
}

[dir="rtl"] .info-item {
    text-align: right;
}

[dir="rtl"] .info-item i {
    margin-right: 0;
    margin-left: 20px;
}

[dir="rtl"] .project-item {
    border-left: none;
    border-right: 4px solid var(--color-gold);
}

[dir="rtl"] .price-tag {
    right: auto;
    left: 15px;
}

[dir="rtl"] .fade-right {
    transform: translateX(30px);
}

[dir="rtl"] .fade-left {
    transform: translateX(-30px);
}

/* Reservation Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    overflow-y: auto;
    padding: 20px;
}

.modal-content {
    background-color: var(--color-black);
    margin: 50px auto;
    padding: 0;
    border: 1px solid rgba(255, 215, 0, 0.2);
    width: 100%;
    max-width: 1000px;
    position: relative;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.8);
    animation: modalSlideUp 0.4s ease-out;
}

@keyframes modalSlideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    color: var(--color-text-light);
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition-fast);
    background: none;
    border: none;
    padding: 4px;
    line-height: 1;
}

.close-modal:hover {
    color: var(--color-gold);
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-header h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--color-black);
}

.modal-header p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.reservation-form .form-group {
    margin-bottom: 20px;
}

.reservation-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.95rem;
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 0;
    /* Square look for premium feel */
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
    background-color: #FAFAFA;
}

.reservation-form input:focus,
.reservation-form select:focus,
.reservation-form textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    background-color: #fff;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 10px;
}

/* RTL Support for Modal */
[dir="rtl"] .close-modal {
    right: auto;
    left: 20px;
}

[dir="rtl"] .text-align-right {
    /* Helper if needed later */
    text-align: right;
}

@media (max-width: 600px) {
    .modal-content {
        margin: 20px auto;
        padding: 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* Custom Interactive Accents */
.spec-row i,
.contact-bar-item i,
.info-item i,
.footer-contact i {
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.3));
    transition: var(--transition-fast);
}

.spec-row:hover i,
.contact-bar-item:hover i,
.info-item:hover i {
    transform: scale(1.2);
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

.car-block:hover {
    border-color: var(--color-yellow);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.15);
}

.divider-gold {
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

::selection {
    background: var(--color-yellow);
    color: var(--color-black);
}

/* Glassmorphism for cards */
.car-block,
.review-card {
    background: rgba(13, 13, 13, 0.7);
    backdrop-filter: blur(10px);
}

/* About Section Enhancements */
.img-about {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.5s ease;
}

.img-about:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 40px;
}

.about-text {
    flex: 1;
}

.hover-reveal-text {
    position: relative;
    padding: 15px;
    z-index: 1;
    transition: color 0.4s ease;
    cursor: default;
    border-radius: 8px;
    font-family: 'Comic Sans MS', 'Comic Sans', cursive, sans-serif;
    font-size: 1.6rem;
    line-height: 1.5;
}

.hover-reveal-text::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 215, 0, 0.1);
    /* Subtle Gold/Yellow */
    border-left: 3px solid var(--color-yellow);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    border-radius: 0 8px 8px 0;
}

.hover-reveal-text:hover::before {
    transform: scaleX(1);
}

.hover-reveal-text:hover {
    color: var(--color-white);
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-yellow);
    border-radius: 15px;
    z-index: -1;
    transition: var(--transition-fast);
}

.about-image:hover::after {
    top: 5px;
    right: 5px;
}

/* FINAL RTL POLISH */
[dir="rtl"] body {
    text-align: right;
    direction: rtl;
}

/* Logo Padding Flip */
[dir="rtl"] .logo {
    padding-left: 0;
    padding-right: 0;
    /* Mobile Default */
}

@media (min-width: 992px) {
    [dir="rtl"] .logo {
        padding-left: 0;
        padding-right: 30px;
        /* Desktop Override */
    }

    [dir="rtl"] .header-tagline {
        margin-right: 0;
        margin-left: 20px;
    }

    [dir="rtl"] .footer-grid {
        text-align: right;
    }
}

/* Underlines Fix for all headings in RTL */
[dir="rtl"] h1::after,
[dir="rtl"] h2::after,
[dir="rtl"] h3::after,
[dir="rtl"] h4::after,
[dir="rtl"] .section-title::after {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
}

@media (min-width: 992px) {

    [dir="rtl"] h1::after,
    [dir="rtl"] h2::after,
    [dir="rtl"] h3::after,
    [dir="rtl"] h4::after,
    [dir="rtl"] .section-title::after {
        left: auto;
        right: 0;
        transform: none;
    }
}

/* Ensure Text Alignment in Cards */
[dir="rtl"] .car-title,
[dir="rtl"] .car-price,
[dir="rtl"] .spec-row,
[dir="rtl"] .footer-desc,
[dir="rtl"] .contact-bar-item {
    text-align: right;
}

[dir="rtl"] .section-header {
    text-align: center;
}

/* Modal RTL */
[dir="rtl"] .close-modal {
    right: auto;
    left: 20px;
}

[dir="rtl"] .modal-header,
[dir="rtl"] .reservation-form label {
    text-align: right;
}

[dir="rtl"] .lang-switcher {
    border-left: none;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    padding-left: 0;
    padding-right: 10px;
}

/* Force LTR for numbers and emails in RTL pages */
[dir="rtl"] .ltr-text {
    direction: ltr !important;
    display: inline-block;
    unicode-bidi: isolate;
}

/* Fix icon visibility and margins in RTL */
[dir="rtl"] .info-item i,
[dir="rtl"] .spec-row i,
[dir="rtl"] .footer-contact i {
    margin-left: 15px !important;
    margin-right: 0 !important;
}

/* For items that should stay LTR even in Arabic (like top bar contact) */
[dir="rtl"] .contact-bar-item {
    direction: ltr !important;
    display: flex;
    align-items: center;
    gap: 8px;
}

[dir="rtl"] .contact-bar-item i {
    margin: 0 !important;
}

/* Ensure contact container has breathing room on the right in RTL */
[dir="rtl"] .contact-info {
    padding-right: 15px;
}