/* ============================================
   LUXURY BLACK & GOLD THEME - RAJ LIMO SERVICE
   ============================================ */

/* CSS Variables */
:root {
    --color-black: #0a0a0a;
    --color-charcoal: #1a1a1a;
    --color-dark-gray: #2a2a2a;
    --color-gold: #d4af37;
    --color-gold-light: #e5c158;
    --color-gold-dark: #b8941f;
    --color-white: #ffffff;
    --color-light-gray: #e5e5e5;
    --color-medium-gray: #999999;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-black);
    color: var(--color-light-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.header {
    position: sticky;
    top: 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.98) 0%, rgba(26, 26, 26, 0.95) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo {
    height: 45px;
    width: auto;
    filter: brightness(1.1);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gold);
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--color-light-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--color-gold);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    color: var(--color-gold);
    font-weight: 600;
}

.nav-cta::after {
    width: 100%;
}

.phone-link {
    color: var(--color-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
    border: 1px solid var(--color-gold);
    border-radius: 4px;
    transition: var(--transition);
    white-space: nowrap;
}

.phone-link:hover {
    background: var(--color-gold);
    color: var(--color-black);
    box-shadow: var(--shadow-gold);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-gold);
    transition: var(--transition);
}

@media (max-width: 768px) {
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-charcoal);
        padding: 2rem;
        border-top: 1px solid rgba(212, 175, 55, 0.2);
        box-shadow: var(--shadow-lg);
        gap: 1rem;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    gap: 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
    z-index: 0;
}

.hero-content {
    flex: 1;
    z-index: 1;
    max-width: 600px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--color-gold);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-medium-gray);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-light-gray);
    font-size: 0.95rem;
}

.feature-icon {
    color: var(--color-gold);
    font-weight: 700;
    font-size: 1.2rem;
}

.hero-image {
    flex: 1;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    filter: brightness(0.95) contrast(1.05);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
    text-align: center;
}

.btn-primary {
    background: var(--color-gold);
    color: var(--color-black);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    background: var(--color-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--color-gold);
    border: 2px solid var(--color-gold);
}

.btn-secondary:hover {
    background: var(--color-gold);
    color: var(--color-black);
    box-shadow: var(--shadow-gold);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

/* ============================================
   SECTION STYLES
   ============================================ */

section {
    padding: 5rem 0;
    position: relative;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-white);
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--color-gold);
}

.section-subtitle {
    text-align: center;
    color: var(--color-medium-gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services {
    background: var(--color-charcoal);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.carousel-container {
    position: relative;
    overflow: hidden;
    margin-top: 3rem;
    border-radius: 12px;
    width: 100%;
    --carousel-nav-size: 50px;
    --carousel-nav-gap: 20px;
    --carousel-gap: 1.5rem;
    --carousel-edge: 1.5rem;
    --cards-per-view: 3;
    padding: 0 calc(var(--carousel-nav-size) + (var(--carousel-nav-gap) * 2));
}

.carousel-container:not(.is-ready) .carousel-track {
    visibility: hidden;
}

.carousel-container.is-ready .carousel-track {
    visibility: visible;
}

.carousel-wrapper {
    overflow: hidden;
    border-radius: 12px;
    min-height: 400px;
    position: relative;
    box-shadow: var(--shadow-lg);
    padding: 0;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
    gap: 0; /* page spacing is handled inside .carousel-page */
}

.carousel-page {
    flex: 0 0 100%;
    display: grid;
    grid-template-columns: repeat(var(--cards-per-view, 3), minmax(0, 1fr));
    gap: var(--carousel-gap);
    padding: 0 var(--carousel-edge);
    box-sizing: border-box;
}

.carousel-page .service-card {
    min-height: 290px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212, 175, 55, 0.95);
    border: 2px solid var(--color-gold);
    width: var(--carousel-nav-size);
    height: var(--carousel-nav-size);
    border-radius: 50%;
    color: var(--color-charcoal);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: var(--color-gold);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-lg), 0 0 20px rgba(212, 175, 55, 0.4);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-btn-prev {
    left: var(--carousel-nav-gap);
}

.carousel-btn-next {
    right: var(--carousel-nav-gap);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 2rem;
}

.indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator.active {
    background: var(--color-gold);
    transform: scale(1.2);
    border-color: var(--color-gold-light);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.indicator:hover {
    background: rgba(212, 175, 55, 0.6);
    transform: scale(1.1);
}

.service-card {
    background: var(--color-dark-gray);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: var(--shadow-sm);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold);
    box-shadow: var(--shadow-md), var(--shadow-gold);
}

.service-image {
    width: 100%;
    height: 185px;
    overflow: hidden;
    position: relative;
}

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.7) 100%);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 2rem;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-description {
    color: var(--color-light-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--color-medium-gray);
    margin-bottom: 2rem;
}

/* ============================================
   FLEET SECTION
   ============================================ */

.fleet {
    background: var(--color-black);
}

.fleet-notice {
    text-align: center;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 4px;
    margin-bottom: 3rem;
    color: var(--color-gold-light);
}

.fleet-category {
    margin-bottom: 4rem;
    padding: 2.5rem;
    background: var(--color-charcoal);
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.fleet-category-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.fleet-category-subtitle {
    font-size: 1.3rem;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.fleet-specs {
    margin-bottom: 1.5rem;
}

.fleet-specs-title {
    font-size: 1.1rem;
    color: var(--color-gold);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.fleet-models {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.fleet-models li {
    color: var(--color-light-gray);
    position: relative;
    padding-left: 1.5rem;
}

.fleet-models li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-size: 1.5rem;
    line-height: 1;
}

.fleet-features {
    list-style: none;
    margin-bottom: 2rem;
}

.fleet-features li {
    color: var(--color-light-gray);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.fleet-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: 700;
}

.fleet-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.fleet-image {
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.fleet-image:hover {
    border-color: var(--color-gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md), var(--shadow-gold);
}

.fleet-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.fleet-image:hover img {
    transform: scale(1.05);
}

/* ============================================
   PAYMENT METHODS
   ============================================ */

.payment-methods {
    background: var(--color-charcoal);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.payment-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--color-dark-gray);
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
}

.payment-item:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md), var(--shadow-gold);
}

.payment-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.payment-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.payment-description {
    color: var(--color-light-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 1rem;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq {
    background: var(--color-black);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.25rem;
    margin-top: 3rem;
}

.faq-item {
    position: relative;
    padding: 1.75rem 1.75rem 1.5rem;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.95) 0%, rgba(26, 26, 26, 0.85) 100%);
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 12px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    min-height: 170px;
}

.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.85), transparent);
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md), 0 10px 30px rgba(0, 0, 0, 0.35);
    border-color: rgba(212, 175, 55, 0.35);
}

.faq-question {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--color-white);
    font-weight: 600;
    letter-spacing: 0.2px;
    margin-bottom: 0.75rem;
}

.faq-desciption {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.75;
    font-weight: 400;
    color: rgba(229, 229, 229, 0.9);
}

/* ============================================
   CONTACT & BOOKING SECTION
   ============================================ */

.contact {
    background: var(--color-charcoal);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item {
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-label {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-value {
    display: block;
    color: var(--color-light-gray);
    text-decoration: none;
    font-size: 1.1rem;
    transition: var(--transition);
    margin-bottom: 0.5rem;
}

.contact-value:hover {
    color: var(--color-gold);
}

.contact-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.contact-link {
    color: var(--color-gold);
    text-decoration: none;
    font-size: 1rem;
    padding: 1rem 2rem;
    border: 2px solid var(--color-gold);
    border-radius: 4px;
    transition: var(--transition);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
}

.contact-link:hover {
    background: var(--color-gold);
    color: var(--color-black);
}

.business-hours p {
    color: var(--color-light-gray);
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.business-hours strong {
    color: var(--color-gold);
}

/* ============================================
   BOOKING FORM
   ============================================ */

.booking-form {
    background: var(--color-dark-gray);
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: var(--shadow-md);
}

.form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--color-gold);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    background: var(--color-charcoal);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 4px;
    color: var(--color-light-gray);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-help {
    font-size: 0.85rem;
    color: var(--color-medium-gray);
    margin-top: 0.25rem;
    font-style: italic;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.form-actions .btn {
    flex: 1;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--color-black);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    filter: brightness(1.1);
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-gold);
    font-weight: 700;
}

.footer-tagline {
    color: var(--color-medium-gray);
    font-size: 0.95rem;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--color-light-gray);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--color-gold);
    padding-left: 5px;
}

.footer-section p {
    color: var(--color-light-gray);
    line-height: 1.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    color: var(--color-medium-gray);
    font-size: 0.9rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 3rem 1.5rem;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .fleet-gallery {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .phone-link {
        display: none;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .section-title {
        font-size: 2rem;
    }

    .carousel-container {
        margin-top: 2rem;
        --carousel-nav-size: 40px;
        --carousel-nav-gap: 16px;
        --carousel-gap: 1rem;
        --carousel-edge: 1rem;
        --cards-per-view: 1;
        padding: 0; /* no nav buttons on mobile */
    }

    .carousel-btn {
        display: none;
    }

    .carousel-indicators {
        margin-top: 1.5rem;
    }

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

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

    .fleet-category {
        padding: 1.5rem;
    }

    .booking-form {
        padding: 2rem 1.5rem;
    }

    .form-actions {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }

    .hero {
        padding: 2rem 1rem;
        min-height: auto;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    section {
        padding: 3rem 0;
    }

    .fleet-gallery {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   SMOOTH SCROLLING & ANIMATIONS
   ============================================ */

@media (prefers-reduced-motion: no-preference) {
    .service-card,
    .fleet-image,
    .payment-item,
    .faq-item {
        animation: fadeInUp 0.6s ease-out;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .btn,
    .form {
        display: none;
    }

    body {
        background: white;
        color: black;
    }
}
