:root {
    --cream: #f4efe6;
    --cream2: #ede6d8;
    --navy: #0d1b33;
    --navy2: #132040;
    --navy3: #1a2a4a;
    --blue: #cc4d00;
    --blue2: #1740b8;
    --gold: #d4a843;
    --gold2: #b8901e;
    --white: #ffffff;
    --ink: #1a1a2e;
    --muted: #6b7591;
    --border: rgba(26, 26, 46, 0.1);
    --serif: "Montserrat", sans-serif;
    --sans: "Outfit", sans-serif;
    --body: "DM Sans", sans-serif;
    /* Misc */
    --nav-h: 72px;
    --r: 12px;
    --r2: 20px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --t: 0.38s;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--body);
    color: var(--ink);
    /* background: var(--cream); */
    overflow-x: hidden;
    line-height: 1.7;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    margin: 0;
}

.container-fluid {
    padding-right: 0;
    padding-left: 0;
}

.row {
    --bs-gutter-x: 0rem !important;
}

.g-4,
.gx-4 {
    --bs-gutter-x: 1.5rem !important;
}

.scroll-animate {
    opacity: 0;
}

#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    height: var(--nav-h);
    transition: background var(--t), box-shadow var(--t), height var(--t);
}

    #navbar.solid {
        background: var(--white);
        box-shadow: 0 2px 30px rgba(13, 27, 51, 0.1);
        height: 64px;
    }

.nav-wrap {
    /*max-width: 1400px;*/
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: space-between;
}

.logo {
    max-width: 15%;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--sans);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: -0.01em;
}

    .logo em {
        font-style: normal;
        color: var(--gold);
        font-weight: 700;
    }

.logo-spark {
    color: var(--gold);
    font-size: 1rem;
}

#navbar.solid .logo {
    color: var(--ink);
}

.logo-light {
    color: var(--white) !important;
}

.nav-links {
    display: flex;
    gap: 2px;
}

.nl {
    font-family: var(--serif);
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    padding: 8px 14px;
    border-radius: 8px;
    transition: color var(--t), background var(--t);
}

    .nl:hover,
    .nl.active {
        color: var(--gold);
    }

#navbar.solid .nl {
    color: var(--ink);
}

    #navbar.solid .nl:hover,
    #navbar.solid .nl.active {
        color: var(--blue);
    }

.nav-end {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-tel {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: var(--serif);
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--t);
}

    .nav-tel:hover {
        color: var(--gold);
    }

#navbar.solid .nav-tel {
    color: var(--ink);
}

    #navbar.solid .nav-tel:hover {
        color: var(--blue);
    }

.nav-cta {
    background: var(--gold);
    color: var(--navy);
    font-family: var(--sans);
    font-size: 0.84rem;
    font-weight: 700;
    padding: 9px 20px;
    border-radius: 50px;
    transition: background var(--t), transform var(--t);
}

    .nav-cta:hover {
        background: var(--gold2);
        transform: translateY(-2px);
    }

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

    .burger span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--white);
        border-radius: 2px;
        transition: var(--t);
    }

#navbar.solid .burger span {
    background: var(--ink);
}

.burger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.open span:nth-child(2) {
    opacity: 0;
}

.burger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* breadcrump */
.breadcrumb-section {
    padding: 140px 50px 80px;
    background: linear-gradient(#000000b8),url("../images/maxi.jpg");
    background-position: center center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.breadcrumb-inner {
    text-align: center;
}

    .breadcrumb-inner h1 {
        font-family: var(--serif);
        font-size: 38px;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 10px;
    }

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: var(--cream);
}

    .breadcrumb a {
        color: var(--cream);
        text-decoration: none;
        transition: 0.3s;
    }

        .breadcrumb a:hover {
            color: var(--gold);
        }

    .breadcrumb .active {
        color: var(--gold);
    }

#showChild {
    position: relative;
    padding: 1px 4px;
    cursor: pointer;
}

#showChildTwo {
    position: relative;
    padding: 1px 4px;
    cursor: pointer;
}

.nav-dropdown {
    position: relative;
    list-style: none;
}

#showChild .fa-caret-down,
#showChildTwo .fa-caret-down {
    transition: transform 0.2s ease;
    margin-left: 2px;
    font-size: 0.75rem;
}

#showChild.active .fa-caret-down,
#showChildTwo.active .fa-caret-down {
    transform: rotate(180deg);
}

.nav-inner-links {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
}

@keyframes slide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0px);
    }
}

.nav-inner-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70%;
    left: 46%;
    min-width: 240px;
    background: var(--white);
    padding: 6px 0;
    margin-top: 6px;
    border-radius: 6px;
    box-shadow: 0 8px 24px -4px rgba(0, 0, 0, 0.18);
    animation: slide 0.2s ease-in forwards;
    z-index: 1000;
}

    .nav-inner-links.active li {
        padding: 0;
        border-bottom: 1px solid rgb(0 0 0 / 8%);
        list-style: none;
    }

        .nav-inner-links.active li:last-child {
            border-bottom: none;
        }

        .nav-inner-links.active li a {
            display: block;
            font-family: var(--serif);
            font-size: 0.87rem;
            padding: 9px 18px;
            color: var(--ink);
            white-space: nowrap;
            transition: background 0.15s ease, color 0.15s ease;
        }

            .nav-inner-links.active li a i {
                margin-right: 8px;
                color: var(--gold);
                width: 16px;
                text-align: center;
            }

        .nav-inner-links.active li:hover {
            background-color: var(--gold2);
        }

            .nav-inner-links.active li:hover a,
            .nav-inner-links.active li:hover a i {
                color: #ffffff;
            }


@media (max-width: 992px) {
    .breadcrumb-section {
        padding: 50px 20px;
        margin-top: 50px;
    }

    .breadcrumb-inner h1 {
        font-size: 26px;
    }

    #showChild,
    #showChildTwo {
        padding: 0px 8px;
        display: block;
    }

    .nav-dropdown {
        width: 100%;
    }

    .nav-inner-links.active {
        position: static;
        top: auto;
        left: auto;
        width: 100%;
        min-width: 0;
        margin-top: 4px;
        margin-bottom: 6px;
        padding: 4px 0;
        background: rgba(0, 0, 0, 0.03);
        box-shadow: none;
        border-radius: 6px;
    }

        .nav-inner-links.active li a {
            padding: 10px 22px;
            white-space: normal;
        }
}

/* hero section css */
.hero-inner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.363)), url("../images/pride-image.jpg");
    height: 100%;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 50px;
    background-position: center;
}

.hero-pill {
    background: rgba(212, 168, 67, 0.18);
    border: 1px solid rgba(212, 168, 67, 0.4);
    border-radius: 20px;
    display: inline-block;
    font-family: var(--serif);
    color: var(--gold);
    padding: 10px 20px;
    margin-bottom: 20px;
}

.slide-body h1 {
    font-family: var(--serif);
    font-size: clamp(2.1rem, 4vw, 4.4rem);
    font-weight: 900;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 18px;
}

em {
    color: var(--gold2);
    font-style: normal;
}

.hero-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.72);
    max-width: 520px;
    margin-bottom: 20px;
}

.hero-btns {
    margin-bottom: 40px;
    display: flex;
    gap: 20px;
}

.hbtn-solid {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--gold);
    color: var(--navy);
    font-family: var(--sans);
    font-size: 0.92rem;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 50px;
    transition: background var(--t), transform var(--t), box-shadow var(--t);
    box-shadow: 0 6px 24px rgba(212, 168, 67, 0.35);
}

.hbtn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    font-family: var(--sans);
    font-size: 0.92rem;
    font-weight: 600;
    padding: 13px 28px;
    border-radius: 50px;
    transition: all var(--t);
    backdrop-filter: blur(6px);
}

.hero-stats {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
    padding: 20px 40px;
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(4, 1fr);
    width: fit-content;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--r);
}

.hstat-n {
    color: var(--white);
    font-size: clamp(2rem, 2.5vw, 4.4rem);
    font-weight: 700;
}

.hstat-l {
    display: flex;
    font-family: var(--sans);
    color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 992px) {
    .nav-links,
    .nav-end {
        display: none;
    }

    .burger {
        display: flex;
        background: none;
        border: none;
    }

    #navbar {
        background: #ffffff;
        height: 50px;
    }

        #navbar span {
            color: #0d1b33;
        }

    .burger span {
        background-color: var(--ink);
    }

    #navbar.solid {
        box-shadow: 0 8px 32px rgba(13, 27, 51, 0.12);
        height: 50px;
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 50px;
        left: 0;
        right: 0;
        background: #ffffff;
        padding: 20px 28px;
        animation: slideIn 0.3s var(--ease);
        gap: 4px;
        z-index: 899;
    }

    @keyframes slideIn {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-links.open .nl {
        color: var(--ink);
        font-size: 1rem;
        padding: 12px 8px;
    }

    .hero-btns {
        gap: 5px;
    }

    .hero-stats {
        gap: 25px;
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-inner {
        padding: 120px 20px 40px;
    }

    .hero-pill {
        padding: 5px 18px;
    }

    .hbtn-solid {
        gap: 3px;
        padding: 10px 13px;
    }

    .hbtn-ghost {
        padding: 10px 13px;
    }

    .hero-content p {
        margin-bottom: 30px;
    }
}
/* about-us */
.about-us {
    /* background: var(--cream); */
    padding: 70px 60px;
}

.about-image {
    display: flex;
    gap: 24px;
    position: relative;
}

.image-one img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    border-radius: 18px;
}

.image-two {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 20px;
}

    .image-two img {
        width: 100%;
        height: 320px;
        object-fit: cover;
        border-radius: 18px;
    }

/* EXPERIENCE BADGE */
.exp-wrapper {
    position: absolute;
    top: 30px;
    left: 85%;
    transform: translateX(-50%);
    width: 170px;
    height: 170px;
}

.circle-text-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotate 12s linear infinite;
}

    .circle-text-svg text {
        font-size: 11px;
        letter-spacing: 4px;
        fill: var(--muted);
        font-weight: 600;
    }

.exp-center {
    position: absolute;
    width: 110px;
    height: 110px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

/* MINI HEAD */
.mini-head {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 13px;
    letter-spacing: 2px;
    color: var(--navy);
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

    .mini-head .bar:nth-child(2) {
        opacity: 0.7;
    }

    .mini-head .bar:nth-child(3) {
        opacity: 0.5;
    }

    .mini-head .bar:nth-child(4) {
        opacity: 0.3;
    }

    .mini-head .text {
        margin-left: 8px;
    }

.about-content {
    margin-left: 20px;
}

    .about-content h2 {
        font-size: 35px;
        font-weight: 700;
        font-family: var(--serif);
        color: var(--ink);
        line-height: 1.2;
        margin-bottom: 20px;
    }

.desc {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 30px;
}

.features {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
}

    .features li {
        margin-bottom: 12px;
        padding-left: 32px;
        position: relative;
        font-weight: 600;
        color: var(--ink);
    }

        .features li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 2px;
            width: 20px;
            height: 20px;
            border: 2px solid var(--gold);
            border-radius: 50%;
        }

        .features li::after {
            content: "✓";
            position: absolute;
            left: 4px;
            top: 1px;
            font-size: 13px;
            color: var(--gold);
            font-weight: 700;
        }

.btn-custom {
    background: var(--navy);
    color: var(--white);
    padding: 14px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    border: none;
    width: fit-content;
}

@media (max-width: 992px) {
    .about-us {
        padding: 50px 20px;
    }

    .about-image {
        flex-direction: column;
    }

    .image-one img,
    .image-two img {
        height: 300px;
    }

    .exp-wrapper {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: 20px auto;
    }

    .about-content h2 {
        font-size: 25px;
        hyphens: auto;
        text-align: justify;
    }

    .exp-wrapper {
        position: relative;
        top: 112px;
        left: auto;
    }

    .image-two {
        margin-top: -14rem;
    }

    .exp-center {
        width: 100px;
        height: 100px;
    }

    .circle-text-svg text {
        fill: #fff;
    }

    .about-content {
        margin-left: 0px;
    }

    .desc {
        hyphens: auto;
        text-align: justify;
    }

    .btn-custom {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* our services */
.our-services {
    background: var(--cream);
    padding: 70px 60px;
    justify-content: center;
    width: 100%;
}

.service-heading {
    font-size: 35px;
    font-weight: 700;
    font-family: var(--serif);
    color: var(--ink);
    line-height: 1.2;
}

.services-content {
    text-align: center;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 10px;
}

.mini-heads {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 13px;
    letter-spacing: 2px;
    color: var(--navy);
    margin-bottom: 10px;
    font-weight: 600;
    justify-content: center;
}

.mini-head {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 13px;
    letter-spacing: 2px;
    color: var(--navy);
    margin-bottom: 10px;
    font-weight: 600;
    justify-content: left;
}

    .mini-heads .bar,
    .mini-head .bar {
        width: 6px;
        height: 18px;
        background: var(--gold);
        display: inline-block;
        transform: skewX(-12deg);
    }

        .mini-heads .bar:nth-child(2) {
            opacity: 0.7;
        }

        .mini-heads .bar:nth-child(3) {
            opacity: 0.5;
        }

        .mini-heads .bar:nth-child(4) {
            opacity: 0.3;
        }

.mini-heads .bar {
    width: 6px;
    height: 18px;
    background: var(--gold);
    display: inline-block;
    transform: skewX(-12deg);
}
/* .services-cards{
  display:grid;
  grid-template-columns: repeat(4,1fr);
  grid-column-gap: 20px;
  grid-row-gap: 20px;
} */
.services-cards {
    display: block;
}

.card {
    padding: 20px 15px;
    border-radius: 0.8rem;
    width: 100%;
}

    .card img {
        height: 220px;
        width: 100%;
        object-fit: cover;
        border-radius: 0.8rem;
    }

    .card .card-head {
        color: var(--blue);
        font-weight: 600;
        font-size: 24px;
        padding: 10px 0;
        margin: 0;
        font-family: var(--serif);
    }

    .card .card-para {
        color: var(--navy);
        padding-bottom: 20px;
    }

.service-button {
    background: var(--navy);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    border: none;
}

    .service-button:hover {
        color: var(--navy);
        background: var(--gold);
    }

.swiper-pagination {
    text-align: center;
    margin-top: 20px;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--muted);
    opacity: 0.5;
    margin: 0 5px !important;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: var(--blue);
    opacity: 1;
    transform: scale(1.2);
}

.swiper-button-next,
.swiper-button-prev {
    color: white;
    width: 40px;
    height: 40px;
    background: rgba(70, 70, 70, 0.397);
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

    .swiper-button-next:hover,
    .swiper-button-prev:hover {
        background: var(--blue);
        color: var(--white);
        transform: translateY(-50%) scale(1.1);
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 20px;
        font-weight: bold;
    }

@media (max-width: 992px) {
    .swiper-button-next,
    .swiper-button-prev {
        width: 32px;
        height: 32px;
    }

        .swiper-button-next::after,
        .swiper-button-prev::after {
            font-size: 16px;
        }

    .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }

    .our-services {
        padding: 50px 20px;
    }

    .service-heading {
        font-size: 25px;
    }
}

/* why to choose us */

.why-choose {
    padding: 70px 60px;
    justify-content: center;
    width: 100%;
}

.why-choose-heading {
    font-size: 35px;
    font-weight: 700;
    font-family: var(--serif);
    color: var(--ink);
    line-height: 1.2;
    text-align: center;
}

.why-choose-para {
    text-align: center;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.why-choose-feature {
}

.feature-card {
    padding: 20px 15px;
    box-shadow: 0 0 6px #d1d1d1;
    border-radius: 0.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: transform 0.3s ease;
    backface-visibility: hidden;
}

    .feature-card:hover {
        transform: scale(1.01);
        box-shadow: 0 0 10px #d1d1d1;
    }

    .feature-card i {
        color: var(--blue);
        font-size: 40px;
    }

.feature-heading {
    color: var(--navy);
    font-weight: 600;
    font-size: 21px;
    padding: 10px 0;
    margin: 0;
}

.feature-para {
    hyphens: auto;
    text-align: center;
}

@media (max-width: 992px) {
    .why-choose {
        padding: 50px 20px;
    }

    .why-choose-heading {
        font-size: 25px;
    }

    .why-choose-para {
        text-align: justify;
        hyphens: auto;
        margin-bottom: 20px;
    }

    .feature-card i {
        font-size: 45px;
    }

    .feature-heading {
        font-size: 20px;
    }

    .feature-card {
        padding: 20px 15px;
    }
}

/* addiional services */
.luxury-section {
    background: #1a1a1a;
}

.luxury-content {
    padding: 80px 60px;
}

.luxury-heading {
    font-family: var(--serif);
    font-size: 35px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 25px;
}

.luxury-para {
    color: #ccc;
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
}

.gold-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
}

    .gold-link:hover {
        text-decoration: underline;
    }

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    text-align: center;
}

.feature-item i {
    font-size: 32px;
    color: var(--gold);
    display: block;
    margin: auto;
    padding-bottom: 10px;
}

.feature-item span {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.luxury-image {
    padding: 0;
}

    .luxury-image img {
        width: 100%;
        height: 720px;
        object-fit: cover;
    }

.feature-item {
    text-align: center;
}

@media (max-width: 992px) {
    .luxury-content {
        padding: 50px 20px;
    }

    .luxury-heading {
        font-family: var(--serif);
        font-size: 25px;
        text-align: center;
        hyphens: auto;
    }

    .luxury-para {
        text-align: justify;
        hyphens: auto;
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 26px;
        margin-top: 40px;
    }

    .feature-item span {
        color: #fff;
        font-size: 10px;
    }

    .luxury-image img {
        width: 100%;
        height: 350px;
    }
}

/* faqs */

.faq-sec {
    padding: 70px 60px;
    justify-content: center;
    width: 100%;
    display: block;
    /* background-color:var(--muted); */
}

.faq-inner {
    background-color: var(--cream);
    border-radius: 10px;
}

    .faq-inner .question {
        background-color: #b5964f;
        color: #ffffff;
        padding: 10px 15px;
        border-radius: 10px;
        font-weight: 600;
        display: flex;
        justify-content: space-between;
        font-size: 14px;
    }

.faq-toggler i {
    transition: transform 0.4s ease;
    display: inline-block;
    font-size: 24px;
}

    .faq-toggler i.active {
        transform: rotate(180deg);
    }

.answere {
    border-radius: 0 0 10px 10px;
    max-height: 0;
    overflow: hidden;
    padding: 0px 15px;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

    .answere.show {
        max-height: 200px;
        padding: 10px 15px;
    }

@media (max-width: 992px) {
    .faq-sec {
        padding: 50px 20px;
    }
}
/* call to action */

.call-action {
    background: #1a1a1a;
    padding: 80px 90px;
    width: 100%;
    display: block;
}

.btn-custom-2 {
    background: var(--gold);
    color: var(--white);
    padding: 15px 45px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    text-align: center;
}

.call-heading h3 {
    color: white;
    font-weight: 700;
    font-size: 2rem;
}

.call-button {
    text-align: center;
}

.call-para {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .call-action {
        padding: 50px 20px;
    }

    .call-heading h3 {
        font-size: 25px;
        text-align: center;
    }

    .call-para {
        hyphens: auto;
        text-align: justify;
        margin-bottom: 30px;
    }

    .btn-custom-2 {
        padding: 10px 20px;
        font-size: 0.8rem;
    }

    .google-map iframe {
        height: 300px;
    }
}

.book-bg {
    width: 100%;
    /*background-image: url(../images/book-bg.png);
    background-repeat: repeat-y;*/
    margin: 0;
    padding: 0px 0 0 0;
}

.book-grp {
    width: 90%;
    margin: 0 5% 0 5%;
    padding: 10px 10px 20px 10px;
}

.book-tbgrp {
    display: flex;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
}

.book-tab {
    width: 50%;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    position: relative
}

.book-data {
    width: 100%;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    margin: 0 0 0 0;
    padding: 10px 10px 20px 10px;
    /*background-color: #000;
    background-color: rgba(0,0,0,.85);*/
}

.book-inner {
    width: 100%;
}

.tab3 {
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 5rem;
    grid-row-gap: 1.5rem;
}

.input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
}

.book-bthd {
    width: 100%;
    text-align: left;
    color: #fff;
    font-size: 11pt;
    padding: 0 10px 10px 15px;
}

.gdclr {
    color: #D4A843;
}

.hide-oneway-icon {
    position: absolute;
    top: 41%;
    left: 47%;
    color: white;
    font-size: 25px;
    transform: scaleX(1);
}

.hide-hourly-icon {
    position: absolute;
    top: 41%;
    left: 47%;
    color: white;
    font-size: 25px;
    transform: scaleX(1);
}

/*  FOOTER  */
.footer {
    background: #1a2028;
    padding: 80px 60px 0;
    position: relative;
    overflow: hidden;
}

.footer-tyre-mark-left {
    position: absolute;
    top: -10px;
    left: 0;
    width: 300px;
    height: 40px;
    background: repeating-linear-gradient( 90deg, transparent, transparent 8px, rgba(255, 255, 255, 0.06) 8px, rgba(255, 255, 255, 0.06) 12px );
    transform: rotate(-3deg);
    z-index: 0;
}

.footer-tyre-mark-right {
    position: absolute;
    top: 30px;
    right: -20px;
    width: 280px;
    height: 200px;
    background: repeating-linear-gradient( -45deg, transparent, transparent 6px, rgba(255, 255, 255, 0.03) 6px, rgba(255, 255, 255, 0.03) 10px );
    border-radius: 50%;
    transform: rotate(15deg);
    z-index: 0;
}

/* Grid */
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1.2fr;
    gap: 50px;
    position: relative;
    z-index: 1;
    padding-bottom: 60px;
}

.footer-brand-col {
    padding-right: 20px;
}

.footer-logo-row {
    margin-bottom: 28px;
}

    .footer-logo-row img {
        width: auto;
        filter: brightness(10);
        max-width: 60%;
    }

.footer-tagline {
    font-family: "Poppins", sans-serif;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    hyphens: auto;
    text-align: justify;
}

.footer-heading {
    font-family: "Poppins", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 28px;
    letter-spacing: 0.2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .footer-links li a {
        font-family: "Poppins", sans-serif;
        font-size: 0.88rem;
        color: rgb(255 255 255 / 65%);
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s ease;
    }

        .footer-links li a i {
            font-size: 0.6rem;
            color: var(--gold);
            transition: transform 0.3s;
        }

        .footer-links li a:hover {
            color: #fff;
            transform: translateX(4px);
        }

            .footer-links li a:hover i {
                transform: translateX(2px);
            }

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    align-items: center;
}

.footer-contact-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(192, 150, 43, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

    .footer-contact-icon i {
        font-size: 0.85rem;
        color: var(--gold);
        transition: color 0.3s;
    }

.footer-contact-item:hover .footer-contact-icon {
    background: var(--gold);
}

    .footer-contact-item:hover .footer-contact-icon i {
        color: #fff;
    }

.footer-contact-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-contact-label {
    font-family: "Poppins", sans-serif;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

.footer-contact-value {
    font-family: "Poppins", sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

a.footer-contact-value:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    position: relative;
    z-index: 1;
}

.footer-copy {
    font-family: "Poppins", sans-serif;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
    text-align: center;
    line-height: 1.6;
}

    .footer-copy a {
        color: rgba(255, 255, 255, 0.5);
        text-decoration: none;
        transition: color 0.3s;
    }

        .footer-copy a:hover {
            color: var(--gold);
        }

@media (max-width: 1200px) {
    .footer-grid {
        gap: 36px;
    }

    .footer-contact-value {
        font-size: 0.82rem;
    }
}

@media (max-width: 992px) {
    .footer {
        padding: 50px 20px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px 30px;
        padding-bottom: 20px;
    }

    .footer-brand-col {
        padding-right: 0;
    }

    .footer-heading {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .footer-links {
        gap: 3px;
        margin-bottom: 1rem;
    }

    .footer-tyre-mark-left,
    .footer-tyre-mark-right {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-links li a {
        font-size: 0.88rem;
    }

    .footer-copy {
        margin: 0;
    }
}

@media (max-width: 576px) {
    .logo {
        max-width: 50%;
    }

    .nav-wrap {
        padding: 0 15px;
    }

    .footer-logo-row img {
        /*height: 60px;*/
        height: auto;
        max-width: 60%;
    }

    .footer-contact-list {
        gap: 20px;
    }

    .footer-contact-icon {
        width: 38px;
        height: 38px;
    }

    .footer-contact-value {
        font-size: 0.8rem;
    }

    .footer-bottom {
        padding: 20px 0;
    }
}

/* who we are */
.story {
    background: #1a1a1aed;
    padding: 60px;
}

.story-inner {
    align-items: center;
}

.story-text h2 {
    font-family: var(--serif);
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.story-text p {
    color: #ccc;
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
}

.story-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding-left: 30px;
}

.story-card {
    background: #222;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 25px 20px;
    position: relative;
    transition: all 0.3s ease;
}

    .story-card:first-child {
        grid-column: span 2;
    }

    .story-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    }

    .story-card::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background: var(--gold);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s;
    }

    .story-card:hover::after {
        transform: scaleX(1);
    }

.sc-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: var(--gold);
    font-size: 18px;
}

.story-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.story-card p {
    font-size: 14px;
    color: #aaa;
    line-height: 1.6;
}


@media (max-width: 992px) {
    .story {
        padding: 50px 20px;
    }

    .story-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-text {
        padding: 0
    }

        .story-text h2 {
            font-size: 26px;
            text-align: center;
        }

        .story-text p {
            text-align: justify;
        }

    .story-cards {
        display: flex;
        flex-direction: column;
        gap: 25px;
        padding-left: 0px;
    }

    .story-card:first-child {
        grid-column: span 2;
    }
}

/* counter section */

.counter-section {
    background: var(--cream);
    padding: 60px;
}

.counter-top {
    margin-bottom: 50px;
}

.counter-section h2 {
    font-family: var(--serif);
    font-size: 35px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.2;
    margin-bottom: 20px;
}

    .counter-section h2 em {
        color: var(--gold);
        font-style: normal;
    }

.counter-section p {
    color: var(--ink);
    font-size: 16px;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.counter-grid {
    gap: 20px;
}

.counter-item {
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px 20px;
    text-align: center;
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
    border-radius: 0.8rem;
}

    .counter-item:hover {
        box-shadow: 0 0 10px #d1d1d1;
        transform: translateY(-5px);
    }


.ci-icon {
    width: 50px;
    height: 50px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--gold);
    font-size: 18px;
}

.counter-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--ink);
}

.counter-label {
    font-size: 20px;
    font-weight: 700;
    color: var(--blue);
    letter-spacing: 0px;
}

.counter-desc {
    font-size: 13px;
    color: #aaa;
}

/* Responsive */
@media (max-width: 992px) {
    .counter-section {
        padding: 50px 20px;
    }

        .counter-section h2 {
            font-size: 26px;
            text-align: center;
        }

        .counter-section p {
            font-size: 14px;
            text-align: justify;
        }


    .counter-top {
        margin-bottom: 20px;
    }
}


/* service pages css */

.service-intro {
    padding: 80px 60px;
}

    .service-intro .intro-text {
        padding-right: 50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
    }

        .service-intro .intro-text .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 16px;
        }

            .service-intro .intro-text .section-tag::before {
                content: "";
                display: inline-block;
                width: 32px;
                height: 2px;
                background: var(--gold);
            }

        .service-intro .intro-text h2 {
            font-family: var(--serif);
            font-size: 35px;
            font-weight: 700;
            line-height: 1.2;
            color: var(--ink);
            margin-bottom: 20px;
        }

            .service-intro .intro-text h2 em {
                color: var(--gold);
                font-style: normal;
            }

        .service-intro .intro-text p {
            font-size: 16px;
            color: var(--ink);
            line-height: 1.8;
            margin-bottom: 16px;
            text-align: justify;
            hyphens: auto;
        }

.intro-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0 0 32px;
}

    .intro-features .feat-item {
        display: flex;
        gap: 12px;
        font-size: 16px;
        color: var(--ink);
        font-weight: 500;
    }

        .intro-features .feat-item i {
            color: var(--gold);
            font-size: 15px;
            flex-shrink: 0;
            margin: 7px 0 0 0;
        }

.service-intro .intro-image-wrap {
    position: relative;
    height: 100%;
    min-height: 460px;
}

    .service-intro .intro-image-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .service-intro .intro-image-wrap .img-placeholder {
        width: 100%;
        height: 100%;
        min-height: 460px;
        background: url("/images/airport-transfer.jpg");
        background-position: center;
        background-size: cover;
        object-fit: cover;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 5rem;
        color: rgba(201, 168, 76, 0.18);
        border-radius: 18px;
    }

.intro-image-wrap .badge-overlay {
    position: absolute;
    bottom: 24px;
    left: -20px;
    background: var(--gold);
    color: #000;
    padding: 16px 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    min-width: 190px;
}

.badge-overlay {
    border-radius: 18px;
}

    .badge-overlay i {
        font-size: 1.5rem;
    }

    .badge-overlay .badge-text strong {
        display: block;
        font-size: 1.3rem;
        font-weight: 700;
        line-height: 1;
    }

    .badge-overlay .badge-text span {
        font-size: 0.75rem;
        font-weight: 600;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

.intro-image-wrap .corner-frame {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 50%;
    height: 50%;
    border: 2px solid rgba(201, 168, 76, 0.3);
    pointer-events: none;
}


.why-section {
    padding: 80px 60px;
}

    .why-section .why-header {
        text-align: center;
        max-width: 600px;
        margin: 0 auto 20px;
    }

        .why-section .why-header .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 14px;
            justify-content: center;
        }

            .why-section .why-header .section-tag::before,
            .why-section .why-header .section-tag::after {
                content: "";
                display: inline-block;
                width: 28px;
                height: 2px;
                background: var(--gold);
            }

        .why-section .why-header h2 {
            font-family: var(--serif);
            font-size: 35px;
            font-weight: 700;
            line-height: 1.2;
            color: var(--ink);
            margin-bottom: 14px;
        }

            .why-section .why-header h2 em {
                color: var(--gold);
                font-style: normal;
            }

        .why-section .why-header p {
            font-size: 15px;
            color: var(--muted);
            line-height: 1.8;
        }

/* cards grid */
.why-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-card {
    background: #fff;
    border: 1px solid rgb(0 0 0 / 20%);
    padding: 34px 28px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 0.8rem;
}

    .why-card::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--gold);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s;
    }

    .why-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.09);
    }

        .why-card:hover::after {
            transform: scaleX(1);
        }

.why-card-icon {
    width: 56px;
    height: 56px;
    background: rgba(201, 168, 76, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.35rem;
    color: var(--gold);
    transition: background 0.3s;
}

.why-card:hover .why-card-icon {
    background: var(--gold);
    color: #000;
}

.why-card h4 {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 10px;
}

.why-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.75;
    margin: 0;
}

.breadcrumb-actions {
    gap: 10px;
    display: flex;
    justify-content: center;
}


    .breadcrumb-actions a {
        padding: 5px 12px !important;
        background-color: var(--gold);
        color: white;
        border-radius: 23px !important;
        font-size: 14px !important;
    }


@media (max-width: 992px) {
    .service-intro {
        padding: 50px 20px;
    }

        .service-intro .intro-text {
            padding-right: 0;
            margin-bottom: 40px;
            text-align: center;
        }

            .service-intro .intro-text h2 {
                font-size: 26px;
            }

            .service-intro .intro-text p {
                text-align: justify;
            }

    .intro-features .feat-item {
        justify-content: flex-start;
        text-align: left;
    }

    .service-intro .intro-image-wrap {
        min-height: 320px;
    }

    .intro-image-wrap .badge-overlay {
        left: 10px;
        bottom: 10px;
    }

    .intro-image-wrap .corner-frame {
        display: none;
    }

    .why-card {
        padding: 30px 25px;
    }

    .why-section {
        padding: 50px 20px;
    }

        .why-section .why-header h2 {
            font-size: 24px;
        }

        .why-section .why-header {
            margin: 0 auto 20px;
        }

            .why-section .why-header p {
                text-align: justify;
                hyphens: auto;
            }

    .why-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .why-card p {
        font-size: 15px;
        hyphens: auto;
        text-align: justify;
    }
}

@media (max-width: 576px) {
    .service-intro .intro-text h2 {
        font-size: 22px;
    }

    .why-section .why-header h2 {
        font-size: 22px;
    }
}
/* ─── Vehicle Gallery (fleet detail pages) ─── */
.vehicle-gallery {
    padding: 80px 60px;
    background: #fff;
}

.vg-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

    .vg-header .section-tag {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: var(--gold);
        font-weight: 600;
        margin-bottom: 14px;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-size: 13px;
    }

    .vg-header h2 {
        font-family: var(--serif);
        font-size: 38px;
        font-weight: 700;
        color: var(--ink);
        margin-bottom: 14px;
    }

        .vg-header h2 em {
            color: var(--gold);
            font-style: normal;
        }

    .vg-header p {
        color: var(--muted);
        font-size: 16px;
        margin: 0;
    }

.vg-stage {
    position: relative;
    max-width: 1100px;
    margin: 0 auto 16px;
    aspect-ratio: 16 / 9;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.10);
    background: #f5f5f0;
}

.vg-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
    display: block;
}

.vg-caption {
    position: absolute;
    bottom: 18px;
    left: 18px;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    padding: 7px 16px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 50px;
    letter-spacing: 0.5px;
    backdrop-filter: blur(6px);
}

.vg-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    max-width: 1100px;
    margin: 0 auto;
}

.vg-thumb {
    border: 3px solid transparent;
    background: none;
    padding: 0;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    transition: border-color 0.25s ease, opacity 0.25s ease;
    opacity: 0.7;
}

    .vg-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

    .vg-thumb:hover {
        opacity: 1;
    }

        .vg-thumb:hover img {
            transform: scale(1.06);
        }

    .vg-thumb.active {
        border-color: var(--gold);
        opacity: 1;
    }

@media (max-width: 992px) {
    .vehicle-gallery {
        padding: 50px 20px;
    }

    .vg-header h2 {
        font-size: 26px;
    }

    .vg-header {
        margin-bottom: 25px;
    }

    .vg-thumbs {
        gap: 10px;
    }
}

@media (max-width: 600px) {
    .vg-thumbs {
        gap: 6px;
    }

    .input-group {
        display: block;
    }
}

.ui-datepicker-header {
    background: rgb(212, 168, 67) !important;
    color: #fff;
    border: none;
}

.ui-state-active,
.ui-widget-content .ui-state-active {
    background: rgb(212, 168, 67) !important;
    color: #fff !important;
    border-radius: 4px;
}

.ui-datepicker td a:hover {
    background: rgb(212, 168, 67) !important;
    color: #fff !important;
}


.ui-state-highlight {
    background: rgba(212, 168, 67, 0.3) !important;
    border: none;
}
