/* ========================================================
   TravelGujju™ - Official Stylesheet
   Design System matching jaavak.com/travel
   Branded with Logo Colors (Navy Blue #0B3C84 & Vibrant Red #D31027)
   ======================================================== */

/* ---- CSS Variables ---- */
:root {
    --primary: #D31027;
    /* Vibrant Red from logo "gujju" */
    --primary-dark: #B70E22;
    --primary-light: #E83344;
    --secondary: #0B3C84;
    /* Royal Navy Blue from logo "Travel" & Car */
    --secondary-dark: #072757;
    --secondary-light: #1550A6;
    --accent: #F39C12;
    /* Warm Gold/Amber */
    --text-dark: #1A1A2E;
    --text-muted: #6C757D;
    --bg-light: #F8F9FA;
    --bg-section: #F4F6F9;
    --white: #FFFFFF;
    --border: #E9ECEF;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 10px 40px rgba(0, 0, 0, 0.15);
    --radius: 10px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
}

/* ---- Base & Typography ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.3;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

/* ---- Custom Buttons ---- */
.btn {
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 6px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.btn-primary,
.btn--primary {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #fff !important;
}

.btn-primary:hover,
.btn--primary:hover {
    background-color: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 16, 39, 0.35);
}

.btn-secondary,
.btn--secondary {
    background-color: var(--secondary) !important;
    border-color: var(--secondary) !important;
    color: #fff !important;
}

.btn-secondary:hover,
.btn--secondary:hover {
    background-color: var(--secondary-dark) !important;
    border-color: var(--secondary-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(11, 60, 132, 0.35);
}

.btn--wa {
    background-color: #25D366 !important;
    border-color: #25D366 !important;
    color: #fff !important;
}

.btn--wa:hover {
    background-color: #1EBE5D !important;
    border-color: #1EBE5D !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.btn--call {
    background-color: var(--secondary) !important;
    border-color: var(--secondary) !important;
    color: #fff !important;
}

.btn--call:hover {
    background-color: var(--secondary-dark) !important;
    border-color: var(--secondary-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(11, 60, 132, 0.35);
}

.btn-outline-primary,
.btn--outline {
    color: var(--primary) !important;
    border: 2px solid var(--primary) !important;
    background: transparent !important;
}

.btn-outline-primary:hover,
.btn--outline:hover {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #fff !important;
    transform: translateY(-2px);
}

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

.btn-outline-secondary:hover {
    background-color: var(--secondary) !important;
    border-color: var(--secondary) !important;
    color: #fff !important;
    transform: translateY(-2px);
}

.btn-light {
    background: #fff !important;
    color: var(--secondary) !important;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 6px;
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn--lg {
    padding: 14px 32px;
    font-size: 1rem;
}

.btn--sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

/* ---- Section Common Styles ---- */
.section-padding {
    padding: 80px 0;
}

.section-padding-sm {
    padding: 50px 0;
}

.section-alt {
    background-color: var(--bg-section);
}

.section-dark {
    background-color: var(--secondary-dark);
    color: #fff;
}

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

.section-header--center {
    text-align: center;
}

.section-header .section-tag {
    display: inline-block;
    background: rgba(211, 16, 39, 0.1);
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    padding: 5px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.section-header .section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

.section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
    margin: 12px 0 16px;
}

.section-divider.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* ---- TOP CONTACT BAR ---- */
.top-bar {
    background: var(--secondary);
    color: #e2e8f0;
    padding: 9px 0;
    font-size: 13px;
    font-weight: 500;
}

.top-bar a {
    color: #e2e8f0;
    text-decoration: none;
    transition: var(--transition);
}

.top-bar a:hover {
    color: #fff;
}

.top-bar-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: #fff;
    font-size: 12px;
    margin-left: 6px;
    transition: var(--transition);
}

.top-bar-social a:hover {
    background: var(--primary);
    color: #fff;
}

/* ---- STICKY NAVBAR ---- */
#mainNav {
    background: #fff !important;
    padding: 0;
    transition: var(--transition);
    z-index: 1000;
}

#mainNav.scrolled {
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1) !important;
}

.navbar-brand {
    padding: 8px 0;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 52px;
    width: auto;
    object-fit: contain;
}

#mainNav .nav-link {
    font-weight: 600;
    font-size: 14px;
    color: var(--secondary) !important;
    padding: 22px 14px !important;
    position: relative;
    transition: var(--transition);
}

#mainNav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 14px;
    right: 14px;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transition: var(--transition);
    border-radius: 2px 2px 0 0;
}

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

#mainNav .nav-link:hover,
#mainNav .nav-link.active {
    color: var(--primary) !important;
}

.nav-cta-btn {
    padding: 10px 22px !important;
    font-size: 13px !important;
    border-radius: 6px !important;
}

.nav-cta-btn::after {
    display: none !important;
}

/* Dropdown */
.dropdown-menu {
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    border-radius: var(--radius);
    padding: 10px 0;
    animation: dropFade 0.2s ease;
    min-width: 230px;
}

@keyframes dropFade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary);
    padding: 9px 20px;
    transition: var(--transition);
}

.dropdown-item:hover {
    background: rgba(211, 16, 39, 0.06);
    color: var(--primary);
    padding-left: 24px;
}

/* ---- HERO CAROUSEL ---- */
#heroCarousel {
    position: relative;
}

.hero-slide {
    height: 85vh;
    min-height: 580px;
    max-height: 750px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-slide-1 {
    background-image: url('assets/images/airport/rajkot_airport.jpg');
}

.hero-slide-2 {
    background-image: url('assets/images/airport/ahmedabad-airport.jpg');
}

.hero-slide-3 {
    background-image: url('assets/images/tour/statue-of-unity.jpg');
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(7, 39, 87, 0.85) 0%, rgba(11, 60, 132, 0.70) 50%, rgba(211, 16, 39, 0.60) 100%);
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 20px 80px;
    max-width: 900px;
    margin: 0 auto;
}

.hero-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 18px;
    color: #fff;
}

.hero-title span {
    color: #FFD166;
    background: linear-gradient(90deg, #FFD166, #FFA07A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 720px;
    margin-bottom: 30px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

/* ---- FLOATING BOOKING CARD ---- */
.booking-section {
    margin-top: -65px;
    position: relative;
    z-index: 100;
}

.booking-card {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    padding: 35px 35px 30px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.booking-card h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 4px;
}

.booking-card .sub-text {
    font-size: 13px;
    color: var(--text-muted);
}

.booking-form .form-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 6px;
}

.booking-form .form-select,
.booking-form .form-control {
    height: 52px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    padding: 0 16px;
    transition: var(--transition);
}

.booking-form .form-select:focus,
.booking-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(211, 16, 39, 0.15);
}

/* ---- PAGE HERO (Inner Pages) ---- */
.page-hero {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary) 100%);
    color: #fff;
    padding: 70px 0 50px;
    position: relative;
}

.page-hero h1 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.page-hero__sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-bottom: 0;
}

.breadcrumb {
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 500;
    background: transparent;
    padding: 0;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #fff;
}

.breadcrumb__sep {
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb__current {
    color: #FFD166;
}

/* ---- STATS COUNTER BAR ---- */
.stat-box {
    background: #fff;
    border-radius: var(--radius);
    padding: 24px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.stat-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.stat-box__num {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-box__label {
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ---- HUB & DESTINATION CARDS ---- */
.hub-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.hub-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.hub-card__img-wrap {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.hub-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hub-card:hover .hub-card__img {
    transform: scale(1.08);
}

.hub-card__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--primary);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hub-card__body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.hub-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
}

.hub-card__desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
    flex-grow: 1;
}

.hub-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border);
    padding-top: 14px;
}

.hub-card__fare {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary);
}

/* ---- FLEET / CAR CARDS ---- */
.car-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.car-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.car-card__img-wrap {
    height: 180px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.car-card__img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.car-card:hover .car-card__img {
    transform: scale(1.05);
}

.car-card__body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.car-card__name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
}

.car-card__specs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.car-card__spec {
    font-size: 12px;
    background: #f1f5f9;
    color: var(--secondary);
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
}

.car-card__price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
    margin: 12px 0 16px;
}

/* ---- PACKAGE CARDS ---- */
.package-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.package-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.package-card__img-wrap {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.package-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.package-card:hover .package-card__img {
    transform: scale(1.08);
}

.package-card__badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--secondary);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
}

.package-card__body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.package-card__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
}

.package-card__highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
}

.package-card__highlights li {
    font-size: 13px;
    color: var(--text-muted);
    padding: 4px 0 4px 18px;
    position: relative;
}

.package-card__highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* ---- WHY CHOOSE US BOXES ---- */
.feature-box {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.feature-box__icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(211, 16, 39, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
}

.feature-box__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
}

.feature-box__text {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ---- TESTIMONIAL CARDS ---- */
.review-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.review-card__stars {
    color: #F59E0B;
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.review-card__text {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 18px;
    flex-grow: 1;
    font-style: italic;
}

.review-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--border);
    padding-top: 14px;
}

.review-card__avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--secondary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
}

.review-card__name {
    font-weight: 700;
    color: var(--secondary);
    font-size: 14px;
}

.review-card__source {
    font-size: 12px;
    color: var(--text-muted);
}

/* ---- BLOG POST CARDS ---- */
.blog-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.blog-card__img-wrap {
    height: 200px;
    overflow: hidden;
}

.blog-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card__img {
    transform: scale(1.08);
}

.blog-card__body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card__date {
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.blog-card__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
}

.blog-card__title a {
    color: var(--secondary);
    text-decoration: none;
}

.blog-card__title a:hover {
    color: var(--primary);
}

.blog-card__excerpt {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
    flex-grow: 1;
}

.blog-card__link {
    font-weight: 600;
    font-size: 13px;
    color: var(--primary);
}

/* ---- FARE TABLES ---- */
.fare-table-wrap {
    background: #fff;
    border-radius: var(--radius);
    overflow-x: auto;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.fare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    margin: 0;
}

.fare-table th {
    background: var(--secondary);
    color: #fff;
    font-weight: 600;
    padding: 14px 18px;
    text-align: left;
    white-space: nowrap;
}

.fare-table td {
    padding: 13px 18px;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

.fare-table tr:hover td {
    background: #f8fafc;
}

.fare-table__car {
    font-weight: 600;
    color: var(--secondary);
}

.fare-table__amount {
    font-weight: 700;
    color: var(--primary);
    font-size: 15px;
}

.fare-note {
    background: #fffbeb;
    border-left: 4px solid var(--accent);
    padding: 14px 18px;
    border-radius: 0 var(--radius) var(--radius) 0;
    font-size: 13px;
    color: #92400e;
    line-height: 1.6;
}

/* ---- STICKY ROUTE SIDEBAR CARD ---- */
.sticky-book-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: var(--shadow-hover);
    border: 1px solid var(--border);
    position: sticky;
    top: 90px;
}

.sticky-book-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 4px;
}

/* ---- CTA PRE-FOOTER BANNER ---- */
.pre-footer-banner {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary) 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.pre-footer-banner h2 {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.pre-footer-banner p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    max-width: 600px;
    margin: 0 auto 28px;
}

/* ---- MAIN FOOTER ---- */
.site-footer {
    background: #071933;
    color: #cbd5e1;
    padding: 70px 0 0;
    font-size: 14px;
}

.footer-logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 18px;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

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

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 6px;
}

.footer-links a::before {
    content: '›';
    color: var(--primary);
    font-weight: bold;
    font-size: 16px;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    color: #94a3b8;
    font-size: 13px;
    line-height: 1.6;
}

.footer-contact-list i {
    color: var(--primary);
    font-size: 15px;
    margin-top: 4px;
}

.footer-contact-list a {
    color: #94a3b8;
    text-decoration: none;
}

.footer-contact-list a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 22px 0;
    margin-top: 50px;
    font-size: 13px;
    color: #64748b;
}

/* ---- FLOATING WHATSAPP BUTTON ---- */
.wa-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.45);
    z-index: 9999;
    transition: var(--transition);
    animation: waPulse 2s infinite;
}

.wa-float:hover {
    transform: scale(1.1);
    color: #fff !important;
}

@keyframes waPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }

    70% {
        box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ==========================================================================
   Comprehensive Mobile & Tablet Responsive Optimizations
   ========================================================================== */

@media (max-width: 991.98px) {
    .section-padding {
        padding: 50px 0;
    }

    #mainNav .nav-link {
        padding: 10px 0 !important;
    }

    .hero-slide {
        height: 75vh;
        min-height: 520px;
    }

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

    .hero-content {
        padding: 0 15px 70px;
    }

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

    .booking-card {
        padding: 24px 20px;
    }

    .package-card__img {
        height: 200px;
    }
}

@media (max-width: 767.98px) {
    .section-padding {
        padding: 40px 0;
    }

    .section-header h2 {
        font-size: 1.65rem;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    /* Top bar adjustments */
    .top-bar {
        font-size: 12px;
        padding: 6px 0;
    }

    /* Hero Carousel Slider on Mobile */
    .hero-slide {
        height: auto;
        min-height: 480px;
        padding: 60px 0 80px;
    }

    .hero-content {
        position: relative;
        padding: 40px 15px 60px;
    }

    .hero-tag {
        font-size: 11px;
        padding: 4px 14px;
        margin-bottom: 14px;
    }

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

    .hero-subtitle {
        font-size: 0.92rem;
        line-height: 1.5;
        margin-bottom: 22px;
    }

    .hero-btns .btn {
        width: 100%;
        max-width: 280px;
        margin-bottom: 8px;
    }

    /* Floating Booking Search Widget */
    .booking-section {
        margin-top: -30px;
        padding: 0 10px;
    }

    .booking-card {
        padding: 18px 14px;
        border-radius: 14px;
    }

    .booking-nav .nav-link {
        font-size: 13px;
        padding: 10px 14px;
    }

    /* Hub & Package Cards */
    .hub-card__img {
        height: 190px;
    }

    .package-card__img {
        height: 180px;
    }

    .car-card__img-wrap {
        height: 160px;
    }

    /* Booking Wizard Progress Tabs */
    #stepIndicator .col-4 {
        padding: 0 2px;
    }

    #stepIndicator [id^="stepTab"] {
        font-size: 11px;
        padding: 8px 4px !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    #stepIndicator .badge {
        font-size: 10px;
        padding: 2px 5px;
    }

    /* Fare Table Responsive Wrapper */
    .fare-table-wrap,
    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .fare-table {
        min-width: 540px;
    }

    /* Floating WhatsApp Button */
    .wa-float {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
        font-size: 28px;
    }

    /* Pre-footer Call to Action */
    .pre-footer-banner {
        padding: 45px 15px;
        text-align: center;
    }

    .pre-footer-banner h2 {
        font-size: 1.5rem;
    }

    .pre-footer-banner .btn {
        width: 100%;
        max-width: 320px;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .hero-slide {
        min-height: 440px;
    }

    .page-hero h1 {
        font-size: 1.5rem;
    }

    .stat-item__number {
        font-size: 1.75rem;
    }
}

/* Google Places Autocomplete dropdown z-index fix */
.pac-container {
    z-index: 999999 !important;
    font-family: 'Poppins', sans-serif;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}