:root {
    --primary: #bb1f23;
    --dark: #020202;
    --light: #ffffff;
    --gray: #f5f5f5;
    --text-gray: #666;
}

html {
    scroll-behavior: smooth;
    /* For anchor jumps */
    scroll-snap-type: y proximity;
    /* Optional: snap effect */
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Common Button Styles */
.btn-book-now,
.btn-primary-custom,
.btn-outline-custom {
    text-transform: uppercase;
    border-radius: 2rem !important;
}

/* Header Styles */
.header-top {
    background: var(--primary);
    padding: 8px 0;
    font-size: 0.85rem;
}

.header-top a {
    color: var(--light);
    text-decoration: none;
    transition: opacity 0.3s;
}

.header-top a:hover {
    opacity: 0.8;
}

.navbar {
    background: rgba(2, 2, 2, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(187, 31, 35, 0.2);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(2, 2, 2, 0.98) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--light) !important;
    letter-spacing: 1px;
    padding-bottom: 0;
}

.navbar-brand span {
    color: var(--primary);
}

.navbar-nav .nav-link {
    color: var(--light) !important;
    font-weight: 500;
    margin: 0 15px;
    position: relative;
    transition: color 0.3s;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.btn-book-now {
    background: var(--primary);
    color: var(--light) !important;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid var(--primary);
    margin-left: 15px;
    text-decoration: none;
}

.btn-book-now:hover {
    background: transparent;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(187, 31, 35, 0.3);
}

.navbar-toggler {
    border: none;
    border-color: var(--light);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Page Header - Common for all internal pages */
.page-header {
    padding: 200px 0 120px;
    background: #000000;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/banners/banner.webp') center/cover;
    opacity: 0.25;
    z-index: 0;
    animation: slowZoom 20s ease-in-out infinite alternate;
}

.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(187, 31, 35, 0.3) 50%,
            rgba(0, 0, 0, 0.9) 100%);
    z-index: 1;
}

@keyframes slowZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 5rem;
    font-weight: 900;
    color: var(--light);
    margin-bottom: 25px;
    text-shadow: 0 10px 40px rgba(187, 31, 35, 0.6);
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    animation: fadeInDown 1s ease-out;
}

/* .page-header h1::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary);
    box-shadow: 0 0 20px var(--primary);
}

.page-header h1::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
    box-shadow: 0 0 30px var(--primary);
} */

.page-header p {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.banner-decorative {
    position: absolute;
    width: 400px;
    height: 400px;
    border: 2px solid rgba(187, 31, 35, 0.3);
    border-radius: 50%;
    z-index: 1;
}

.banner-decorative:nth-child(1) {
    top: -200px;
    left: -200px;
    animation: rotate 30s linear infinite;
}

.banner-decorative:nth-child(2) {
    bottom: -200px;
    right: -200px;
    animation: rotate 40s linear infinite reverse;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.page-breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s;
}

.page-breadcrumb a:hover {
    color: var(--primary);
}

.page-breadcrumb a::after {
    content: '/';
    margin-left: 15px;
    color: var(--primary);
}

.page-breadcrumb span {
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
}

/* Hero Slider */
.hero-slider {
    margin-top: 0;
    padding-top: 40px;
    position: relative;
    height: calc(100vh - 35px);
    overflow: hidden;
}

/* Advanced Hero Slider */
.hero-slider-advanced {
    margin-top: 0;
    padding-top: 40px;
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.slides-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    animation: kenBurns 20s ease infinite;
}

.slide-1 {
    background-image: url('../images/slider/slide1.webp');
}

.slide-2 {
    background-image: url('../images/slider/slide2.webp');
}

.slide-3 {
    background-image: url('../images/slider/slide3.webp');
}

@keyframes kenBurns {
    0% {
        transform: scale(1) translateX(0);
    }

    50% {
        transform: scale(1.1) translateX(-20px);
    }

    100% {
        transform: scale(1) translateX(0);
    }
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 2, 2, 0.5);
    z-index: 1;
}

.hero-slide .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-content {
    text-align: center;
    max-width: 1200px;
}

.logo-animate {
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(-30px);
}

.logo-animate.animated {
    animation-fill-mode: both;
}

.logo-animate img {
    width: 50%;
    max-width: 400px;
    filter: drop-shadow(0 10px 30px rgba(187, 31, 35, 0.5));
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--light);
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.7);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
}

.slide-title.animated {
    animation-fill-mode: both;
}

.slide-text {
    font-size: 1.3rem;
    color: var(--light);
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
}

.slide-text.animated {
    animation-fill-mode: both;
}

.slide-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
}

.slide-buttons.animated {
    animation-fill-mode: both;
}

/* Navigation Arrows */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(187, 31, 35, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--light);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.slider-nav:hover {
    background: var(--primary);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 30px rgba(187, 31, 35, 0.6);
}

.slider-nav.prev {
    left: 30px;
}

.slider-nav.next {
    right: 30px;
}

/* Pagination Dots */
.slider-pagination {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 15px;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.dot.active {
    width: 40px;
    border-radius: 7px;
    background: var(--primary);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Animation Classes */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }

    50% {
        transform: scale(1.05);
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.fadeInDown {
    animation-name: fadeInDown;
}

.fadeInUp {
    animation-name: fadeInUp;
}

.slideInLeft {
    animation-name: slideInLeft;
}

.slideInRight {
    animation-name: slideInRight;
}

.zoomIn {
    animation-name: zoomIn;
}

.bounceIn {
    animation-name: bounceIn;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-slider-advanced {
        padding-top: 85px;
        height: 100vh;
    }

    .slide-title {
        font-size: 2rem;
    }

    .slide-text {
        font-size: 1rem;
    }

    .logo-animate img {
        width: 50%;
    }

    .slider-nav {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .slider-nav.prev {
        left: 15px;
    }

    .slider-nav.next {
        right: 15px;
    }

    .slider-pagination {
        bottom: 20px;
    }
}

.btn-primary-custom {
    background: var(--primary);
    color: var(--light);
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid var(--primary);
    text-decoration: none;
    display: inline-block;
}

.btn-primary-custom:hover {
    background: transparent;
    color: var(--light);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(187, 31, 35, 0.4);
}

.btn-outline-custom {
    background: transparent;
    color: var(--light);
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid var(--light);
    text-decoration: none;
    display: inline-block;
}

.btn-outline-custom:hover {
    background: var(--light);
    color: var(--dark);
    transform: translateY(-3px);
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
}

.carousel-indicators button.active {
    width: 35px;
    border-radius: 6px;
    background-color: var(--primary);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/banners/service-b4.webp') center/cover;
    opacity: 0.05;
    z-index: 0;
}

.services .container {
    position: relative;
    z-index: 1;
}

.services .section-title h2 {
    font-size: 3rem;
    color: var(--light);
    font-weight: 900;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.services .section-title p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    height: 100%;
    /* margin-bottom: 30px; */
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, var(--primary) 0%, rgba(187, 31, 35, 0.7) 100%);
    transition: height 0.5s ease;
    z-index: 0;
}

.service-card:hover::before {
    height: 100%;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(187, 31, 35, 0.4);
    border-color: var(--primary);
}

.service-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.8);
}

.service-card:hover .service-image img {
    transform: scale(1.15);
    filter: brightness(1);
}

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(to bottom, transparent 0%, rgba(2, 2, 2, 0.7) 100%); */
}

.service-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, #d42428 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(187, 31, 35, 0.6);
    border: 4px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: translate(-50%, -50%) scale(1.15) rotate(10deg);
    box-shadow: 0 15px 50px rgba(187, 31, 35, 0.9);
}

.service-icon i {
    font-size: 2.2rem;
    color: var(--light);
}

.service-content {
    padding: 30px 25px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 18px;
    color: var(--light);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 0;
    font-size: 1.05rem;
}

/* Why Choose Section */
.why-choose {
    padding: 100px 0;
    background: linear-gradient(135deg, #020202 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/banners/service-b4.webp') center/cover;
    opacity: 0.08;
    z-index: 0;
}

.why-choose .container {
    position: relative;
    z-index: 1;
}

.why-choose .section-title h2 {
    color: var(--light);
    font-size: 3rem;
    margin-bottom: 20px;
}

.why-choose .section-title p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.3rem;
}

.feature-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, rgba(187, 31, 35, 0.7) 100%);
    transition: width 0.4s ease;
    z-index: -1;
}

.feature-box:hover::before {
    width: 100%;
}

.feature-box:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(187, 31, 35, 0.3);
    border-color: var(--primary);
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, #d42428 100%);
    color: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-size: 2rem;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(187, 31, 35, 0.4);
    transition: all 0.3s;
}

.feature-box:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(187, 31, 35, 0.6);
}

.feature-content h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--light);
    font-weight: 700;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0;
}

.stats-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
    padding: 30px;
    margin-bottom: 20px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 0 0 30px rgba(187, 31, 35, 0.5);
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #020202 0%, #1a1a1a 50%, var(--primary) 100%);
    padding: 120px 0;
    text-align: center;
    color: var(--light);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/banners/service-b4.webp') center/cover;
    opacity: 0.15;
    z-index: 0;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(187, 31, 35, 0.2) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
    z-index: 0;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.5;
    }
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    font-weight: 700;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.cta-section p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.cta-section .btn-outline-custom {
    padding: 18px 50px;
    font-size: 1.1rem;
    border: 3px solid var(--light);
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.cta-section .btn-outline-custom::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--light);
    transition: width 0.4s ease, height 0.4s ease;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.cta-section .btn-outline-custom:hover::before {
    width: 400px;
    height: 400px;
}

.cta-section .btn-outline-custom:hover {
    color: var(--primary);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.cta-feature-item {
    text-align: center;
}

.cta-feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.8rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.cta-feature-item:hover .cta-feature-icon {
    background: var(--light);
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.4);
}

.cta-feature-text {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/banners/service-b4.webp') center/cover;
    opacity: 0.03;
    z-index: 0;
}

.faq-section .container {
    position: relative;
    z-index: 1;
}

.faq-header {
    margin-bottom: 60px;
}

.faq-header h2 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--light);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.faq-header p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
}

.accordion-item {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: rgba(187, 31, 35, 0.5);
    box-shadow: 0 10px 40px rgba(187, 31, 35, 0.2);
}

.accordion-header {
    margin: 0;
}

.accordion-button {
    background: transparent;
    color: var(--light);
    font-size: 1.2rem;
    font-weight: 700;
    padding: 25px 30px;
    border: none;
    text-align: left;
    transition: all 0.3s ease;
}

.accordion-button i {
    color: var(--primary);
    margin-right: 15px;
    font-size: 1.3rem;
}

.accordion-button:not(.collapsed) {
    background: rgba(187, 31, 35, 0.1);
    color: var(--light);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23bb1f23'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    filter: brightness(1.2);
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    background: rgba(0, 0, 0, 0.3);
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.8;
    padding: 25px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.accordion-collapse {
    border: none;
}

/* Footer */
footer {
    background: var(--dark);
    color: var(--light);
    padding: 60px 0 20px;
}

.footer-section h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 600;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    line-height: 2;
    display: block;
}

.footer-section a:hover {
    color: var(--primary);
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
    margin-right: 10px;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--light);
    color: var(--primary);
    transform: translateY(-3px);
}

/* Footer Bottom Links */
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    color: var(--primary);
    text-decoration: none;
}

.designer-link {
    color: var(--light);
    font-weight: 600;
}

.designer-link:hover {
    color: var(--light);
    text-decoration: none;
}

@media (max-width: 576px) {
    .footer-bottom p {
        font-size: 0.85rem;
    }
}

/* Responsive */
@media (max-width: 991px) {
    .header-top {
        font-size: 0.75rem;
    }

    .navbar-nav .nav-link {
        margin: 10px 0;
    }

    .btn-book-now {
        margin-left: 0;
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .header-top .d-none {
        display: none !important;
    }

    .page-header {
        padding: 160px 0 80px;
    }

    .page-header h1 {
        font-size: 2.8rem;
        letter-spacing: 1px;
    }

    .page-header h1::before,
    .page-header h1::after {
        display: none;
    }

    .page-header p {
        font-size: 1.2rem;
    }

    .banner-decorative {
        width: 250px;
        height: 250px;
    }

    .hero-slider {
        padding-top: 85px;
        height: 100vh;
    }

    .carousel-item {
        height: 100vh;
    }

    .carousel-caption h1,
    .carousel-caption h2 {
        font-size: 2rem;
    }

    .carousel-caption p {
        font-size: 1rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .services {
        padding: 80px 0;
    }

    .services .section-title h2 {
        font-size: 2.2rem;
    }

    .services .section-title p {
        font-size: 1.1rem;
    }

    .service-image {
        height: 200px;
    }

    .service-icon {
        width: 70px;
        height: 70px;
    }

    .service-icon i {
        font-size: 2rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .service-card p {
        font-size: 1rem;
    }

    .why-choose .section-title h2 {
        font-size: 2rem;
    }

    .feature-box {
        padding: 30px 20px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .feature-content h4 {
        font-size: 1.2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stats-section {
        margin-top: 50px;
    }

    .cta-section h2 {
        font-size: 2.5rem;
    }

    .cta-section p {
        font-size: 1.1rem;
    }

    .cta-section .btn-outline-custom {
        padding: 15px 35px;
        font-size: 1rem;
    }

    .cta-features {
        gap: 30px;
    }

    .cta-feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .cta-feature-text {
        font-size: 0.9rem;
    }

    .faq-section {
        padding: 60px 0;
    }

    .faq-header h2 {
        font-size: 2.2rem;
    }

    .faq-header p {
        font-size: 1.1rem;
    }

    .accordion-button {
        font-size: 1.05rem;
        padding: 20px;
    }

    .accordion-body {
        font-size: 1rem;
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .page-header h1 {
        font-size: 2.2rem;
    }

    .page-header p {
        font-size: 1.1rem;
    }

    .carousel-caption h1,
    .carousel-caption h2 {
        font-size: 2rem;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .services .section-title h2 {
        font-size: 1.8rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-icon i {
        font-size: 1.8rem;
    }

    .faq-header h2 {
        font-size: 1.8rem;
    }

    .accordion-button {
        font-size: 0.95rem;
        padding: 15px;
    }

    .accordion-button i {
        font-size: 1.1rem;
    }
}

/* Booking Modal Styles */
.modal-content {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border: 2px solid rgba(187, 31, 35, 0.5);
    border-radius: 25px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(135deg, var(--primary) 0%, #d42428 100%);
    border-bottom: none;
    padding: 30px 40px;
    position: relative;
}

.modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/banners/service-b4.webp') center/cover;
    opacity: 0.1;
    z-index: 0;
}

.modal-title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    position: relative;
    z-index: 1;
}

.modal-title i {
    margin-right: 15px;
    color: var(--light);
}

.btn-close {
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
    opacity: 1;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.btn-close:hover {
    background-color: var(--dark);
    transform: rotate(90deg);
    opacity: 1;
    color: #bb1f23 !important;
}

.modal-body {
    padding: 40px;
    /* max-height: calc(100vh - 500px); */
    overflow-y: auto;
}

.modal-body::-webkit-scrollbar {
    width: 8px;
}

.modal-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: #d42428;
}

/* Modal Footer Fix */
.modal-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 40px;
    background: rgba(0, 0, 0, 0.3);
}

.modal-footer .btn-modal-submit {
    width: 100%;
}

.modal-footer .form-note {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 15px;
    margin-bottom: 0;
}

/* Ensure scrollable area doesn't cover footer */
.modal-dialog-scrollable .modal-body {
    overflow-y: auto;
    max-height: calc(100vh - 400px);
}

@media (max-width: 768px) {
    .modal-footer {
        padding: 20px;
    }

    .modal-dialog-scrollable .modal-body {
        max-height: calc(100vh - 380px);
    }
}

.modal-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    text-align: center;
}

.booking-form .form-group {
    margin-bottom: 0;
}

.booking-form label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--light);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.booking-form label i {
    color: var(--primary);
    margin-right: 8px;
}

.booking-form .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px 20px;
    font-size: 1rem;
    color: var(--light);
    transition: all 0.3s ease;
}

.booking-form .form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(187, 31, 35, 0.3);
    color: var(--light);
    outline: none;
}

.booking-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.booking-form select.form-control {
    cursor: pointer;
}

.booking-form textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.booking-summary {
    background: rgba(187, 31, 35, 0.1);
    border-left: 4px solid var(--primary);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin: 10px 0;
}

.booking-summary i {
    font-size: 1.8rem;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 3px;
}

.booking-summary strong {
    display: block;
    font-size: 1.1rem;
    color: var(--light);
    margin-bottom: 5px;
}

.booking-summary p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
}

.btn-modal-submit {
    width: 100%;
    padding: 18px 40px;
    background: var(--primary);
    color: var(--light);
    border: 3px solid var(--primary);
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-modal-submit i {
    margin-right: 10px;
}

.btn-modal-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--light);
    transition: width 0.6s ease, height 0.6s ease;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.btn-modal-submit:hover::before {
    width: 500px;
    height: 500px;
}

.btn-modal-submit:hover {
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(187, 31, 35, 0.5);
}

.booking-form .form-note {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 20px;
    margin-bottom: 0;
}

/* Modal Animation */
.modal.fade .modal-dialog {
    transition: transform 0.4s ease-out;
    transform: scale(0.8);
}

.modal.show .modal-dialog {
    transform: scale(1);
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-header {
        padding: 25px 20px;
    }

    .modal-title {
        font-size: 1.5rem;
    }

    .modal-body {
        padding: 30px 20px;
    }

    .modal-subtitle {
        font-size: 1rem;
    }

    .booking-form label {
        font-size: 0.85rem;
    }

    .booking-form .form-control {
        padding: 12px 15px;
        font-size: 0.95rem;
    }

    .btn-modal-submit {
        font-size: 1rem;
        padding: 15px 30px;
    }

    .booking-summary {
        padding: 15px;
    }

    .booking-summary i {
        font-size: 1.5rem;
    }

    .booking-summary strong {
        font-size: 1rem;
    }

    .booking-summary p {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .modal-title {
        font-size: 1.3rem;
    }

    .modal-title i {
        display: block;
        margin-bottom: 10px;
        font-size: 2rem;
    }
}

/* Fix for Select Dropdown Options in Dark Theme */
.form-control option {
    background-color: #1a1a1a;
    color: var(--light);
    padding: 10px;
}

.form-control option:hover,
.form-control option:focus,
.form-control option:checked {
    background-color: var(--primary);
    color: var(--light);
}

/* For better browser compatibility */
select.form-control {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--light);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23bb1f23' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px 12px;
    padding-right: 45px;
}

/* For Firefox specific styling */
@-moz-document url-prefix() {
    select.form-control option {
        background-color: #2a2a2a;
        color: #ffffff;
    }

    select.form-control option:checked {
        background-color: var(--primary);
        color: #ffffff;
    }
}

/* For webkit browsers (Chrome, Safari, Edge) */
select.form-control::-webkit-scrollbar {
    width: 10px;
}

select.form-control::-webkit-scrollbar-track {
    background: #1a1a1a;
}

select.form-control::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

select.form-control::-webkit-scrollbar-thumb:hover {
    background: #d42428;
}

/* Quick Book Button for Service Cards */
.btn-service-quick {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: var(--primary);
    color: var(--light);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    border: 2px solid var(--primary);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-service-quick i {
    margin-right: 8px;
}

.btn-service-quick::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--light);
    transition: width 0.6s ease, height 0.6s ease;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.btn-service-quick:hover::before {
    width: 300px;
    height: 300px;
}

.btn-service-quick:hover {
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(187, 31, 35, 0.4);
}

.close-btn {
    position: absolute;
    right: 1rem;
    top: 1rem;
}
.df-bottombar-branding {
  display: none !important;
}
/* Fleet Section */
.fleet-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
    position: relative;
}

.fleet-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/banners/service-b4.webp') center/cover;
    opacity: 0.03;
    z-index: 0;
}

.fleet-section .container {
    position: relative;
    z-index: 1;
}

.fleet-section .section-title h2 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--light);
    /* margin-bottom: 20px; */
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

/* .fleet-section .section-title h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary);
    box-shadow: 0 0 20px var(--primary);
} */

.fleet-section .section-title p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    /* margin-top: 30px; */
}

/* Vehicle Card */
.vehicle-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.vehicle-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(187, 31, 35, 0.3);
}

.vehicle-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1; /* 👈 Makes it a perfect square */
}

.vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.9);
}

.vehicle-card:hover .vehicle-image img {
    transform: scale(1.1);
    filter: brightness(1);
}

.vehicle-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(to bottom, transparent 0%, rgba(2, 2, 2, 0.7) 100%); */
}

.vehicle-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: var(--light);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 5px 20px rgba(187, 31, 35, 0.5);
}

.vehicle-details {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.vehicle-name {
    font-size: 2rem;
    font-weight: 900;
    color: var(--light);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vehicle-description {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Specs Grid */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 25px;
    padding: 25px;
    background: rgba(187, 31, 35, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(187, 31, 35, 0.2);
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.spec-item i {
    font-size: 2rem;
    color: var(--primary);
    width: 40px;
    text-align: center;
}

.spec-content {
    display: flex;
    flex-direction: column;
}

.spec-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.spec-value {
    font-size: 1.1rem;
    color: var(--light);
    font-weight: 700;
}

/* Vehicle Features */
.vehicle-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.feature-badge {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.feature-badge i {
    color: var(--primary);
    font-size: 0.8rem;
}

.feature-badge:hover {
    background: rgba(187, 31, 35, 0.2);
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* Book Button */
.btn-vehicle-book {
    display: block;
    width: 100%;
    padding: 18px 30px;
    background: var(--primary);
    color: var(--light);
    text-decoration: none;
    text-align: center;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    border: 3px solid var(--primary);
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

.btn-vehicle-book i {
    margin-right: 10px;
}

.btn-vehicle-book::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--light);
    transition: width 0.6s ease, height 0.6s ease;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.btn-vehicle-book:hover::before {
    width: 500px;
    height: 500px;
}

.btn-vehicle-book:hover {
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(187, 31, 35, 0.5);
}

/* Responsive */
@media (max-width: 992px) {
    .specs-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .fleet-section {
        padding: 80px 0;
    }

    .fleet-section .section-title h2 {
        font-size: 2.2rem;
    }

    .fleet-section .section-title p {
        font-size: 1.1rem;
    }

    .vehicle-name {
        font-size: 1.6rem;
    }

    /* .vehicle-image {
        height: 220px;
    } */

    .vehicle-details {
        padding: 25px 20px;
    }

    .specs-grid {
        padding: 20px;
    }

    .spec-item i {
        font-size: 1.5rem;
    }

    .btn-vehicle-book {
        font-size: 1rem;
        padding: 15px 25px;
    }
}

@media (max-width: 576px) {
    .vehicle-badge {
        font-size: 0.75rem;
        padding: 6px 15px;
    }

    .spec-item {
        gap: 10px;
    }

    .feature-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}