/* ===== Aman Tour & Travel - Custom Styles ===== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap');

/* --- CSS Variables --- */
:root {
    --primary: #F97316;
    --primary-dark: #EA580C;
    --primary-light: #FDBA74;
    --secondary: #374151;
    --accent: #000000;
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, .05);
    --shadow: 0 1px 3px rgba(0, 0, 0, .1), 0 1px 2px rgba(0, 0, 0, .06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -1px rgba(0, 0, 0, .06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -2px rgba(0, 0, 0, .05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 10px 10px -5px rgba(0, 0, 0, .04);
    --transition: all .3s ease;
    --radius: 12px;
    --radius-lg: 16px;
}

/* --- Reset & Base --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* --- Sticky Header --- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
    transition: var(--transition);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-top {
    background: var(--gray-900);
    color: var(--white);
    font-size: .8rem;
    padding: .35rem 0;
}

.nav-link {
    position: relative;
    font-weight: 500;
    color: var(--gray-700);
    padding: .5rem 0;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* --- Buttons --- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--primary);
    color: var(--white);
    padding: .75rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: .9rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(249, 115, 22, .3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, .4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: transparent;
    color: var(--gray-800);
    padding: .75rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: .9rem;
    border: 2px solid var(--gray-300);
    cursor: pointer;
    transition: var(--transition);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: transparent;
    color: var(--white);
    padding: .75rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: .9rem;
    border: 2px solid var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: #25D366;
    color: var(--white);
    padding: .75rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: .9rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.btn-sm {
    padding: .5rem 1.25rem;
    font-size: .8rem;
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    min-height: 90vh;
    background: linear-gradient(135deg, var(--gray-900) 0%, #1a1a2e 50%, var(--gray-800) 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(249, 115, 22, .12) 0%, transparent 70%);
    animation: heroPulse 8s ease-in-out infinite;
}

@keyframes heroPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: .6;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(249, 115, 22, .3);
    border-radius: 50%;
    animation: float 15s linear infinite;
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

/* --- Booking Form --- */
.booking-form {
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.booking-form .form-control {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: var(--radius);
    padding: .75rem 1rem;
    color: var(--white);
    font-size: .9rem;
    width: 100%;
    transition: var(--transition);
}

.booking-form .form-control::placeholder {
    color: rgba(255, 255, 255, .5);
}

.booking-form .form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, .15);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, .2);
}

.booking-form select.form-control {
    appearance: none;
    cursor: pointer;
}

.booking-form select.form-control option {
    background: var(--gray-800);
    color: var(--white);
}

/* --- Section Styles --- */
.section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2rem;
    margin-bottom: .75rem;
    position: relative;
}

.section-subtitle {
    color: var(--gray-500);
    font-size: 1.05rem;
    max-width: 600px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(249, 115, 22, .1);
    color: var(--primary);
    padding: .35rem 1rem;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: .5px;
}

/* --- Service Cards --- */
.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card .icon-box {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(249, 115, 22, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    transition: var(--transition);
}

.service-card:hover .icon-box {
    background: var(--primary);
    color: var(--white);
}

/* --- Fleet / Car Cards --- */
.car-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.car-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.car-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--gray-100);
}

.car-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.car-card:hover .car-card-image img {
    transform: scale(1.08);
}

.car-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: var(--white);
    padding: .25rem .75rem;
    border-radius: 50px;
    font-size: .75rem;
    font-weight: 600;
}

.car-card-body {
    padding: 1.25rem;
}

.car-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: .75rem;
    color: var(--gray-900);
}

.car-card-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .5rem;
    margin-bottom: 1rem;
}

.car-spec {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .8rem;
    color: var(--gray-500);
}

.car-spec i {
    color: var(--primary);
    font-size: .85rem;
    width: 16px;
}

.car-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--gray-100);
}

.car-price {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--primary);
}

.car-price span {
    font-size: .75rem;
    font-weight: 400;
    color: var(--gray-500);
}

/* --- Brand Logos --- */
.brand-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
}

.brand-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
    transform: translateY(-4px);
}

.brand-item img {
    max-height: 45px;
    filter: grayscale(100%);
    transition: var(--transition);
    opacity: .6;
}

.brand-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* --- Why Choose Us --- */
.feature-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

/* --- Testimonials --- */
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    font-family: Georgia, serif;
    font-size: 4rem;
    color: var(--primary-light);
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
    opacity: .5;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.testimonial-stars {
    color: #FBBF24;
    font-size: .9rem;
    margin-bottom: .75rem;
}

.testimonial-text {
    font-size: .95rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--gray-900);
}

/* --- CTA Section --- */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 50%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, .1) 0%, transparent 70%);
}

/* --- Footer --- */
.site-footer {
    background: var(--gray-900);
    color: var(--gray-300);
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: .75rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-link {
    display: block;
    color: var(--gray-400);
    padding: .3rem 0;
    font-size: .9rem;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: var(--gray-400);
    transition: var(--transition);
    margin-right: .5rem;
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* --- Fleet Page Filters --- */
.filter-sidebar {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.filter-group {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-100);
    padding-bottom: 1.5rem;
}

.filter-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.filter-group-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: .9rem;
    color: var(--gray-900);
    margin-bottom: .75rem;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .35rem 0;
    font-size: .85rem;
    color: var(--gray-600);
    cursor: pointer;
    transition: var(--transition);
}

.filter-option:hover {
    color: var(--primary);
}

.filter-option input[type="checkbox"],
.filter-option input[type="radio"] {
    accent-color: var(--primary);
    width: 16px;
    height: 16px;
}

/* --- Price Range Slider --- */
.price-slider {
    width: 100%;
    accent-color: var(--primary);
    cursor: pointer;
}

.price-display {
    display: flex;
    justify-content: space-between;
    font-size: .8rem;
    color: var(--gray-500);
    margin-top: .4rem;
}

/* --- Search Bar --- */
.search-box {
    position: relative;
}

.search-input {
    width: 100%;
    padding: .75rem 1rem .75rem 2.75rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: .9rem;
    background: var(--gray-50);
    transition: var(--transition);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, .15);
    background: var(--white);
}

.search-icon {
    position: absolute;
    left: .85rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
}

.search-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    max-height: 320px;
    overflow-y: auto;
    z-index: 999;
    display: none;
}

.search-dropdown.active {
    display: block;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .75rem 1rem;
    border-bottom: 1px solid var(--gray-100);
    transition: var(--transition);
    cursor: pointer;
}

.search-result-item:hover {
    background: var(--gray-50);
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item img {
    width: 48px;
    height: 36px;
    object-fit: cover;
    border-radius: 6px;
}

/* --- Blog Card --- */
.blog-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.blog-card-image {
    height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.08);
}

.blog-card-body {
    padding: 1.25rem;
}

.blog-card-date {
    font-size: .8rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: .5rem;
}

.blog-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: .5rem;
    line-height: 1.4;
}

.blog-card-excerpt {
    font-size: .875rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* --- Contact Form --- */
.contact-form .form-group {
    margin-bottom: 1.25rem;
}

.contact-form label {
    display: block;
    font-size: .85rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: .4rem;
}

.contact-form .form-control {
    width: 100%;
    padding: .75rem 1rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: .9rem;
    transition: var(--transition);
}

.contact-form .form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, .15);
}

.contact-form textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* --- Page Header (Inner Pages) --- */
.page-header {
    background: linear-gradient(135deg, var(--gray-900) 0%, #1a1a2e 100%);
    padding: 4rem 0 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: -10%;
    width: 40%;
    height: 100%;
    background: radial-gradient(circle, rgba(249, 115, 22, .1) 0%, transparent 70%);
}

.page-header h1 {
    color: var(--white);
    font-size: 2.25rem;
    margin-bottom: .5rem;
}

.page-header .breadcrumb {
    color: var(--gray-400);
    font-size: .9rem;
}

.page-header .breadcrumb a {
    color: var(--primary-light);
}

.page-header .breadcrumb a:hover {
    color: var(--primary);
}

/* --- Car Details Page --- */
.car-detail-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 420px;
    background: var(--gray-100);
}

.car-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.spec-table {
    width: 100%;
}

.spec-table tr {
    border-bottom: 1px solid var(--gray-100);
}

.spec-table td {
    padding: .75rem .5rem;
    font-size: .9rem;
}

.spec-table td:first-child {
    color: var(--gray-500);
    font-weight: 500;
    width: 40%;
}

/* --- Legal Pages --- */
.legal-content h2 {
    font-size: 1.35rem;
    margin: 2rem 0 .75rem;
    color: var(--gray-900);
}

.legal-content h3 {
    font-size: 1.1rem;
    margin: 1.5rem 0 .5rem;
    color: var(--gray-800);
}

.legal-content p {
    margin-bottom: 1rem;
    color: var(--gray-600);
    font-size: .95rem;
    line-height: 1.8;
}

.legal-content ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-content li {
    color: var(--gray-600);
    font-size: .95rem;
    margin-bottom: .5rem;
    line-height: 1.7;
}

/* --- Mobile Menu --- */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--white);
    z-index: 9999;
    transition: right .3s ease;
    box-shadow: var(--shadow-xl);
    padding: 2rem 1.5rem;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu .nav-link {
    display: block;
    padding: .75rem 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--gray-100);
}

/* --- Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease, transform .6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .8s ease, transform .8s ease;
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Alert Messages --- */
.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    font-size: .9rem;
}

.alert-success {
    background: #F0FDF4;
    color: #166534;
    border: 1px solid #BBF7D0;
}

.alert-error {
    background: #FEF2F2;
    color: #991B1B;
    border: 1px solid #FECACA;
}

/* --- Floating WhatsApp --- */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 14px rgba(37, 211, 102, .4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #128C7E;
}

@keyframes pulse-whatsapp {

    0%,
    100% {
        box-shadow: 0 4px 14px rgba(37, 211, 102, .4);
    }

    50% {
        box-shadow: 0 4px 24px rgba(37, 211, 102, .6);
    }
}

/* --- Scroll to Top --- */
.scroll-to-top {
    position: fixed;
    bottom: 96px;
    right: 28px;
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    z-index: 998;
    box-shadow: 0 4px 12px rgba(249, 115, 22, .3);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(10px);
}

.scroll-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(249, 115, 22, .4);
}

/* --- Testimonials Slider --- */
.testimonial-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform .5s ease;
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 .5rem;
}

@media (min-width: 768px) {
    .testimonial-slide {
        min-width: 50%;
    }
}

@media (min-width: 1024px) {
    .testimonial-slide {
        min-width: 33.333%;
    }
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: .5rem;
    margin-top: 1.5rem;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-300);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.slider-dot.active {
    background: var(--primary);
    width: 28px;
    border-radius: 5px;
}

/* --- Sorting Bar --- */
.sort-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.sort-bar select {
    padding: .5rem 1rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: .85rem;
    background: var(--white);
    cursor: pointer;
}

.sort-bar select:focus {
    outline: none;
    border-color: var(--primary);
}

/* --- Loading Skeleton --- */
.skeleton {
    background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-200) 50%, var(--gray-100) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius);
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-section {
        min-height: auto;
        padding: 4rem 0;
    }

    .section {
        padding: 3.5rem 0;
    }

    .section-title {
        font-size: 1.7rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 0;
    }

    .section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .page-header {
        padding: 3rem 0 2rem;
    }

    .page-header h1 {
        font-size: 1.75rem;
    }

    .car-detail-image {
        height: 260px;
    }

    .filter-sidebar {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 640px) {
    .section {
        padding: 2.5rem 0;
    }

    .car-card-specs {
        grid-template-columns: 1fr;
    }

    .booking-form {
        padding: 1.25rem;
    }
}