:root {
    --color-navy: #001f3f;
    --color-navy-dark: #002a55;
    --color-navy-footer: #030923;
    --color-gold: #c5a059;
    --color-gold-light: #e8c56a;
    --color-gold-dark: #b8860b;
    --color-cream: #fdf5e6;
    --color-cream-border: #e8dcc8;
    --color-text: #666666;
    --color-text-muted: #737373;
    --gradient-gold: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    --gradient-navy: linear-gradient(to right, var(--color-navy), var(--color-navy-dark));
    --gradient-gold-btn: linear-gradient(to right, var(--color-gold), var(--color-gold-dark));
    --gradient-hero: linear-gradient(to bottom right, #feffff, var(--color-cream));
    --bs-primary: var(--color-navy);
    --bs-primary-rgb: 0, 31, 63;
    --bs-link-color: var(--color-gold);
    --bs-link-hover-color: var(--color-gold-dark);
}

.btn-primary {
    background-color: var(--color-navy);
    border-color: var(--color-navy);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--color-navy-dark);
    border-color: var(--color-navy-dark);
}

.btn-outline-primary {
    color: var(--color-navy);
    border-color: var(--color-navy);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background-color: var(--color-navy);
    border-color: var(--color-navy);
    color: #fff;
}

body {
    font-family: "Outfit", sans-serif !important;
    font-optical-sizing: auto;
    font-style: normal;
    color: var(--color-text);
}

* {
    outline: none;
}

.mainMenu .nav-link {
    color: var(--color-navy) !important;
    font-size: 16px;
    font-weight: 500;
    position: relative;
}

.mainMenu {
    box-shadow: 0px 0px 10px #ccc;
    z-index: 1;
    position: relative;
}

.siteHeaderLogo {
    max-height: 56px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
}

.siteFooterLogo {
    max-height: 56px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.heading40 {
    color: var(--color-navy);
    font-size: 40px;
    font-weight: 700;
    line-height: 48px;
}

button#currencyDropdown {
    border-radius: 42px;
    padding-left: 20px;
    padding-right: 20px;
    background: var(--color-cream) !important;
    color: var(--color-navy) !important;
    border-color: var(--color-cream-border);
}

ul.menuList {
}

    ul.menuList > li {
        position: relative;
    }

        ul.menuList > li:after {
            content: ".";
            position: absolute;
            transform: translate(-50%,-50%);
            top: 38%;
            font-size: 20px;
        }

        ul.menuList > li:first-child::after {
            display: none;
        }

.topBannerArea {
    background-image: url('../img/banner-bg.png');
    background-color: var(--color-cream);
    background-position: center;
    background-size: cover;
    padding: 50px 0px 100px;
}

.bannerContent {
}

    .bannerContent h1 {
        font-weight: 700;
        color: var(--color-navy);
        font-size: 50px;
        padding-right: 1rem;
        line-height: 58px;
    }

    .bannerContent p {
        font-weight: 400;
        color: var(--color-text);
        font-size: 20px;
        margin: 0px;
    }

    .bannerContent span.divider {
        width: 150px;
        background: var(--color-gold);
        display: inline-block;
        height: 6px;
        margin: 20px 0px;
    }


.bannerPhone .rounded-circle {
    width: 48px;
    height: 48px;
}

.bannerPhone p {
    font-family: 400;
    color: var(--color-text);
    font-size: 16px;
}

.bannerPhone h5 {
    font-weight: 900;
    color: var(--color-navy);
    font-size: 32px;
}

.form-inline .form-control {
    width: auto;
    flex: 1;
    margin-right: 10px;
}

.form-inline .btn {
    margin-left: 10px;
}

.iconBoxArea {
    padding: 50px 0px 200px;
    background: var(--gradient-hero);
}

    .iconBoxArea .heading h2 {
        margin-bottom: 50px;
    }

.iconBox {
}

    .iconBox img {
        max-width: 86px;
        max-height: 86px;
    }

    .iconBox .heading {
        color: var(--color-navy);
        font-weight: 700;
        font-size: 22px;
        margin: 10px 0px;
    }

    .iconBox .content {
        color: var(--color-text);
        font-weight: 400;
        font-size: 16px;
    }

.seperators {
    position: relative;
}

    .seperators:before {
        content: url('../img/left-seperator.png');
        position: absolute;
        left: -123px;
        top: 12%;
    }

    .seperators:after {
        content: url('../img/right-seperator.png');
        position: absolute;
        right: -123px;
        top: 16%;
    }

.phoneBg {
    background: var(--gradient-gold);
}


.carImg {
    margin-top: 40px;
    margin-bottom: 0px;
    position: relative;
    z-index: 10;
}

.homeMission {
    padding: 180px 0 50px;
}

.homeMissionContent {
}

span.smallContent {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-gold);
}

.homeMissionContent .divider {
    width: 100px;
    background: var(--color-text);
    height: 4px;
    display: inline-block;
    margin: 20px 0px;
}

.homeMissionContent p {
    margin: 0px;
    line-height: 26px;
    font-size: 20px;
    color: var(--color-text);
}

.countriesSection {
    padding: 50px 0px;
    background: var(--color-cream);
}

.masonaryCountry {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Four columns */
    grid-auto-rows: 10px; /* Base height unit for masonry */
    gap: 20px;
}

.mContryBox {
    position: relative;
}

    .mContryBox:after {
        content: "";
        position: absolute;
        z-index: 1;
        background: rgb(0 31 63 / 59%);
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        border-radius: 20px;
    }
    /* Explicit row spans for masonry layout */
    .mContryBox.span360 {
        height: 360px; /* Height 360px (36 * 10px base height) */
    }

    .mContryBox.span230 {
        height: 230px; /* Height 360px (36 * 10px base height) */
    }

    .mContryBox .img {
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        border-radius: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .mContryBox .title {
        margin-top: 10px;
        font-size: 22px;
        text-align: center;
        font-weight: bold;
        color: #fff;
        position: absolute;
        left: 20px;
        bottom: 10px;
        z-index: 2;
    }


.color-white {
    color: #fff !important;
}

.topDestis {
    background: var(--color-cream);
}

    .topDestis .bgArea {
        min-height: 500px;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .topDestis .contentArea {
    }

.contentArea {
    padding: 50px;
}

.topDesis {
    max-height: 320px;
    overflow-y: auto;
}

.topDesis .list-inline-item {
    margin-bottom: 8px;
}

a.Desti {
    text-decoration: none;
    display: block;
    background: #fff;
    border: 1px solid #d3d3d3;
    border-radius: 50px;
    padding: 10px 30px;
    margin-block: 5px;
    transition: all 0.3s ease;
}

    a.Desti span.DestiName {
        font-size: 14px;
        color: var(--color-text);
        display: block;
        transition: color 0.3s ease;
    }

    a.Desti span.DestCounts {
        font-size: 14px;
        color: var(--color-gold);
        display: block;
        transition: color 0.3s ease;
    }

    a.Desti:hover {
        background: linear-gradient(to right, var(--color-gold), var(--color-navy)) !important;
        border-color: transparent !important;
        color: #fff !important;
        box-shadow: 0 4px 15px rgba(0, 31, 63, 0.15);
    }

        a.Desti:hover span.DestiName,
        a.Desti:hover span.DestCounts {
            color: #fff;
        }

.popularRoutes {
    padding: 50px 0px;
}


.borderColumnArea .borderColumn {
    border-right: 2px dotted #bcbbcc;
}

    .borderColumnArea .borderColumn:nth-child(4n) {
        border-right: 0px;
    }

a.popDesti {
    display: block;
    text-decoration: none;
    padding-bottom: 10px;
    padding-top: 10px;
}

    a.popDesti .from {
        font-size: 16px;
        display: inline-block;
        color: #fff;
        background: var(--color-gold);
        border-radius: 20px;
        padding-left: 10px;
        padding-right: 10px;
        margin-bottom: 10px;
    }

    a.popDesti .to {
        color: var(--color-text);
        font-size: 16px;
    }

    a.popDesti .price {
        color: var(--color-navy);
        font-weight: 600;
        font-size: 18px;
    }

    a.popDesti small {
        color: var(--color-text);
        font-size: 16px;
        font-weight: 400;
    }

/* Position arrows and dots below the carousel */
.vehcileArea .owl-carousel .owl-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

    .vehcileArea .owl-carousel .owl-nav button {
        background: var(--color-navy);
        color: #fff;
        border: none;
        padding: 10px 15px;
        border-radius: 50%;
        cursor: pointer;
    }

.owl-carousel .owl-nav button:hover {
    background: var(--color-navy-dark);
}

.vehcileArea .owl-carousel .owl-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

        .vehcileArea .owl-carousel .owl-dots .owl-dot {
        background-color: var(--color-gold);
        border-radius: 50%;
        width: 12px;
        height: 12px;
    }

        .vehcileArea .owl-carousel .owl-dots .owl-dot.active {
            background-color: var(--color-navy);
        }

/* Image Styling */
.vehcileArea .owl-carousel .item img {
    width: auto;
    height: auto;
}

.vehcileArea .owl-dot span {
    display: none !important;
}

.vehcileArea .owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 30px !important;
}

.vehcileArea {
    padding: 50px 0px;
    background: linear-gradient(to bottom, #f5f0e8, var(--color-cream)),
        linear-gradient(to right, rgba(197, 160, 89, 0.12), #ffffff);
    background-blend-mode: normal;
}

.countryTabArea {
    padding: 50px 0px;
}

.vehcileBox {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(0, 31, 63, 0.08);
    height: 100%;
}

    .vehcileBox .vehcileImg {
        height: 160px;
        line-height: 160px;
        border: 1px solid #d3d3d3;
        background: #fff;
        border-radius: 15px;
        padding: 10px;
        margin-bottom: 15px;
    }

        .vehcileBox .vehcileImg img {
            max-width: 100%;
        }

    .vehcileBox .title {
        color: var(--color-navy);
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 5px;
    }

    .vehcileBox ul.features > li {
        font-size: 14px;
        color: var(--color-text);
        margin-bottom: 6px;
    }

    .vehcileBox ul > li {
        font-size: 16px;
        color: var(--color-navy);
        font-weight: 400;
    }

        .vehcileBox ul > li i {
            color: var(--color-gold);
        }

    .vehcileBox .priceArea {
        border-top: 1px solid #c4cede;
        margin-top: 10px;
        padding-top: 10px;
    }

        .vehcileBox .priceArea .price {
            color: var(--color-navy);
            font-size: 22px;
            font-weight: 700;
        }

        .vehcileBox .priceArea .button {
            color: #fff;
            display: inline-block;
            background: var(--gradient-gold);
            text-decoration: none;
            padding: 7px 30px;
            border-radius: 30px;
        }

.claim-tab .nav-tabs {
    border-bottom: 2px solid #ddd;
}

    .claim-tab .nav-tabs .nav-link {
        border: none;
        color: var(--color-navy);
        font-size: 20px;
        font-weight: 700;
    }

        .claim-tab .nav-tabs .nav-link:hover {
            color: var(--color-gold);
            border-bottom: 3px solid var(--color-gold);
        }

        .claim-tab .nav-tabs .nav-link.active {
            color: var(--color-navy);
            font-weight: bold;
            border-bottom: 3px solid var(--color-gold);
        }

ul.listroutes {
    -moz-column-count: 3;
    -ms-column-count: 3;
    -webkit-column-count: 3;
    column-count: 3;
}

    ul.listroutes > li a {
        text-decoration: none;
        color: var(--color-navy);
        font-size: 20px;
        font-weight: 400;
    }

.claim-tab .icon {
    display: inline-block;
    border: 1px solid transparent;
    padding: 10px;
    border-radius: 52px;
    margin-bottom: 10px;
    background: #FFF;
    box-shadow: 0px 0px 17px #ccc;
}


/*.claim-tab .active .icon {
    display: block;
    border: 1px solid transparent;
    padding: 10px;
    border-radius: 52px;
    margin-bottom: 10px;*/
/*background: linear-gradient(to right, #4cdbfb, #2143b5);*/
/*box-shadow: 0px 0px 17px #ccc;
}*/

.claim-tab .nav {
    background-image: url('../img/icon-bg.png');
    background-position: 0 38%;
    background-repeat: repeat-x;
}

.claim-tab .nav-tabs .nav-item.show .nav-link, .claim-tab .nav-tabs .nav-link.active {
    color: #495057;
    background-color: transparent;
}


/* Custom CSS for FAQ */
.faqArea {
    padding: 50px 0px;
    background: var(--color-cream);
}

.custom-faq .accordion-item {
    border: 0px solid #ddd;
    border-bottom: 1px solid #ddd;
    border-radius: 5px;
    background-color: transparent;
}

.custom-faq .accordion-button {
    background-color: transparent;
    border: none;
    box-shadow: none;
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    font-size: 22px;
    font-weight: bold;
    color: var(--color-navy);
}

    .custom-faq .accordion-button:focus {
        box-shadow: none;
        background-color: transparent;
    }

    .custom-faq .accordion-button.collapsed {
        color: var(--color-navy);
    }

.custom-faq .accordion-item:not(:last-of-type) {
    margin-bottom: 10px;
}

.custom-faq .accordion-item.active {
    border: none; /* Removes the border of the active item */
}

.custom-faq .accordion-button::after {
    content: "+";
    font-size: 1.5rem;
    color: var(--color-gold);
    transform: rotate(0deg);
    transition: transform 0.2s ease-in-out;
    background-image: none;
}

.custom-faq .accordion-button:not(.collapsed)::after {
    content: "-";
    transform: rotate(180deg);
    background-image: none;
    background-color: none;
}

.custom-faq .accordion-body {
    font-size: 1rem;
    color: #555;
    background-color: transparent;
    padding: 1rem;
}

.blogArea {
}

.blogSlider .owl-nav {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

blogSlider .owl-nav button {
    width: 50px;
    height: 50px;
    border: 2px solid #ddd;
    border-radius: 50%;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-navy);
    font-size: 20px;
    transition: all 0.3s ease-in-out;
}

    blogSlider .owl-nav button:hover {
        background-color: var(--color-navy);
        color: #fff;
        border-color: var(--color-navy);
    }

    blogSlider .owl-nav button.owl-prev::after {
        font-family: "Font Awesome 5 Free";
        content: "\f104"; /* Font Awesome previous icon */
        font-weight: 900;
    }

    blogSlider .owl-nav button.owl-next::after {
        font-family: "Font Awesome 5 Free";
        content: "\f105"; /* Font Awesome next icon */
        font-weight: 900;
    }

blogSlider .owl-carousel .item {
    text-align: center;
    padding: 20px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 10px;
}

    blogSlider .owl-carousel .item h4 {
        margin: 0;
        font-size: 24px;
        color: #333;
    }

.blogArea {
    padding: 50px 0px;
}

.blogBox {
}

    .blogBox .image img {
        border-radius: 20px;
    }

    .blogBox .title {
        font-size: 22px;
        color: var(--color-navy);
        font-weight: 700;
        margin: 20px 0px 10px;
    }

    .blogBox .desc {
        font-size: 16px;
        color: var(--color-text);
        font-weight: 400;
        margin-bottom: 10px;
    }

    .blogBox a.link {
        text-decoration: none;
        color: var(--color-gold);
        font-size: 16px;
    }

/* Services catalog */
.serviceArea {
    padding: 50px 0 80px;
    background: var(--gradient-hero);
}

.serviceBox {
    background: #fff;
    border-radius: 12px;
    padding: 28px 22px 24px;
    box-shadow: 0 8px 24px rgba(0, 31, 63, 0.08), inset 0 4px 0 0 var(--color-gold);
    text-align: center;
    min-height: 100%;
}

.serviceIcon {
    width: 88px;
    height: 88px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: var(--color-navy);
    border: 3px solid var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
}

.serviceIcon img {
    max-width: 44px;
    max-height: 44px;
    object-fit: contain;
}

.serviceTitle {
    color: var(--color-navy);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.serviceDesc {
    color: var(--color-text);
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.serviceLink {
    color: var(--color-gold);
    font-weight: 600;
    text-decoration: none;
}

.serviceLink:hover {
    color: var(--color-navy);
}

.serviceArea button.owl-next,
.serviceArea button.owl-prev,
.serviceSlider button.owl-next,
.serviceSlider button.owl-prev {
    display: inline-block;
    background: linear-gradient(to right, var(--color-gold), var(--color-navy)) !important;
    border: none !important;
    padding: 10px !important;
    border-radius: 30px !important;
    width: 36px;
    height: 36px;
    color: #fff !important;
}

.serviceArea button.owl-prev,
.serviceSlider button.owl-prev {
    background: #fff !important;
    border: 1px solid var(--color-navy) !important;
    color: var(--color-navy) !important;
}

.serviceQueryForm .card-body {
    border-top: 3px solid var(--color-gold);
}

.serviceQueryForm.contactFormBox {
    border-top: none;
    box-shadow: 0 8px 24px rgba(0, 31, 63, 0.08), inset 0 4px 0 0 var(--color-gold);
}

.serviceQueryForm .form-label {
    color: var(--color-navy);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
}

.serviceQueryForm .form-control,
.serviceQueryForm .form-select {
    border-color: var(--color-cream-border);
    box-shadow: none;
}

.serviceQueryForm .form-control:focus,
.serviceQueryForm .form-select:focus {
    border-color: var(--color-gold);
}

.blogArea button.owl-next,
.blogArea button.owl-prev {
    display: inline-block;
    background-color: transparent !important;
    border: 1px solid var(--color-navy) !important;
    padding: 10px !important;
    border-radius: 30px !important;
    width: 30px;
    color: var(--color-navy) !important;
    height: 30px;
}


.blogBox .image {
    position: relative;
}

    .blogBox .image .date {
        position: absolute;
        background: var(--gradient-gold);
        display: inline-block;
        color: #fff;
        bottom: -15px;
        padding: 5px 10px;
        font-size: 14px;
        font-weight: 500;
        border-radius: 6px;
        left:0px;
    }


.footerArea {
    background-color: #030923;
    background-image: url('../img/fbgimg.png');
    background-position: right center;
    background-repeat: no-repeat;
    padding: 50px 0px;
    color: #fff;
}

    .footerArea .fLogo img {
        margin-bottom: 10px;
        filter: brightness(0) invert(1);
        max-height: 50px; /* optional: ensure it fits nicely */
    }

    .footerArea .fLinks h4 {
        color: var(--color-gold);
        font-size: 22px;
        font-weight: 600;
        position: relative;
        padding-bottom: 10px;
    }

        .footerArea .fLinks h4:after {
            content: "";
            background-color: #34384d;
            height: 2px;
            position: absolute;
            bottom: 0px;
            left: 0px;
            width: 100%;
        }

    .footerArea .contact-info span {
        font-family: "Outfit", sans-serif;
        font-size: 16px;
        font-weight: 500;
    }


    .footerArea .fLinks ul > li {
        margin-bottom: 12px;
    }

    .footerArea .fLinks ul > li a {
        color: #fff;
        text-decoration: none;
        font-size: 16px;
        font-weight: 500;
        font-family: "Outfit", sans-serif;
    }

    .footerArea .fLinks ul.columns2 {
        -moz-column-count: 2;
        -ms-column-count: 2;
        -webkit-column-count: 2;
        column-count: 2;
    }

.fsocialArea {
    position: relative;
    text-align: center;
}

    .fsocialArea:after {
        content: "";
        height: 1px;
        width: 100%;
        background: #bcbbcc;
        left: 0px;
        top: 50%;
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        position: absolute;
        z-index: 0;
    }

    .fsocialArea ul {
        display: inline-block;
        margin: 0 auto;
        background: #030923;
        padding: 10px 20px;
        z-index: 1;
        position: relative;
    }

        .fsocialArea ul > li {
            width: 34px;
            height: 34px;
            text-align: center;
            line-height: 34px;
            border: 1px solid #fff;
            color: #fff;
            border-radius: 40px;
        }

            .fsocialArea ul > li a {
                color: #fff;
                text-decoration: none;
            }

            .fsocialArea ul > li.facebook {
                border-color: #1875ee;
                background-color: #1875ee;
            }

                .fsocialArea ul > li.facebook a {
                    display: block;
                    color: #fff;
                }

                .fsocialArea ul > li.facebook:hover {
                    opacity: 0.9;
                }

                    .fsocialArea ul > li.facebook:hover a {
                        color: #fff;
                    }

            .fsocialArea ul > li.linkedin {
                border-color: #0272b0;
                background-color: #0272b0;
            }

                .fsocialArea ul > li.linkedin a {
                    display: block;
                    color: #fff;
                }

                .fsocialArea ul > li.linkedin:hover {
                    opacity: 0.9;
                }

                    .fsocialArea ul > li.linkedin:hover a {
                        color: #fff;
                    }

            .fsocialArea ul > li.whatsapp {
                border-color: #4abe5a;
                background-color: #4abe5a;
            }

                .fsocialArea.whatsapp a {
                    display: block;
                    color: #fff;
                }

                .fsocialArea ul > li.whatsapp a {
                    display: block;
                    color: #fff;
                }

                .fsocialArea ul > li.whatsapp:hover {
                    opacity: 0.9;
                }

                    .fsocialArea ul > li.whatsapp:hover a {
                        color: #fff;
                    }

            .fsocialArea ul > li.instagram {
                border-color: transparent;
                background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
                color: #fff;
            }

                .fsocialArea ul > li.instagram a {
                    color: #fff;
                }

                .fsocialArea ul > li.instagram:hover {
                    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
                }

                    .fsocialArea ul > li.instagram:hover a {
                        color: #fff;
                    }

.footerArea .copyright {
    font-size: 14px;
    color: #fefeff;
    text-align: center;
}


.bookingForm {
    position: relative;
    z-index: 10;
    margin-top: -56px;
    padding: 0 4px;
}

.bookingFormContainer {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 12px;
    padding-right: 12px;
}

.bookingFormWrap {
    width: 100%;
}

.bookingTabs {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    margin: 0;
    padding: 0;
}

.bookingTab {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    padding: 10px 14px 9px;
    border: none;
    border-radius: 10px 10px 0 0;
    background: var(--color-navy);
    color: #fff;
    cursor: pointer;
    transition: background 0.2s ease;
    text-align: left;
}

.bookingTabIcon {
    flex: 0 0 16px;
    font-size: 14px;
    line-height: 1;
    opacity: 0.95;
}

.bookingTabText {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}

.bookingTabLine {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1.2;
    text-transform: uppercase;
    white-space: nowrap;
}

.bookingTab.active {
    background: var(--color-gold);
    color: #fff;
    padding-bottom: 11px;
}

.bookingTab:hover:not(.active) {
    background: var(--color-navy-dark);
}

.bookingSearchBar {
    display: flex;
    align-items: stretch;
    min-height: 86px;
    background: #fff;
    border-radius: 44px 44px 44px 44px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.11);
    overflow: visible;
    position: relative;
}

.locationPair {
    display: flex;
    flex: 2.5 1 0;
    min-width: 0;
    position: relative;
    align-items: stretch;
}

.locationPair .searchField {
    flex: 1 1 0;
}

.locationPair .pickupField {
    padding-right: 28px;
}

.locationPair .dropoffField {
    padding-left: 28px;
    border-left: 1px solid #d9d9d9;
}

.searchField {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 14px 22px;
    position: relative;
    border-right: 1px solid #d9d9d9;
}

.searchField label {
    font-size: 10px;
    color: #737373;
    margin-bottom: 5px;
    font-weight: 400;
    line-height: 1;
}

.searchField input {
    border: 0;
    background: transparent;
    padding: 0;
    color: var(--color-navy);
    font-size: 16px;
    font-weight: 700;
    width: 100%;
    outline: none;
    box-shadow: none;
    line-height: 1.3;
}

.datetimeField {
    flex: 0.95 1 0;
    max-width: 220px;
}

.searchField input::placeholder {
    color: #b0b0b0;
    font-weight: 500;
}

.searchField input:focus {
    outline: none;
    box-shadow: none;
}

.locationSuggestions {
    position: absolute;
    top: calc(100% + 6px);
    left: 12px;
    right: 12px;
    z-index: 200;
    list-style: none;
    margin: 0;
    padding: 0;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    max-height: 240px;
    overflow-y: auto;
}

.locationSuggestions li {
    padding: 10px 14px;
    font-size: 14px;
    color: var(--color-navy);
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
}

.locationSuggestions li:last-child {
    border-bottom: none;
}

.locationSuggestions li:hover,
.locationSuggestions li.active {
    background: var(--color-cream);
}

.locationSuggestions li.muted {
    color: #999;
    cursor: default;
    font-style: italic;
}

.swapBtn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 34px;
    height: 34px;
    z-index: 5;
    border: 1px solid #c8c8c8;
    border-radius: 50%;
    background: #fff;
    color: #666;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    transition: border-color 0.2s, color 0.2s;
}

.swapBtn:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.searchBtn {
    flex: 0 0 96px;
    border: none;
    border-radius: 0 44px 44px 0;
    background: linear-gradient(90deg, #c5a059 0%, #a8843f 22%, #3d5270 55%, #001f3f 100%);
    color: #fff;
    font-size: 36px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
    margin: 0;
    padding: 0;
}

.searchBtn:hover {
    opacity: 0.94;
}

.searchBtn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.searchError {
    margin-top: 10px;
    padding: 10px 16px;
    border-radius: 8px;
    background: #f8d7da;
    color: #842029;
    font-size: 14px;
    text-align: center;
}

.testimonialArea {
    padding: 40px 0 20px;
    background: #fff;
}

.testimonialBox {
    background: var(--color-cream);
    border-radius: 16px;
    padding: 28px 24px;
    min-height: 220px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.testimonialBox .message {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    margin: 12px 0 18px;
}

.testimonialBox .author {
    font-weight: 700;
    color: var(--color-navy);
    margin: 0;
}

.testimonialBox .author span {
    display: block;
    font-weight: 500;
    font-size: 14px;
    color: var(--color-text-muted);
}

.clientLogoArea {
    padding: 10px 0 40px;
    background: #f8fafc;
}

.clientLogoImg {
    max-height: 64px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(20%);
}

.fSubscribe .input-group .form-control {
    border-radius: 8px 0 0 8px;
}

.fSubscribe .input-group .btn {
    border-radius: 0 8px 8px 0;
}

.headerLocaleCurrency .localeToggle .btn {
    min-width: 42px;
    border-radius: 20px;
    padding: 4px 10px;
}

.pac-container {
    z-index: 10000 !important;
    border-radius: 8px;
    font-family: "Outfit", sans-serif;
}

@media (max-width: 1100px) {
    .bookingTab {
        padding: 10px 8px;
        gap: 6px;
    }

    .bookingTabLine {
        font-size: 8px;
        letter-spacing: 0.04em;
    }

    .bookingTabIcon {
        font-size: 14px;
        flex-basis: 14px;
    }

    .searchField {
        padding: 14px 16px;
    }

    .searchField input { font-size: 14px; }
}

    .bookingForm .fieldsArea {
        background-color: #fff;
    }

    .bookingForm form.legacySearch {
        box-shadow: 0px 0px 10px #ccc;
        border-radius: 100px;
        margin-top: -56px;
        background: #fff;
    }


.vc_custom_1552832366563 {
    background-image: url(/images/top-bg-1.jpg) !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    padding-top: 0px;
    position: relative;
}

section.vc_custom_1552832366563.masthead {
    height: auto;
}

.masthead .page-heading, .masthead .post-heading, .masthead .site-heading {
    padding: 100px 0;
    color: #fff;
    position: relative;
}

    .masthead .page-heading h1, .masthead .site-heading h1 {
        font-weight: 800;
        font-size: 50px;
        margin-top: 0;
    }

    .masthead .page-heading .subheading, .masthead .site-heading .subheading {
        font-size: 24px;
        font-weight: 300;
        line-height: 1.1;
        display: block;
        margin: 10px 0 0;
    }

.post-preview > a {
    text-decoration: none;
}

    .post-preview > a > .post-title {
        color: #000;
        font-weight: 800;
        font-size: 30px;
        margin-top: 30px;
        margin-bottom: 15px;
    }

.post-preview > .post-meta {
    font-size: 18px;
    font-style: italic;
    margin-top: 0;
    color: #868e96;
    margin-bottom: 30px;
}

    .post-preview > .post-meta > a {
        text-decoration: none;
        color: #212529;
    }

.btn-nextPrev {
    font-size: 14px;
    font-weight: 800;
    padding: 10px 25px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 0;
    color: #fff;
    border-radius: 100px;
}

.btn-nextPrev {
    background-color: var(--color-navy);
    border-color: var(--color-navy);
}

    .btn-nextPrev:hover {
        color: #fff;
    }

.masthead .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #212529;
    opacity: .5;
}


/**Booking Form**/
.iti {
    position: relative;
    display: block;
    /* display: inline-block; */
}

.bookingArea {
    padding: 50px 0px;
}

.formArea {
}

    .formArea h2 {
        color: var(--color-navy);
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .formArea h4 {
        color: var(--color-navy);
        font-size: 22px;
    }

    .formArea p {
        color: var(--color-text);
        font-size: 14px;
    }

    .formArea label {
        color: var(--color-navy);
        font-size: 16px;
        display: block;
    }

    .formArea h5 {
        color: var(--color-navy);
        font-size: 18px;
    }

.plusMinusCounter {
    display: inline-flex;
    padding: 8px;
    background-color: var(--color-cream);
    border-radius: 30px;
    height: 45px;
    border: 1px solid var(--color-cream-border);
    line-height: 0;
}

    .plusMinusCounter .input-group-btn {
    }

    .plusMinusCounter .form-control {
        background-color: transparent;
        border: 0px;
        text-align: center;
        padding: 0px;
        width: 45px;
        align-items: center;
        justify-content: center;
    }

    .plusMinusCounter .btn:disabled {
        background: none !important;
        color: var(--color-navy) !important;
    }

    .plusMinusCounter .btn {
        padding: 0px;
        border-radius: 30px;
        border: 1px solid var(--color-navy);
        width: 25px;
        color: #fff;
        text-align: center;
        background: var(--gradient-gold);
    }

    .plusMinusCounter .btn {
        padding: 0px;
    }

.formArea .form-control {
    border-radius: 30px;
}

.isReturnable {
    display: none;
}


.bookingCalculator {
    padding: 15px;
    border-radius: 15px;
    background: linear-gradient(to top, var(--color-navy), var(--color-gold));
}

    .bookingCalculator .carInfo {
    }

        .bookingCalculator .carInfo h6 {
            color: #fff;
            font-weight: bold;
            font-size: 22px;
            line-height: 24px;
        }

        .bookingCalculator .carInfo p {
            color: #fff;
            font-weight: 300;
            font-size: 14px;
            line-height: 24px;
        }


    .bookingCalculator hr {
        background-color: #fff !important;
    }

    .bookingCalculator .destinationBox {
        padding: 15px;
        background: #fff;
        color: var(--color-navy);
        border-radius: 15px;
        position: relative;
        margin-bottom: 15px;
    }

        .bookingCalculator .destinationBox .from {
            margin-bottom: 5px;
        }

        .bookingCalculator .destinationBox .from,
        .bookingCalculator .destinationBox .to {
            position: relative;
            padding-left: 20px;
            font-size: 16px;
            font-weight: 500;
        }

            .bookingCalculator .destinationBox .from:before,
            .bookingCalculator .destinationBox .to:before {
                position: absolute;
                width: 10px;
                height: 10px;
                background: #bcbbcc;
                content: "";
                border-radius: 30px;
                left: 0px;
                top: 50%;
                -moz-transform: translateY(-50%);
                -ms-transform: translateY(-50%);
                -o-transform: translateY(-50%);
                -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
            }

        .bookingCalculator .destinationBox .line {
            width: 2px;
            position: absolute;
            background: #bcbbcc;
            content: "";
            left: 4px;
            top: 11px;
            height: 30px;
        }

        .bookingCalculator .destinationBox .price {
            color: var(--color-navy);
            font-size: 18px;
            font-weight: 500;
            text-align: right;
        }

    .bookingCalculator .seperatorLine {
        width: 100%;
        border-bottom: 4px dotted #acb9ce;
        margin: 20px 0px;
    }

    .bookingCalculator .priceBox {
        color: var(--color-navy);
        font-size: 16px;
        font-weight: 700;
        padding: 15px;
        background: #fff;
        border-radius: 30px;
    }

        .bookingCalculator .priceBox span {
            font-size: 20px;
        }

/* Header services dropdown */
.navServicesDropdown .dropdown-menu {
    border: 1px solid var(--color-cream-border);
    border-top: 3px solid var(--color-gold);
    border-radius: 0 0 8px 8px;
    box-shadow: 0 8px 24px rgba(0, 31, 63, 0.12);
    min-width: 240px;
    /* max-height: 400px; */
    /* overflow-y: auto; */
    position: absolute;
    left: 0;
    top: 30px;
}

.navServicesDropdown .dropdown-item {
    color: var(--color-navy);
    font-size: 15px;
    padding: 8px 18px;
}

.navServicesDropdown .dropdown-item:hover {
    background: var(--color-cream);
    color: var(--color-gold);
}

/* Contact page */
.contactArea {
    padding: 50px 0 80px;
    background: var(--gradient-hero);
}

.contactBox,
.contactFormBox,
.contactMapBox {
    background: #fff;
    border-radius: 12px;
    padding: 28px 22px 24px;
    box-shadow: 0 8px 24px rgba(0, 31, 63, 0.08);
}

.contactBox {
    text-align: center;
}

.serviceIcon i {
    color: var(--color-gold);
    font-size: 28px;
    line-height: 1;
}

.contactFormBox {
    padding: 32px 28px;
}

.contactFormHeader,
.contactMapHeader {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contactFormIcon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    margin: 0;
    padding: 0;
}

.contactForm .form-label {
    color: var(--color-navy);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
}

.contactInputGroup .input-group-text {
    background: var(--color-cream);
    border-color: var(--color-cream-border);
    color: var(--color-navy);
    border-right: 0;
}

.contactInputGroup .form-control {
    border-color: var(--color-cream-border);
    border-left: 0;
    box-shadow: none;
}

.contactInputGroup .form-control:focus {
    border-color: var(--color-gold);
    box-shadow: none;
}

.contactTextareaGroup {
    align-items: flex-start;
}

.contactTextareaGroup .input-group-text {
    padding-top: 14px;
}

.contactSubmitBtn {
    border-radius: 30px;
    padding: 12px 28px;
    font-weight: 600;
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: #fff;
}

.contactSubmitBtn:hover {
    background: var(--color-navy);
    border-color: var(--color-navy);
    color: #fff;
}

.contactMapBox {
    display: flex;
    flex-direction: column;
    padding: 24px;
}

.contactMapFrame {
    flex: 1 1 auto;
    min-height: 360px;
    margin-top: 18px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--color-cream-border);
}

.contactMapFrame iframe {
    display: block;
    min-height: 360px;
}

@media (max-width: 991px) {
    .contactMapFrame,
    .contactMapFrame iframe {
        min-height: 300px;
    }
}

/* Blog sidebar */
.blogListArea {
    background: var(--gradient-hero);
}

.blogSidebarCard {
    background: #fff;
    border-radius: 10px;
    padding: 16px 16px;
    box-shadow: 0 6px 18px rgba(0, 31, 63, 0.07), inset 0 3px 0 0 var(--color-gold);
}

.blogSearchForm .form-control {
    border-radius: 6px 0 0 6px;
    border: 1px solid var(--color-cream-border);
    font-size: 14px;
    padding: 8px 12px;
}

.blogSearchForm .form-control:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 2px rgba(193, 154, 83, 0.15);
}

.blogSearchForm .btn-primary {
    background: var(--color-gold);
    border-color: var(--color-gold);
    border-radius: 0 6px 6px 0;
    padding: 8px 14px;
}

.blogSearchForm .btn-primary:hover {
    background: var(--color-navy);
    border-color: var(--color-navy);
}

.blogSidebarTitle {
    color: var(--color-navy);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.blogSidebarList li {
    border-bottom: 1px solid var(--color-cream-border);
}

.blogSidebarList li:last-child {
    border-bottom: 0;
}

.blogSidebarList a {
    display: block;
    padding: 7px 0;
    color: var(--color-navy);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.2s ease;
}

.blogSidebarList a:hover,
.blogSidebarList a.active {
    color: var(--color-gold);
}

/* About page & Team styles */
.aboutIntroArea {
    padding: 60px 0;
    background: #fff;
}
.aboutIntroText {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-navy);
}
.visionMissionSection {
    padding: 60px 0;
    background: var(--gradient-hero);
}
.policyCard {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 24px rgba(0, 31, 63, 0.05), inset 0 4px 0 0 var(--color-gold);
    height: 100%;
}
.policyCardTitle {
    color: var(--color-navy);
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.policyCardTitle i {
    color: var(--color-gold);
}
.policyCardText {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}
.policyCardText ul {
    padding-left: 20px;
}
.policyCardText li {
    margin-bottom: 8px;
}
.teamArea {
    padding: 70px 0;
    background: #fff;
}
.teamMemberCard {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 31, 63, 0.06);
    border: 1px solid var(--color-cream-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    padding-bottom: 24px;
}
.teamMemberCard:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 31, 63, 0.12);
}
.teamMemberImg {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-bottom: 3px solid var(--color-gold);
}
.teamMemberName {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-navy);
    margin-top: 18px;
    margin-bottom: 4px;
}
.teamMemberTitle {
    font-size: 14px;
    color: var(--color-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}
.teamMemberSocials {
    display: flex;
    justify-content: center;
    gap: 12px;
}
.teamMemberSocials a {
    color: var(--color-navy);
    font-size: 14px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    text-decoration: none;
}
.teamMemberSocials a:hover {
    background: var(--color-gold);
    color: #fff;
}

/* Leadership Tabs Styling */
.leadershipSection {
    padding: 70px 0;
    background: #fff;
}
.leaderTabNav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 45px;
}
.leaderTabBtn {
    padding: 12px 28px;
    border-radius: 30px;
    border: 2px solid var(--color-cream-border);
    background: #fff;
    color: var(--color-navy);
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.leaderTabBtn.active,
.leaderTabBtn:hover {
    border-color: var(--color-gold);
    background: var(--color-gold);
    color: #fff;
    box-shadow: 0 8px 20px rgba(193, 154, 83, 0.25);
}
.leaderTabContent {
    display: none;
}
.leaderTabContent.active {
    display: block;
    margin-top: 20px;
}
.leaderMessageCard {
    background: var(--gradient-hero);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 31, 63, 0.04);
    border: 1px solid var(--color-cream-border);
}
.leaderPhotoContainer {
    text-align: center;
}
.leaderPhoto {
    width: 280px;
    height: 280px;
    border-radius: 12px;
    object-fit: cover;
    border: 4px solid var(--color-gold);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}
.leaderText {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
}
.leaderSignature {
    margin-top: 25px;
    border-top: 1px solid var(--color-cream-border);
    padding-top: 15px;
}

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

/* Premium Gold Pill Button */
.btn-gold-pill {
    background-color: var(--color-gold) !important;
    border-color: var(--color-gold) !important;
    color: #fff !important;
    padding: 12px 36px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-gold-pill:hover,
.btn-gold-pill:focus {
    background-color: var(--color-navy) !important;
    border-color: var(--color-navy) !important;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(0, 31, 63, 0.2);
}

.btn-gold-pill i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.btn-gold-pill:hover i {
    transform: translateX(4px);
}
