

.image-desc {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
}

.swiper {
    width: 100%;
    height: 100%;
    z-index: 2;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.swiper-paging-position {
    position: absolute;
    bottom: 0;
    left: 2% !important;
}

.landing-image-slider {
    margin-bottom: 80px !important;
}



        .container {
            max-width: 1200px;
        }
        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .tagline {
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: #d4707b;
            margin-bottom: 15px;
            display: inline-block;
            background: rgba(212, 112, 123, 0.1);
            padding: 6px 14px;
            border-radius: 20px;
        }

        .main-title {
            font-size: 48px;
            font-weight: 800;
            color: #1a1a1a;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .subtitle-text {
            font-size: 18px;
            color: #666;
            max-width: 700px;
            margin: 0 auto 60px;
            line-height: 1.6;
            font-weight: 500;
        }

        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .illustration-side {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .illustration-box {
            width: 100%;
            max-width: 400px;
            aspect-ratio: 1;
            background: linear-gradient(135deg, rgba(212, 112, 123, 0.1) 0%, rgba(255, 200, 150, 0.1) 100%);
            border-radius: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .illustration-box::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(212, 112, 123, 0.05) 0%, transparent 70%);
            animation: float 8s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(20px, -20px); }
        }

        .illustration-img {
            width: 80%;
            height: auto;
            position: relative;
            z-index: 1;
        }

        .content-side {
            display: flex;
            flex-direction: column;
        }

        .content-title {
            font-size: 36px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 25px;
            line-height: 1.3;
        }

        .content-description {
            font-size: 16px;
            color: #555;
            line-height: 1.8;
            margin-bottom: 20px;
            font-weight: 400;
        }

        .features-list {
            display: flex;
            flex-direction: column;
            gap: 18px;
            margin-top: 30px;
        }

        .feature-item {
            display: flex;
            gap: 15px;
            align-items: flex-start;
        }

        .feature-icon {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: linear-gradient(135deg, #d4707b, #ff9a7b);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            flex-shrink: 0;
            margin-top: 2px;
            font-size: 14px;
        }

        .feature-text {
            font-size: 15px;
            color: #333;
            line-height: 1.6;
            font-weight: 500;
        }

        .cta-button {
            display: inline-block;
            margin-top: 35px;
            padding: 14px 32px;
            background: linear-gradient(135deg, #d4707b, #ff9a7b);
            color: white;
            text-decoration: none;
            border-radius: 25px;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.3s ease;
            width: fit-content;
            border: none;
            cursor: pointer;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(212, 112, 123, 0.3);
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 20px;
            }

            .main-title {
                font-size: 32px;
            }

            .content-title {
                font-size: 26px;
            }

            .content-wrapper {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .illustration-side {
                order: 2;
            }

            .content-side {
                order: 1;
            }
        }

        
        /* ===== SECTION 2: CAR SHOWCASE ===== */

        .cars-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            padding-top: 50px;
            align-items: center;
        }

        .car-card {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            height: 350px;
            background: white;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .car-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .car-card img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .car-card-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.3);
            display: flex;
            align-items: flex-end;
            padding: 30px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .car-card:hover .car-card-overlay {
            opacity: 1;
        }

        .car-card-content {
            color: white;
        }

        .car-card-content h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .car-card-content a {
            color: white;
            text-decoration: none;
            font-size: 13px;
            font-weight: 500;
            display: inline-block;
            margin-top: 8px;
            padding: 6px 12px;
            border: 1px solid white;
            border-radius: 15px;
            transition: all 0.3s ease;
        }

        .car-card-content a:hover {
            background: white;
            color: #d4707b;
        }


          /* ===== SECTION 3: ROUTES & DESTINATIONS ===== */
        .section-routes {
            background: linear-gradient(135deg, #F5F5F5 0%);
            padding: 80px 20px;
        }

        .routes-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .routes-content h3 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .routes-content .tagline {
            margin-bottom: 20px;
        }

        .routes-content p {
            font-size: 15px;
            color: #555;
            margin-bottom: 16px;
            line-height: 1.8;
        }

        .routes-illustration {
            display: flex;
            justify-content: center;
        }

        .routes-illustration img {
            width: 100%;
            max-width: 350px;
            height: auto;
        }

        .btn-learn-more {
            display: inline-block;
            margin-top: 25px;
            padding: 12px 28px;
            background: white;
            color: #d4707b;
            text-decoration: none;
            border-radius: 20px;
            font-weight: 600;
            font-size: 14px;
            border: 2px solid #d4707b;
            transition: all 0.3s ease;
        }

        .btn-learn-more:hover {
            background: #d4707b;
            color: white;
        }

        /* ===== SECTION 4: GALLERY ===== */
        .section-gallery {
            background: #F5F5F5;
            /* padding: 80px 20px; */
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: 40px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .gallery-item:hover {
            transform: scale(1.05);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .gallery-item-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-item:hover .gallery-item-overlay {
            opacity: 1;
        }

        .gallery-label {
            color: white;
            font-weight: 600;
            font-size: 14px;
        }

        /* ===== SECTION 5: TESTIMONIAL ===== */
        .section-testimonial {
            background: linear-gradient(135deg, #f5f0ff 0%, #fff5f0 100%);
            padding: 80px 20px;
        }

        .testimonial-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .testimonial-image {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            height: 450px;
        }

        .testimonial-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .testimonial-content h3 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .testimonial-content p {
            font-size: 15px;
            color: #555;
            margin-bottom: 16px;
            line-height: 1.8;
        }

        .testimonial-badge {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 20px;
        }

        .testimonial-badge img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
        }

        .badge-text h4 {
            font-size: 14px;
            font-weight: 600;
        }

        .badge-text p {
            font-size: 12px;
            color: #999;
            margin: 0;
        }
        
        /* ===== RESPONSIVE ===== */
        @media (max-width: 992px) {
            .main-title {
                font-size: 36px;
            }

            .content-wrapper,
            .routes-wrapper,
            .testimonial-wrapper {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .cars-grid {
                grid-template-columns: 1fr;
            }

            .gallery-grid {
                grid-template-columns: repeat(2, 2fr);
            }

            .illustration-side {
                order: 2;
            }

            .content-side {
                order: 1;
            }
        }

        @media (max-width: 768px) {
            .section-why-choose,
            .section-cars,
            .section-routes,
            .section-gallery,
            .section-testimonial {
                padding: 50px 15px;
            }

            .main-title {
                font-size: 28px;
            }

            .content-side h2,
            .routes-content h3,
            .testimonial-content h3 {
                font-size: 26px;
            }

            .subtitle-text,
            .content-side p,
            .routes-content p,
            .testimonial-content p {
                font-size: 14px;
            }

            .gallery-grid {
                grid-template-columns: 2fr;
            }

            .car-card {
                height: 280px;
            }

            .testimonial-image {
                height: 350px;
            }
        }