/* ==========================================================================
   Mysore Cabs Service — Replicated Target UI Mockup Stylesheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
    --primary: #F8B400;
    --primary-dark: #D99A00;
    --primary-light: #FFFDF3;
    --black: #111111;
    --dark: #1F2937;
    --text: #1F2937;
    --muted: #6B7280;
    --light: #F9FAFB;
    --border: #E5E7EB;
    --whatsapp: #25D366;
    --whatsapp-dark: #1EBE5B;

    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-pill: 50px;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.08);
    --shadow-xl: 0 20px 35px rgba(0,0,0,0.12);
    --shadow-yellow: 0 6px 20px rgba(248, 180, 0, 0.2);
}

/* --------------------------------------------------------------------------
   2. GLOBAL STYLES
   -------------------------------------------------------------------------- */
body {
    font-family: var(--font-body);
    color: var(--text);
    background-color: #FFFFFF;
    line-height: 1.6;
    font-size: 14px;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--black);
}

a {
    text-decoration: none;
    transition: all 0.25s ease;
}

.container {
    width: calc(100% - 88px);
    max-width: 1480px !important;
    padding-left: 0;
    padding-right: 0;
}

.section-padding {
    padding: 60px 0;
}

.bg-light-grey {
    background-color: var(--light);
}

.text-yellow {
    color: var(--primary) !important;
}

/* --------------------------------------------------------------------------
   3. ANIMATIONS
   -------------------------------------------------------------------------- */
.fade-up {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --------------------------------------------------------------------------
   4. SECTION HEADINGS
   -------------------------------------------------------------------------- */
.section-header {
    margin-bottom: 36px;
}

.section-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary-dark);
    margin-bottom: 6px;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--black);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.text-center .section-title {
    justify-content: center;
}

.text-center .section-title::before,
.text-center .section-title::after {
    content: '';
    display: inline-block;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.section-subtitle {
    font-size: 0.92rem;
    color: var(--muted);
    max-width: 560px;
    margin: 0 auto;
}

/* --------------------------------------------------------------------------
   5. HEADER / NAVBAR
   -------------------------------------------------------------------------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #FFFFFF;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--border);
    transition: all 0.25s ease;
}

#mainNav {
    padding: 8px 0 7px;
}

.header-logo {
    width: 186px;
    height: 51px;
    object-fit: contain;
    display: block;
}

.navbar-nav {
    gap: 28px !important;
}

.navbar-nav .nav-link {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--black) !important;
    padding: 7px 0 !important;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.25s ease;
    border-radius: 2px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--black) !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

/* Capsule Header Container */
.header-cta-capsule {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: var(--radius-pill);
    min-height: 46px;
    padding: 3px 4px 3px 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 10px rgba(17, 24, 39, 0.08);
}

.btn-capsule-call {
    display: flex;
    align-items: center;
    color: var(--black);
    text-decoration: none;
    gap: 8px;
}

.btn-capsule-call .phone-icon {
    font-size: 1.12rem;
    color: var(--black);
}

.call-text-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.call-label {
    font-size: 0.58rem;
    color: var(--muted);
    text-transform: uppercase;
    font-weight: 700;
}

.call-number {
    font-size: 0.74rem;
    font-weight: 800;
    color: var(--black);
}

.btn-capsule-whatsapp {
    background: #FFC107;
    border-radius: var(--radius-pill);
    min-height: 38px;
    padding: 0 11px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--black) !important;
    font-weight: 800;
    font-size: 0.78rem;
    transition: all 0.25s ease;
}

.btn-capsule-whatsapp:hover {
    background: #E0A800;
}

.btn-capsule-whatsapp .wa-icon-bg {
    width: 18px;
    height: 18px;
    background: #FFFFFF;
    color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.74rem;
}

@media (min-width: 992px) and (max-width: 1399px) {
    .header-cta-capsule {
        margin-right: 108px;
    }
}

/* Hamburger */
.navbar-toggler {
    border: none;
    outline: none !important;
    box-shadow: none !important;
}

.hamburger-line {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--black);
    margin: 4px 0;
    transition: all 0.25s ease;
}

.site-header::after {
    content: '';
    position: fixed;
    right: 22px;
    top: 34px;
    width: 22px;
    height: 2px;
    background: #111;
    box-shadow: 0 -7px 0 #111, 0 7px 0 #111;
    z-index: 1100;
    pointer-events: none;
}

@media (min-width: 900px) {
    .site-header::after {
        display: none;
    }
}

/* --------------------------------------------------------------------------
   6. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    background: #FFFFFF;
    padding: 31px 0 56px;
    overflow: hidden;
}

.hero-bg-overlay {
    display: none;
}

.min-vh-hero {
    min-height: 300px;
    align-items: flex-start !important;
}

.hero-content {
    padding-right: 16px;
    text-align: start;
    position: relative;
    z-index: 6;
}

.hero-label {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: 0.08em;
    margin-bottom: 2px;
}

.hero-title {
    font-size: 2.65rem;
    font-weight: 900;
    line-height: 1.08;
    margin-bottom: 16px;
    letter-spacing: 0;
}

.hero-subtitle {
    font-size: 0.82rem;
    color: var(--muted);
    margin-bottom: 20px;
    line-height: 1.55;
    max-width: 390px;
}

.btn-hero-call {
    background: var(--primary);
    color: var(--black) !important;
    font-size: 0.78rem;
    font-weight: 800;
    min-width: 116px;
    height: 44px;
    padding: 0 20px;
    border-radius: 6px;
    box-shadow: var(--shadow-yellow);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
}

.btn-hero-call:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-hero-whatsapp {
    background: #FFFFFF;
    color: var(--black) !important;
    border: 1px solid #BFC5CD;
    font-size: 0.78rem;
    font-weight: 700;
    min-width: 184px;
    height: 44px;
    padding: 0 22px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.btn-hero-whatsapp:hover {
    background: var(--light);
    border-color: var(--muted);
    transform: translateY(-1px);
}

/* Stats */
.hero-stats {
    margin-top: 18px;
    gap: 0;
    border-top: 0;
    padding-top: 0;
}

.hero-stat {
    display: flex;
    align-items: flex-start;
    padding-right: 18px;
}

.hero-stat + .hero-stat {
    border-left: 1px solid rgba(17, 24, 39, 0.14);
    margin-left: 18px;
    padding-left: 18px;
}

.hero-stat i {
    font-size: 1.45rem;
    color: var(--primary-dark);
}

.hero-stat-number {
    font-size: 1.28rem;
    font-weight: 800;
    color: var(--black);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.66rem;
    color: var(--muted);
    white-space: nowrap;
    line-height: 1.25;
}

/* Visual Wrapper */
.hero-visual {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 306px;
    min-height: 306px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding-right: 0;
    overflow: visible;
}

.hero-palace-bg {
    position: absolute;
    top: -31px;
    right: -10px;
    bottom: -2px;
    left: -92px;
    background-size: cover;
    background-position: center 42%;
    border-radius: 0;
    opacity: 1;
    filter: saturate(0.92) brightness(1.13);
    z-index: 0;
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    inset: -33px -18px -8px -110px;
    background:
        linear-gradient(90deg, #FFFFFF 0%, rgba(255,255,255,0.96) 16%, rgba(255,255,255,0.44) 38%, rgba(255,255,255,0.16) 78%, rgba(255,255,255,0.08) 100%),
        linear-gradient(180deg, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0) 48%, rgba(255,255,255,0.58) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-image-wrapper::after {
    content: '';
    position: absolute;
    right: 82px;
    bottom: 4px;
    width: 180px;
    height: 128px;
    border: 2px dashed rgba(248, 180, 0, 0.58);
    border-left-color: transparent;
    border-radius: 50%;
    transform: rotate(-11deg);
    z-index: 2;
    pointer-events: none;
}

.hero-car-img {
    position: absolute;
    left: -8px;
    top: -70px;
    z-index: 3;
    width: 66%;
    max-width: 620px;
    margin: 0;
    object-fit: contain;
    filter: drop-shadow(0 14px 20px rgba(0, 0, 0, 0.18));
}

/* Floating Cards stacked vertically on the right of the car */
.hero-float-card {
    position: absolute;
    background: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 7px 18px rgba(17, 24, 39, 0.1);
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 11px;
    z-index: 5;
    border: 1px solid rgba(229, 231, 235, 0.9);
    width: 148px;
    min-height: 68px;
}

.card-route {
    top: -8px;
    right: 0;
}

.card-airport {
    top: 82px;
    right: 0;
}

.card-247 {
    top: 172px;
    bottom: auto;
    right: 0;
}

.float-card-icon {
    width: 36px;
    height: 36px;
    background: #FFF6D8;
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.float-card-icon-route {
    background: transparent;
    color: var(--primary-dark);
    font-size: 1.28rem;
}

.float-card-icon-247 {
    background: transparent;
    border: 2px solid var(--primary);
    font-family: var(--font-heading);
    font-size: 0.54rem;
    font-weight: 900;
    color: var(--primary-dark);
}

.float-card-title {
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--black);
    line-height: 1.15;
}

.float-card-price, .float-card-sub {
    font-size: 0.62rem;
    color: var(--muted);
    font-weight: 600;
    line-height: 1.25;
}

/* --------------------------------------------------------------------------
   7. QUICK BOOKING FORM
   -------------------------------------------------------------------------- */
.booking-section {
    position: relative;
    z-index: 10;
    margin-top: -60px;
    padding-bottom: 26px;
}

.booking-card {
    background: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 5px 18px rgba(17, 24, 39, 0.1);
    padding: 13px 22px 15px;
    border: 1px solid var(--border);
    margin: 0 16px;
}

.booking-card.fade-up {
    opacity: 1;
    transform: none;
}

.booking-title {
    font-size: 1.16rem;
    font-weight: 700;
    margin-bottom: 11px;
}

.booking-input {
    border: 1.5px solid var(--border);
    border-radius: 6px;
    padding: 8px 10px 8px 34px;
    font-size: 0.76rem;
    background: var(--light);
    height: 42px;
}

.booking-input:focus {
    border-color: var(--primary);
    background: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(248, 180, 0, 0.1);
}

select.booking-input {
    padding-left: 10px;
}

.input-with-icon {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
    font-size: 0.82rem;
}

.input-icon-right {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
    font-size: 0.86rem;
    pointer-events: none;
}

.form-label {
    font-size: 0.66rem;
    font-weight: 600;
    margin-bottom: 3px;
}

.btn-booking-submit {
    background: var(--primary);
    color: var(--black) !important;
    border: none;
    min-width: 122px;
    padding: 0 17px;
    border-radius: 6px;
    font-size: 0.76rem;
    font-weight: 700;
    height: 36px;
    box-shadow: var(--shadow-yellow);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-booking-submit:hover {
    background: var(--primary-dark);
}

.booking-note {
    font-size: 0.62rem;
    color: var(--muted);
}

/* --------------------------------------------------------------------------
   8. OUR SERVICES SECTION
   -------------------------------------------------------------------------- */
.service-card {
    background: #FFFFFF;
    border: 1px solid #EEEEEE;
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
    transition: all 0.25s ease;
    height: 100%;
}

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

.service-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 1.35rem;
    color: var(--primary-dark);
}

.service-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.service-desc {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.45;
    margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   9. POPULAR ROUTES SECTION
   -------------------------------------------------------------------------- */
.route-card {
    background: #FFFFFF;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.25s ease;
    height: 100%;
}

.route-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.route-img-wrap {
    position: relative;
}

.route-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.route-type-badge {
    position: absolute;
    top: 6px;
    left: 6px;
    background: var(--primary);
    color: var(--black);
    font-size: 0.6rem;
    font-weight: 700;
    padding: 1px 6px;
    border-radius: var(--radius-pill);
}

.route-content {
    padding: 12px;
}

.route-name {
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.route-price {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.btn-route-cta {
    display: block;
    width: 100%;
    text-align: center;
    background: transparent;
    color: var(--primary-dark) !important;
    border: 1px solid var(--primary);
    padding: 5px 10px;
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 700;
}

.btn-route-cta:hover {
    background: var(--primary);
    color: var(--black) !important;
}

/* --------------------------------------------------------------------------
   10. TOP DESTINATIONS SECTION
   -------------------------------------------------------------------------- */
.dest-card {
    background: #FFFFFF;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.25s ease;
    height: 100%;
}

.dest-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.dest-img-wrap {
    position: relative;
}

.dest-img {
    width: 100%;
    height: 110px;
    object-fit: cover;
}

.dest-content {
    padding: 10px;
    text-align: center;
}

.dest-label {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    margin-bottom: 2px;
}

.dest-name {
    font-size: 0.88rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.btn-dest-explore {
    background: var(--primary);
    color: var(--black) !important;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: var(--radius-pill);
    display: inline-block;
}

.btn-dest-explore:hover {
    background: var(--primary-dark);
}

/* --------------------------------------------------------------------------
   11. VEHICLES SECTION
   -------------------------------------------------------------------------- */
.vehicle-card {
    background: #FFFFFF;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--border);
    overflow: hidden;
    transition: all 0.25s ease;
    height: 100%;
    position: relative;
}

.vehicle-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.vehicle-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-yellow);
}

.vehicle-popular-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: var(--primary);
    color: var(--black);
    font-size: 0.58rem;
    font-weight: 800;
    padding: 1px 6px;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    z-index: 2;
}

.vehicle-img-wrap {
    background: #F2F4F7;
    padding: 12px;
    text-align: center;
}

.vehicle-img {
    height: 80px;
    width: 100%;
    object-fit: contain;
}

.vehicle-content {
    padding: 12px;
}

.vehicle-name {
    font-size: 0.92rem;
    font-weight: 800;
    margin-bottom: 2px;
}

.vehicle-tag {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-dark);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 1px 6px;
    border-radius: var(--radius-pill);
    margin-bottom: 8px;
}

.vehicle-specs {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
}

.spec-item {
    font-size: 0.68rem;
    color: var(--muted);
}

.spec-item i {
    color: var(--primary-dark);
}

.vehicle-price {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.btn-vehicle-book {
    background: var(--black);
    color: #FFFFFF !important;
    font-size: 0.78rem;
    font-weight: 700;
    width: 100%;
    text-align: center;
    padding: 6px 10px;
    border-radius: var(--radius-pill);
    display: block;
}

.btn-vehicle-book:hover {
    background: var(--primary);
    color: var(--black) !important;
}

/* --------------------------------------------------------------------------
   12. PRICING SECTION
   -------------------------------------------------------------------------- */
.pricing-hero-title {
    font-size: 1.45rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.pricing-desc {
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 12px;
}

.pricing-notes {
    margin-bottom: 18px;
    padding-left: 0;
}

.pricing-notes li {
    font-size: 0.78rem;
    color: var(--muted);
    margin-bottom: 5px;
    list-style: none;
}

.btn-pricing-fare {
    background: var(--primary);
    color: var(--black) !important;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    display: inline-block;
    box-shadow: var(--shadow-yellow);
}

.btn-pricing-fare:hover {
    background: var(--primary-dark);
}

.pricing-card {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 10px;
    text-align: center;
    transition: all 0.25s ease;
    height: 100%;
}

.pricing-card:hover {
    border-color: var(--primary);
    background: #FFFFFF;
    box-shadow: var(--shadow-sm);
}

.pricing-car-img {
    height: 60px;
    width: auto;
    margin: 0 auto 8px;
    object-fit: contain;
}

.pricing-vehicle-name {
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.pricing-amount-label {
    font-size: 0.6rem;
    color: var(--muted);
}

.pricing-amount {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.pricing-unit {
    font-size: 0.68rem;
}

/* --------------------------------------------------------------------------
   13. WHY CHOOSE US SECTION
   -------------------------------------------------------------------------- */
.features-section {
    background-color: var(--primary-light);
}

.feature-card {
    background: #FFFFFF;
    border-radius: var(--radius-sm);
    padding: 18px;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.feature-icon-wrap {
    width: 44px;
    height: 44px;
    background: var(--primary-light);
    color: var(--primary-dark);
    font-size: 1.15rem;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.feature-title {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.feature-desc {
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.4;
    margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   14. TESTIMONIALS SECTION
   -------------------------------------------------------------------------- */
.testimonial-card {
    background: #FFFFFF;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    padding: 20px;
    height: 100%;
}

.testimonial-stars {
    color: var(--primary);
    font-size: 0.8rem;
    margin-bottom: 8px;
}

.testimonial-text {
    font-size: 0.82rem;
    color: var(--muted);
    font-style: italic;
    margin-bottom: 14px;
    line-height: 1.45;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
}

.author-name {
    font-size: 0.82rem;
    font-weight: 700;
}

.author-trip {
    font-size: 0.68rem;
    color: var(--muted);
}

/* --------------------------------------------------------------------------
   15. FAQ SECTION
   -------------------------------------------------------------------------- */
.faq-accordion {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border) !important;
    border-radius: var(--radius-sm) !important;
    margin-bottom: 8px;
    overflow: hidden;
}

.faq-button {
    font-size: 0.88rem;
    font-weight: 600;
    background: #FFFFFF !important;
    color: var(--black) !important;
    padding: 12px 18px;
    box-shadow: none !important;
    border: none !important;
}

.faq-button:not(.collapsed) {
    background: var(--primary-light) !important;
    color: var(--primary-dark) !important;
}

.faq-body {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.55;
    padding: 12px 18px;
}

/* --------------------------------------------------------------------------
   16. CTA BAND (ABOVE FOOTER)
   -------------------------------------------------------------------------- */
.cta-band {
    background: var(--dark);
    color: #FFFFFF;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.cta-band-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #FFFFFF;
}

.cta-band-subtitle {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

.btn-cta-band-call {
    background: var(--primary);
    color: var(--black) !important;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: var(--radius-pill);
}

.btn-cta-band-whatsapp {
    background: var(--whatsapp);
    color: #FFFFFF !important;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: var(--radius-pill);
}

.btn-cta-band-whatsapp:hover {
    background: var(--whatsapp-dark);
}

/* --------------------------------------------------------------------------
   17. FOOTER
   -------------------------------------------------------------------------- */
.footer-main {
    background: var(--black);
    padding: 50px 0;
    color: rgba(255,255,255,0.7);
}

.footer-logo {
    height: 40px;
    filter: brightness(0) invert(1);
}

.footer-desc {
    font-size: 0.78rem;
    line-height: 1.5;
}

.footer-socials {
    display: flex;
    gap: 8px;
}

.social-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    color: #FFFFFF !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.social-icon:hover {
    background: var(--primary);
    color: var(--black) !important;
}

.footer-heading {
    font-size: 0.85rem;
    color: #FFFFFF;
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 6px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--primary);
}

.footer-contact-list {
    padding-left: 0;
}

.footer-contact-list li {
    font-size: 0.78rem;
    margin-bottom: 6px;
    list-style: none;
}

.footer-contact-list li i {
    color: var(--primary);
    margin-right: 6px;
}

.footer-contact-list a {
    color: rgba(255,255,255,0.7);
}

.footer-contact-list a:hover {
    color: var(--primary);
}

.footer-links {
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 6px;
    list-style: none;
}

.footer-links a {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.7);
}

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

/* Yellow CTA Box */
.footer-cta-box {
    background: var(--primary);
    border-radius: var(--radius-sm);
    padding: 16px 12px;
    color: var(--black);
}

.footer-cta-title {
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.footer-cta-text {
    font-size: 0.72rem;
    line-height: 1.35;
    margin-bottom: 10px;
}

.btn-footer-call {
    background: var(--black);
    color: #FFFFFF !important;
    width: 100%;
    padding: 6px;
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 700;
    display: block;
    text-align: center;
}

.btn-footer-whatsapp {
    background: var(--whatsapp);
    color: #FFFFFF !important;
    width: 100%;
    padding: 6px;
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 700;
    display: block;
    text-align: center;
}

.btn-footer-whatsapp:hover {
    background: var(--whatsapp-dark);
}

/* Footer Bottom */
.footer-bottom {
    background: #0B0B0B;
    padding: 12px 0;
    border-top: 1px solid rgba(255,255,255,0.03);
}

.footer-copy {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.35);
}

.footer-credit {
    color: rgba(255,255,255,0.35);
    font-size: 0.72rem;
}

.footer-credit-link {
    font-weight: 700;
}

.footer-bottom-link {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.35);
}

.footer-bottom-link:hover {
    color: var(--primary);
}

/* --------------------------------------------------------------------------
   18. MOBILE STICKY CTA BAR
   -------------------------------------------------------------------------- */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    z-index: 999;
}

.btn-sticky-call, .btn-sticky-whatsapp {
    flex: 1;
    text-align: center;
    padding: 10px;
    font-weight: 700;
    font-size: 0.85rem;
}

.btn-sticky-call {
    background: var(--primary);
    color: var(--black) !important;
}

.btn-sticky-whatsapp {
    background: var(--whatsapp);
    color: #FFFFFF !important;
}

/* --------------------------------------------------------------------------
   19. RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */
@media (min-width: 1600px) {
    .hero-section {
        padding-top: 86px;
        padding-bottom: 136px;
    }

    .min-vh-hero {
        min-height: 430px;
    }

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

    .hero-label {
        font-size: 0.92rem;
        margin-bottom: 14px;
    }

    .hero-subtitle {
        font-size: 1.15rem;
        max-width: 540px;
        margin-bottom: 34px;
    }

    .btn-hero-call,
    .btn-hero-whatsapp {
        height: 58px;
        border-radius: 8px;
        font-size: 1.05rem;
    }

    .btn-hero-call {
        min-width: 196px;
    }

    .btn-hero-whatsapp {
        min-width: 264px;
    }

    .hero-stats {
        margin-top: 38px;
        border-top: 0;
        padding-top: 0;
    }

    .hero-stat + .hero-stat {
        border-left: 1px solid rgba(17, 24, 39, 0.14);
        margin-left: 28px;
        padding-left: 28px;
    }

    .hero-stat-number {
        font-size: 1.8rem;
    }

    .hero-stat-label {
        font-size: 0.92rem;
    }

    .hero-image-wrapper {
        height: 478px;
        min-height: 478px;
    }

    .hero-palace-bg {
        left: -92px;
        right: -10px;
        top: -16px;
        bottom: -4px;
        border-radius: 0;
        filter: saturate(0.92) brightness(1.13);
        opacity: 1;
    }

    .hero-image-wrapper::before {
        inset: -18px -24px -12px -120px;
        border-radius: 0;
        background:
            linear-gradient(90deg, #FFFFFF 0%, rgba(255,255,255,0.92) 14%, rgba(255,255,255,0.32) 34%, rgba(255,255,255,0.08) 72%, rgba(255,255,255,0.04) 100%),
            linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,0.2) 100%);
    }

    .hero-image-wrapper::after {
        display: block;
        right: 120px;
        bottom: 22px;
        width: 220px;
        height: 150px;
    }

    .hero-car-img {
        left: 40px;
        top: 104px;
        width: 62%;
        max-width: 720px;
        margin: 0;
        z-index: 6;
    }

    .hero-float-card {
        z-index: 7;
        width: 250px;
        min-height: 62px;
        padding: 10px 18px;
        border-radius: 11px;
    }

    .card-route {
        top: 72px;
        right: 26px;
    }

    .card-airport {
        top: 214px;
        right: 0;
    }

    .card-247 {
        top: auto;
        bottom: 58px;
        right: 50px;
    }

    .float-card-title {
        font-size: 1rem;
    }

    .float-card-price,
    .float-card-sub {
        font-size: 0.82rem;
    }
}

@media (max-width: 991px) {
    .container {
        width: calc(100% - 40px);
    }

    .header-logo {
        width: 152px;
        height: 42px;
    }

    .hero-section {
        padding: 34px 0 66px;
    }

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

    .hero-subtitle {
        max-width: 520px;
    }

    .hero-image-wrapper {
        padding-right: 0;
        min-height: 300px;
        margin-top: 18px;
    }

    .hero-palace-bg {
        left: 0;
        right: 0;
        border-radius: 14px;
    }

    .hero-image-wrapper::before {
        inset: 0;
        border-radius: 14px;
        background: linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.4));
    }

    .hero-car-img {
        width: 78%;
        margin-left: 24px;
        margin-top: 60px;
    }

    .hero-float-card {
        display: none !important;
    }

    .booking-section {
        margin-top: -34px;
    }

    .booking-card {
        margin: 0;
    }

    .navbar-collapse {
        background: #FFFFFF;
        padding: 15px;
        border-radius: var(--radius-sm);
        box-shadow: var(--shadow-md);
        margin-top: 10px;
    }
    .header-ctas {
        margin-top: 15px;
        flex-direction: column;
        align-items: stretch !important;
    }
    .header-ctas .btn {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .container {
        width: calc(100% - 32px);
    }

    .section-padding {
        padding: 40px 0;
    }
    .section-title {
        font-size: 1.45rem;
    }
    .hero-title {
        font-size: 2rem;
    }

    .hero-ctas {
        gap: 10px !important;
    }

    .btn-hero-call,
    .btn-hero-whatsapp {
        width: 100%;
    }

    .hero-stats {
        flex-wrap: wrap;
        row-gap: 14px;
    }

    .hero-stat,
    .hero-stat + .hero-stat {
        width: 100%;
        margin-left: 0;
        padding-left: 0;
        border-left: 0;
    }

    .hero-image-wrapper {
        min-height: 230px;
    }

    .hero-car-img {
        width: 88%;
        margin-left: 10px;
        margin-top: 50px;
    }

    .booking-card {
        padding: 16px;
    }
}

@media (max-width: 899px) {
    .site-header .navbar {
        position: relative;
    }

    .site-header::after {
        content: '';
        position: fixed;
        right: 22px;
        top: 34px;
        width: 22px;
        height: 2px;
        background: #111;
        box-shadow: 0 -7px 0 #111, 0 7px 0 #111;
        z-index: 1100;
        pointer-events: none;
    }

    #mainNav {
        padding: 10px 0;
    }

    .navbar > .container {
        width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }

    .navbar-toggler {
        display: inline-flex;
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 20;
        width: 38px;
        height: 38px;
        margin-left: auto;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .hamburger-line {
        background: #111 !important;
    }

    .header-logo {
        width: 150px;
        height: auto;
    }

    .hero-image-wrapper {
        overflow: hidden;
    }

    .hero-car-img {
        position: relative;
        left: auto;
        top: auto;
        width: 108%;
        max-width: none;
        margin-left: -22px;
        margin-top: 44px;
    }
}

/* --------------------------------------------------------------------------
   20. REFERENCE-COMPACT DESKTOP/TABLET REPLICA
   -------------------------------------------------------------------------- */
.cta-band {
    display: none;
}

@media (min-width: 900px) {
    body {
        font-size: 13px;
    }

    .container {
        width: calc(100% - 72px);
        max-width: 1560px !important;
    }

    #mainNav {
        padding: 8px 0;
    }

    .header-logo {
        width: 150px;
        height: auto;
    }

    .navbar-nav {
        gap: 18px !important;
    }

    .navbar-nav .nav-link {
        font-size: 0.64rem;
        padding: 7px 0 !important;
    }

    .header-cta-capsule {
        min-height: 42px;
        padding: 3px 4px 3px 13px;
        gap: 10px;
    }

    .btn-capsule-call .phone-icon {
        font-size: 0.96rem;
    }

    .call-label {
        font-size: 0.55rem;
    }

    .call-number {
        font-size: 0.72rem;
    }

    .btn-capsule-whatsapp {
        min-height: 34px;
        padding: 0 12px;
        font-size: 0.72rem;
    }

    .hero-section {
        padding: 24px 0 38px;
    }

    .min-vh-hero {
        min-height: 300px;
    }

    .hero-label {
        font-size: 0.7rem;
        margin-bottom: 3px;
    }

    .hero-title {
        font-size: 2.72rem;
        line-height: 1.07;
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: 0.75rem;
        max-width: 330px;
        margin-bottom: 18px;
    }

    .btn-hero-call,
    .btn-hero-whatsapp {
        height: 42px;
        border-radius: 6px;
        font-size: 0.74rem;
    }

    .btn-hero-call {
        min-width: 120px;
    }

    .btn-hero-whatsapp {
        min-width: 176px;
    }

    .hero-stats {
        margin-top: 18px;
    }

    .hero-stat i {
        font-size: 1.25rem;
    }

    .hero-stat-number {
        font-size: 1.12rem;
    }

    .hero-stat-label {
        font-size: 0.58rem;
    }

    .hero-image-wrapper {
        height: 292px;
        min-height: 292px;
    }

    .hero-palace-bg {
        top: -18px;
        right: -8px;
        bottom: 4px;
        left: -82px;
        background-position: center 40%;
        filter: saturate(0.96) brightness(1.1);
    }

    .hero-image-wrapper::before {
        inset: -20px -18px -4px -92px;
        background:
            linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.9) 13%, rgba(255,255,255,0.35) 34%, rgba(255,255,255,0.04) 78%),
            linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.06) 55%, rgba(255,255,255,0.28));
    }

    .hero-car-img {
        left: 0;
        top: -38px;
        width: 69%;
        max-width: 560px;
    }

    .hero-float-card {
        width: 128px;
        min-height: 58px;
        padding: 8px 10px;
        gap: 8px;
    }

    .card-route {
        top: 2px;
        right: 0;
    }

    .card-airport {
        top: 86px;
        right: 0;
    }

    .card-247 {
        top: 170px;
        bottom: auto;
        right: 0;
    }

    .float-card-icon {
        width: 30px;
        height: 30px;
        font-size: 0.95rem;
    }

    .float-card-title {
        font-size: 0.68rem;
    }

    .float-card-price,
    .float-card-sub {
        font-size: 0.55rem;
    }

    .booking-section {
        margin-top: -44px;
        padding-bottom: 6px;
    }

    .booking-card {
        padding: 12px 20px 13px;
        margin: 0 24px;
    }

    .booking-title {
        font-size: 1rem;
        margin-bottom: 9px;
    }

    .booking-form .g-3 {
        --bs-gutter-x: 0.9rem;
        --bs-gutter-y: 0.55rem;
    }

    .booking-input {
        height: 38px;
        font-size: 0.68rem;
    }

    .form-label {
        font-size: 0.58rem;
    }

    .btn-booking-submit {
        height: 36px;
        min-width: 118px;
        font-size: 0.7rem;
    }

    .booking-note {
        font-size: 0.56rem;
    }

    .section-padding {
        padding: 12px 0;
    }

    .section-header {
        margin-bottom: 10px;
    }

    .section-label,
    .section-subtitle {
        display: none;
    }

    .section-title {
        font-size: 1.42rem;
        margin-bottom: 0;
        gap: 12px;
    }

    .text-center .section-title::before,
    .text-center .section-title::after {
        width: 24px;
        height: 2px;
    }

    .row.g-4,
    .row.g-3 {
        --bs-gutter-x: 0.85rem;
        --bs-gutter-y: 0.85rem;
    }

    .services-section .row > [class*="col-"] {
        flex: 0 0 16.6667%;
        max-width: 16.6667%;
    }

    .service-card {
        min-height: 124px;
        padding: 14px 10px 12px;
        border-radius: 8px;
    }

    .service-icon {
        width: 42px;
        height: 42px;
        margin-bottom: 8px;
        font-size: 1.3rem;
        background: transparent;
        color: var(--black);
    }

    .service-title {
        font-size: 0.69rem;
        margin-bottom: 5px;
    }

    .service-desc {
        font-size: 0.58rem;
        line-height: 1.35;
    }

    .routes-section,
    .vehicles-section,
    .testimonials-section {
        background: #fff;
    }

    .routes-section .row > [class*="col-"],
    .vehicles-section .row > [class*="col-"] {
        flex: 0 0 20%;
        max-width: 20%;
    }

    .route-card {
        display: flex;
        align-items: center;
        min-height: 62px;
        border-radius: 8px;
    }

    .route-img-wrap {
        flex: 0 0 68px;
        padding-left: 8px;
    }

    .route-img {
        width: 60px;
        height: 46px;
        border-radius: 6px;
    }

    .route-type-badge {
        display: none;
    }

    .route-content {
        padding: 8px 7px;
    }

    .route-name {
        font-size: 0.56rem;
        line-height: 1.2;
        margin-bottom: 2px;
    }

    .route-name i {
        display: none;
    }

    .route-price {
        font-size: 0.82rem;
        margin-bottom: 1px;
    }

    .btn-route-cta {
        border: 0;
        padding: 0;
        text-align: left;
        font-size: 0.52rem;
        color: var(--muted) !important;
    }

    .destinations-section .row > [class*="col-"] {
        flex: 0 0 16.6667%;
        max-width: 16.6667%;
    }

    .dest-card {
        border-radius: 8px;
    }

    .dest-img {
        height: 94px;
    }

    .dest-content {
        padding: 7px 8px 9px;
        text-align: left;
    }

    .dest-label {
        font-size: 0.53rem;
        text-transform: none;
    }

    .dest-name {
        font-size: 0.7rem;
        margin-bottom: 5px;
    }

    .btn-dest-explore {
        float: right;
        font-size: 0.56rem;
        padding: 3px 12px;
        border-radius: 5px;
    }

    .vehicle-card {
        border-radius: 8px;
    }

    .vehicle-img-wrap {
        padding: 8px 8px 4px;
        background: #fff;
    }

    .vehicle-img {
        height: 62px;
    }

    .vehicle-content {
        padding: 7px 9px 10px;
    }

    .vehicle-name {
        font-size: 0.68rem;
        margin-bottom: 2px;
    }

    .vehicle-tag {
        display: none;
    }

    .vehicle-specs {
        gap: 4px;
        flex-wrap: wrap;
        margin-bottom: 3px;
    }

    .spec-item {
        font-size: 0.48rem;
    }

    .vehicle-price {
        font-size: 0.8rem;
        margin-bottom: 0;
        text-align: right;
    }

    .btn-vehicle-book,
    .vehicle-popular-badge {
        display: none;
    }

    .pricing-section .container {
        border: 1px solid rgba(248, 180, 0, 0.75);
        border-radius: 10px;
        padding: 10px 18px 12px;
    }

    .pricing-section .row.align-items-center > .col-lg-4 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .pricing-section .row.align-items-center > .col-lg-8 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .pricing-section .section-label {
        display: block;
        font-size: 0.58rem;
        margin-bottom: 1px;
    }

    .pricing-section .section-title {
        display: block;
        font-size: 0.82rem;
        margin-bottom: 0;
    }

    .pricing-hero-title {
        font-size: 1.45rem;
        line-height: 1;
        margin-bottom: 6px;
    }

    .pricing-desc,
    .pricing-notes li,
    .pricing-instant {
        font-size: 0.56rem;
    }

    .pricing-notes {
        margin-bottom: 8px;
    }

    .btn-pricing-fare {
        font-size: 0.62rem;
        padding: 7px 18px;
        border-radius: 5px;
    }

    .pricing-section .col-lg {
        flex: 0 0 20%;
        max-width: 20%;
    }

    .pricing-card {
        min-height: 150px;
        padding: 9px 8px;
        border-radius: 8px;
        background: #fff;
    }

    .pricing-car-img {
        height: 62px;
        margin-bottom: 5px;
    }

    .pricing-vehicle-name {
        font-size: 0.68rem;
    }

    .pricing-amount-label {
        font-size: 0.52rem;
    }

    .pricing-amount {
        font-size: 1rem;
    }

    .features-section {
        background: #fff;
        padding-top: 8px;
    }

    .features-section .container {
        border: 1px solid rgba(248, 180, 0, 0.7);
        border-radius: 8px;
        padding: 10px 14px;
        background: #fffdf6;
    }

    .features-section .row > [class*="col-"] {
        flex: 0 0 16.6667%;
        max-width: 16.6667%;
        border-right: 1px solid rgba(248, 180, 0, 0.35);
    }

    .features-section .row > [class*="col-"]:last-child {
        border-right: 0;
    }

    .feature-card {
        display: flex;
        gap: 8px;
        align-items: center;
        padding: 0;
        box-shadow: none;
        background: transparent;
    }

    .feature-icon-wrap {
        width: 38px;
        height: 38px;
        margin-bottom: 0;
        font-size: 1.25rem;
        background: transparent;
        color: var(--black);
    }

    .feature-title {
        font-size: 0.58rem;
        margin-bottom: 2px;
    }

    .feature-desc {
        font-size: 0.49rem;
        line-height: 1.25;
    }

    .testimonials-section .row > [class*="col-"] {
        flex: 0 0 33.3333%;
        max-width: 33.3333%;
    }

    .testimonial-card {
        min-height: 104px;
        padding: 12px 14px;
        border-radius: 8px;
    }

    .testimonial-stars {
        font-size: 0.62rem;
        margin-bottom: 4px;
    }

    .testimonial-text {
        font-size: 0.56rem;
        line-height: 1.35;
        margin-bottom: 8px;
    }

    .author-avatar {
        width: 34px;
        height: 34px;
        font-size: 0.62rem;
    }

    .author-name {
        font-size: 0.62rem;
    }

    .author-trip {
        font-size: 0.52rem;
    }

    .faq-section {
        padding: 8px 0 10px;
    }

    .faq-section .row {
        margin-top: 6px !important;
    }

    .faq-section .col-lg-9 {
        flex: 0 0 90%;
        max-width: 90%;
    }

    .faq-accordion {
        max-width: none;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 6px 22px;
    }

    .faq-item {
        margin-bottom: 0;
        border-radius: 4px !important;
    }

    .faq-button {
        min-height: 24px;
        padding: 5px 10px;
        font-size: 0.56rem;
    }

    .faq-icon {
        display: none;
    }

    .faq-body {
        font-size: 0.55rem;
        padding: 8px 10px;
    }

    .footer-main {
        background: #fff;
        padding: 0 0 8px;
    }

    .footer-main .container {
        background: var(--black);
        border-radius: 12px;
        padding: 22px 24px;
        color: rgba(255,255,255,0.72);
    }

    .footer-main .row {
        --bs-gutter-x: 1rem;
        --bs-gutter-y: 1rem;
    }

    .footer-logo {
        height: 44px;
        width: auto;
        filter: none;
        background: #fff;
        border-radius: 4px;
    }

    .footer-desc,
    .footer-links a,
    .footer-contact-list li,
    .footer-cta-text {
        font-size: 0.58rem;
    }

    .footer-heading,
    .footer-cta-title {
        font-size: 0.78rem;
        margin-bottom: 8px;
    }

    .footer-cta-box {
        border-radius: 8px;
        padding: 12px;
    }

    .btn-footer-call,
    .btn-footer-whatsapp {
        font-size: 0.62rem;
        padding: 6px 8px;
        border-radius: 5px;
    }

    .footer-bottom {
        background: #fff;
        padding: 6px 0 8px;
    }

    .footer-copy,
    .footer-bottom-link {
        font-size: 0.56rem;
        color: rgba(17,17,17,0.55);
    }
}

@media (min-width: 1200px) {
    .container {
        width: calc(100% - 96px);
        max-width: 1600px !important;
    }

    .booking-card {
        margin-left: 0;
        margin-right: 0;
    }

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

    .hero-subtitle {
        max-width: 430px;
    }

    .hero-car-img {
        width: 72%;
    }

    .services-section .row,
    .routes-section .row,
    .destinations-section .row,
    .vehicles-section .row {
        --bs-gutter-x: 1.05rem;
    }
}

@media (min-width: 900px) and (max-width: 991.98px) {
    .navbar-expand-lg .navbar-toggler {
        display: none;
    }

    .navbar-expand-lg .navbar-collapse,
    #navbarContent {
        display: flex !important;
        flex-basis: auto;
        flex-grow: 0;
        align-items: center;
        background: transparent;
        box-shadow: none;
        margin-top: 0;
        padding: 0;
    }

    .navbar-expand-lg .navbar-nav {
        flex-direction: row;
    }

    .header-cta-capsule.d-none {
        display: inline-flex !important;
    }

    .hero-container > .row {
        display: flex;
        flex-wrap: nowrap;
    }

    .hero-content {
        flex: 0 0 42%;
        max-width: 42%;
    }

    .hero-visual {
        flex: 0 0 58%;
        max-width: 58%;
    }

    .hero-image-wrapper {
        margin-top: 0;
    }

    .hero-float-card {
        display: flex !important;
    }
}

@media (min-width: 900px) {
    .fade-up {
        opacity: 1;
        transform: none;
    }

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

    .hero-subtitle {
        max-width: 355px;
        margin-bottom: 14px;
    }

    .hero-section {
        padding-bottom: 28px;
    }

    .hero-image-wrapper {
        height: 262px;
        min-height: 262px;
    }

    .hero-car-img {
        top: -24px;
        width: 68%;
    }

    .hero-float-card {
        min-height: 52px;
    }

    .card-route {
        top: 0;
    }

    .card-airport {
        top: 76px;
    }

    .card-247 {
        top: 152px;
    }

    .booking-section {
        margin-top: -36px;
        padding-bottom: 2px;
    }

    .booking-card {
        padding: 10px 20px 11px;
    }

    .booking-form .row {
        flex-wrap: nowrap;
        align-items: end !important;
    }

    .booking-form .row > div {
        min-width: 0;
    }

    .booking-form .row > div:nth-child(1),
    .booking-form .row > div:nth-child(2) {
        flex: 0 0 19%;
        max-width: 19%;
    }

    .booking-form .row > div:nth-child(3) {
        flex: 0 0 15%;
        max-width: 15%;
    }

    .booking-form .row > div:nth-child(4) {
        flex: 0 0 16%;
        max-width: 16%;
    }

    .booking-form .row > div:nth-child(5) {
        flex: 0 0 17%;
        max-width: 17%;
    }

    .booking-form .row > div:nth-child(6) {
        flex: 0 0 14%;
        max-width: 14%;
    }

    .booking-input {
        height: 34px;
        padding-top: 6px;
        padding-bottom: 6px;
    }

    .btn-booking-submit {
        height: 34px;
        min-width: 0;
        width: 100%;
        padding: 0 10px;
    }

    .booking-note {
        margin-top: 5px !important;
    }

    .section-padding {
        padding: 8px 0;
    }

    .section-header {
        margin-bottom: 8px;
    }

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

    .service-card {
        min-height: 108px;
        padding: 10px 8px;
    }

    .service-icon {
        width: 34px;
        height: 34px;
        margin-bottom: 5px;
        font-size: 1.1rem;
    }

    .service-title {
        font-size: 0.62rem;
        margin-bottom: 4px;
    }

    .service-desc {
        font-size: 0.52rem;
    }

    .route-card {
        min-height: 54px;
    }

    .route-img-wrap {
        flex-basis: 60px;
        padding-left: 7px;
    }

    .route-img {
        width: 52px;
        height: 38px;
    }

    .route-content {
        padding: 6px 6px;
    }

    .dest-img {
        height: 76px;
    }

    .dest-content {
        padding: 5px 8px 7px;
    }

    .dest-label {
        font-size: 0.49rem;
    }

    .dest-name {
        font-size: 0.64rem;
        margin-bottom: 3px;
    }

    .btn-dest-explore {
        font-size: 0.51rem;
        padding: 2px 10px;
    }

    .vehicle-img {
        height: 48px;
    }

    .vehicle-content {
        padding: 5px 8px 7px;
    }

    .vehicle-name {
        font-size: 0.62rem;
    }

    .spec-item {
        font-size: 0.45rem;
    }

    .vehicle-price {
        font-size: 0.72rem;
    }

    .pricing-section .container {
        padding: 8px 16px 10px;
    }

    .pricing-card {
        min-height: 122px;
        padding: 7px 6px;
    }

    .pricing-car-img {
        height: 50px;
    }

    .pricing-hero-title {
        font-size: 1.25rem;
    }

    .pricing-desc,
    .pricing-notes li,
    .pricing-instant {
        font-size: 0.51rem;
        line-height: 1.28;
    }

    .features-section .container {
        padding: 8px 12px;
    }

    .feature-icon-wrap {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }

    .feature-title {
        font-size: 0.53rem;
    }

    .feature-desc {
        font-size: 0.45rem;
    }
}

/* --------------------------------------------------------------------------
   21. FULL WEBSITE DESKTOP TYPOGRAPHY
   -------------------------------------------------------------------------- */
@media (min-width: 1200px) {
    body {
        font-size: 15.5px;
    }

    #mainNav {
        padding: 12px 0;
    }

    .header-logo {
        width: 178px;
    }

    .navbar-nav {
        gap: 28px !important;
    }

    .navbar-nav .nav-link {
        font-size: 0.82rem;
        padding: 9px 0 !important;
    }

    .header-cta-capsule {
        min-height: 50px;
        padding: 5px 6px 5px 16px;
        gap: 14px;
    }

    .btn-capsule-call .phone-icon {
        font-size: 1.12rem;
    }

    .call-label {
        font-size: 0.68rem;
    }

    .call-number {
        font-size: 0.9rem;
    }

    .btn-capsule-whatsapp {
        min-height: 40px;
        padding: 0 18px;
        font-size: 0.9rem;
    }

    .hero-section {
        padding: 38px 0 54px;
    }

    .min-vh-hero {
        min-height: 390px;
    }

    .hero-label {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .hero-title {
        font-size: 3.45rem;
        line-height: 1.05;
        margin-bottom: 18px;
    }

    .hero-subtitle {
        font-size: 0.98rem;
        max-width: 520px;
        line-height: 1.55;
        margin-bottom: 26px;
    }

    .btn-hero-call,
    .btn-hero-whatsapp {
        height: 50px;
        font-size: 0.92rem;
        border-radius: 8px;
    }

    .btn-hero-call {
        min-width: 150px;
    }

    .btn-hero-whatsapp {
        min-width: 220px;
    }

    .hero-stats {
        margin-top: 28px;
    }

    .hero-stat i {
        font-size: 1.55rem;
    }

    .hero-stat-number {
        font-size: 1.42rem;
    }

    .hero-stat-label {
        font-size: 0.78rem;
    }

    .hero-image-wrapper {
        height: 360px;
        min-height: 360px;
    }

    .hero-car-img {
        top: -28px;
        width: 74%;
        max-width: 680px;
    }

    .hero-float-card {
        width: 172px;
        min-height: 74px;
        padding: 12px 14px;
        gap: 12px;
    }

    .card-route {
        top: 10px;
    }

    .card-airport {
        top: 118px;
    }

    .card-247 {
        top: 226px;
    }

    .float-card-icon {
        width: 38px;
        height: 38px;
        font-size: 1.12rem;
    }

    .float-card-title {
        font-size: 0.9rem;
        line-height: 1.18;
    }

    .float-card-price,
    .float-card-sub {
        font-size: 0.7rem;
    }

    .booking-section {
        margin-top: -50px;
        padding-bottom: 18px;
    }

    .booking-card {
        padding: 18px 26px 18px;
    }

    .booking-title {
        font-size: 1.35rem;
        margin-bottom: 14px;
    }

    .booking-form .g-3 {
        --bs-gutter-x: 1.1rem;
        --bs-gutter-y: 0.85rem;
    }

    .form-label {
        font-size: 0.76rem;
        margin-bottom: 7px;
    }

    .booking-input {
        height: 46px;
        font-size: 0.9rem;
        padding-top: 9px;
        padding-bottom: 9px;
    }

    .btn-booking-submit {
        height: 46px;
        font-size: 0.92rem;
    }

    .booking-note {
        font-size: 0.72rem;
    }

    .section-padding {
        padding: 24px 0;
    }

    .section-header {
        margin-bottom: 20px;
    }

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

    .text-center .section-title::before,
    .text-center .section-title::after {
        width: 34px;
    }

    .row.g-4,
    .row.g-3 {
        --bs-gutter-x: 1.1rem;
        --bs-gutter-y: 1.1rem;
    }

    .service-card {
        min-height: 168px;
        padding: 18px 14px 16px;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
        font-size: 1.55rem;
    }

    .service-title {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .service-desc {
        font-size: 0.74rem;
        line-height: 1.45;
    }

    .route-card {
        min-height: 84px;
    }

    .route-img-wrap {
        flex-basis: 92px;
        padding-left: 12px;
    }

    .route-img {
        width: 78px;
        height: 58px;
    }

    .route-content {
        padding: 10px 10px;
    }

    .route-name {
        font-size: 0.78rem;
        margin-bottom: 4px;
    }

    .route-price {
        font-size: 1.12rem;
    }

    .btn-route-cta {
        font-size: 0.68rem;
    }

    .dest-img {
        height: 128px;
    }

    .dest-content {
        padding: 10px 12px 12px;
    }

    .dest-label {
        font-size: 0.68rem;
    }

    .dest-name {
        font-size: 0.92rem;
        margin-bottom: 8px;
    }

    .btn-dest-explore {
        font-size: 0.68rem;
        padding: 5px 16px;
    }

    .vehicle-img {
        height: 82px;
    }

    .vehicle-img-wrap {
        padding: 12px 12px 5px;
    }

    .vehicle-content {
        padding: 10px 12px 12px;
    }

    .vehicle-name {
        font-size: 0.9rem;
        margin-bottom: 4px;
    }

    .spec-item {
        font-size: 0.64rem;
    }

    .vehicle-price {
        font-size: 1.02rem;
    }

    .pricing-section .container {
        padding: 18px 22px 20px;
    }

    .pricing-section .section-label {
        font-size: 0.72rem;
    }

    .pricing-section .section-title {
        font-size: 1rem;
    }

    .pricing-hero-title {
        font-size: 1.95rem;
        margin-bottom: 9px;
    }

    .pricing-desc,
    .pricing-notes li,
    .pricing-instant {
        font-size: 0.74rem;
        line-height: 1.45;
    }

    .btn-pricing-fare {
        font-size: 0.78rem;
        padding: 9px 24px;
    }

    .pricing-card {
        min-height: 186px;
        padding: 13px 10px;
    }

    .pricing-car-img {
        height: 86px;
        margin-bottom: 8px;
    }

    .pricing-vehicle-name {
        font-size: 0.88rem;
    }

    .pricing-amount-label {
        font-size: 0.66rem;
    }

    .pricing-amount {
        font-size: 1.36rem;
    }

    .pricing-unit {
        font-size: 0.76rem;
    }

    .features-section {
        padding-top: 18px;
    }

    .features-section .container {
        padding: 16px 18px;
    }

    .feature-card {
        gap: 12px;
    }

    .feature-icon-wrap {
        width: 48px;
        height: 48px;
        font-size: 1.45rem;
    }

    .feature-title {
        font-size: 0.76rem;
    }

    .feature-desc {
        font-size: 0.62rem;
        line-height: 1.35;
    }

    .testimonial-card {
        min-height: 142px;
        padding: 18px 20px;
    }

    .testimonial-stars {
        font-size: 0.82rem;
    }

    .testimonial-text {
        font-size: 0.76rem;
        line-height: 1.48;
    }

    .author-avatar {
        width: 42px;
        height: 42px;
        font-size: 0.78rem;
    }

    .author-name {
        font-size: 0.78rem;
    }

    .author-trip {
        font-size: 0.66rem;
    }

    .faq-section {
        padding: 18px 0 22px;
    }

    .faq-button {
        min-height: 36px;
        padding: 8px 13px;
        font-size: 0.76rem;
    }

    .faq-body {
        font-size: 0.72rem;
    }

    .footer-main .container {
        padding: 30px 34px;
    }

    .footer-logo {
        height: 56px;
    }

    .footer-desc,
    .footer-links a,
    .footer-contact-list li,
    .footer-cta-text {
        font-size: 0.74rem;
    }

    .footer-heading,
    .footer-cta-title {
        font-size: 0.96rem;
    }

    .btn-footer-call,
    .btn-footer-whatsapp {
        font-size: 0.78rem;
        padding: 8px 10px;
    }

    .footer-copy,
    .footer-bottom-link {
        font-size: 0.68rem;
    }
}

@media (min-width: 1500px) {
    .hero-title {
        font-size: 1.95rem;
    }

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

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

/* --------------------------------------------------------------------------
   22. CARD SLIDERS
   -------------------------------------------------------------------------- */
.slider-shell {
    --slider-cols: 4;
    --slider-gap: 1.15rem;
    position: relative;
}

.card-slider {
    display: flex;
    gap: var(--slider-gap);
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4px 2px 12px;
    scroll-behavior: smooth;
    scroll-padding-left: 2px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.card-slider::-webkit-scrollbar {
    display: none;
}

.slider-item {
    flex: 0 0 calc((100% - (var(--slider-gap) * (var(--slider-cols) - 1))) / var(--slider-cols));
    min-width: 0;
    display: flex;
    scroll-snap-align: start;
}

.slider-item > * {
    width: 100%;
}

.destination-slider,
.vehicle-slider {
    --slider-cols: 4;
}

.pricing-slider {
    --slider-cols: 3;
}

.slider-button {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(17, 17, 17, 0.1);
    border-radius: 50%;
    background: #FFFFFF;
    color: var(--black);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transform: translateY(-50%);
    transition: all 0.2s ease;
}

.slider-button:hover:not(:disabled) {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.04);
}

.slider-button:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    box-shadow: var(--shadow-sm);
}

.slider-prev {
    left: -20px;
}

.slider-next {
    right: -20px;
}

.pricing-slider-shell {
    margin-top: 4px;
}

.pricing-slider-shell .slider-prev {
    left: -18px;
}

.pricing-slider-shell .slider-next {
    right: -18px;
}

@media (min-width: 1500px) {
    .route-slider,
    .destination-slider,
    .vehicle-slider {
        --slider-cols: 4.4;
    }

    .pricing-slider {
        --slider-cols: 3.4;
    }
}

@media (max-width: 1199.98px) {
    .slider-shell {
        --slider-cols: 3;
        --slider-gap: 1rem;
    }

    .pricing-slider {
        --slider-cols: 2.4;
    }
}

@media (max-width: 899.98px) {
    .slider-shell {
        --slider-cols: 1.18;
        --slider-gap: 0.85rem;
    }

    .destination-slider,
    .vehicle-slider,
    .pricing-slider {
        --slider-cols: 1.12;
    }

    .card-slider {
        padding-bottom: 10px;
    }

    .slider-button {
        width: 36px;
        height: 36px;
    }

    .slider-prev {
        left: -8px;
    }

    .slider-next {
        right: -8px;
    }
}

/* Larger transparent fleet cutouts */
@media (min-width: 1200px) {
    .vehicle-img {
        height: 108px;
    }

    .pricing-car-img {
        height: 112px;
    }

    .vehicle-card {
        min-height: 224px;
    }

    .pricing-card {
        min-height: 226px;
    }
}

/* --------------------------------------------------------------------------
   23. TOUR PACKAGES SECTION
   -------------------------------------------------------------------------- */
.tour-packages-section {
    background: #fff;
}

.tour-packages-panel {
    background: radial-gradient(circle at top, #fffdfa 0%, #fff9ec 46%, #fffdf7 100%);
    border-radius: 28px;
    padding: 48px 54px 56px;
    box-shadow: inset 0 0 0 1px rgba(248, 180, 0, 0.12);
    overflow: hidden;
}

.tour-packages-panel .section-header {
    margin-bottom: 34px;
}

.tour-packages-panel .section-label {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    color: var(--primary-dark);
    font-size: 0.86rem;
    letter-spacing: 0.26em;
}

.tour-packages-panel .section-label::before,
.tour-packages-panel .section-label::after {
    content: "";
    width: 48px;
    height: 2px;
    background: var(--primary);
}

.tour-packages-panel .section-title {
    display: block;
    font-size: 3.1rem;
    line-height: 1.05;
    margin-bottom: 18px;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: break-word;
}

.tour-packages-panel .section-title::before,
.tour-packages-panel .section-title::after {
    display: none;
}

.tour-packages-panel .section-subtitle {
    max-width: 820px;
    font-size: 1.08rem;
    color: #4b5563;
}

.tour-packages-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px 28px;
}

.tour-package-card {
    background: #fff;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(17, 24, 39, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.tour-package-card:hover {
    transform: translateY(-4px);
    border-color: rgba(248, 180, 0, 0.7);
    box-shadow: 0 24px 48px rgba(17, 24, 39, 0.12);
}

.tour-package-img-wrap {
    position: relative;
    margin: 8px 8px 0;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    background: #f4f4f4;
}

.tour-package-img {
    width: 100%;
    height: 212px;
    object-fit: cover;
    display: block;
}

.tour-duration-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 32px;
    padding: 0 14px;
    border-radius: 999px;
    background: var(--primary);
    color: var(--black);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.86rem;
    box-shadow: 0 8px 18px rgba(17, 17, 17, 0.12);
}

.tour-duration-badge i {
    font-size: 0.95rem;
}

.tour-package-content {
    padding: 22px 26px 24px;
}

.tour-package-title {
    font-size: 1.32rem;
    line-height: 1.18;
    margin-bottom: 8px;
}

.tour-package-subtitle {
    color: #4b5563;
    font-size: 0.94rem;
    line-height: 1.45;
    margin-bottom: 18px;
}

.tour-package-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px 14px;
    color: #4b5563;
    font-size: 0.82rem;
    padding-bottom: 18px;
    margin-bottom: 16px;
    border-bottom: 1px dashed rgba(248, 180, 0, 0.45);
}

.tour-package-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
}

.tour-package-meta span + span {
    padding-left: 14px;
    border-left: 1px solid rgba(17, 17, 17, 0.12);
}

.tour-package-meta i {
    color: #111;
    font-size: 0.95rem;
}

.tour-package-footer {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
}

.tour-price-wrap span {
    display: block;
    color: #4b5563;
    font-size: 0.82rem;
    line-height: 1;
    margin-bottom: 5px;
}

.tour-price-wrap strong {
    display: block;
    color: var(--primary-dark);
    font-family: var(--font-heading);
    font-size: 1.85rem;
    line-height: 1;
}

.btn-package-view {
    min-width: 150px;
    min-height: 50px;
    border-radius: 10px;
    background: var(--primary);
    color: var(--black) !important;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.86rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 22px;
    box-shadow: 0 12px 24px rgba(248, 180, 0, 0.24);
}

.btn-package-view:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

@media (max-width: 1199.98px) {
    .tour-packages-panel {
        padding: 38px 30px 42px;
        border-radius: 22px;
    }

    .tour-packages-panel .section-title {
        font-size: 2.35rem;
    }

    .tour-packages-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }
}

@media (max-width: 767.98px) {
    .tour-packages-panel {
        padding: 30px 14px 34px;
        border-radius: 16px;
    }

    .tour-packages-panel .section-label {
        gap: 10px;
        font-size: 0.7rem;
        letter-spacing: 0.18em;
    }

    .tour-packages-panel .section-label::before,
    .tour-packages-panel .section-label::after {
        width: 28px;
    }

    .tour-packages-panel .section-title {
        font-size: 1.55rem;
        line-height: 1.16;
        padding: 0 4px;
    }

    .tour-packages-panel .section-subtitle {
        font-size: 0.92rem;
    }

    .tour-packages-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .tour-package-img {
        height: 188px;
    }

    .tour-package-content {
        padding: 18px;
    }

    .tour-package-title {
        font-size: 1.12rem;
    }

    .tour-package-meta {
        gap: 8px 10px;
        font-size: 0.72rem;
    }

    .tour-package-meta span + span {
        padding-left: 0;
        border-left: 0;
    }

    .tour-package-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .btn-package-view {
        width: 100%;
    }
}

/* --------------------------------------------------------------------------
   24. FINAL LOGO FIT
   -------------------------------------------------------------------------- */
.navbar-brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.header-logo {
    width: 212px;
    height: auto;
    max-height: 62px;
    object-fit: contain;
}

.footer-logo {
    width: 238px;
    height: auto;
    max-width: 100%;
    max-height: none;
    object-fit: contain;
    filter: none !important;
    background: #fff;
    border-radius: 8px;
    padding: 7px 10px;
    box-sizing: border-box;
}

@media (min-width: 1200px) {
    .header-logo {
        width: 226px;
    }
}

@media (max-width: 991.98px) {
    .header-logo {
        width: 178px;
        max-height: 54px;
    }

    .footer-logo {
        width: 214px;
    }
}

@media (max-width: 575.98px) {
    .header-logo {
        width: 164px;
    }
}

/* --------------------------------------------------------------------------
   25. SEO CONTENT FIT
   -------------------------------------------------------------------------- */
.booking-intro {
    max-width: 760px;
    margin: -2px 0 14px;
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.48;
}

.quick-booking-submit {
    min-width: 218px;
    min-height: 42px;
    white-space: nowrap;
}

.route-card {
    display: flex;
    flex-direction: column;
    min-height: 352px;
}

.route-content {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.route-name {
    font-size: 0.96rem;
    line-height: 1.22;
    min-height: 2.35em;
}

.route-desc {
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.4;
    margin: 0 0 6px;
}

.route-benefits {
    display: grid;
    gap: 4px;
    margin: 0 0 10px;
    padding: 0;
    color: var(--muted);
    font-size: 0.72rem;
    line-height: 1.32;
    list-style: none;
}

.route-benefits li {
    position: relative;
    padding-left: 14px;
}

.route-benefits li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
}

.route-price {
    margin-top: auto;
}

.vehicle-card {
    min-height: 376px;
}

.vehicle-content {
    display: flex;
    min-height: 226px;
    flex-direction: column;
}

.vehicle-name {
    font-size: 1rem;
    line-height: 1.2;
    min-height: 2.4em;
}

.vehicle-desc {
    color: var(--muted);
    font-size: 0.76rem;
    line-height: 1.42;
    margin: 0 0 10px;
}

.vehicle-specs {
    flex-wrap: wrap;
}

.vehicle-price {
    margin-top: auto;
}

@media (max-width: 991.98px) {
    .hero-visual {
        overflow: hidden;
    }

    .hero-image-wrapper {
        overflow: hidden;
    }

    .hero-car-img {
        left: 6px;
        max-width: 98%;
    }

    .slider-prev {
        left: 18px;
    }

    .slider-next {
        right: 18px;
    }

    .pricing-slider-shell .slider-prev {
        left: 18px;
    }

    .pricing-slider-shell .slider-next {
        right: 18px;
    }

    .booking-intro {
        font-size: 0.82rem;
    }

    .quick-booking-submit {
        width: 100%;
        min-width: 0;
        white-space: normal;
    }

    .route-card,
    .vehicle-card {
        min-height: 0;
    }

    .vehicle-content {
        min-height: 0;
    }
}

@media (max-width: 575.98px) {
    .container {
        width: 100%;
        max-width: 100% !important;
        padding-left: 16px;
        padding-right: 16px;
    }

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

    .hero-title {
        max-width: 100%;
        font-size: 1.74rem;
        line-height: 1.14;
        overflow-wrap: anywhere;
    }

    .hero-subtitle {
        max-width: 100%;
        font-size: 0.82rem;
        overflow-wrap: anywhere;
    }

    .hero-image-wrapper {
        width: 100%;
        height: auto;
        min-height: 330px;
        margin-top: 18px;
    }

    .hero-car-img {
        position: relative;
        left: auto;
        top: auto;
        display: block;
        width: 92%;
        max-width: 360px;
        margin: 86px auto 0;
    }

    .hero-palace-bg {
        left: 0;
        right: 0;
    }

    .section-title,
    .service-title,
    .service-desc,
    .route-name,
    .route-desc,
    .dest-name,
    .vehicle-name,
    .vehicle-desc,
    .tour-package-title,
    .tour-package-subtitle,
    .footer-desc {
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .section-title {
        font-size: 1.42rem;
        line-height: 1.2;
    }

    .hero-stats {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        align-items: start !important;
        gap: 0;
        margin-top: 18px;
        width: 100%;
    }

    .hero-stat,
    .hero-stat + .hero-stat {
        width: auto;
        min-width: 0;
        margin-left: 0;
        padding: 0 6px;
        border-left: 1px solid rgba(17, 24, 39, 0.12);
        gap: 5px !important;
        align-items: flex-start !important;
    }

    .hero-stat:first-child {
        border-left: 0;
        padding-left: 0;
    }

    .hero-stat:last-child {
        padding-right: 0;
    }

    .hero-stat i {
        font-size: 1rem;
        line-height: 1;
        flex-shrink: 0;
    }

    .hero-stat-number {
        font-size: 0.98rem;
        line-height: 1.05;
        white-space: nowrap;
    }

    .hero-stat-label {
        font-size: 0.5rem;
        line-height: 1.15;
        white-space: normal;
    }

    .service-card {
        overflow: hidden;
    }

    .tour-packages-panel {
        margin-left: 0;
        margin-right: 0;
        overflow: hidden;
    }

    .tour-packages-panel .section-title {
        font-size: 1.38rem;
    }

    .tour-package-card {
        overflow: hidden;
    }
}

@media (min-width: 992px) {
    .booking-form .row {
        display: grid;
        margin-left: 0;
        margin-right: 0;
        align-items: end !important;
    }

    .booking-form .row > [class*="col-"] {
        width: auto;
        max-width: none;
        min-width: 0;
        padding-left: 0;
        padding-right: 0;
        flex: none;
    }

    .booking-form .row > div:nth-child(1),
    .booking-form .row > div:nth-child(2),
    .booking-form .row > div:nth-child(3),
    .booking-form .row > div:nth-child(4),
    .booking-form .row > div:nth-child(5),
    .booking-form .row > div:nth-child(6) {
        width: auto;
        max-width: none;
        min-width: 0;
        flex: none;
    }

    .booking-form .row > div:nth-child(6) {
        align-items: stretch !important;
    }

    .quick-booking-submit {
        width: 100%;
        min-width: 0;
        padding-left: 12px;
        padding-right: 12px;
        white-space: nowrap;
    }
}

@media (min-width: 992px) and (max-width: 1399.98px) {
    .booking-form .row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.85rem 1rem;
    }
}

@media (min-width: 1400px) {
    .booking-form .row {
        grid-template-columns:
            minmax(180px, 1.18fr)
            minmax(180px, 1.18fr)
            minmax(145px, 0.86fr)
            minmax(165px, 0.95fr)
            minmax(180px, 1fr)
            minmax(260px, 0.98fr);
        gap: 0.85rem 1.1rem;
    }
}

/* --------------------------------------------------------------------------
   26. POLISHED ROUTE SLIDER CARDS
   -------------------------------------------------------------------------- */
@media (min-width: 900px) {
    .route-slider {
        --slider-cols: 4;
        align-items: stretch;
        padding: 8px 2px 18px;
    }

    .route-card {
        display: flex;
        flex-direction: column;
        min-height: 388px;
        border: 1px solid rgba(229, 231, 235, 0.95);
        border-radius: 14px;
        background: #fff;
        overflow: hidden;
        box-shadow: 0 10px 28px rgba(17, 24, 39, 0.045);
    }

    .route-card:hover {
        border-color: var(--primary);
        box-shadow: 0 18px 36px rgba(17, 24, 39, 0.08);
        transform: translateY(-3px);
    }

    .route-img-wrap {
        flex: 0 0 auto;
        width: 100%;
        padding: 0;
        background: #f3f5f8;
        overflow: hidden;
    }

    .route-img {
        display: block;
        width: 100%;
        height: 150px;
        border-radius: 0;
        object-fit: cover;
    }

    .route-type-badge {
        display: inline-flex;
        align-items: center;
        min-height: 26px;
        top: 12px;
        left: 12px;
        padding: 0 10px;
        border-radius: 999px;
        font-size: 0.68rem;
        font-weight: 800;
        box-shadow: 0 8px 18px rgba(17, 24, 39, 0.14);
    }

    .route-content {
        display: flex;
        flex: 1;
        flex-direction: column;
        padding: 18px 20px 20px;
    }

    .route-name {
        min-height: 0;
        margin-bottom: 10px;
        font-size: 1.05rem;
        line-height: 1.25;
    }

    .route-desc {
        margin-bottom: 8px;
        font-size: 0.84rem;
        line-height: 1.45;
    }

    .route-benefits {
        gap: 6px;
        margin-bottom: 18px;
        font-size: 0.78rem;
        line-height: 1.35;
    }

    .route-price {
        margin-top: auto;
        margin-bottom: 7px;
        font-size: 1.35rem;
        line-height: 1;
    }

    .btn-route-cta {
        display: inline-flex;
        width: fit-content;
        align-items: center;
        justify-content: flex-start;
        gap: 4px;
        border: 0;
        padding: 0;
        border-radius: 0;
        background: transparent;
        color: #4b5563 !important;
        font-size: 0.78rem;
        font-weight: 800;
        text-align: left;
    }

    .btn-route-cta:hover {
        background: transparent;
        color: var(--primary-dark) !important;
    }
}

@media (min-width: 1500px) {
    .route-slider {
        --slider-cols: 4;
    }
}

/* --------------------------------------------------------------------------
   27. POLISHED DESTINATION SLIDER CARDS
   -------------------------------------------------------------------------- */
@media (min-width: 900px) {
    .destination-slider {
        --slider-cols: 4;
        align-items: stretch;
        padding: 8px 2px 18px;
    }

    .dest-card {
        display: flex;
        flex-direction: column;
        min-height: 332px;
        border: 1px solid rgba(229, 231, 235, 0.95);
        border-radius: 14px;
        background: #fff;
        overflow: hidden;
        box-shadow: 0 10px 28px rgba(17, 24, 39, 0.045);
    }

    .dest-card:hover {
        border-color: var(--primary);
        box-shadow: 0 18px 36px rgba(17, 24, 39, 0.08);
        transform: translateY(-3px);
    }

    .dest-img-wrap {
        flex: 0 0 auto;
        width: 100%;
        background: #f3f5f8;
        overflow: hidden;
    }

    .dest-img {
        display: block;
        width: 100%;
        height: 174px;
        border-radius: 0;
        object-fit: cover;
        transition: transform 0.35s ease;
    }

    .dest-card:hover .dest-img {
        transform: scale(1.035);
    }

    .dest-content {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-areas:
            "label label"
            "name name"
            ". cta";
        gap: 6px 14px;
        align-items: end;
        flex: 1;
        padding: 18px 20px 20px;
        text-align: left;
    }

    .dest-label {
        grid-area: label;
        margin: 0;
        color: #6b7280;
        font-size: 0.82rem;
        font-weight: 700;
        text-transform: none;
        line-height: 1.25;
    }

    .dest-name {
        grid-area: name;
        min-height: 2.45em;
        margin: 0;
        font-size: 1.1rem;
        font-weight: 900;
        line-height: 1.22;
    }

    .btn-dest-explore {
        grid-area: cta;
        float: none;
        min-width: 110px;
        min-height: 38px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        background: var(--primary);
        color: var(--black) !important;
        font-size: 0.78rem;
        font-weight: 800;
        padding: 0 18px;
        box-shadow: 0 10px 20px rgba(248, 180, 0, 0.18);
    }

    .btn-dest-explore:hover {
        background: var(--primary-dark);
        transform: translateY(-1px);
    }
}

@media (min-width: 1500px) {
    .destination-slider {
        --slider-cols: 4;
    }
}

/* --------------------------------------------------------------------------
   28. POLISHED VEHICLE SLIDER CARDS
   -------------------------------------------------------------------------- */
@media (min-width: 900px) {
    .vehicle-slider {
        --slider-cols: 4;
        align-items: stretch;
        padding: 8px 2px 18px;
    }

    .vehicle-card {
        display: flex;
        flex-direction: column;
        min-height: 420px;
        border: 1px solid rgba(229, 231, 235, 0.95);
        border-radius: 14px;
        background: #fff;
        overflow: hidden;
        box-shadow: 0 10px 28px rgba(17, 24, 39, 0.045);
    }

    .vehicle-card.featured {
        border-color: var(--primary);
        box-shadow: 0 18px 36px rgba(248, 180, 0, 0.13);
    }

    .vehicle-card:hover {
        border-color: var(--primary);
        box-shadow: 0 18px 36px rgba(17, 24, 39, 0.08);
        transform: translateY(-3px);
    }

    .vehicle-popular-badge {
        display: inline-flex;
        align-items: center;
        min-height: 26px;
        top: 12px;
        right: 12px;
        padding: 0 10px;
        border-radius: 999px;
        font-size: 0.62rem;
        box-shadow: 0 8px 18px rgba(17, 24, 39, 0.12);
    }

    .vehicle-img-wrap {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 170px;
        padding: 20px 22px 12px;
        background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
    }

    .vehicle-img {
        width: 100%;
        height: 130px;
        object-fit: contain;
        filter: drop-shadow(0 14px 16px rgba(17, 24, 39, 0.12));
    }

    .vehicle-content {
        display: flex;
        flex: 1;
        min-height: 0;
        flex-direction: column;
        padding: 18px 20px 20px;
    }

    .vehicle-name {
        min-height: 0;
        margin-bottom: 8px;
        font-size: 1.12rem;
        line-height: 1.22;
    }

    .vehicle-tag {
        display: inline-flex;
        width: fit-content;
        margin-bottom: 10px;
        padding: 4px 10px;
        border-radius: 999px;
        background: #fff7df;
        color: var(--primary-dark);
        font-size: 0.68rem;
        font-weight: 800;
    }

    .vehicle-desc {
        margin-bottom: 14px;
        color: #4b5563;
        font-size: 0.82rem;
        line-height: 1.45;
    }

    .vehicle-specs {
        display: flex;
        flex-wrap: wrap;
        gap: 8px 12px;
        margin-bottom: 18px;
    }

    .spec-item {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        color: #4b5563;
        font-size: 0.76rem;
        line-height: 1.2;
    }

    .vehicle-price {
        margin-top: auto;
        margin-bottom: 12px;
        color: var(--primary-dark);
        font-size: 1.32rem;
        line-height: 1;
        text-align: left;
    }

    .btn-vehicle-book {
        display: inline-flex;
        width: 100%;
        min-height: 40px;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        background: var(--black);
        color: #fff !important;
        font-size: 0.82rem;
        font-weight: 800;
        padding: 0 16px;
    }

    .btn-vehicle-book:hover {
        background: var(--primary);
        color: var(--black) !important;
    }
}

@media (min-width: 1500px) {
    .vehicle-slider {
        --slider-cols: 4;
    }
}

/* --------------------------------------------------------------------------
   29. COMPLETE PAGE MOTION SYSTEM
   -------------------------------------------------------------------------- */
:root {
    --ease-out-soft: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-spring-soft: cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes heroTextIn {
    from {
        opacity: 0;
        transform: translate3d(-18px, 18px, 0);
        filter: blur(6px);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
        filter: blur(0);
    }
}

@keyframes heroVisualIn {
    from {
        opacity: 0;
        transform: translate3d(28px, 18px, 0) scale(0.985);
        filter: blur(6px);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
        filter: blur(0);
    }
}

@keyframes softFloat {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, -6px, 0);
    }
}

@keyframes lineGrow {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

.site-header {
    animation: headerDropIn 0.58s var(--ease-out-soft) both;
}

@keyframes headerDropIn {
    from {
        opacity: 0;
        transform: translate3d(0, -14px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.navbar-brand,
.navbar-nav .nav-item,
.header-cta-capsule {
    animation: heroTextIn 0.62s var(--ease-out-soft) both;
}

.navbar-brand {
    animation-delay: 0.04s;
}

.navbar-nav .nav-item:nth-child(1) {
    animation-delay: 0.08s;
}

.navbar-nav .nav-item:nth-child(2) {
    animation-delay: 0.12s;
}

.navbar-nav .nav-item:nth-child(3) {
    animation-delay: 0.16s;
}

.navbar-nav .nav-item:nth-child(4) {
    animation-delay: 0.2s;
}

.navbar-nav .nav-item:nth-child(5) {
    animation-delay: 0.24s;
}

.navbar-nav .nav-item:nth-child(6) {
    animation-delay: 0.28s;
}

.navbar-nav .nav-item:nth-child(7) {
    animation-delay: 0.32s;
}

.header-cta-capsule {
    animation-delay: 0.18s;
}

body.page-ready .hero-label,
body.page-ready .hero-title,
body.page-ready .hero-subtitle,
body.page-ready .hero-ctas,
body.page-ready .hero-stats {
    animation: heroTextIn 0.78s var(--ease-out-soft) both;
}

body.page-ready .hero-label {
    animation-delay: 0.05s;
}

body.page-ready .hero-title {
    animation-delay: 0.12s;
}

body.page-ready .hero-subtitle {
    animation-delay: 0.2s;
}

body.page-ready .hero-ctas {
    animation-delay: 0.28s;
}

body.page-ready .hero-stats {
    animation-delay: 0.36s;
}

body.page-ready .hero-image-wrapper {
    animation: heroVisualIn 0.9s var(--ease-out-soft) 0.18s both;
}

body.page-ready .hero-float-card {
    animation: heroVisualIn 0.7s var(--ease-out-soft) both, softFloat 5.5s ease-in-out infinite;
}

body.page-ready .card-route {
    animation-delay: 0.42s, 1.2s;
}

body.page-ready .card-airport {
    animation-delay: 0.54s, 1.45s;
}

body.page-ready .card-247 {
    animation-delay: 0.66s, 1.7s;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translate3d(0, 28px, 0) scale(0.985);
    filter: blur(5px);
    transition:
        opacity 0.72s var(--ease-out-soft) var(--reveal-delay, 0ms),
        transform 0.72s var(--ease-out-soft) var(--reveal-delay, 0ms),
        filter 0.72s var(--ease-out-soft) var(--reveal-delay, 0ms),
        box-shadow 0.25s ease,
        border-color 0.25s ease,
        background-color 0.25s ease;
    will-change: opacity, transform, filter;
}

.reveal-on-scroll.visible,
.fade-up.visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
}

.section-header.reveal-on-scroll {
    transform: translate3d(0, 18px, 0);
}

.slider-shell.reveal-on-scroll {
    transform: translate3d(0, 22px, 0);
}

.booking-card.reveal-on-scroll {
    transform: translate3d(0, 20px, 0) scale(0.99);
}

.text-center .section-title::before,
.text-center .section-title::after {
    transform-origin: center;
}

.section-header.visible .section-title::before,
.section-header.visible .section-title::after,
.tour-packages-panel.visible .section-label::before,
.tour-packages-panel.visible .section-label::after {
    animation: lineGrow 0.55s var(--ease-out-soft) both;
}

.service-card,
.route-card,
.dest-card,
.vehicle-card,
.pricing-card,
.tour-package-card,
.feature-card,
.testimonial-card,
.faq-item,
.footer-cta-box {
    backface-visibility: hidden;
}

.footer-bottom.reveal-on-scroll {
    transform: translate3d(0, 14px, 0);
}

.service-card:hover,
.feature-card:hover,
.testimonial-card:hover,
.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(17, 24, 39, 0.08);
    border-color: rgba(248, 180, 0, 0.38);
}

.service-icon,
.feature-icon-wrap,
.float-card-icon,
.social-icon,
.slider-button,
.btn,
.btn-capsule-call,
.btn-capsule-whatsapp {
    transition:
        transform 0.25s var(--ease-spring-soft),
        box-shadow 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease;
}

.service-card:hover .service-icon,
.feature-card:hover .feature-icon-wrap {
    transform: translateY(-2px) scale(1.06);
}

.btn:hover,
.btn-capsule-call:hover,
.btn-capsule-whatsapp:hover,
.btn-footer-call:hover,
.btn-footer-whatsapp:hover,
.btn-package-view:hover,
.quick-booking-submit:hover {
    transform: translateY(-2px);
}

.route-img,
.dest-img,
.tour-package-img {
    transition: transform 0.45s var(--ease-out-soft), filter 0.45s ease;
}

.route-card:hover .route-img,
.tour-package-card:hover .tour-package-img {
    transform: scale(1.045);
    filter: saturate(1.05);
}

.vehicle-img,
.pricing-car-img {
    transition: transform 0.35s var(--ease-spring-soft), filter 0.35s ease;
}

.vehicle-card:hover .vehicle-img,
.pricing-card:hover .pricing-car-img {
    transform: translateY(-4px) scale(1.035);
    filter: drop-shadow(0 18px 18px rgba(17, 24, 39, 0.14));
}

.input-with-icon:focus-within .input-icon,
.input-with-icon:focus-within .input-icon-right {
    transform: translateY(-50%) scale(1.08);
}

.faq-button {
    transition: color 0.25s ease, background-color 0.25s ease, padding-left 0.25s ease;
}

.faq-button:hover {
    padding-left: 1.5rem;
}

.mobile-sticky-cta {
    transform: translateY(100%);
    transition: transform 0.45s var(--ease-out-soft);
}

body.page-ready .mobile-sticky-cta {
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
    }

    .reveal-on-scroll,
    .fade-up {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
    }
}

/* --------------------------------------------------------------------------
   30. MOBILE NAVIGATION POLISH
   -------------------------------------------------------------------------- */
.site-header::after {
    content: none !important;
    display: none !important;
}

.mobile-nav-actions {
    display: none !important;
}

@keyframes mobileMenuItemIn {
    from {
        opacity: 0;
        transform: translate3d(0, 8px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@media (max-width: 899.98px) {
    .site-header {
        box-shadow: 0 6px 24px rgba(17, 24, 39, 0.08);
    }

    #mainNav {
        padding: 8px 0;
    }

    .navbar > .container {
        position: relative;
        width: 100%;
        min-height: 52px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .navbar-brand {
        max-width: calc(100% - 58px);
    }

    .header-logo {
        width: clamp(152px, 44vw, 178px);
        max-width: 100%;
        height: auto;
    }

    .navbar-toggler {
        position: absolute;
        top: 50%;
        right: 16px;
        z-index: 1060;
        display: inline-flex;
        width: 42px;
        height: 42px;
        margin: 0;
        padding: 0;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        border: 1px solid rgba(17, 24, 39, 0.12);
        border-radius: 12px;
        background: #FFFFFF;
        box-shadow: 0 8px 22px rgba(17, 24, 39, 0.08);
        transform: translateY(-50%);
        transition:
            background-color 0.25s ease,
            border-color 0.25s ease,
            box-shadow 0.25s ease;
    }

    .navbar-toggler:focus-visible {
        outline: 3px solid rgba(248, 180, 0, 0.32) !important;
        outline-offset: 2px;
    }

    .hamburger-line {
        width: 18px;
        height: 2px;
        margin: 0;
        border-radius: 999px;
        background: var(--black) !important;
        transform-origin: center;
        transition:
            transform 0.25s var(--ease-spring-soft),
            opacity 0.2s ease,
            background-color 0.25s ease;
    }

    .navbar-toggler[aria-expanded="true"] {
        border-color: var(--black);
        background: var(--black);
        box-shadow: 0 12px 28px rgba(17, 24, 39, 0.18);
    }

    .navbar-toggler[aria-expanded="true"] .hamburger-line {
        background: #FFFFFF !important;
    }

    .navbar-toggler[aria-expanded="true"] .hamburger-line:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .navbar-toggler[aria-expanded="true"] .hamburger-line:nth-child(2) {
        opacity: 0;
    }

    .navbar-toggler[aria-expanded="true"] .hamburger-line:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    #navbarContent {
        position: absolute;
        top: calc(100% + 8px);
        left: 16px;
        right: 16px;
        z-index: 1050;
        overflow: hidden;
        max-height: calc(100vh - 86px);
        margin-top: 0;
        padding: 8px;
        border: 1px solid rgba(17, 24, 39, 0.08);
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 20px 48px rgba(17, 24, 39, 0.14);
    }

    #navbarContent.collapsing {
        opacity: 0;
        transition: height 0.25s ease, opacity 0.2s ease;
    }

    #navbarContent.show {
        opacity: 1;
    }

    #navbarContent .navbar-nav {
        gap: 2px !important;
        padding: 2px;
    }

    #navbarContent .nav-item {
        width: 100%;
        animation: none;
    }

    #navbarContent.show .nav-item {
        animation: mobileMenuItemIn 0.32s var(--ease-out-soft) both;
    }

    #navbarContent.show .nav-item:nth-child(1) {
        animation-delay: 0.02s;
    }

    #navbarContent.show .nav-item:nth-child(2) {
        animation-delay: 0.05s;
    }

    #navbarContent.show .nav-item:nth-child(3) {
        animation-delay: 0.08s;
    }

    #navbarContent.show .nav-item:nth-child(4) {
        animation-delay: 0.11s;
    }

    #navbarContent.show .nav-item:nth-child(5) {
        animation-delay: 0.14s;
    }

    #navbarContent.show .nav-item:nth-child(6) {
        animation-delay: 0.17s;
    }

    #navbarContent.show .nav-item:nth-child(7) {
        animation-delay: 0.2s;
    }

    #navbarContent .nav-link {
        display: flex;
        min-height: 44px;
        align-items: center;
        border-radius: 11px;
        padding: 0 14px !important;
        color: var(--black) !important;
        font-size: 0.88rem;
        font-weight: 800;
        letter-spacing: 0;
        transition:
            background-color 0.22s ease,
            box-shadow 0.22s ease,
            transform 0.22s ease;
    }

    #navbarContent .nav-link::after {
        display: none;
    }

    #navbarContent .nav-link:hover,
    #navbarContent .nav-link.active {
        background: #FFF7DA;
        box-shadow: inset 3px 0 0 var(--primary);
        transform: translateX(2px);
    }

    .mobile-nav-actions {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        margin-top: 6px;
        padding: 10px 4px 2px;
        border-top: 1px solid rgba(17, 24, 39, 0.08);
    }

    .mobile-nav-action {
        display: inline-flex;
        min-width: 0;
        min-height: 42px;
        align-items: center;
        justify-content: center;
        gap: 7px;
        border-radius: 11px;
        font-size: 0.82rem;
        font-weight: 900;
        line-height: 1;
        white-space: nowrap;
    }

    .mobile-nav-call {
        background: var(--black);
        color: #FFFFFF !important;
    }

    .mobile-nav-whatsapp {
        background: var(--whatsapp);
        color: #FFFFFF !important;
    }

    .mobile-nav-action:hover {
        transform: translateY(-1px);
        box-shadow: 0 10px 24px rgba(17, 24, 39, 0.14);
    }
}

@media (max-width: 359.98px) {
    .navbar > .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .header-logo {
        width: 142px;
    }

    .navbar-toggler {
        right: 12px;
        width: 40px;
        height: 40px;
    }

    #navbarContent {
        left: 12px;
        right: 12px;
    }

    .mobile-nav-action {
        font-size: 0.76rem;
    }
}

/* --------------------------------------------------------------------------
   31. FOOTER BOTTOM VISIBILITY FIX
   -------------------------------------------------------------------------- */
.footer-main .reveal-on-scroll,
.footer-main .fade-up,
.footer-cta-box,
.footer-cta-box.reveal-on-scroll,
.footer-bottom,
.footer-bottom.reveal-on-scroll {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
}

.footer-main .row > * {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
}

.footer-bottom {
    background: #FFFFFF !important;
    padding: 12px 0 22px !important;
    border-top: 0 !important;
}

.footer-bottom .container {
    width: calc(100% - 88px);
    max-width: 1480px !important;
}

.footer-copy,
.footer-credit,
.footer-bottom-link {
    color: rgba(17, 24, 39, 0.62) !important;
    font-size: 0.76rem !important;
    line-height: 1.55;
}

.footer-credit-link {
    color: var(--black) !important;
    font-weight: 800;
}

.footer-bottom-link:hover,
.footer-credit-link:hover {
    color: var(--primary-dark) !important;
}

@media (max-width: 767.98px) {
    .footer-bottom {
        padding: 14px 0 76px !important;
    }

    .footer-bottom .container {
        width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }

    .footer-copy,
    .footer-credit,
    .footer-bottom-link {
        font-size: 0.72rem !important;
    }

    .footer-bottom .text-md-end {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 4px 8px;
    }

    .footer-bottom .text-muted {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}
