@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Libertinus+Sans:ital,wght@0,400;0,700;1,400&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");


 /* Custom styles for the premium car rental component */
        #car-rental-container {
            font-family: 'Poppins', sans-serif;
            background-color: #101010;
            color: #f8f9fa;
            overflow: hidden; /* Prevents horizontal scroll on small screens */
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Libertinus Sans', serif;
        }

        /* Hero Section Styling */
        .hero-section {
            position: relative;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .hero-background {
            position: absolute;
            inset: 0;
            /* background: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,1)); */
            background-color: #101010;
            z-index: 0;
        }

        .hero-heading {
            font-size: 32px;
            animation: fadeInUp 1s ease-out forwards;
        }
        @media (min-width: 992px) {
            .hero-heading {
                font-size: 48px;
            }
        }
        
        .hero-subheading {
            animation: fadeInUp 1s ease-out 0.3s forwards;
            opacity: 0;
        }
        
        .hero-cta {
             animation: fadeInUp 1s ease-out 0.6s forwards;
             opacity: 0;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .text-gold-gradient {
            background-color: #FF3D24;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* Carousel Styling */
        .carousel-container {
            position: relative;
            width: 100%;
            max-width: 800px;
            aspect-ratio: 16 / 9;
        }
        .carousel-image {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: opacity 1.5s ease-in-out;
        }
        .carousel-indicators {
            position: absolute;
            bottom: -2rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 0.75rem;
        }
        .indicator {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        .indicator.active {
            background-color: #FF3D24;
        }


        /* Search Box Styling - Glassmorphism */
        .search-box-wrapper {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 3rem;
            box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
        }
        
        .search-field {
            border-right: 1px solid rgba(255, 255, 255, 0.1);
        }
        @media (max-width: 767.98px) {
            .search-field {
                border-right: none;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }
             .search-field:last-of-type {
                border-bottom: none;
            }
        }


        .form-control-dark {
            background-color: transparent;
            border: none;
            color: #fff;
            padding-left: 0;
        }
        .form-control-dark::placeholder {
            color: #6c757d;
        }
        .form-control-dark:focus {
            background-color: transparent;
            box-shadow: none;
            color: #fff;
        }
        .form-label {
            font-size: 0.75rem;
            color: #adb5bd;
            margin-bottom: 0;
        }
        .search-icon {
            color: #FF3D24;
        }
        
        .btn-premium {
            background: linear-gradient(90deg, #FF3D24, #FF3D24);
            border: none;
            font-weight: 600;
            color: #fff;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 61, 36, 0.1);
            font-size: 15px;


        }
        .btn-premium:hover {
            transform: translateY(-2px);
            /* box-shadow: 0 8px 25px rgba(255, 61, 36, 0.5); */
            color: #000;
            background-color: #fff !important;
        }


/* Fleet Section Styling */
        #cars-section {
            background-color: #101010;
            padding-top: 5rem;
            padding-bottom: 5rem;
        }
        .fleet-title .exquisite {
            font-family: 'Playfair Display', serif;
            color: #FF3D24;
        }
        .car-card {
            background: #101010;
            border: 1px solid #2a2a2a;
            border-radius: 1rem;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            padding: 1rem;
        }
        .car-card::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 1rem;
            padding: 1px; 
            background: linear-gradient(145deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0));
            -webkit-mask: 
                linear-gradient(#fff 0 0) content-box, 
                linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            pointer-events: none;
        }
        .car-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
        }
        .car-info-badge {
            display: inline-flex;
            align-items: center;
            background-color: #2c2c2c;
            border-radius: 0.5rem;
            padding: 0.25rem 0.75rem;
            font-size: 0.8rem;
        }
        .car-price {
            font-size: 1.25rem;
            font-weight: bold;
            color: #FF3D24;
        }
        .car-price .period {
            font-size: 0.8rem;
            color: #6c757d;
            font-weight: normal;
        }
        @media (min-width: 992px) {
            .car-card-image {
                margin-bottom: 1rem;
            }
            .car-price {
                font-size: 1.5rem;
            }
        }


                /* Unique wrapper to avoid conflicts */
        .trusted-client-section-unique {
            background-color: #111;
            padding: 30px 0;
            font-family: Arial, sans-serif;
        }

        .trusted-client-title-unique {
            text-align: center;
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 20px;
            text-transform: uppercase;
            color: #fff;
        }

        .trusted-client-slide-unique img {
            max-width: 100px;
            display: block;
            margin: auto;
        }

        /* Smooth constant scroll */
        .trusted-client-slider-wrapper-unique {
            transition-timing-function: linear !important;
        }

        /* --- Scoped Component Styles --- */
        .mercedes-featured-section {
            font-family: 'Poppins', sans-serif;
            background-color: #101010;
            color: #ffffff;
            padding-top: 1px;
            padding-bottom: 40px;

        }

        /* Using a wildcard selector scoped to the component to reset margin/padding */
        .mercedes-featured-section * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .mercedes-featured-section__container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 15px;
        }

        .mercedes-featured-section__title {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 25px;
            color: #ffffff;
        }

        /* --- Carousel & Card Styling (Mobile First) --- */
        .mercedes-featured-section__carousel-wrapper {
            position: relative;
            width: 100%;
            max-width: 400px;
            margin: 0 auto;
        }

        .mercedes-featured-section__carousel-overflow-container {
            overflow: hidden;
        }

        .mercedes-featured-section__card-container {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .mercedes-featured-section__card {
            flex: 0 0 100%;
            display: flex;
            flex-direction: column;
            background-color: #000000;
            overflow: hidden;
            border-radius: 8px;
            border: 1px solid #262626;
        }

        .mercedes-featured-section__image-wrapper {
            background-color: #f0f0f0;
            position: relative;
        }

        .mercedes-featured-section__image-wrapper::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 50%;
            background: linear-gradient(to top, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 0) 100%);
            pointer-events: none;
        }

        .mercedes-featured-section__image {
            display: block;
            width: 100%;
            height: auto;
            object-fit: cover;
        }

        .mercedes-featured-section__content {
            background-color: #000000;
            padding: 24px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .mercedes-featured-section__content-title {
            font-size: 1.5rem;
            font-weight: 500;
            margin-bottom: 4px;
            line-height: 1.2;
            color: #fff;
        }

        .mercedes-featured-section__content-subtitle {
            font-size: 0.9rem;
            color: #cccccc;
            margin-bottom: 24px;
        }

        .mercedes-featured-section__actions {
            margin-top: 20px;
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .mercedes-featured-section__btn--primary {
            padding: 12px 24px;
            font-size: 15px;
            font-weight: 600;
            text-align: center;
            border: none;
            cursor: pointer;
            background-color: #ff3d24;
            color: #fff;
            transition: background-color 0.3s ease;
            border-radius: 2px;
        }

        .mercedes-featured-section__btn--primary:hover {
            background-color: #fff;
            color: #000
        }

        .mercedes-featured-section__btn--link {
            color: #ffffff;
            font-weight: 600;
            text-decoration: underline;
            text-underline-offset: 10px;
            text-decoration-thickness: 1px;
            background: none;
            border: none;
            cursor: pointer;
            font-size: 0.9rem;
            padding: 0;
        }

        /* --- Carousel Navigation (Mobile) --- */
        .mercedes-featured-section__carousel-btn {
            position: absolute;
            top: 35%;
            transform: translateY(-50%);
            background-color: rgba(34, 34, 34, 0.7);
            border: none;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
        }

        .mercedes-featured-section__carousel-btn:hover {
            background-color: rgba(0, 0, 0, 0.8);
        }

        .mercedes-featured-section__prev-btn {
            left: 10px;
        }

        .mercedes-featured-section__next-btn {
            right: 10px;
        }

        /* --- Pagination Dots --- */
        .mercedes-featured-section__carousel-dots {
            text-align: center;
            padding-top: 10px;
        }

        .mercedes-featured-section__dot {
            cursor: pointer;
            height: 8px;
            width: 8px;
            margin: 0 5px;
            background-color: #444;
            border-radius: 50%;
            display: inline-block;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .mercedes-featured-section__dot.active {
            background-color: #ffffff;
            transform: scale(1.25);
        }

        /* --- Desktop Styles (using a media query) --- */
        @media (min-width: 992px) {
            .mercedes-featured-section__carousel-wrapper {
                max-width: none;
            }

            .mercedes-featured-section__carousel-overflow-container {
                overflow: visible;
            }

            .mercedes-featured-section__card-container {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 24px;
            }

            .mercedes-featured-section__carousel-btn,
            .mercedes-featured-section__carousel-dots {
                display: none;
                /* Hide arrows and dots on desktop */
            }
        }

        @media (max-width: 768px) {
            .hide-mobile {
                display: none;
            }
            .mercedes-featured-section__title{
                font-size: 32px;
            }
        }

        @media (min-width: 1200px) {
            .fs-0{
            font-size: 48px;
        }
    }

    .bg-transparent {
        background-color: transparent !important;
    }