﻿/* ==========================================
   🌐 BASE / GLOBAL
========================================== */
html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html, body {
    margin: 0;
    padding: 0;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #fff;
    /* fixed header + fixed footer spacing */
    padding-top: 90px;
    padding-bottom: 140px;
}

/* ==========================================
   🧭 FIXED HEADER
========================================== */
.fre-fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1050;
    background-color: #000;
}

/* if no-banner pages need extra spacing */
body.no-banner .container:first-of-type {
    margin-top: 70px;
}

/* ==========================================
   ☎️ TOP CONTACT INFO
========================================== */
.fre-contact-info {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    white-space: nowrap;
}

.fre-contact-text {
    font-size: 1.3rem;
    font-weight: 600;
}

.fre-header-email {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: 10px;
    white-space: nowrap;
}

    .fre-header-email a {
        color: #ffc107;
        text-decoration: none;
        transition: color .3s ease;
    }

        .fre-header-email a:hover {
            color: #ffd65a;
            text-decoration: underline;
        }

/* Right block (email + social) */
.fre-header-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    flex: 0 0 auto;
}

/* ==========================================
   🔗 SOCIAL ICONS (HEADER)
   ✅ no overflow hidden, controlled spacing
========================================== */
.fre-social-icons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: nowrap;
    margin: 0;
    padding: 0;
    line-height: 1;
    overflow: visible;
}

    .fre-social-icons a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        border-radius: 50%;
        text-decoration: none;
        color: #fff;
        transition: transform .2s ease, color .2s ease;
    }

        .fre-social-icons a i {
            font-size: 18px;
            line-height: 1;
        }

        .fre-social-icons a:hover {
            transform: translateY(-1px);
            color: #ffc107;
        }

/* Mobile contact strip */
@media (max-width: 768px) {
    .fre-contact-info,
    .fre-header-email {
        display: block;
        text-align: left;
        font-size: 1rem;
    }
}

/* ==========================================
   🧭 NAVBAR (Menu gap FIX)
   ✅ remove double spacing & crazy gaps
========================================== */
.navbar {
    padding: 10px 0;
}

.navbar-nav {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 14px; /* ✅ menu items gap control */
}

    .navbar-nav .nav-item {
        margin: 0 !important; /* ✅ remove extra margin */
    }

    .navbar-nav .nav-link {
        position: relative;
        white-space: nowrap;
        padding: 8px 10px;
        font-size: 15px;
        font-weight: 600;
        color: #fff;
        text-transform: none; /* uppercase hata diya (optional) */
        letter-spacing: 0.2px;
        transition: color .3s ease;
    }

        /* Underline animation */
        .navbar-nav .nav-link::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -4px;
            width: 0%;
            height: 2px;
            background: linear-gradient(90deg, #ffc107, #ff6f00);
            transition: width 0.3s ease;
        }

        .navbar-nav .nav-link:hover::after,
        .navbar-nav .nav-link.active::after,
        .navbar-nav .nav-link[aria-current="page"]::after {
            width: 100%;
        }

        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active,
        .navbar-nav .nav-link[aria-current="page"] {
            color: #ffc107;
        }

/* IMPORTANT: remove the green hover background you had (was breaking header look) */
/* If you still want bg on hover, tell me—I'll style it nicely */

/* Navbar mobile */
@media (max-width: 991px) {
    .navbar-nav {
        flex-wrap: wrap;
        gap: 10px;
    }
}

/* ==========================================
   🖼️ BANNER
========================================== */
.banner {
    position: relative;
    height: 400px;
    background: url('/images/home-banner.jpg') center/cover no-repeat;
    overflow: hidden;
    animation: fadeInBanner 1.5s ease-in-out;
    margin-top: 1px;
}

    .banner::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.5);
    }

    .banner > div {
        position: relative;
        z-index: 2;
        animation: slideUpText 1.2s ease-out;
    }

@keyframes fadeInBanner {
    from {
        opacity: 0;
        transform: scale(1.05);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideUpText {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .banner {
        height: 300px;
    }

        .banner h1 {
            font-size: 1.8rem;
        }

        .banner p {
            font-size: 1rem;
        }
}

body.no-banner .banner {
    display: none !important;
}
/* ==========================================
   🏙️ TOP CITIES  (Now Same As Our Services)
========================================== */
.top-cities {
    background: #fff;
    padding: 5rem 0;
}

    .top-cities h2 {
        font-size: 2.2rem;
        color: #007b8f;
    }

    /* ✅ Top Cities will use service-card layout */
    .top-cities .service-card {
        border-radius: 12px;
        overflow: hidden;
        height: 430px;
        display: flex;
        flex-direction: column;
        background: #fff;
        transition: 0.3s ease;
        box-shadow: 0 6px 18px rgba(0,0,0,.08);
    }

    .top-cities .service-img {
        width: 100%;
        height: 330px;
        object-fit: cover;
        transition: transform .35s ease;
    }

    .top-cities .service-body {
        flex: 1;
        display: flex;
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }

    /* ✅ Same hover effect */
    .top-cities .service-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 28px rgba(0,0,0,0.15);
    }

        .top-cities .service-card:hover .service-img {
            transform: scale(1.05);
        }

/* ==========================================
   🧰 OUR SERVICES (As is)
========================================== */
.our-services {
    background: linear-gradient(180deg, #ffffff 0%, #f2f9fb 100%);
    padding: 5rem 0;
    position: relative;
}

    .our-services h2 {
        font-size: 2.2rem;
        color: #007b8f;
    }

    .our-services .container {
        max-width: 1500px;
    }

/* Common card (used by both sections) */
.service-card {
    border-radius: 12px;
    overflow: hidden;
    height: 430px;
    display: flex;
    flex-direction: column;
    background: #fff;
    transition: 0.3s ease;
}

.service-img {
    width: 100%;
    height: 330px;
    object-fit: cover;
}

.service-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px;
    text-align: center;
}

.service-title {
    font-weight: 700;
    margin-bottom: 10px;
}

.service-text {
    font-size: 15px;
    color: #555;
    margin-bottom: 15px;
}

.service-card .btn {
    padding: 8px 22px;
    font-weight: 600;
    margin-top: auto;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
}

/* ==========================================
   🎥 FADE IN
========================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all .8s ease-out;
}

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* ==========================================
   📞 WHATSAPP FLOAT BUTTON
========================================== */
.fre-whatsapp-btn {
    position: fixed;
    bottom: 90px;
    right: 25px;
    background: #25d366;
    color: #fff;
    font-size: 22px;
    border-radius: 50px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 1100;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    text-decoration: none;
}

    .fre-whatsapp-btn:hover {
        transform: scale(1.08);
        background-color: #20bd5a;
    }

/* ==========================================
   💬 FIXED FOOTER
========================================== */
.fre-fixed-footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #000;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    z-index: 1030;
}

/* ==========================================
   📍 ABOUT HERO (no-banner pages)
========================================== */
body.no-banner .about-hero {
    background: url('/images/about-banner.jpg') center/cover no-repeat;
    height: 65vh;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 1px !important;
    padding-top: 0;
    margin-bottom: 80px;
}

    body.no-banner .about-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
    }

    body.no-banner .about-hero div {
        position: relative;
        z-index: 1;
    }

    body.no-banner .about-hero h1 {
        font-size: 2.8rem;
        font-weight: 700;
        color: #fff;
    }

    body.no-banner .about-hero p {
        font-size: 1.25rem;
        margin-top: 10px;
        opacity: 0.9;
        color: #fff;
    }

@media (max-width: 991.98px) {
    body.no-banner .about-hero {
        height: 45vh;
        margin-top: -40px !important;
    }

        body.no-banner .about-hero h1 {
            font-size: 2rem;
        }

        body.no-banner .about-hero p {
            font-size: 1rem;
        }
}

/* ==========================================
   🚗 GET A CAR (fixed media query bug)
========================================== */
.getacar-section {
    background: linear-gradient(135deg, #eef2f7, #f8f9fa);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 15px 80px;
}

.getacar-hero {
    position: relative;
    width: 100%;
    max-width: 1100px;
    height: 340px;
    border-radius: 18px;
    overflow: hidden;
    margin-top: 5px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

    .getacar-hero .hero-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(70%);
    }

    .getacar-hero .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.45);
        z-index: 1;
    }

    .getacar-hero .hero-text {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        z-index: 2;
    }

    .getacar-hero h1 {
        font-size: 2.5rem;
        font-weight: 700;
        text-shadow: 0 3px 10px rgba(0, 0, 0, 0.7);
        color: #fff;
    }

    .getacar-hero p {
        color: #f8f9fa;
        font-size: 1.2rem;
        opacity: 0.9;
    }

.booking-card {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 40px;
    padding: 50px 40px;
    width: 100%;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
}

    .booking-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
    }

.form-control, .form-select {
    border-radius: 8px;
    border: 1px solid #ced4da;
    padding: 10px 12px;
    transition: all 0.2s ease;
}

    .form-control:focus, .form-select:focus {
        border-color: #6610f2;
        box-shadow: 0 0 6px rgba(102, 16, 242, 0.25);
    }

.form-label {
    font-weight: 600;
    color: #343a40;
}

.btn-primary {
    background: linear-gradient(90deg, #007bff, #6610f2);
    border: none;
    border-radius: 10px;
    padding: 10px 35px;
    font-size: 1.1rem;
    transition: transform 0.25s ease, background 0.3s ease;
}

    .btn-primary:hover {
        transform: scale(1.05);
        background: linear-gradient(90deg, #6610f2, #007bff);
    }

.getacar-hero, .booking-card {
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ✅ real responsive media query */
@media (max-width: 768px) {
    .getacar-hero {
        height: 250px;
        margin-top: 40px;
    }

        .getacar-hero h1 {
            font-size: 1.8rem;
        }

    .booking-card {
        margin-top: 30px;
        padding: 25px 20px;
    }
}

/* ==========================================
   📦 PACKAGES (dedup)
========================================== */
.pkg-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.pkg-filter-btn {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #111;
    text-decoration: none;
    font-weight: 600;
    transition: all .2s ease;
}

    .pkg-filter-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 6px 16px rgba(0,0,0,.08);
        border-color: #cfd6dd;
    }

    .pkg-filter-btn.active {
        background: #0d6efd;
        color: #fff;
        border-color: #0d6efd;
    }

.pkg-card {
    border-radius: 14px;
}

#btnLoadMore {
    border-radius: 999px;
    font-weight: 600;
}

/* ==========================================
   📩 CONTACT SECTION (Clean + Professional)
========================================== */
.contact-section {
    background: #fff;
}

.contact-title {
    font-size: 34px;
    font-weight: 800;
    color: #0d6efd;
    text-align: left;
    margin-bottom: 18px;
}

/* ✅ form full width take, but not too wide on large screens */
.contact-form {
    width: 100%;
    max-width: 100%; /* ✅ 520px limit removed */
}

    /* nicer inputs */
    .contact-form .form-control {
        width: 100%;
        padding: 12px 14px;
        border-radius: 10px;
    }

/* ✅ Map wrapper + iframe full size */
.map-wrap {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,.08);
}

    .map-wrap iframe {
        width: 100%;
        height: 420px;
        display: block;
    }

/* Mobile */
@media (max-width: 576px) {
    .contact-title {
        font-size: 26px;
    }

    .map-wrap iframe {
        height: 320px;
    }
}


/* ==========================================
   ✅ SECTION TITLE (Common)
========================================== */
.section-title {
    font-size: 34px;
    font-weight: 800;
    color: #0d6efd;
}


/* ==========================================
   ✅ PRO CARD (Stable + Equal Height)
   (Use for Top Cities / Services both)
========================================== */
.pro-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 10px 25px rgba(0,0,0,.06);
    transition: transform .25s ease, box-shadow .25s ease;
    /* ✅ important for equal height layout */
    display: flex;
    flex-direction: column;
    height: 100%;
}

    .pro-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 35px rgba(0,0,0,.12);
    }

.pro-card-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.pro-card-body {
    padding: 18px 18px 16px;
    text-align: center;
    /* ✅ stable body growth */
    display: flex;
    flex-direction: column;
    flex: 1;
}

.pro-card-title {
    font-weight: 800;
    margin-bottom: 8px;
    color: #212529;
}

.pro-card-text {
    color: #6c757d;
    font-size: 15px;
    margin-bottom: 14px;
}

/* ✅ button always at bottom */
.pro-card-btn {
    margin-top: auto;
    border-radius: 10px;
    font-weight: 700;
    padding: 10px 14px;
}

.loadmore-wrap {
    display: flex;
    justify-content: center;
    margin: 25px 0 40px;
}


/* ===== Popular Routes ===== */
.popular-routes {
    background: #fff;
}

.route-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,.06);
    padding: 18px;
    transition: transform .25s ease, box-shadow .25s ease;
    display: flex;
    flex-direction: column;
}

    .route-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 35px rgba(0,0,0,.12);
    }

.route-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.route-title {
    font-weight: 800;
    margin: 0;
}

.route-badge {
    font-size: 12px;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(13,110,253,.10);
    color: #0d6efd;
    white-space: nowrap;
}

.route-meta {
    color: #6c757d;
    font-size: 14px;
    display: grid;
    gap: 6px;
    margin-bottom: 14px;
}

.route-actions {
    margin-top: auto;
    display: grid;
    gap: 10px;
}


/* ===== Places to Visit (Custom Trip) - FIXED LAYOUT ===== */
.place-pill {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    border: 1px solid rgba(0,0,0,.12);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(0,0,0,.05);
}

/* column me equal height / stretch */
.row.g-2 > div {
    display: flex;
}

/* left side: checkbox + text */
.place-left {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    cursor: pointer;
}

    .place-left input.place-check {
        margin: 0;
        transform: scale(1.05);
    }

.place-text {
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* right side: video button */
.place-video-btn {
    flex-shrink: 0;
    border: 1px solid #0d6efd;
    background: #fff;
    color: #0d6efd;
    padding: 6px 10px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
}

    .place-video-btn:hover {
        background: #0d6efd;
        color: #fff;
    }

/* responsive spacing */
@media (max-width: 576px) {
    .place-pill {
        padding: 10px;
    }
}

/* ===== Add Custom Place - Professional Row ===== */
.custom-label {
    white-space: nowrap; /* ✅ label one line */
}

.custom-add-wrap {
    display: flex;
    gap: 12px;
    align-items: center;
}

.custom-place-input {
    flex: 1;
    height: 46px;
    border-radius: 12px;
}

.custom-add-btn {
    height: 46px;
    border-radius: 12px;
    padding: 0 18px;
    font-weight: 700;
    white-space: nowrap;
}

/* Mobile */
@media (max-width: 576px) {
    .custom-add-wrap {
        flex-direction: column;
        align-items: stretch;
    }

    .custom-add-btn {
        width: 100%;
    }
}

/* ===== Popular Routes (Premium UI) ===== */
.popular-routes {
    background: linear-gradient(180deg,#ffffff 0%, #f6fbff 100%);
}

.route-card {
    position: relative;
    background: #fff;
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 16px;
    padding: 18px 18px 16px;
    box-shadow: 0 10px 28px rgba(0,0,0,.06);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    overflow: hidden;
}

    /* top accent bar */
    .route-card::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg,#0d6efd,#00c6ff);
    }

    /* hover effect */
    .route-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 45px rgba(0,0,0,.12);
        border-color: rgba(13,110,253,.25);
    }

.route-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.route-title {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    color: #0b1b2b;
    letter-spacing: .2px;
}

    /* small icon feeling on title */
    .route-title::before {
        content: "🚖 ";
        font-size: 18px;
    }

/* badge premium */
.route-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    color: #0d6efd;
    background: linear-gradient(180deg,#eaf3ff 0%, #dbeaff 100%);
    border: 1px solid rgba(13,110,253,.15);
    white-space: nowrap;
}

/* meta text */
.route-meta {
    margin-top: 6px;
    font-size: 14px;
    color: #5b6777;
    line-height: 1.6;
}

    .route-meta strong {
        color: #2b3440;
    }

.route-actions {
    margin-top: 14px;
}

    /* WhatsApp button - premium */
    .route-actions .btn-outline-success {
        border-radius: 12px;
        padding: 10px 12px;
        font-weight: 800;
        letter-spacing: .2px;
        border: 2px solid rgba(37,211,102,.55);
        color: #128c7e;
        background: #fff;
        transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
    }

        /* add icon to button text */
        .route-actions .btn-outline-success::before {
            content: "💬 ";
        }

        .route-actions .btn-outline-success:hover {
            background: #25D366;
            border-color: #25D366;
            color: #fff;
            transform: translateY(-1px);
            box-shadow: 0 12px 22px rgba(37,211,102,.25);
        }

.popular-routes .section-title {
    font-size: 42px;
    font-weight: 900;
    letter-spacing: .3px;
}

.popular-routes .section-subtitle {
    color: #6b7a90;
    font-weight: 600;
}


/*=====================================*/

/* ===== Route Meta Highlight (Chips) ===== */
.route-meta {
    display: grid;
    gap: 10px;
    margin-top: 10px;
}

    /* each line becomes a chip */
    .route-meta > div {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 10px 12px;
        border-radius: 12px;
        background: #f7fbff;
        border: 1px solid rgba(13,110,253,.14);
        color: #1f2d3d;
        font-size: 14px;
        font-weight: 600;
    }

    /* bold label */
    .route-meta strong {
        color: #0b1b2b;
        font-weight: 800;
    }

    /* small icon before each row */
    .route-meta > div:nth-child(1)::before {
        content: "🛣️";
        font-size: 16px;
    }

    .route-meta > div:nth-child(2)::before {
        content: "📍";
        font-size: 16px;
    }


/* ===== Route Meta Highlight (Chips) ===== */
.route-meta {
    display: grid;
    gap: 10px;
    margin-top: 10px;
}

    /* each line becomes a chip */
    .route-meta > div {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 10px 12px;
        border-radius: 12px;
        background: #f7fbff;
        border: 1px solid rgba(13,110,253,.14);
        color: #1f2d3d;
        font-size: 14px;
        font-weight: 600;
    }

    /* bold label */
    .route-meta strong {
        color: #0b1b2b;
        font-weight: 800;
    }

    /* icons */
    .route-meta > div:nth-child(1)::before {
        content: "🛣️";
        font-size: 16px;
    }

    .route-meta > div:nth-child(2)::before {
        content: "📍";
        font-size: 16px;
    }

/* ===== Premium WhatsApp CTA Button ===== */
.route-actions .btn-outline-success {
    border: 0 !important;
    width: 100%;
    border-radius: 14px;
    padding: 12px 14px;
    font-weight: 800;
    letter-spacing: .2px;
    color: #ffffff !important;
    background: linear-gradient(90deg,#25D366,#1fa855);
    box-shadow: 0 10px 22px rgba(37,211,102,.22);
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
    position: relative;
    overflow: hidden;
}

    /* WhatsApp icon feel */
    .route-actions .btn-outline-success::before {
        content: "💬";
        margin-right: 8px;
        font-size: 16px;
    }

    /* subtle shine */
    .route-actions .btn-outline-success::after {
        content: "";
        position: absolute;
        top: 0;
        left: -60%;
        width: 50%;
        height: 100%;
        background: rgba(255,255,255,.18);
        transform: skewX(-20deg);
        transition: left .4s ease;
    }

    .route-actions .btn-outline-success:hover {
        transform: translateY(-2px);
        box-shadow: 0 16px 32px rgba(37,211,102,.30);
        filter: brightness(1.03);
    }

        .route-actions .btn-outline-success:hover::after {
            left: 120%;
        }

    .route-actions .btn-outline-success:active {
        transform: translateY(0);
        box-shadow: 0 10px 22px rgba(37,211,102,.22);
    }

.route-actions .btn-outline-success {
    font-size: 14.5px;
    text-transform: none;
}


.navbar-nav {
    flex-wrap: nowrap;
}

    .navbar-nav .nav-link {
        white-space: nowrap;
    }

@media (max-width: 991px) {
    .navbar-nav {
        align-items: flex-start;
    }
}

/* ===== HEADER FIX ===== */

.navbar-nav {
    flex-wrap: nowrap;
}

    .navbar-nav .nav-link {
        white-space: nowrap;
    }

.social-icon {
    font-size: 1.1rem;
}

@media (max-width: 991px) {
    .fre-fixed-header .text-warning,
    .fre-fixed-header .fre-header-right {
        display: none !important;
    }
}


/* ===== Corporate Booking Page ===== */

.corporate-booking-hero {
    background: linear-gradient(135deg, #1f2933, #111827);
}

    .corporate-booking-hero h1 {
        color: #ffffff;
    }

    .corporate-booking-hero p {
        color: #e5e7eb;
    }



/* ===== Navbar Active State ===== */
.navbar-nav .nav-link {
    color: #ffffff !important;
}

    .navbar-nav .nav-link.active {
        color: #facc15 !important; /* subtle yellow */
        border-bottom: 2px solid #facc15;
    }
