/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all 0.4s ease-in-out;
    font-family: 'Eurostile BoldItalic', sans-serif;
}

html {
    scroll-behavior: smooth;
}

@font-face {
    font-family: 'EurostileBoldItalic';
    src: url('./src/Eurostile\ BoldItalic.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
}


body {
    line-height: 1.6;
    font-family: 'EurostileBoldItalic', sans-serif;
    color: var(--gray-50);
    overflow-x: hidden;
    background: var(--midnight);
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Color Variables */
:root {
    /* Luxury palette */
    --gold: #d4af37;
    --gold-dark: #b0892f;
    --gold-light: #f3e7c1;
    --midnight: #0a192f;
    --black: #0b0b0b;
    --silver: #c0c0c0;
    --white: #ffffff;

    /* Map existing tokens to luxury */
    --primary-blue: var(--gold);
    --secondary-blue: var(--gold-dark);
    --light-blue: rgba(212, 175, 55, 0.12);
    --dark-blue: var(--midnight);

    /* Neutral scale tuned for dark UI */
    --gray-50: #f5f7fa;
    --gray-100: #eceff3;
    --gray-200: #d8dde3;
    --gray-300: #b8c0ca;
    --gray-400: #98a1ad;
    --gray-500: #7b8594;
    --gray-600: #5f6b7a;
    --gray-700: #445062;
    --gray-800: #2b3647;
    --gray-900: #182233;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 25, 47, 0.85);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h2 {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link , .nav-link1 {
    text-decoration: none;
    color: var(--silver);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}
.nav-link:hover, .nav-link.active, .nav-link1:hover, .nav-link1.active {
    color: var(--primary-blue);
}

.nav-link.active::after,
.nav-link1.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-blue);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 8px;
    margin-left: 16px;
}

.lang-btn {
    background: var(--gray-100);
    color: var(--silver);
    border: 1px solid var(--gray-200);
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lang-btn:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: #111;
}

.lang-btn.active {
    background: var(--primary-blue);
    color: #111;
    border-color: var(--primary-blue);
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--silver);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section with Carousel */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Vignette and bottom shadow for carousel */
.carousel-container::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    box-shadow: inset 0 0 180px rgba(0, 0, 0, 0.55);
}

.carousel-container::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 140px;
    pointer-events: none;
    z-index: 1;
    background: linear-gradient(180deg, rgba(10, 25, 47, 0) 0%, rgba(10, 25, 47, 0.65) 60%, rgba(10, 25, 47, 0.9) 100%);
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
}

.slide-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-button {
    display: inline-block;
    background: var(--primary-blue);
    color: #111;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.cta-button:hover {
    background: var(--secondary-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}


/* Vehicle Showcase Section */
.vehicle-showcase {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--midnight), #0f213f);
}

.vehicle-showcase h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-dark);
    margin-bottom: 3rem;
}

.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.vehicle-card {
    background: #101827;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    transition: all 0.3s ease;
}

.vehicle-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.vehicle-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-content {
    padding: 15px;
}

.card-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--silver);
    margin-bottom: 0.5rem;
}

.card-content p {
    color: var(--gray-300);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.specs {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.specs span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-300);
    font-size: 0.9rem;
}

.specs i {
    color: var(--primary-blue);
}

.rent-btn {
    width: 100%;
    background: var(--primary-blue);
    color: #111;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.rent-btn:hover {
    background: var(--secondary-blue);
    transform: translateY(-2px);
}

/* About Us Section */
.about {
    padding: 80px 0;
    background: #0f1c33;
}

.about-content {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-text h2 , .about-txt h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.lead {
    font-size: 1.25rem;
    color: var(--primary-blue);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.about-text p , .about-txt p {
    color: var(--gray-200);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature , .features {
    text-align: center;
    padding: 1.5rem;
    background: #0f243f;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature:hover , .features:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature i , .features i {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.feature h4 , .features h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--silver);
    margin-bottom: 0.5rem;
}

.feature p , .features p {
    color: var(--gray-300);
    font-size: 0.9rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    background: #0f243f;
    padding: 2rem;
    border-radius: 15px;
}

.contact-item , .contact-item1 {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i , .contact-item1 i {
    font-size: 1.5rem;
    color: var(--primary-blue);
    width: 40px;
    text-align: center;
}

.contact-item h4 , .contact-item1 h4{
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--silver);
    margin-bottom: 0.25rem;
}

.contact-item p  , .contact-item1 p{
    color: var(--gray-300);
    margin: 0;
}

/* Vehicles Section */
.vehicles {
    padding: 80px 0;
    background: #0f1c33;
}
.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--gray-300);
    margin-bottom: 1rem;
}
.vehicles h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1rem;
}


.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.vehicle-item {
    background: #101827;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    transition: all 0.3s ease;
}

.vehicle-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.vehicle-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.vehicle-info {
    padding: 1.5rem;
}

.vehicle-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--silver);
    margin-bottom: 0.5rem;
}


.vehicle-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.vehicle-specs span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
    font-size: 0.85rem;
}

.vehicle-specs i {
    color: var(--primary-blue);
    font-size: 0.8rem;
}

.vehicle-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.book-btn {
    background: var(--primary-blue);
    color: #111;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.book-btn:hover {
    background: var(--secondary-blue);
    transform: translateY(-1px);
}


/* Regions Section */
.regions {
    padding: 80px 0;
    background: linear-gradient(180deg, #0f1c33, var(--midnight));
}

.regions h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1rem;
}

.regions-content {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.regions-list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    gap: 1.5rem;
}

.region-item {
    width: 250px;
    margin-top: 50px;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #101827;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.region-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.region-item i {
    font-size: 1.5rem;
    color: var(--primary-blue);
    width: 30px;
    text-align: center;
}

.region-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--silver);
    margin-bottom: 0.25rem;
}

.region-item p {
    color: var(--gray-300);
    font-size: 0.9rem;
    margin: 0;
}

.map-container {
    
    border-radius: 15px;
    overflow: hidden;
}

.map {
    width: 100%;
    height: 400px;
}

.map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--silver);
    padding: 60px 0 20px;
}

.footer-logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--silver);
}

.footer-section h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
}

.footer-section p {
    color: var(--gray-300);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--gray-300);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-blue);
}

.social-links {
    align-items: center;
    justify-content: center;
    display: flex;
    gap: 30px;
    margin-top: 1rem;
}

.social-links img {
    width: 110px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #1a2433;
    color: var(--silver);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-blue);
    color: #111;
    transform: translateY(-2px);
}

.contact-details p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.contact-details i {
    color: var(--primary-blue);
    width: 20px;
}

.newsletter {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter input {
    flex: 1;
    padding: 10px;
    border: 1px solid #2a3445;
    border-radius: 6px;
    background: #131e2f;
    color: var(--silver);
}

.newsletter input::placeholder {
    color: var(--gray-400);
}

.newsletter button {
    background: var(--primary-blue);
    color: #111;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter button:hover {
    background: var(--secondary-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #1f2a3a;
    color: var(--gray-400);
}

/* Bonus section */

.bonus-content h1, .conveniences-content h1 {
    text-align: center;
    font-size: 56px;
    color: var(--gold);
    margin: 25px;
}

.bonus-txt {
    margin-bottom: 30px;
    padding: 18px 10px;
    font-size: 22px;
    background-color: #0f213f;
    border-radius: 20px;
    text-align: center;
}

.cart {
    width: 100%;
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    justify-content: space-around;
}

.cart .bonuses {
    width: 300px;
    padding: 5px 10px;
    font-size: 18px;
    text-decoration: none;
    list-style: none;
    text-align: center;
    border-radius: 10px;    
    background: linear-gradient(45deg, #207aa350, #ffffff1e);
}

.bonuses i , .convenience-item i {
    color: var(--gold-dark);
}

.cashback-content {
    width: 100%;
    margin: 40px;   
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cashback-content .bonus-txt, .cashback-content .cash-img , .time-txt, .time-img {
    text-align: justify;
    margin: 0;
    padding: 20px 40px;
}

.cash-img img {
    border-radius: 30px;
    height: 200px;
}

.time-content {
    display: flex;
    justify-content: space-between;
}

.time-img img {
    height: 350px;
}

/* Conveniences section */

.conveniences-content {
    width: 100%;
}
.conveniences-items {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 30px;
} 

.convenience-item {
    max-width: calc(100% / 3);
    padding: 10px;
    text-align: center;
    border-radius: 10px;
    background: linear-gradient(45deg, #207aa350, #ffffff1e);
}

.convenience-item:hover , .cart .bonuses:hover {    
    cursor: pointer;
    box-shadow: #000000 5px 5px 15px;
    transition: all 0.4s ease-in-out;
}

.convenience-item h4 {
    font-weight: 800;
    color: var(--gold);
}

.convenience-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.bonus-btn {
    float: right;
    z-index: 1000;
    right: 10px;
    top: 80%;
    position: fixed;
    color: #000000;
    background-color: var(--gold);
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    list-style-type: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .slide-content h1 {
        font-size: 2.5rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .vehicle-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }


    .regions-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }


}

@media (max-width: 512px) {
    .nav-container {
        width: 100%;
        padding: 0 5px;
        gap: 10px;
    }
    .nav-container h3 {
        font-size: 16px; 
    }
    .container {
        padding: 0 15px;
    }

    .lang-btn {
        padding: 2px 4px;
        font-size: 11px;
    }

    .slide-content h1 {
        font-size: 2rem;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .vehicle-card {
        margin: 0 10px;
    }

    .newsletter {
        flex-direction: column;
    }

    .newsletter input,
    .newsletter button {
        width: 100%;
    }
    .slide img {
        margin-top: 150px;
        width: 100%;
        height: 400px;
    }
    .carousel-slides {
        margin: 0;
        padding: 0;
    }
    .carousel-container, .carousel-slides, .hero {
        height: 600px;
    }
    .cart , .conveniences-items{
        flex-direction: column;
        flex-wrap: wrap;
        gap: 25px;
        text-align: justify;
    }
    .cart .bonuses {
        width: 300px;
    }
    .bonus-txt {
        font-size: 16px;
    }
    .bonus-content h1, .conveniences-content h1 {
        font-size: 38px;
    }
    .footer-logo {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .region-item {
        width: 400px;
    }
    .conveniences-content , .conveniences-items {
        width: 100%;
    }
    .cashback-content .bonus-txt{
        max-width: 100%;
        width: 360px;
        padding: 10px 20px;
    }
    .convenience-item {
        max-width: 100%;
        width: 360px;
        padding: 5px;
    }
    .time-content , .cashback-content {
        margin: 0;
        flex-wrap: wrap;
        flex-direction: column;
    }   
    .time-img , .cash-img {
       display: none;
    }  
    .convenience-item p , .convenience-item h4 {
        font-size: 16px;
    }
    .social-links {
        margin: 0;
        padding: 0;
        width: 100%;
        gap: 80px;
    }
    .social-links img {
        width: 150px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

.hidden { display: none; }
.visible { display: block; }

/* Print Styles */
@media print {
    .navbar,
    .footer {
        display: none;
    }
    
    .hero {
        height: auto;
    }
    
    .slide {
        position: static;
        opacity: 1;
    }
}







