@font-face {
    font-family: "Gilroy-Bold";
    src: url("/static/vendor/googleFonts/Gilroy-Bold.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gilroy-Heavy";
    src: url("/static/vendor/googleFonts/Gilroy-Heavy.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gilroy-Light";
    src: url("/static/vendor/googleFonts/Gilroy-Light.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gilroy-Medium";
    src: url("/static/vendor/googleFonts/Gilroy-Medium.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gilroy-Regular";
    src: url("/static/vendor/googleFonts/Gilroy-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}


.gilroyBold {
    font-family: "Gilroy-Bold";
    font-weight: lighter;

}

.gilroyHeavy {
    font-family: "Gilroy-Heavy";

}

.gilroyLight {
    font-family: "Gilroy-Light";

}

.gilroyMedium {
    font-family: "Gilroy-Medium";
}

.gilroyRegular {
    font-family: "Gilroy-Regular";

}


html {
    overflow-x: hidden !important;
    scroll-behavior: smooth;
}


body {
    font-family: "Gilroy-Regular";
    color: white;
    scroll-behavior: smooth;
    /* padding-bottom: 150px; */
    overflow-x: hidden !important;
    text-transform: capitalize;
    font-weight: bold;
    background: black;
}


/***************************************Navbar style start****************************************/

header {
    z-index: 1000 !important;

}

.myNav {
    position: relative;
    height: 70px;
    padding: 0;
    margin: 0;
    background: transparent;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    z-index: 999;
}

.myNav.scrolled {
    background-color: #000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}



.mobileNav a:not(.btn):hover {
    color: #F6B310;
}

.mobileNav a:not(.btn):hover::after {
    width: 100%;
}



.navLogo {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;

    display: flex;
    align-items: start;
}

.navLogo img {
    width: 180px;
}

.navRight {
    position: absolute;
    top: 10px !important;
    right: 56px;
    height: 100%;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 160px;
}

.navRight a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
}


@media (max-width: 1300px) {
    .navLogo img {
        width: 150px;
    }

    .navRight {
        right: 24px;
        gap: 80px;
    }
}


@media (max-width: 968px) {

    .navLogo img {
        width: 130px;
    }

    .navRight {
        top: 64px;
        right: 16px;

        gap: 20px;
    }
}

@media (max-width: 768px) {
    .navRight {
        display: none;
    }
}


.navHamburger {
    position: absolute;
    right: 16px;
    top: 18px;
    font-size: 1.6rem !important;
    color: #fff;
    cursor: pointer;
    display: none;
}

.mobileNav {
    position: absolute;
    top: 70px;
    right: 16px;

    background: #fff;
    border-radius: 12px;
    padding: 16px 20px;

    display: flex;
    flex-direction: column;
    gap: 14px;

    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: all 0.3s ease;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 3;
}

.mobileNav a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
}

.mobileNav.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

@media (max-width: 768px) {
    .navHamburger {
        display: block;
    }
}

.navLogoCenter {
    transition: transform 0.3s ease, filter 0.3s ease;
    cursor: pointer;
}

.navLogoCenter:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 4px 12px rgba(246, 179, 16, 0.6));
}



.hero {
    background: url('/static/img/backgrounds/indexHeroBgNew.png');
    background-position: center;
    background-size: cover;
}


.bookingIcon img {
    width: 36px;
}

.centerIcon img {
    width: 50px;
}

.bookingBar {
    height: 60vh;
    max-height: 60vh;
    width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 40px;
    margin-bottom: 20px;
}

.bookingTrack {
    position: relative;
    height: 100%;
    width: 90px;
    background: #F6B310;
    border-radius: 50px;
    display: flex;
    justify-content: center;
}

.bookingTrack::after {
    content: '';
    position: absolute;
    inset: 10px auto;
    width: 47px;
    background: #000;
    border-radius: 50px;
}

.bookingItem {
    position: absolute;
    left: 87.2px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 18px;
    z-index: 2;
}

.bookingItem span {
    font-size: 18px !important;
}

.bookingItem:nth-child(1) {
    top: 7px;
}

.bookingItem:nth-child(2) {
    bottom: 7px;
    /* transform: translate(-50%, -50%); */
}

.bookingItem:nth-child(3) {
    bottom: 7px;
}

.bookingIcon {
    width: 76px;
    height: 76px;
    background: #fff;
    border-radius: 50%;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow:
        0 2px 6px rgba(0, 0, 0, 0.25),
        0 0 0 6px rgba(0, 0, 0, 0.35),
        0 0 0 14px rgba(0, 0, 0, 0.18),
        0 0 28px rgba(0, 0, 0, 0.45);
    transition: 0.3s ease;
}


.bookingIcon:hover {
    transform: scale(1.05);
    box-shadow:
        0 6px 16px rgba(0, 0, 0, 0.35),
        0 0 0 8px rgba(0, 0, 0, 0.25),
        0 0 0 18px rgba(0, 0, 0, 0.12),
        0 0 40px rgba(0, 0, 0, 0.55);
    cursor: pointer;
    filter: invert(1);
}



.yellow {
    color: #f5b400;
    font-size: clamp(3.5rem, 6.5vw, 6.375rem) !important;
}


.bookingItem.active .bookingIcon {
    width: 102px;
    height: 102px;
}

.bookingItem.highlight-pulse {
    animation: highlightPulse 1.5s ease-in-out infinite;
    cursor: pointer;
    left: 7.2px;
}

.bookingItem.highlight-pulse .bookingIcon {
    box-shadow: 0 0 0 4px rgba(246, 179, 16, 0.3), 0 6px 20px rgba(246, 179, 16, 0.5) !important;
}

/* .bookingItem.highlight-pulse .bookingIcon img {
    filter: brightness(0) invert(1);
} */

.bookingItem.highlight-pulse span {
    color: #F6B310;
    font-weight: 700;
}

@keyframes highlightPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }
}

.heroTitleBLock {
    padding-bottom: 50px;
}

.heroTitle {
    font-weight: 600;
    padding-bottom: 10px;
}

.heroTitle2 {
    margin-left: 190px;
    margin-top: -35px;
}

.heroSection {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 90px 9vw;
    position: relative;
    overflow: hidden;
}

.heroImage {
    position: absolute;
    right: 9vw;
    bottom: 0vh;
    z-index: 1;
}

.heroImage img {
    width: clamp(320px, 45vw, 720px);
}

.arrowIcon {
    color: #f5b400;
    font-size: clamp(42px, 6vw, 90px);
    margin-right: 14px;
    vertical-align: middle;
}


.heroSection {
    width: 100%;
    height: auto;
}

.heroDesc {
    max-width: 300px;
    text-align: right;
}


@media (max-width: 768px) {

    .dFlexTrackFull {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        overflow-y: hidden;
        padding-top: 160px;
    }

    /* ================= HERO ================= */
    .heroSection {
        flex-direction: column;
        padding: 40px 6vw;
        text-align: center;
        min-height: unset;
        height: auto;
    }

    .heroTitleBLock {
        padding-bottom: 30px;
    }

    .heroTitle2 {
        margin-left: 0;
        margin-top: 10px;
    }

    /* .arrowIcon {
        display: none;
    } */

    .heroDesc {
        max-width: 100%;
        text-align: center;
        margin: 0 auto;
    }

    .heroImage {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 30px;
        z-index: 0;
    }

    .heroImage img {
        width: 100%;
        max-width: 420px;
    }

    /* ================= BOOKING BAR ================= */

    .bookingBar {
        width: 100%;
        height: auto !important;
        max-height: unset;
        padding: 7px;
        display: flex;
        justify-content: center;
        align-items: center;

    }

    .bookingTrack {
        position: relative;
        width: 100%;
        max-width: 420px;
        height: 70px;
        background: #F6B310;
        border-radius: 50px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 10px;
    }

    .bookingTrack::after {
        inset: auto 15px;
        width: auto;
        height: 40px;
    }

    .bookingItem {
        position: relative;
        left: auto;
        top: 15px;
        bottom: auto;
        transform: none;
        flex-direction: column-reverse;
        align-items: center;
        gap: 16px;
    }

    .bookingItem:nth-child(1),
    .bookingItem:nth-child(2),
    .bookingItem:nth-child(3) {
        top: -20px;
        bottom: auto;
        transform: none;
    }

    .bookingItem span {
        font-size: 12px !important;
        text-align: center;
        line-height: 1.1;
    }

    .bookingIcon {
        width: 56px;
        height: 56px;
    }

    .bookingItem.active .bookingIcon {
        width: 72px;
        height: 72px;
    }

    .bookingIcon img {
        width: 26px;
    }

    .centerIcon img {
        width: 34px;
    }
}

/* .heroContent {
    padding-top: 100px;
} */

@media(max-width:424px) {
    .heroTitle {
        font-weight: 600;
        padding-bottom: 0px !important;
    }

    .heroTitle2 {
        margin-left: 0;
        margin-top: 3px;
    }

    .heroTitleBLock {
        padding-bottom: 5px;
    }

    .heroContent {
        padding-top: 60px;
    }
}



.blankSection {
    background-color: #000;
    height: 130vh;
    background-image: url('/static/img/backgrounds/verticalFlats.png');
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: auto;
}




/* =============================== Footer Styles =============================== */
.footerContainer {
    display: flex;
    align-items: center;
    width: 100%;
    background-color: #FFE9B1;
    color: #000;
    /* flex-wrap: wrap; */
    flex-direction: column;
}

.footerCar {
    margin: 0;
    padding: 0;
    flex-shrink: 0;
}

.footerCar img {
    display: block;
    width: clamp(16rem, 35vw, 29.375rem);
}

.paymentMethods img {
    width: 50px;
}

.paymentMethodItem {
    background-color: #ffcf56;
    border: 2px solid #ffb700;
    border-radius: 5px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* make any animations for each item */
.paymentMethodItem:hover {
    transition: all 0.25s ease;
    transform: scale(1.05);
}

/* show payment method in right margin but not fully take 10px ahead of margin */
.paymentMethods {
    margin-top: 80px;
    margin-right: 20px;
}

.footerContent {
    display: flex;
    gap: clamp(2rem, 8vw, 7.5rem);
    padding: clamp(2rem, 5vw, 4.75rem);
    flex-wrap: wrap;
}

.footerContent h6 {
    font-weight: 600;
    margin-bottom: clamp(1rem, 3vw, 2.2rem);
}

.footerContent ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footerContent ul li {
    margin-bottom: clamp(0.6rem, 2vw, 1.125rem);
    cursor: pointer;
}

.contactDetails {
    max-width: clamp(18rem, 40vw, 20.625rem);
}

.contactItem {
    display: flex;
    align-items: center;
    gap: clamp(0.6rem, 2vw, 0.75rem);
    margin-bottom: clamp(0.75rem, 2vw, 1rem);
}

.contactItem i {
    background-color: #F6B310;
    color: #000;
    width: clamp(2rem, 4vw, 2.25rem);
    height: clamp(2rem, 4vw, 2.25rem);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(0.9rem, 2vw, 1.125rem);
    flex-shrink: 0;
}

.footerContent ul li,
.contactItem,
.contactItem i {
    transition: all 0.25s ease;
}

.footerContent ul li:hover {
    transform: translateX(0.25rem);
    opacity: 0.85;
}

.contactItem:hover {
    transform: translateX(0.25rem);
}

.contactItem:hover i {
    background-color: #000;
    color: #F6B310;
    transform: scale(1.05);
}



/* =============================== tariff Styles =============================== */


.tariffHero {
    background: url("/static/img/backgrounds/tariffHeroBg.png");
    background-position: center;
    background-size: cover;
    height: 84vh;
    display: flex;
    align-items: center;
}

.tariffHeroText {
    color: #fff;
    background-color: #F6B310;
    padding: clamp(12px, 2vw, 18px) clamp(36px, 5vw, 72px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: bold;
    border-radius: 0 100px 100px 0;
    width: fit-content;

}

@media(max-width:768px) {

    .tariffHero {

        align-items: start;
        padding-top: 200px;
    }
}

.tariffCarsContainer {
    padding: clamp(16px, 4vw, 48px);
}

.tariffCarCard {
    display: flex;
    align-items: center;
    padding: clamp(18px, 3vw, 26px);
    margin-top: 20px;
    margin-bottom: 20px;
}


.tariffCarImgWrap {
    background: #F6B310;
    border-radius: 15px;
    padding: clamp(4px, 3vw, 8px);
    flex-shrink: 0;
}

.tariffCarImgWrap img {
    width: clamp(260px, 32vw, 420px);
    display: block;
    border-radius: 15px;
}

.tariffCarDetails {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
}

.vehicleType {
    position: absolute;
    top: calc(-1.3 * clamp(28px, 4vw, 44px));
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: clamp(12px, 2vw, 24px);
}


.vehicleType span {
    font-size: clamp(0.8rem, 1.6vw, 1.95rem) !important;
    color: #fff;
    font-weight: 600;
}

.vehicleType h6 {
    font-size: clamp(1.4rem, 3.5vw, 3.2rem) !important;
    font-weight: 800;
    color: #F6B310;
}

.tariffRates {
    display: flex;
    justify-content: space-between;
    gap: clamp(16px, 3vw, 40px);
    background: #fff;
    border-radius: 0 28px 28px 0;
    padding: clamp(20px, 4vw, 36px);
}

.rateBox {
    flex: 1;
    text-align: center;
    color: #000;
}

.rateBox span {
    display: inline-block;
    background: #F6B310;
    padding: clamp(8px, 1.6vw, 12px) clamp(18px, 3vw, 32px);
    border-radius: 999px;
    font-size: clamp(0.8rem, 1.5vw, 1.95rem) !important;
}

.rateBox h6 {
    margin-top: clamp(12px, 2vw, 18px);
    font-size: clamp(1.4rem, 3vw, 2rem) !important;
}

.tariffCarCard {
    transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.tariffCarCard:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}


.tariffCarImgWrap {
    transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.tariffCarCard:hover .tariffCarImgWrap {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(246, 179, 16, 0.45);
}

.vehicleType h6 {
    transition: color 0.35s ease, letter-spacing 0.35s ease;
}

.tariffCarCard:hover .vehicleType h6 {
    letter-spacing: 0.06em;
}

.rateBox {
    transition: transform 0.35s ease;
}

.rateBox:hover {
    transform: translateY(-4px);
}

.rateBox span {
    transition: background 0.35s ease, color 0.35s ease;
}

.rateBox:hover span {
    background: #000;
    color: #F6B310;
}


@media (max-width: 992px) {
    .tariffCarCard {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .tariffCarImgWrap {
        margin-bottom: clamp(26px, 5vw, 78px);
    }

    .tariffCarDetails {
        width: 100%;
        align-items: center;
    }

    .tariffRates {
        width: 100%;
        border-radius: 28px;
    }
}

@media (max-width: 576px) {
    .tariffCarImgWrap img {
        width: 100%;
        max-width: 300px;
    }

    .vehicleType {
        position: static;
        transform: none;
        margin-bottom: clamp(12px, 4vw, 20px);
    }

    .tariffRates {
        flex-direction: column;
        gap: clamp(14px, 4vw, 24px);
        padding: clamp(16px, 5vw, 24px);
    }

    .rateBox h6 {
        font-size: clamp(1.2rem, 6vw, 1.6rem) !important;
    }
}


.tariffAdditionalChargesSecContainer {
    display: flex;
    align-items: center;
    gap: clamp(24px, 5vw, 64px);
    background: #000;
    color: #fff;
}

.additionalImgWrap {
    background: #FFE9B5;
    padding: clamp(20px, 4vw, 36px) clamp(24px, 5vw, 48px) clamp(20px, 4vw, 36px) 0;
    border-radius: 0 clamp(20px, 4vw, 36px) clamp(20px, 4vw, 36px) 0;
    flex-shrink: 0;
}


.additionalImgWrap img {
    width: clamp(220px, 30vw, 420px);
    display: block;
}



.additionalContent h2 {
    font-size: clamp(1.6rem, 4.5vw, 3.6rem) !important;
    font-weight: 800;
    margin-bottom: clamp(16px, 3vw, 28px);
}

.additionalContent ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.additionalContent li {
    position: relative;
    padding-left: 22px;
    margin-bottom: clamp(10px, 2vw, 16px);
    font-size: clamp(0.95rem, 2vw, 1.15rem) !important;
    line-height: 1.6;
    font-weight: 400;
}

/* custom bullet */
.additionalContent li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #ffffff;
    font-size: 1.4em;
    line-height: 1;
}

.tariffAdditionalChargesSecContainer {
    transition: background 0.4s ease;
}

.additionalImgWrap {
    transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.tariffAdditionalChargesSecContainer:hover .additionalImgWrap {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(255, 233, 181, 0.25);
}


@media (max-width: 992px) {
    .tariffAdditionalChargesSecContainer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: clamp(20px, 4vw, 40px);
        padding: clamp(20px, 4vw, 36px);
    }

    .additionalImgWrap {
        border-radius: clamp(20px, 4vw, 36px);
    }

    .additionalContent {
        max-width: 100%;
    }

    .additionalContent li {
        padding-left: 0;
    }

    .additionalContent li::before {
        position: static;
        margin-right: 8px;
    }
}


@media (max-width: 576px) {
    .additionalImgWrap img {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .additionalContent h2 {
        font-size: clamp(1.4rem, 6vw, 2rem) !important;
    }

    .additionalContent li {
        font-size: clamp(0.9rem, 4.5vw, 1.05rem) !important;
        line-height: 1.7;
    }
}


.blankSection2 {
    background-color: #000;
    min-height: clamp(120px, 30vh, 320px);
    position: relative;
    overflow: hidden;
}

/* image inside */
.blankSection2 img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);

    width: 130%;
    max-width: none;
    height: auto;
    pointer-events: none;
}

/* mobile tweak */
@media (max-width: 576px) {


    .blankSection2 img {
        width: 380%;
    }
}

/* =============================== callback page Styles =============================== */

.callBackHero {
    position: relative;
    height: 84vh;
    background: url("/static/img/backgrounds/callBackHeroBg.png") center/cover no-repeat;
}

/* LEFT BIG CALL BACK (DESKTOP) */
.callBackLeft {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.callBackBigBtn {
    background: #F7B500;
    color: #fff;
    border: none;
    padding: 18px 38px;
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    font-weight: 800;
    border-radius: 0 100px 100px 0;
}

/* CENTER FORM */
.inputCallBackHero {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.callBackForm {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

/* INPUT */
.callBackInput {
    width: clamp(18rem, 70vw, 32rem);
    padding: 14px 22px;
    border-radius: 999px;
    border: none;
    font-size: 14px;
    text-align: center;
}

/* BUTTON */
.callBackBtn {
    background: #F7B500;
    border: none;
    color: #000;
    padding: 10px 32px;
    border-radius: 999px;
    font-weight: 700;
}


/* ================= SMALL DESKTOP / LAPTOP ================= */
@media (max-width: 1200px) {

    .callBackHero {
        height: 80vh;
    }

    .callBackBigBtn {
        padding: 18px 34px;
        font-size: clamp(1.8rem, 3vw, 2.3rem);
    }

    .callBackInput {
        max-width: 460px;
        font-size: 14px;
    }

    .callBackBtn {
        padding: 10px 32px;
        font-size: 14px;
    }


    .callBackForm {
        padding-top: 250px;
    }
}


/* ================= TABLET (iPad) ================= */
@media (max-width: 768px) {

    .callBackHero {
        height: 78vh;
    }

    .callBackLeft {
        top: 34%;
    }

    .callBackBigBtn {
        padding: 14px 28px;
        font-size: 1.6rem;
    }

    .callBackInput {
        max-width: 360px;
        padding: 12px 20px;
        font-size: 13.5px;
    }

    .callBackBtn {
        padding: 9px 30px;
        font-size: 13.5px;
    }

    .callBackForm {
        padding-top: 60px;
    }
}


/* ------------------ MOBILE EXACT ------------------ */
@media (max-width: 576px) {

    .callBackHero {
        height: 75vh;
    }

    /* LEFT BUTTON → FLOAT LEFT CENTER */
    .callBackLeft {
        top: 32%;
        transform: none;
    }

    .callBackBigBtn {
        padding: 12px 26px;
        font-size: 1.3rem;
    }

    /* FORM STACK CENTER */
    .inputCallBackHero {
        align-items: center;
        padding-top: 120px;
    }

    .callBackInput {
        max-width: 300px;
        padding: 12px 20px;
        margin: 10px;
        font-size: 13px;
    }

    .callBackBtn {
        padding: 8px 28px;
        font-size: 13px;
    }
}



/* =============================== callback page Styles =============================== */

.b2bLoginHero {
    position: relative;
    height: 84vh;
    background: url("/static/img/backgrounds/b2bLoginBg.png") center/cover no-repeat;
}

/* LEFT BIG BUTTON */
.b2bLoginLeft {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.b2bLoginBigBtn {
    background: #F7B500;
    border: none;
    color: #ffffff;
    padding: 22px 42px;
    font-size: clamp(2rem, 4vw, 2.875rem);
    font-weight: 800;
    border-radius: 0 100px 100px 0;
    cursor: pointer;
}

/* CENTER FORM */
.inputb2bLoginHero {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

/* FORM */
.b2bLoginForm {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.b2bLoginInput {
    width: clamp(18rem, 60vw, 32.5rem);
    padding: 14px 22px;
    border-radius: 999px;
    border: none;
    outline: none;
    font-size: 15px;
}

.b2bLoginBtn {
    background: #F7B500;
    border: none;
    color: #000;
    padding: 12px 36px;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
}


@media (max-width: 1200px) {

    .b2bLoginHero {
        height: 80vh;
    }

    .b2bLoginBigBtn {
        padding: 18px 34px;
        font-size: clamp(1.8rem, 3vw, 2.3rem);
    }

    .b2bLoginInput {
        max-width: 460px;
        font-size: 14px;
    }

    .b2bLoginBtn {
        padding: 10px 32px;
        font-size: 14px;
    }

    .b2bLoginForm {
        padding-top: 250px;
    }
}

@media (max-width: 768px) {

    .b2bLoginHero {
        height: 78vh;
    }

    .b2bLoginLeft {
        top: 34%;
    }

    .b2bLoginBigBtn {
        padding: 14px 28px;
        font-size: 1.6rem;
    }

    .b2bLoginInput {
        max-width: 360px;
        padding: 12px 20px;
        font-size: 13.5px;
    }

    .b2bLoginBtn {
        padding: 9px 30px;
        font-size: 13.5px;
    }

    .b2bLoginForm {
        padding-top: 60px;
    }
}

@media (max-width: 576px) {

    .b2bLoginHero {
        height: 75vh;
    }

    .b2bLoginLeft {
        top: 32%;
        transform: none;
    }

    .b2bLoginBigBtn {
        padding: 12px 26px;
        font-size: 1.3rem;
    }

    .inputb2bLoginHero {
        align-items: center;
        padding-top: 120px;
    }

    .b2bLoginInput {
        max-width: 300px;
        padding: 12px 20px;
        margin: 10px;
        font-size: 13px;
    }

    .b2bLoginBtn {
        padding: 8px 28px;
        font-size: 13px;
    }
}

.equalizer.active span {
    animation: bounce 1s infinite ease-in-out;
}

/* Tariff Card Css */
#tariffSection {
    background: #ffffff;
    animation: fadeSlideUp 0.6s ease;
}


.tariff-card {
    cursor: pointer;
    border-radius: 16px;
    overflow: hidden;
    background: #F7B500;
    /* ✅ ONLY CARD BG */
    color: #000;
    transition: all 0.35s ease;
    border: 2px solid transparent;
}

.tariff-card:hover {
    transform: translateY(-10px) scale(1.04);
    border-color: #d49a00;
    box-shadow: 0 16px 40px rgba(247, 181, 0, 0.55);
}


.tariff-card img {
    transition: transform 0.4s ease;
}

.tariff-card:hover img {
    transform: scale(1.08);
}


.tariff-card h5,
.tariff-card p,
.tariff-card h6 {
    color: #000;
    font-weight: 600;
}

.tariff-card .text-success {
    color: #1a7f00 !important;
    font-weight: 700;
}


@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Voice Booking Form Css */

#bookingForm {
    background: #0f1115;
    max-height: 80vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #F6B310 transparent;
}

#bookingForm .form-control,
#bookingForm select,
#bookingForm textarea {
    background: transparent !important;
    color: #ffffff !important;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    border-radius: 10px;
    padding: 10px 14px;
    transition: all 0.25s ease;
}

#bookingForm .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

#bookingForm .form-control:focus,
#bookingForm select:focus,
#bookingForm textarea:focus {
    background: transparent !important;
    color: #fff;
    border-color: #F7B500;
    box-shadow: 0 0 0 0.2rem rgba(247, 181, 0, 0.25);
    outline: none;
}

#bookingForm .form-label {
    color: #f1f1f1;
    font-weight: 500;
}

#bookingForm select.form-control {
    appearance: none;
    -webkit-appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, #fff 50%),
        linear-gradient(135deg, #fff 50%, transparent 50%);
    background-position:
        calc(100% - 18px) 55%,
        calc(100% - 12px) 55%;
    background-size:
        6px 6px,
        6px 6px;
    background-repeat: no-repeat;
}

#bookingForm input[type=number]::-webkit-inner-spin-button,
#bookingForm input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

#bookingForm .choices__inner {
    background: transparent !important;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    border-radius: 10px;
}

#bookingForm .choices__list--single .choices__item {
    color: #fff;
}

#bookingForm .choices__list--dropdown {
    background: #111;
    border: 1px solid #333;
}

#bookingForm .choices__item--selectable {
    color: #fff;
}

#bookingForm .choices__item--selectable.is-highlighted {
    background: #F7B500;
    color: #000;
}

#bookingForm .form-control:hover,
#bookingForm select:hover {
    border-color: rgba(247, 181, 0, 0.6);
}

.flatpickr-current-month,
.flatpickr-current-month span.cur-month,
.flatpickr-current-month input.cur-year {
    color: #fff !important;
    fill: #fff !important;
}

.flatpickr-prev-month svg,
.flatpickr-next-month svg {
    fill: #fff !important;
}

.flatpickr-weekday {
    color: #fff !important;
}

.flatpickr-calendar {
    background: #1e1e1e !important;
    color: #fff !important;
    border-radius: 12px;
}

.flatpickr-day {
    color: #fff !important;
}

.flatpickr-day:hover,
.flatpickr-day.selected {
    background: #F6B310 !important;
    border-color: #F6B310 !important;
    color: #fff !important;
}

.flatpickr-months,
.flatpickr-weekdays {
    background: #111 !important;
    color: #fff !important;
}

.pac-container {
    z-index: 9999 !important;
}

.confirmBtn {
    transition: all 0.3s ease;
    border-radius: 4px !important;

}

.tariffAdditionalChargesSec ul {
    padding-left: 20px;
}

.tariffAdditionalChargesSec li {
    margin-bottom: 10px;
    line-height: 1.6;
}


.copyRightsSpan {
    letter-spacing: 0.5px;
    line-height: 1.6;
    text-align: center;
}

/* Floating Contact Icons */
.floating-contact-icons {
    position: fixed;
    right: 20px;
    bottom: 100px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.floating-contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    text-decoration: none;
    color: white;
    font-size: 28px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: pulse-pe 2s infinite;
}

.floating-contact-item:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.floating-contact-item.phone {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.floating-contact-item.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.floating-contact-item.email {
    background: linear-gradient(135deg, #EA4335, #D93025);
}

.floating-contact-item.email {
    animation: pulse-email 2s infinite;
}

@keyframes pulse-pe {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes pulse-email {
    0% {
        box-shadow: 0 0 0 0 rgba(234, 67, 53, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(234, 67, 53, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(234, 67, 53, 0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .floating-contact-icons {
        right: 15px;
        bottom: 80px;
        gap: 12px;
    }

    .floating-contact-item {
        width: 48px;
        height: 48px;
        font-size: 24px;
    }
}

/* Skeleton Loader for Tariff Cards */
.tariffSkeleton {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    width: 100%;
}

.skeleton-card {
    background: #1a1a2e;
    border-radius: 12px;
    overflow: hidden;
}

.skeleton-image {
    width: 100%;
    height: 180px;
    background: linear-gradient(90deg, #2a2a3e 25%, #3a3a4e 50%, #2a2a3e 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

.skeleton-content {
    padding: 20px;
}

.skeleton-title {
    height: 24px;
    width: 60%;
    background: linear-gradient(90deg, #2a2a3e 25%, #3a3a4e 50%, #2a2a3e 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
    margin-bottom: 15px;
}

.skeleton-pricing {
    height: 40px;
    width: 100%;
    background: linear-gradient(90deg, #2a2a3e 25%, #3a3a4e 50%, #2a2a3e 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* Additional Charges - Mobile Fix */
@media (max-width: 768px) {
    .tariffAdditionalChargesSecContainer {
        margin-left: 15px !important;
        margin-right: 15px !important;
    }

    .additionalContent h2 {
        font-size: 1.2rem;
    }

    .additionalContent ul {
        font-size: 0.9rem;
    }
}