@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@1,600;1,700&display=swap");

/* ==========================================================================
   KONGU HOLIDAYS - MAIN STYLESHEET
   Consolidated styles for Navigation, Hero, Cards, and Components
   ========================================================================== */

/* ========================================
   1. GLOBAL VARIABLES & UTILITIES
   ======================================== */
:root {
    --hero-outline-color: rgba(255, 255, 255, 0.45);
    --hero-overlay-opacity: 0.55;
    --header-height: 118px;
    --primary-color: #102A43;
    --secondary-color: #F0C014;
    --text-color: #2c2c2c;
    --body-bg: #ffffff;
}

::selection {
    background: #16324f;
    color: #fff;
}

/* ========================================
   2. DESKTOP NAVIGATION
   ======================================== */
.announcement-bar {
    background: #102A43;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 1040;
    overflow: hidden;
    padding: 0.62rem 0;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.announcement-bar {
    background: #102A43;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 1040;
    overflow: hidden;
    padding: 0.62rem 0;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.announcement-bar a {
    color: #fff;
    font-weight: 400;
    text-decoration: none;
}

.announcement-bar a:hover {
    color: #fff !important;
    text-decoration: underline !important;
    opacity: 0.9;
}

.announcement-marquee {
    display: block;
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
}

.announcement-marquee__track {
    display: inline-flex;
    align-items: center;
    width: max-content;
    will-change: transform;
    animation: kh-marquee 40s linear infinite;
}

.announcement-marquee__group {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    gap: 2.75rem;
    padding-right: 2.75rem;
    white-space: nowrap;
    color: #fff;
    font-weight: 400;
}

.announcement-marquee__group span::after,
.announcement-marquee__group a::after {
    content: "•";
    margin-left: 2.75rem;
    opacity: 0.5;
}

.announcement-bar:hover .announcement-marquee__track {
    animation-play-state: paused;
}

@keyframes kh-marquee {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(-50%, 0, 0); }
}

.logo {
    width: 150px;
    height: 58px;
    object-fit: cover;
}

.brand-wordmark {
    display: inline-grid !important;
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
    column-gap: 0.7rem;
    row-gap: 0;
    align-items: center;
    text-decoration: none !important;
    line-height: 1;
    padding: 0.1rem 0;
}

.brand-wordmark::before {
    content: "";
    grid-column: 1;
    grid-row: 1 / 3;
    width: 3.1rem;
    height: 3.1rem;
    background: url("../img/logos/kongu-mark.svg?v=20260821l") center / contain no-repeat;
    box-shadow: none;
}

.brand-wordmark__name {
    grid-column: 2;
    grid-row: 1;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-style: italic;
    font-weight: 700;
    font-size: 1.72rem;
    letter-spacing: 0.01em;
    color: #102f3c;
    text-transform: none;
    line-height: 1;
}

.brand-wordmark__name::after {
    display: none;
}

.brand-wordmark__mark {
    grid-column: 2;
    grid-row: 2;
    font-family: "Jost", sans-serif;
    font-weight: 500;
    font-size: 0.7rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: #6a7d82;
    margin-top: 0.18rem;
    padding-left: 0.04em;
}

.brand-wordmark--light::before {
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.25));
}

.brand-wordmark--light .brand-wordmark__name {
    color: #ffffff;
}

.brand-wordmark--light .brand-wordmark__mark {
    color: #f0d7a8;
}

.brand-wordmark--center {
    justify-items: start;
}

.brand-wordmark--center .brand-wordmark__mark {
    padding-left: 0;
}

#header .brand-wordmark:hover {
    opacity: 0.9;
}

#header .navbar {
    min-height: 4.55rem;
}

#header.fixed-top {
    top: 0;
    background-color: #ffffff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: top 0.3s ease, box-shadow 0.3s ease;
}

#header.fixed-top .nav-link {
    color: var(--text-color);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: color 0.3s ease;
}

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

#header.fixed-top .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

#header.fixed-top .nav-link:hover::after,
#header.fixed-top .nav-link.active::after {
    width: 25px;
}

#header .btn-primary {
    background-color: #F0C014;
    border-color: #F0C014;
    color: #102A43;
    border-radius: 0.45rem;
    padding: 0.58rem 1.5rem;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    min-height: 2.65rem;
    margin-left: 1.35rem;
    box-shadow: 0 6px 16px rgba(240, 192, 20, 0.28);
}

#header .btn-primary:hover,
#header .btn-primary:focus,
#header .btn-primary:active {
    color: #102A43;
    background-color: #ddb00c;
    border-color: #ddb00c;
}

/* Dropdown Hover */
@media (min-width: 1200px) {
    .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

/* Body Padding for fixed header */
body,
body.pt-0 {
    padding-top: var(--header-height) !important;
    background: #ffffff !important;
    background-image: none !important;
    background-attachment: scroll !important;
}

.bg-body-tertiary,
.bg-light {
    background-color: #f6f4ef !important;
}

.script-font {
    color: #d4a017 !important;
}

@media (max-width: 1199.98px) {
    :root {
        --header-height: 104px;
    }

    .brand-wordmark__name {
        font-size: 1.5rem;
    }

    .brand-wordmark::before {
        width: 2.75rem;
        height: 2.75rem;
    }

    #header .navbar {
        min-height: 4.1rem;
    }
}

/* ========================================
   3. MOBILE NAVIGATION (OFFCANVAS & BOTTOM)
   ======================================== */

/* --- Mobile Bottom Nav --- */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-top: 1px solid rgba(16, 42, 67, 0.08);
    box-shadow: 0 -8px 24px rgba(16, 42, 67, 0.08);
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    padding: 0.45rem 0.35rem calc(0.45rem + env(safe-area-inset-bottom));
    z-index: 1050;
    transition: transform 0.3s ease-in-out;
}

.mobile-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #5b6570;
    font-size: 0.56rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    gap: 0.38rem;
    transition: color 0.2s ease;
    flex: 1;
    min-height: 3.25rem;
    text-align: center;
    line-height: 1.15;
    padding: 0 0.1rem;
}

.mobile-bottom-nav .nav-item span {
    max-width: 4.6rem;
}

.mobile-bottom-nav .nav-item i {
    font-size: 1.15rem;
    margin-bottom: 0;
    transition: transform 0.2s ease;
}

.mobile-bottom-nav .nav-item.active,
.mobile-bottom-nav .nav-item:hover {
    color: #102A43;
}

.mobile-bottom-nav .nav-item.active i {
    color: #F0C014;
}

.mobile-bottom-nav .nav-item:active i {
    transform: scale(0.9);
}

/* --- Mobile Offcanvas Menu --- */
.mobile-menu-minimal.offcanvas {
    background: #ffffff;
    max-width: 320px;
    width: 90%;
}

.mobile-menu-logo {
    max-width: 180px;
    height: auto;
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-menu-link {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: color 0.2s ease, padding-left 0.2s ease;
    letter-spacing: 0.3px;
}

.mobile-menu-link:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-menu-link:hover,
.mobile-menu-link.active {
    color: var(--primary-color);
    padding-left: 8px;
}

.mobile-menu-divider {
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin: 1.5rem 0;
}

/* --- Mobile Dropdown Styles --- */
.mobile-menu-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: color 0.2s ease;
    cursor: pointer;
    letter-spacing: 0.3px;
}

.mobile-menu-dropdown-toggle:hover {
    color: var(--primary-color);
}

.mobile-menu-dropdown-toggle i {
    transition: transform 0.3s ease;
    font-size: 0.875rem;
    color: var(--primary-color);
}

.mobile-menu-dropdown-toggle.active i {
    transform: rotate(180deg);
}

.mobile-menu-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 1rem;
}

.mobile-menu-submenu.show {
    max-height: 500px;
}

.mobile-menu-submenu-item {
    display: block;
    color: #555;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.mobile-menu-submenu-item:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
}

.mobile-menu-submenu-item:last-child {
    border-bottom: none;
}

/* --- Mobile Contact Section --- */
.mobile-menu-contact-title {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6c757d;
    margin-bottom: 1rem;
}

.mobile-menu-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.875rem;
    font-size: 0.95rem;
}

.mobile-menu-contact-item i {
    color: var(--primary-color);
    font-size: 1rem;
    width: 20px;
}

.mobile-menu-contact-item a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 500;
}

.mobile-menu-contact-item a:hover {
    color: var(--primary-color);
}

.mobile-menu-description {
    font-size: 0.8125rem;
    color: #6c757d;
    line-height: 1.5;
    margin-top: 1.25rem;
    margin-bottom: 0;
    font-style: italic;
}

.mobile-menu-minimal .btn-close {
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.mobile-menu-minimal .btn-close:hover {
    opacity: 1;
}

/* --- Mobile Book FAB --- */
.mobile-book-fab {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 1045;
    background: #0f2b5b;
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(15, 43, 91, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 2px solid white;
}

.mobile-book-fab:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 43, 91, 0.4);
    color: white;
}

/* Hide mobile elements on desktop */
@media (min-width: 992px) {

    .mobile-bottom-nav,
    .mobile-book-fab {
        display: none !important;
    }
}

/* Body padding adjustment */
@media (max-width: 991.98px) {
    body {
        padding-bottom: 70px;
    }
}

/* ========================================
   4. NEW BADGE STYLES (REDESIGNED)
   ======================================== */
.nav-item {
    position: relative;
}

.nav-badge {
    position: relative;
    display: inline-flex;
    align-items: baseline;
}

.badge-glow {
    font-size: 0.55rem;
    padding: 3px 7px;
    border-radius: 50px;
    /* Pill shape */
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    top: -8px;
    /* Move upper */
    left: -2px;
    /* Move close */
    box-shadow: 0 2px 6px rgba(255, 107, 107, 0.5);
    animation: pulseGlow 2s infinite;
    line-height: 1;
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 2px 6px rgba(255, 107, 107, 0.5);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 15px rgba(255, 107, 107, 0.7);
        transform: scale(1.05);
    }
}

/* Mobile specific badge adjustments */
.mobile-menu-link .badge-glow {
    font-size: 0.5rem;
    top: -5px;
    margin-left: 2px;
}

/* ========================================
   5. HERO SECTION STYLES
   ======================================== */
.hero-video {
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

#heroCarousel {
    height: 480px;
    min-height: 480px;
    max-height: 480px;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.4);
    animation: heroFadeIn 1.2s ease-out forwards;
}

#heroCarousel .carousel-inner,
#heroCarousel .carousel-item {
    height: 100%;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.08) saturate(1.18) contrast(1.06);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(16, 42, 67, 0.22) 0%, rgba(16, 42, 67, 0.48) 52%, rgba(10, 24, 38, 0.78) 100%);
    z-index: 2;
}

.hero-overlay--tours {
    background: linear-gradient(180deg, rgba(28, 18, 12, 0.18) 0%, rgba(22, 28, 38, 0.42) 40%, rgba(12, 22, 34, 0.84) 100%);
}

.hero-slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    color: #fff;
    text-align: center;
    padding: 1.15rem 0 2.4rem;
    animation: heroFadeIn 1.5s ease-out 0.3s backwards;
}

.hero-badge {
    display: inline-block;
    background: #F0C014;
    border: none;
    color: #102a43;
    font-family: "Jost", sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 0.42rem 0.9rem;
    border-radius: 0.4rem;
    margin-bottom: 0.95rem;
}

.hero-badge::before,
.hero-badge::after {
    content: none;
    display: none;
}

.hero-slide-content h1,
.hero-slide-content h2,
.hero-slide-content h4 {
    text-shadow: 0 4px 22px rgba(0, 0, 0, 0.45);
    margin-bottom: 0.85rem;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 1.22;
    color: #fff;
    font-size: clamp(1.35rem, 3.2vw, 2.35rem);
}

.hero-slide-content p {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
    opacity: 1;
    font-family: 'Jost', sans-serif;
    letter-spacing: 0.2px;
    font-weight: 400;
    max-width: 38rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
    color: #f4f7f8;
    font-size: clamp(0.92rem, 2.1vw, 1.15rem);
}

.text-highlight {
    color: #F0C014;
    background: none;
    -webkit-text-fill-color: #F0C014;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
    filter: none;
    font-weight: 700;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-nav-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #fff;
    transition: all 0.3s ease;
}

.carousel-control-prev:hover .carousel-nav-icon,
.carousel-control-next:hover .carousel-nav-icon {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.08);
}

#heroCarousel .carousel-indicators {
    bottom: 25px;
    z-index: 10;
}

#heroCarousel .carousel-indicators button {
    width: 5px;
    height: 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.7);
    margin: 0 6px;
    transition: all 0.3s ease;
}

#heroCarousel .carousel-indicators button.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.2);
}

/* Hero CTA */
.hero-cta-group {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 0.65rem;
    width: auto;
    max-width: none;
    margin: 1.05rem auto 0;
}

.hero-cta-group .btn {
    flex: 0 0 auto;
    width: auto;
    min-width: 0;
    white-space: nowrap;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 0.45rem;
    padding: 0.58rem 1.25rem;
    line-height: 1.2;
}

.hero-cta-group .btn-primary,
.hero-cta-group .hero-cta--solid {
    background: #F0C014;
    border: none;
    color: #102a43;
    box-shadow: 0 8px 22px rgba(16, 42, 67, 0.22);
}

.hero-cta-group .btn-primary:hover,
.hero-cta-group .hero-cta--solid:hover {
    background: #ddb00c;
    color: #102a43;
    transform: translateY(-1px);
}

.hero-cta-group .btn-outline-light,
.hero-cta-group .hero-cta--ghost {
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.9);
    background: transparent;
    box-shadow: none;
}

.hero-cta-group .btn-outline-light:hover,
.hero-cta-group .hero-cta--ghost:hover {
    background: #ffffff;
    color: #102a43;
    transform: translateY(-1px);
}

@media (min-width: 576px) {
    .hero-cta-group {
        gap: 0.75rem;
        max-width: none;
        margin-top: 1.15rem;
    }

    .hero-cta-group .btn {
        font-size: 0.82rem;
        padding: 0.62rem 1.4rem;
    }
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: scale(1.05);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Hero Responsive */
@media (max-width: 991.98px) {
    #heroCarousel {
        height: 42vh;
        min-height: 320px;
        max-height: 380px;
        border-radius: 0.85rem;
        margin-top: 0;
    }

    .hero-slide-content {
        padding: 0.85rem 0 1.8rem;
    }

    .hero-slide-content h1,
    .hero-slide-content h2,
    .hero-slide-content h4 {
        font-size: 1.35rem;
        margin-bottom: 0.55rem;
    }

    .hero-slide-content p {
        font-size: 0.88rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }

    #ourFleet.fleet-section {
        padding-top: 2.25rem !important;
        padding-bottom: 2.5rem !important;
    }
}

@media (max-width: 575.98px) {
    #heroCarousel {
        height: 400px;
        min-height: 400px;
        max-height: 400px;
        border-radius: 0;
        margin-top: 0;
        box-shadow: none;
        border: none;
    }

    .hero-slide-content {
        padding: 1.6rem 1rem 2.4rem;
    }

    .hero-slide-content h1,
    .hero-slide-content h2,
    .hero-slide-content h4 {
        font-size: 1.55rem;
        margin-bottom: 0.7rem;
        line-height: 1.28;
    }

    .hero-slide-content p {
        font-size: 0.92rem;
        line-height: 1.55;
        max-width: 22rem;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 0.38rem 0.8rem;
        margin-bottom: 0.85rem;
    }

    .hero-cta-group {
        margin-top: 1.15rem;
        gap: 0.6rem;
    }

    .hero-cta-group .btn {
        padding: 0.62rem 1.05rem;
        font-size: 0.75rem;
    }

    #heroCarousel .carousel-indicators {
        bottom: 14px;
    }

    #ourFleet.fleet-section {
        padding-top: 2.25rem !important;
        padding-bottom: 2.5rem !important;
    }

    #ourFleet .mb-10 {
        margin-bottom: 1.5rem !important;
    }
}

/* ========================================
   6. PACKAGE CARDS (MODERN REDESIGN)
   ======================================== */
.modern-package-card {
    position: relative;
    height: 360px;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 16px -4px rgba(0, 0, 0, 0.15), 0 4px 8px -2px rgba(0, 0, 0, 0.08);
}

.modern-package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 32px -8px rgba(0, 0, 0, 0.18), 0 12px 16px -4px rgba(0, 0, 0, 0.1);
}

.modern-package-card__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-package-card:hover .modern-package-card__image {
    transform: scale(1.05);
}

/* Premium gradient overlay for entire card */
.modern-package-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.15) 0%,
            rgba(0, 0, 0, 0.25) 30%,
            rgba(0, 0, 0, 0.4) 60%,
            rgba(0, 0, 0, 0.75) 100%);
    z-index: 1;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.modern-package-card:hover .modern-package-card__overlay {
    opacity: 0.95;
}

.modern-package-card__content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.15rem 1.15rem 1.1rem;
    color: #ffffff;
}

.modern-package-card__header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    min-height: 0;
    gap: 0.45rem;
}

.modern-package-card__duration {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    background: #F0C014;
    color: #102A43;
    padding: 0.32rem 0.7rem;
    border-radius: 0.4rem;
    align-self: flex-start;
    border: none;
    box-shadow: 0 2px 8px rgba(16, 42, 67, 0.18);
}

h3.modern-package-card__title {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.25;
    margin: 0;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.65);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

/* Tagline/subtitle */
.modern-package-card__tagline {
    font-size: 1rem;
    line-height: 1.4;
    opacity: 0.95;
    margin: 0;
    font-weight: 400;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
    font-style: italic;
    letter-spacing: 0.01em;
}

.modern-package-card__footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0;
    padding: 0.35rem 0 0 0;
    border-top: none;
    margin-top: 0;
}

.modern-package-card__price.invisible {
    display: none !important;
}

.modern-package-card__price-label {
    font-size: 0.75rem;
    opacity: 0.85;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.modern-package-card__price-value {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
}

/* Premium circular arrow button */
.modern-package-card__cta {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #1a1a1a;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25), 0 2px 8px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
    position: relative;
}

.modern-package-card__cta::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-package-card__cta:hover::before {
    opacity: 1;
}

.modern-package-card__cta:hover {
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    color: #000000;
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3), 0 6px 12px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.modern-package-card__cta:active {
    transform: translateY(-2px) scale(1.06);
}

/* Premium featured badge */
.modern-package-card__badge {
    position: absolute;
    display: none;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 10;
    background: linear-gradient(135deg, #ff3b3b 0%, #d32f2f 100%);
    color: #ffffff;
    padding: 0.65rem 1.25rem;
    font-size: 0.6875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border-radius: 6px;
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.5), 0 2px 8px rgba(0, 0, 0, 0.3);
    transform: rotate(3deg);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.modern-package-card:hover .modern-package-card__badge {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 0 8px 24px rgba(220, 53, 69, 0.6), 0 4px 12px rgba(0, 0, 0, 0.35);
}

.modern-package-card__badge::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #d32f2f;
}

.modern-package-card__badge::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid #b71c1c;
}

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

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

.row:has(.modern-package-card) {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem;
}

@media (min-width: 992px) {
    .row:has(.modern-package-card) {
        --bs-gutter-x: 1.75rem;
        --bs-gutter-y: 1.75rem;
    }
}

.modern-package-card[data-animate="true"] {
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Card Responsive */
@media (max-width: 768px) {
    .modern-package-card {
        height: 300px;
    }

    h3.modern-package-card__title {
        font-size: 1.05rem;
    }

    .modern-package-card__cta {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }

    .modern-package-card__badge {
        font-size: 0.625rem;
        padding: 0.4rem 0.85rem;
    }
}

@media (max-width: 576px) {
    .modern-package-card {
        height: 300px;
        width: 86%;
        max-width: 300px;
    }

    .modern-package-card__content {
        padding: 0.95rem;
    }

    h3.modern-package-card__title {
        font-size: 1rem;
        line-height: 1.3;
    }

    .modern-package-card__duration {
        font-size: 0.58rem;
        padding: 0.22rem 0.5rem;
    }

    .modern-package-card__cta {
        width: 34px;
        height: 34px;
    }

    .modern-package-card__price-value {
        font-size: 1.125rem;
    }

    .modern-package-card__badge {
        font-size: 0.5625rem;
        padding: 0.35rem 0.75rem;
        top: 0.75rem;
        right: 0.75rem;
    }
}

/* ========================================
   7. SERVICE CARDS (OVERLAY)
   ======================================== */
.service-card-overlay {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 280px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-card-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 2;
    transition: all 0.4s ease;
}

.service-card-overlay:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.service-card-overlay:hover::before {
    background: linear-gradient(180deg, rgba(46, 125, 50, 0.1) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.9) 100%);
}

.service-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.service-card-overlay:hover .service-card-img {
    transform: scale(1.1);
}

.service-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    z-index: 3;
}

.service-card-title {
    font-family: 'Jost', sans-serif;
    font-size: 1.35rem;
    text-transform: uppercase;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.service-card-overlay:hover .service-card-title {
    transform: translateY(-4px);
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.7);
}

@media (max-width: 767.98px) {
    .service-card-overlay {
        height: 240px;
    }

    .service-card-title {
        font-size: 1.2rem;
        letter-spacing: 1px;
        font-weight: 500;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .service-card-overlay {
        height: 260px;
    }
}

/* ========================================
   8. MISC UTILITIES & COMPONENTS
   ======================================== */
.btn-get-quote {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.3rem;
}

.btn-get-quote i {
    font-size: 1rem;
}

/* Quote Modal */
#quoteModal .modal-content {
    background: var(--body-bg);
    border-radius: 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 1.5rem 3rem rgba(33, 37, 41, 0.18);
}

#quoteModal .modal-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

#quoteModal .modal-body {
    padding-top: 1.25rem;
    padding-bottom: 1.5rem;
}

#quoteModal label {
    font-size: 0.75rem !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

#quoteModal .form-control,
#quoteModal .form-select {
    font-size: 0.85rem !important;
    padding: 0.5rem 0.75rem;
}

/* Feature Grid (for Check Room/Quick Actions if used) */
.card-check-room {
    max-width: 780px;
    width: 100%;
    margin: 0 auto;
    border-radius: 1.5rem;
    box-shadow: 0 0.5rem 2.5rem rgba(0, 0, 0, 0.18);
    background: rgba(24, 24, 24, 0.88);
    position: relative;
    z-index: 21;
}

.card-check-room .card-body {
    padding: 1.5rem 1.75rem 1.25rem !important;
}

/* Testimonials */
.testimonial-slider .splide__slide figure {
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 1.25rem;
    padding: 2.5rem 2rem;
}

/* Navbar Toggler */
.navbar-toggler {
    padding: 0.5rem;
    border-color: transparent;
    transition: all 0.2s ease-in-out;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler:hover .navbar-toggler-icon {
    transform: scale(1.1);
}

/* ========================================
   9. PAGE SPECIFIC STYLES (Moved from HTML)
   ======================================== */
:root {
    --tour-toolbar-offset: 7.5rem;
    --tour-toolbar-offset-hidden: 1.5rem;
}

#header {
    transition: transform 0.3s ease-in-out;
}

#header.header-hidden {
    transform: translateY(-100%);
}

#tourPackages .packages-search-card {
    position: static;
    z-index: 2;
}

#tourPackages .packages-toolbar {
    gap: 0.75rem;
}

@media (max-width: 575.98px) {
    #tourPackages #packageSearchForm {
        flex: 1 1 auto;
    }

    #tourPackages #packageSearchForm .input-group {
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    :root {
        --tour-toolbar-offset: 68px;
        --tour-toolbar-offset-hidden: 1rem;
    }
}

/* Mobile Nav Styles */
.mobile-nav-panel .offcanvas-body {
    padding: 2rem 1.75rem 2.5rem;
}

.mobile-nav-panel .mobile-nav-grid {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.mobile-nav-panel .mobile-nav-tile {
    border-radius: 1rem;
    padding: 1.35rem 1.1rem;
    background-color: rgba(255, 255, 255, 0.05);
    transition: all 0.25s ease-in-out;
}

.mobile-nav-panel .mobile-nav-tile.active,
.mobile-nav-panel .mobile-nav-tile:hover {
    background-color: rgba(15, 110, 253, 0.18);
    color: #fff;
}

.mobile-nav-panel .mobile-nav-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.85rem;
}

.mobile-nav-panel .social-links {
    padding-top: 3rem;
}

/* ========================================
   7. FLEET CARDS (NEW)
   ======================================== */


.fleet-section {
    background: #f6f4ef;
}

.fleet-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.55rem;
    margin-top: 1.15rem;
}

.fleet-highlights span {
    display: inline-flex;
    align-items: center;
    background: #fff;
    color: #102A43;
    border: 1px solid rgba(16, 42, 67, 0.1);
    border-radius: 0.4rem;
    padding: 0.4rem 0.8rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.fleet-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(16, 42, 67, 0.06);
    border: 1px solid rgba(16, 42, 67, 0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.fleet-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 36px rgba(16, 42, 67, 0.12);
    border-color: rgba(240, 192, 20, 0.45);
}

.fleet-card-img-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 220px;
    position: relative;
    overflow: hidden;
    padding: 1.5rem 1.5rem 0.5rem;
    background-color: #f8f9fa;
}

.fleet-card-img-wrapper::after {
    content: none;
}

/* Background Color Variants */
.bg-soft-blue {
    background-color: #f0f7ff;
}

.bg-soft-orange {
    background-color: #fff8f0;
}

.bg-soft-green {
    background-color: #f3fff8;
}

.bg-soft-purple {
    background-color: #fdf4ff;
}


.fleet-card-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.1));
    /* Softer, larger shadow */
}

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

.fleet-card-content {
    padding: 1.5rem 2rem 2rem;
    /* More breathing room */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.fleet-card-title {
    font-family: 'Jost', sans-serif;
    /* Modern sans-serif */
    font-weight: 600;
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    /* Darker, almost black */
    letter-spacing: -0.02em;
    text-transform: capitalize;
    /* Normal case */
}

/* New Badge Styles */
.fleet-badge {
    position: absolute;
    top: 1rem;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
}

.badge-left {
    left: 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: #1a1a1a;
    backdrop-filter: blur(4px);
}

.badge-right {
    right: 1rem;
    background: #1a1a1a;
    color: #fff;
}

.fleet-card-price {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0;
    /* Removed top padding/border for minimalism */
    border-top: none;
}

.price-tag {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.7rem;
    color: #4b5563;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-bottom: 2px;
}

.price-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #102A43;
    line-height: 1;
    font-family: 'Jost', sans-serif;
}

.fleet-book-btn {
    width: 44px;
    height: 44px;
    border-radius: 0.45rem;
    background: #F0C014;
    color: #102A43;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
    box-shadow: 0 4px 12px rgba(240, 192, 20, 0.35);
}

.fleet-book-btn:hover {
    background: #ddb00c;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(240, 192, 20, 0.4);
}

.fleet-disclaimer {
    font-size: 0.72rem;
    color: #5b6570;
    font-style: normal;
    line-height: 1.4;
    letter-spacing: 0.01em;
    max-width: 16rem;
}

@media (max-width: 767.98px) {
    .fleet-card {
        flex-direction: row;
        align-items: stretch;
        min-height: 0;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 4px 16px rgba(16, 42, 67, 0.08);
    }

    .fleet-card-img-wrapper {
        width: 38%;
        min-height: 112px;
        height: auto;
        padding: 1.2rem 0.45rem 0.55rem;
        flex-shrink: 0;
    }

    .fleet-card .bg-soft-blue {
        background-color: #d7e6f5;
    }

    .fleet-card .bg-soft-orange {
        background-color: #f0ddc0;
    }

    .fleet-card .bg-soft-green {
        background-color: #cfe8d8;
    }

    .fleet-card .bg-soft-purple {
        background-color: #e4d6f0;
    }

    .fleet-card-content {
        padding: 0.7rem 0.8rem 0.65rem 0.7rem;
        justify-content: center;
        gap: 0;
        flex-grow: 1;
    }

    h3.fleet-card-title {
        font-family: 'Jost', sans-serif;
        font-size: 1.02rem;
        font-weight: 700;
        letter-spacing: -0.02em;
        margin-bottom: 0;
        color: #102A43;
        text-transform: none;
    }

    .fleet-card-price {
        margin-top: 0.28rem;
        gap: 0.45rem;
        align-items: center;
    }

    .fleet-card .price-label {
        font-size: 0.6rem;
        letter-spacing: 0.1em;
        color: #9a7b12;
        margin-bottom: 2px;
    }

    .fleet-card .price-value {
        font-size: 1.22rem;
        font-weight: 800;
        color: #102A43;
        line-height: 1.1;
    }

    .fleet-book-btn {
        width: 36px;
        height: 36px;
        flex-shrink: 0;
        box-shadow: 0 3px 8px rgba(240, 192, 20, 0.4);
    }

    .fleet-disclaimer,
    .fleet-disclaimer.mt-3 {
        font-size: 0.65rem;
        font-style: normal;
        color: #6b7280;
        line-height: 1.35;
        margin-top: 0.32rem !important;
        letter-spacing: 0;
        max-width: none;
    }

    .fleet-badge {
        top: 0.45rem;
        padding: 0.2rem 0.5rem;
        font-size: 0.62rem;
        font-weight: 700;
        box-shadow: none;
    }

    .badge-left {
        left: 0.45rem;
        background: #F0C014;
        color: #102A43;
    }
}

/* ========================================
   12. BANNER TEXT CONTRAST
   ======================================== */
.banner-text-contrast {
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8), 0 2px 4px rgba(0, 0, 0, 1) !important;
}

.banner-text-contrast a,
.banner-text-contrast h1,
.banner-text-contrast li {
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8), 0 2px 4px rgba(0, 0, 0, 1) !important;
}

/* ========================================
   13. INNER PAGE BANNERS
   ======================================== */
.inner-page-banner {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #2b2b2b;
    background-attachment: scroll !important;
    margin-top: 0;
    min-height: 220px;
    padding: 2.25rem 1.1rem !important;
    text-align: center;
}

.inner-page-banner__photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 70%;
    z-index: 0;
    pointer-events: none;
}

.inner-page-banner__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 18, 24, 0.45);
    z-index: 1;
    pointer-events: none;
}

.inner-page-banner .bg-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.inner-page-banner h1 {
    margin-left: auto;
    margin-right: auto;
    max-width: 18ch;
    font-size: clamp(1.2rem, 2.4vw, 1.85rem);
    line-height: 1.28;
    letter-spacing: 0.04em;
    font-weight: 600;
}

.inner-page-banner .breadcrumb {
    justify-content: center;
}

@media (min-width: 992px) {
    .inner-page-banner {
        min-height: 280px;
        height: 280px;
        padding: 2rem 1.5rem !important;
    }
}

@media (max-width: 575.98px) {
    .inner-page-banner {
        min-height: 200px;
        padding: 1.75rem 1rem !important;
    }

    .inner-page-banner h1 {
        max-width: 14ch;
        font-size: 1.2rem;
    }
}

/* ========================================
   14. CORPORATE ENQUIRY LAYOUT
   ======================================== */
.corp-lead-row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 2rem;
}

@media (min-width: 992px) {
    .corp-lead-row {
        --bs-gutter-x: 3rem;
        --bs-gutter-y: 0;
    }
}

.corp-intro-col {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.corp-enquiry-card {
    background: #eef3f1;
    border: 1px solid #d0dbd6;
    border-left: 4px solid var(--secondary-color);
    box-shadow: 0 14px 36px rgba(8, 73, 94, 0.12);
    height: 100%;
}

.corp-enquiry-card .form-control,
.corp-enquiry-card .form-select {
    background-color: #fff;
    border-color: #c9d4cf;
}

.corp-point {
    background: #f7f8f8;
    border: 1px solid #eceeed;
    border-radius: 0.4rem;
    padding: 0.85rem 1rem;
    height: 100%;
}

.corp-point i {
    color: var(--secondary-color);
}

/* Taxi page: friendly info panel */
.taxi-booking-card {
    background: #fff;
    border: 1px solid rgba(16, 42, 67, 0.08);
    border-radius: 0.7rem;
    box-shadow: 0 10px 28px rgba(16, 42, 67, 0.06);
}

.taxi-friendly-panel {
    background: linear-gradient(165deg, #FFF8DC 0%, #FFFDF6 58%, #F8F1D4 100%);
    border: 1px solid rgba(240, 192, 20, 0.38);
    border-radius: 0.7rem;
    box-shadow: 0 10px 28px rgba(16, 42, 67, 0.06);
}

.taxi-friendly-panel__title {
    color: #102A43;
    letter-spacing: 0.04em;
}

.taxi-friendly-list li {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(16, 42, 67, 0.06);
    border-radius: 0.45rem;
    padding: 0.85rem 0.95rem;
}

.taxi-friendly-list i {
    color: #102A43;
}

.taxi-friendly-callout {
    background: #102A43;
    border: none;
    border-radius: 0.45rem;
}

.taxi-friendly-callout h4 {
    color: #F0C014;
}

.taxi-friendly-callout p {
    color: rgba(255, 255, 255, 0.78);
}

.taxi-friendly-callout .btn {
    background: #F0C014;
    border-color: #F0C014;
    color: #102A43;
}

.taxi-friendly-callout .btn:hover {
    background: #ffe56a;
    border-color: #ffe56a;
    color: #102A43;
}