

: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: 1200px;
    --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;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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%;
    display: block;
}


.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: 40px 0;
}

.section-title {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.divider-gold {
    height: 3px;
    width: 60px;
    background-color: var(--color-yellow);
    margin: 10px auto 20px;
}

.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;
}


.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);
}

.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-dark {
    background-color: var(--color-black);
    color: var(--color-gold);
    border-color: var(--color-black);
}

.btn-dark:hover {
    background-color: transparent;
    color: var(--color-black);
}

.btn-blue {
    background-color: #1976D2;
    
    color: white;
    border-color: #1976D2;
}

.btn-blue:hover {
    background-color: #1565C0;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(25, 118, 210, 0.3);
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-sm {
    padding: 8px 15px;
    font-size: 0.85rem;
    text-transform: none;
    
    letter-spacing: 0.5px;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
}


.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--color-white);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition-fast);
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-img {
    height: 42px;
    width: 114px; 
    object-fit: contain;
    display: block;
    transition: var(--transition-fast);
}

.logo:hover .logo-img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.footer .logo-img {
    height: 56px;
    width: 152px; 
}

.nav-links {
    display: flex;
    gap: 30px;
}

.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 {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-tagline {
    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;
    display: inline-block;
    animation: romanticGlow 3s infinite ease-in-out;
    letter-spacing: 1px;
}

@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 {
    position: relative;
    display: flex;
    align-items: center;
}

.lang-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--color-black);
    padding: 5px 10px;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-label {
    font-size: 0.9rem;
    font-family: var(--font-body);
    font-weight: 500;
}

.lang-toggle:hover,
.lang-toggle.active {
    color: var(--color-gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.lang-menu {
    display: none;
    
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--color-black-light);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    padding: 10px 0;
    min-width: 120px;
    border-radius: 4px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    z-index: 1001;
    flex-direction: column;
}

.lang-menu.show {
    display: flex;
}

.lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    color: var(--color-text-muted);
    padding: 8px 20px;
    text-align: left;
    
    width: 100%;
    transition: var(--transition-fast);
}

.lang-btn:hover {
    background-color: rgba(255, 215, 0, 0.05);
    color: var(--color-gold);
}

.lang-btn.active {
    color: var(--color-gold);
    font-weight: 700;
}

.service-card {
    background: var(--color-dark);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: var(--transition-medium);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-gold), #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--color-dark);
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.service-name {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: var(--color-white);
}

.service-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}


[dir="rtl"] .lang-menu {
    right: auto;
    left: 0;
    text-align: right;
}

[dir="rtl"] .lang-btn {
    text-align: right;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-black);
}


.hero-new {
    min-height: 100vh;
    display: flex;
    align-items: center;
    
    justify-content: center;
    position: relative;
    padding-top: calc(var(--header-height) + 40px);
    text-align: center;
    overflow: hidden;
    
    padding-bottom: 40px;
}

.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 1s ease-in-out;
}

.hero-bg-slider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #ffffff 0%, rgba(255, 255, 255, 0) 15%, rgba(13, 13, 13, 0.4) 50%, rgba(13, 13, 13, 0.8) 85%, #0d0d0d 100%);
    z-index: 2;
}

.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: 'Alfa Slab One', serif;
    font-size: clamp(2rem, 6vw, 5rem);
    background: linear-gradient(to right,
            #FFD700 0%,
            #FFFFFF 25%,
            #FFD700 50%,
            #FFA500 75%,
            #FFD700 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-text 3s linear infinite;
    display: inline-block;
    position: relative;
    text-shadow: none;
    
    margin-bottom: 30px;
}

@keyframes gradient-text {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

.hero-title-new::after {
    content: '|';
    margin-left: 8px;
    color: #FFD700;
    -webkit-text-fill-color: #FFD700;
    animation: blink-cursor 0.8s step-end infinite;
    font-family: sans-serif;
    font-weight: 100;
}

@keyframes blink-cursor {

    from,
    to {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.hero-title-new span {
    display: inline-block;
}

@keyframes wave-text {

    0%,
    100% {
        transform: translateY(0);
    }

    20% {
        transform: translateY(-15px);
        color: var(--color-yellow);
    }
}



.whatsapp-fixed {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 20px rgba(37, 211, 102, 0.4);
    z-index: 10000;
    transition: var(--transition-fast);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-fixed:hover {
    transform: scale(1.1);
    background-color: #128C7E;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-whatsapp {
    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);
    }
}


.car-split-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 100%;
    margin: 0 auto;
}

.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%;
    aspect-ratio: 16/10;
    height: auto;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
}

.car-block-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.car-block:hover .car-block-image img {
    transform: scale(1.1) translateY(-5px);
}

.car-block-details {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.car-title {
    font-size: 1.2rem;
    margin-bottom: 5px;
    min-height: 2.5rem;
    
    display: flex;
    align-items: center;
    
    line-height: 1.2;
}

.car-price {
    font-size: 1.1rem;
    color: var(--color-white);
    margin-bottom: 10px;
    font-weight: 300;
    min-height: 1.5rem;
    
}

.car-price .price-amount {
    font-weight: 700;
    color: var(--color-yellow);
}

.car-specs-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    margin-bottom: 15px;
    min-height: 50px;
    
}

.spec-row {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-gray);
    font-size: 0.8rem;
}


.car-block-details .btn {
    margin-top: auto;
}


.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%;
    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: 1200px) {
    .car-split-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .car-split-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .car-split-container {
        grid-template-columns: 1fr;
    }

    .car-block {
        flex-direction: column;
    }

    .car-block-image {
        min-height: 180px;
    }

    .contact-bar {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}


.projects-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.project-item {
    background-color: white;
    padding: 30px;
    border-left: 4px solid var(--color-gold);
}

.project-item h3 {
    margin-bottom: 10px;
}



.reviews-grid {
    display: flex;
    
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.review-card {
    background: var(--color-black-light);
    border: 1px solid rgba(255, 215, 0, 0.1);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    max-width: 500px;
    width: 100%;
    transition: var(--transition-fast);
    position: relative;
    
}

.review-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.reviewer-info h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.review-date {
    font-size: 0.8rem;
    color: var(--color-text-light);
}

.review-rating {
    color: var(--color-gold);
    font-size: 0.9rem;
}

.review-text {
    font-style: italic;
    color: var(--color-text);
    margin-bottom: 20px;
    line-height: 1.6;
}

.review-source {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #666;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.review-source i {
    color: #4285F4;
    
}


.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.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;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    background: var(--color-black-light);
    border: 1px solid rgba(255, 215, 0, 0.1);
    color: var(--color-white);
    margin-bottom: 20px;
    font-family: inherit;
    transition: all 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}


.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-up.visible,
.fade-right.visible,
.fade-left.visible,
.fade-in.visible {
    opacity: 1;
    transform: translate(0, 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: 1.5fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.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);
}

.about-feature-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: var(--transition-fast);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.about-feature-item:hover {
    transform: translateX(10px);
    background: rgba(255, 215, 0, 0.05);
    border-color: var(--color-gold);
}

.feature-icon {
    min-width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-gold), #FFA500);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark);
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.about-feature-item p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.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: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-gold);
}

.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;
}


[dir="rtl"] .footer-col h4::after {
    left: auto;
    right: 0;
}

[dir="rtl"] .footer-links a:hover {
    padding-left: 0;
    padding-right: 5px;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-desc {
        max-width: 100%;
        margin: 20px auto;
    }

    .social-links {
        justify-content: center;
    }

    .footer-contact li {
        justify-content: center;
    }
}


@media (max-width: 768px) {
    .hero-title-new {
        font-size: 2.5rem !important;
        margin-bottom: 20px;
    }

    .about-content {
        flex-direction: column-reverse !important;
        gap: 30px !important;
    }

    .about-image {
        width: 100% !important;
    }

    .img-about {
        max-height: 300px !important;
    }

    .hover-reveal-text {
        font-size: 1.2rem !important;
        padding: 10px !important;
    }
}


@media (max-width: 992px) {
    .container {
        max-width: 960px;
    }

    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background: var(--color-black-light);
        padding: 40px;
        transition: 0.4s;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
        border-left: 1px solid rgba(255, 215, 0, 0.1);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        gap: 25px;
    }

    .nav-links a {
        color: var(--color-white);
    }

    .mobile-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .about-content,
    .contact-container {
        grid-template-columns: 1fr;
    }
}


[dir="rtl"] {
    font-family: 'Tahoma', 'Segoe UI', sans-serif;
    
}

[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);
}


.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);
}

.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;
    
    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;
}


[dir="rtl"] .close-modal {
    right: auto;
    left: 20px;
}

[dir="rtl"] .text-align-right {
    
    text-align: right;
}

@media (max-width: 600px) {
    .modal-content {
        margin: 20px auto;
        padding: 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}


.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);
}


.car-block,
.review-card {
    background: rgba(13, 13, 13, 0.7);
    backdrop-filter: blur(10px);
}


.img-about {
    width: 100%;
    max-height: 450px;
    aspect-ratio: 600 / 400;
    object-fit: cover;
    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.5;
}

.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);
    
    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;
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.1);
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 215, 0, 0.05);
    border-color: var(--color-yellow);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1), 0 0 15px rgba(255, 215, 0, 0.05);
}

.service-name {
    font-size: 1.3rem;
    color: var(--color-white);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-subtitle {
    font-size: 0.9rem;
    color: var(--color-yellow);
    margin-bottom: 15px;
    font-weight: 500;
}

.service-features {
    text-align: left;
    margin-top: auto;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--color-text-light);
}

.service-features li i {
    color: var(--color-yellow);
    font-size: 0.8rem;
}

.service-description {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.7;
    text-align: justify;
}


@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}
