/* =========================================
   GLOBAL PAGE RESET
========================================= */

html,
body {
    width: 100%;
    min-width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

img,
video {
    max-width: 100%;
}

body {
    font-family: "Inter", Arial, sans-serif;
}

/* =========================================
   CAR WITH DRIVER INDIA
   HEADER CSS
========================================= */

.cwdi-header,
.cwdi-header * {
    box-sizing: border-box;
}


/* HEADER */

.cwdi-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;

    background: rgba(5, 20, 38, 0.28);

    border-bottom: 1px solid rgba(255, 255, 255, 0.16);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    transition:
        background 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s ease;
}


/* STICKY HEADER */

.cwdi-header.cwdi-scrolled {
    position: fixed;

    background: rgba(5, 20, 38, 0.96);

    border-bottom-color: rgba(255, 255, 255, 0.08);

    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.18);
}


/* INNER */

.cwdi-header-inner {
    width: min(1440px, calc(100% - 70px));

    min-height: 88px;

    margin: 0 auto;

    display: flex;
    align-items: center;

    gap: 30px;
}


/* =========================================
   LOGO
========================================= */

.cwdi-logo {
    display: inline-flex;
    align-items: center;

    gap: 11px;

    text-decoration: none;

    flex-shrink: 0;
}


.cwdi-logo-icon {
    width: 47px;
    height: 47px;

    border-radius: 13px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #071b31;

    background: #d8ae55;

    font-size: 22px;

    box-shadow:
        0 6px 18px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255,255,255,0.35);
}


.cwdi-logo-text {
    display: flex;
    flex-direction: column;

    line-height: 1;

    white-space: nowrap;
}


.cwdi-logo-text strong {
    font-family:
        "Montserrat",
        "Arial",
        sans-serif;

    font-size: 18px;

    font-weight: 800;

    letter-spacing: 0.8px;

    color: #ffffff;
}


.cwdi-logo-text small {
    margin-top: 6px;

    font-family:
        "Montserrat",
        "Arial",
        sans-serif;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 4px;

    color: #d8ae55;
}


/* =========================================
   NAVIGATION
========================================= */

.cwdi-nav {
    margin-left: auto;

    display: flex;
    align-items: center;

    gap: 5px;
}


.cwdi-nav-link {
    position: relative;

    display: inline-flex;
    align-items: center;

    gap: 7px;

    padding: 32px 14px;

    color: rgba(255,255,255,0.92);

    text-decoration: none;

    font-family:
        "Montserrat",
        "Arial",
        sans-serif;

    font-size: 14px;

    font-weight: 600;

    letter-spacing: 0.15px;

    transition:
        color 0.25s ease;
}


.cwdi-nav-link::after {
    content: "";

    position: absolute;

    left: 14px;
    right: 14px;

    bottom: 19px;

    height: 2px;

    border-radius: 10px;

    background: #d8ae55;

    transform: scaleX(0);

    transform-origin: center;

    transition: transform 0.25s ease;
}


.cwdi-nav-link:hover,
.cwdi-nav-link.active {
    color: #ffffff;
}


.cwdi-nav-link:hover::after,
.cwdi-nav-link.active::after {
    transform: scaleX(1);
}


.cwdi-dropdown-toggle i {
    font-size: 9px;

    transition: transform 0.25s ease;
}


.cwdi-dropdown:hover
.cwdi-dropdown-toggle i {
    transform: rotate(180deg);
}


/* =========================================
   DROPDOWN
========================================= */

.cwdi-dropdown {
    position: relative;
}


.cwdi-dropdown-menu {
    position: absolute;

    top: calc(100% - 10px);

    left: 50%;

    width: 235px;

    padding: 10px;

    opacity: 0;
    visibility: hidden;

    transform:
        translate(-50%, 12px);

    background: rgba(7, 27, 49, 0.98);

    border:
        1px solid rgba(216, 174, 85, 0.25);

    border-radius: 14px;

    box-shadow:
        0 20px 45px rgba(0,0,0,0.28);

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;
}


.cwdi-dropdown:hover
.cwdi-dropdown-menu {
    opacity: 1;

    visibility: visible;

    transform:
        translate(-50%, 0);
}


.cwdi-dropdown-menu a {
    display: flex;
    align-items: center;

    gap: 12px;

    padding: 12px 13px;

    border-radius: 9px;

    color: rgba(255,255,255,0.88);

    text-decoration: none;

    font-family:
        "Montserrat",
        "Arial",
        sans-serif;

    font-size: 13px;

    font-weight: 500;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        padding 0.2s ease;
}


.cwdi-dropdown-menu a i {
    width: 20px;

    color: #d8ae55;

    font-size: 14px;
}


.cwdi-dropdown-menu a:hover {
    color: #ffffff;

    background:
        rgba(216,174,85,0.10);

    padding-left: 17px;
}


/* =========================================
   HEADER ACTIONS
========================================= */

.cwdi-header-actions {
    display: flex;
    align-items: center;

    gap: 20px;

    flex-shrink: 0;
}


/* CALL */

.cwdi-call {
    display: flex;
    align-items: center;

    gap: 9px;

    color: #ffffff;

    text-decoration: none;
}


.cwdi-call-icon {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #d8ae55;

    border:
        1px solid rgba(216,174,85,0.55);

    font-size: 13px;
}


.cwdi-call-text {
    display: flex;
    flex-direction: column;

    gap: 3px;
}


.cwdi-call-text small {
    font-family:
        "Montserrat",
        "Arial",
        sans-serif;

    font-size: 10px;

    color:
        rgba(255,255,255,0.62);

    text-transform: uppercase;

    letter-spacing: 0.7px;
}


.cwdi-call-text strong {
    font-family:
        "Montserrat",
        "Arial",
        sans-serif;

    font-size: 12px;

    font-weight: 700;

    color: #ffffff;
}


/* BOOK BUTTON */

.cwdi-book-btn {
    min-height: 46px;

    padding: 0 18px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    color: #071b31;

    background: #d8ae55;

    border: 1px solid #d8ae55;

    border-radius: 7px;

    text-decoration: none;

    font-family:
        "Montserrat",
        "Arial",
        sans-serif;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 0.2px;

    box-shadow:
        0 7px 18px rgba(0,0,0,0.18);

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}


.cwdi-book-btn i {
    font-size: 12px;

    transition:
        transform 0.25s ease;
}


.cwdi-book-btn:hover {
    background: #ffffff;

    border-color: #ffffff;

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(0,0,0,0.22);
}


.cwdi-book-btn:hover i {
    transform: translateX(4px);
}


/* =========================================
   MOBILE MENU BUTTON
========================================= */

.cwdi-menu-btn {
    display: none;

    width: 46px;
    height: 46px;

    padding: 0;

    border: 1px solid rgba(255,255,255,0.25);

    border-radius: 8px;

    background: rgba(255,255,255,0.08);

    cursor: pointer;

    align-items: center;
    justify-content: center;

    flex-direction: column;

    gap: 5px;
}


.cwdi-menu-btn span {
    display: block;

    width: 21px;
    height: 2px;

    border-radius: 10px;

    background: #ffffff;

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}


.cwdi-menu-btn.active span:nth-child(1) {
    transform:
        translateY(7px)
        rotate(45deg);
}


.cwdi-menu-btn.active span:nth-child(2) {
    opacity: 0;
}


.cwdi-menu-btn.active span:nth-child(3) {
    transform:
        translateY(-7px)
        rotate(-45deg);
}


/* =========================================
   MOBILE MENU
========================================= */

.cwdi-mobile-menu {
    display: none;

    max-height: calc(100vh - 80px);

    overflow-y: auto;

    background:
        rgba(5, 20, 38, 0.98);

    border-top:
        1px solid rgba(255,255,255,0.08);
}


.cwdi-mobile-inner {
    padding: 12px 22px 25px;
}


.cwdi-mobile-link {
    min-height: 52px;

    display: flex;
    align-items: center;

    gap: 13px;

    color: rgba(255,255,255,0.9);

    text-decoration: none;

    border-bottom:
        1px solid rgba(255,255,255,0.07);

    font-family:
        "Montserrat",
        "Arial",
        sans-serif;

    font-size: 15px;

    font-weight: 600;
}


.cwdi-mobile-link i {
    width: 22px;

    color: #d8ae55;

    font-size: 14px;
}


.cwdi-mobile-link.active {
    color: #d8ae55;
}


/* MOBILE SERVICES */

.cwdi-mobile-service-btn {
    width: 100%;

    min-height: 52px;

    padding: 0;

    display: flex;
    align-items: center;
    justify-content: space-between;

    color: rgba(255,255,255,0.9);

    background: transparent;

    border: 0;

    border-bottom:
        1px solid rgba(255,255,255,0.07);

    cursor: pointer;

    font-family:
        "Montserrat",
        "Arial",
        sans-serif;

    font-size: 15px;

    font-weight: 600;
}


.cwdi-mobile-service-btn span {
    display: flex;
    align-items: center;

    gap: 13px;
}


.cwdi-mobile-service-btn span i {
    width: 22px;

    color: #d8ae55;
}


.cwdi-mobile-service-btn > i {
    color: #d8ae55;

    font-size: 10px;

    transition:
        transform 0.25s ease;
}


.cwdi-mobile-services.open
.cwdi-mobile-service-btn > i {
    transform: rotate(180deg);
}


/* SUBMENU */

.cwdi-mobile-submenu {
    display: none;

    padding: 5px 0 7px 35px;

    border-bottom:
        1px solid rgba(255,255,255,0.07);
}


.cwdi-mobile-services.open
.cwdi-mobile-submenu {
    display: block;
}


.cwdi-mobile-submenu a {
    display: block;

    padding: 11px 0;

    color:
        rgba(255,255,255,0.68);

    text-decoration: none;

    font-family:
        "Montserrat",
        "Arial",
        sans-serif;

    font-size: 14px;

    font-weight: 500;
}


/* MOBILE DIVIDER */

.cwdi-mobile-divider {
    height: 18px;
}


/* MOBILE CALL */

.cwdi-mobile-call {
    min-height: 65px;

    padding: 0 5px;

    display: flex;
    align-items: center;

    gap: 13px;

    color: #ffffff;

    text-decoration: none;
}


.cwdi-mobile-call-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(216,174,85,0.12);

    color: #d8ae55;
}


.cwdi-mobile-call span:last-child {
    display: flex;
    flex-direction: column;

    gap: 4px;
}


.cwdi-mobile-call small {
    color:
        rgba(255,255,255,0.55);

    font-size: 11px;

    font-family:
        "Montserrat",
        "Arial",
        sans-serif;
}


.cwdi-mobile-call strong {
    color: #ffffff;

    font-size: 15px;

    font-family:
        "Montserrat",
        "Arial",
        sans-serif;
}


/* MOBILE BOOK */

.cwdi-mobile-book {
    min-height: 52px;

    padding: 0 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    color: #071b31;

    background: #d8ae55;

    border-radius: 7px;

    text-decoration: none;

    font-family:
        "Montserrat",
        "Arial",
        sans-serif;

    font-size: 14px;

    font-weight: 800;
}


.cwdi-mobile-book i {
    font-size: 12px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1200px) {

    .cwdi-header-inner {
        width: min(100%, calc(100% - 40px));

        gap: 18px;
    }

    .cwdi-nav {
        gap: 0;
    }

    .cwdi-nav-link {
        padding-left: 9px;
        padding-right: 9px;

        font-size: 13px;
    }

    .cwdi-nav-link::after {
        left: 9px;
        right: 9px;
    }

    .cwdi-call {
        display: none;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 991px) {

    .cwdi-header-inner {
        width: calc(100% - 32px);

        min-height: 78px;
    }

    .cwdi-nav,
    .cwdi-header-actions {
        display: none;
    }

    .cwdi-menu-btn {
        display: flex;

        margin-left: auto;
    }

    .cwdi-mobile-menu {
        display: block;

        max-height: 0;

        overflow: hidden;

        opacity: 0;

        transition:
            max-height 0.35s ease,
            opacity 0.25s ease;
    }

    .cwdi-mobile-menu.open {
        max-height: calc(100vh - 78px);

        opacity: 1;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 520px) {

    .cwdi-header-inner {
        width: calc(100% - 24px);

        min-height: 72px;
    }

    .cwdi-logo-icon {
        width: 42px;
        height: 42px;

        border-radius: 11px;

        font-size: 19px;
    }

    .cwdi-logo-text strong {
        font-size: 14px;

        letter-spacing: 0.5px;
    }

    .cwdi-logo-text small {
        margin-top: 5px;

        font-size: 8px;

        letter-spacing: 3px;
    }

    .cwdi-menu-btn {
        width: 43px;
        height: 43px;
    }

    .cwdi-mobile-inner {
        padding-left: 16px;
        padding-right: 16px;
    }

}


/* =========================================
   REDUCE MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

    .cwdi-header,
    .cwdi-dropdown-menu,
    .cwdi-book-btn,
    .cwdi-mobile-menu,
    .cwdi-menu-btn span {
        transition: none !important;
    }

}








/* =========================================
   HERO RESET
========================================= */

.cwdi-hero,
.cwdi-hero * {
    box-sizing: border-box;
}


.cwdi-hero {
    position: relative;

    width: 100%;

    min-height: 100vh;
    min-height: 760px;

    margin: 0;
    padding: 0;

    overflow: hidden;

    background: #071b31;
}


/* =========================================
   VIDEO
========================================= */

.cwdi-hero-video {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    z-index: 1;

    overflow: hidden;
}


.cwdi-hero-video video {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;
}


/* =========================================
   OVERLAY
========================================= */

.cwdi-hero-overlay {
    position: absolute;

    inset: 0;

    z-index: 2;

    background:
        linear-gradient(
            90deg,
            rgba(3, 16, 31, 0.90) 0%,
            rgba(3, 16, 31, 0.72) 42%,
            rgba(3, 16, 31, 0.48) 100%
        );
}


.cwdi-hero-overlay::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(3,16,31,0.30) 0%,
            transparent 35%,
            rgba(3,16,31,0.58) 100%
        );
}


/* =========================================
   CONTENT
========================================= */

.cwdi-hero-content {
    position: relative;

    z-index: 5;

    width: 100%;

    min-height: 100vh;

    min-height: 760px;

    padding:
        145px 5% 38px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;
}


/* =========================================
   HEADING
========================================= */

.cwdi-hero-heading {
    width: 100%;

    max-width: 1050px;

    margin: 0 auto 25px;

    text-align: center;
}


.cwdi-hero-tag {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 14px;

    color: #e2bb68;

    font-family:
        "Montserrat",
        Arial,
        sans-serif;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2.5px;
}


.cwdi-hero-tag i {
    font-size: 13px;
}


.cwdi-hero-heading h1 {
    margin: 0;

    color: #ffffff;

    font-family:
        "Montserrat",
        Arial,
        sans-serif;

    font-size: clamp(42px, 5vw, 70px);

    font-weight: 800;

    line-height: 1.05;

    letter-spacing: -1.5px;
}


.cwdi-hero-heading h1 span {
    color: #e2bb68;
}


.cwdi-hero-heading p {
    max-width: 650px;

    margin:
        15px auto 0;

    color:
        rgba(255,255,255,0.82);

    font-family:
        "Inter",
        Arial,
        sans-serif;

    font-size: 16px;

    line-height: 1.6;
}


/* =========================================
   BOOKING BOX
========================================= */

.cwdi-booking-box {
    width: 100%;

    max-width: 1140px;

    margin: 0 auto;

    background:
        rgba(255,255,255,0.97);

    border:
        1px solid rgba(255,255,255,0.8);

    border-radius: 13px;

    box-shadow:
        0 25px 70px rgba(0,0,0,0.28);

    overflow: hidden;
}


/* =========================================
   TABS
========================================= */

.cwdi-trip-tabs {
    min-height: 66px;

    display: flex;

    align-items: stretch;

    justify-content: center;

    gap: 0;

    border-bottom:
        1px solid #e8e8e8;

    background: #ffffff;
}


.cwdi-trip-tab {
    position: relative;

    min-width: 180px;

    padding: 0 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 11px;

    border: 0;

    background: transparent;

    color: #9ba1a9;

    cursor: pointer;

    font-family:
        "Montserrat",
        Arial,
        sans-serif;

    font-size: 13px;

    font-weight: 700;

    transition:
        color 0.25s ease;
}


.cwdi-trip-tab i {
    font-size: 16px;

    transition:
        transform 0.25s ease;
}


.cwdi-trip-tab::after {
    content: "";

    position: absolute;

    left: 20px;
    right: 20px;

    bottom: -1px;

    height: 3px;

    background: #e2bb68;

    transform: scaleX(0);

    transition:
        transform 0.25s ease;
}


.cwdi-trip-tab:hover {
    color: #071b31;
}


.cwdi-trip-tab.active {
    color: #071b31;
}


.cwdi-trip-tab.active i {
    color: #c0933c;
}


.cwdi-trip-tab.active::after {
    transform: scaleX(1);
}


/* =========================================
   FORMS
========================================= */

.cwdi-trip-form {
    display: none;

    padding: 24px 25px 22px;
}


.cwdi-trip-form.active {
    display: block;
}


/* =========================================
   FORM ROW
========================================= */

.cwdi-form-row {
    width: 100%;

    display: grid;

    grid-template-columns:
        1.05fr
        1.35fr
        1.35fr
        1.15fr
        1.05fr;

    gap: 0;

    border:
        1px solid #e1e4e8;

    border-radius: 7px;

    overflow: hidden;

    background: #ffffff;
}


.cwdi-form-row + .cwdi-form-row {
    margin-top: 14px;
}


/* ROUND FORM FIRST ROW */

#cwdi-round-form .cwdi-form-row:first-child {
    grid-template-columns:
        1fr
        1.15fr
        1.05fr
        1fr
        1.05fr
        1fr;
}


/* =========================================
   FIELD
========================================= */

.cwdi-field {
    min-width: 0;

    position: relative;

    padding: 0 14px;

    background: #ffffff;

    border-right:
        1px solid #e1e4e8;
}


.cwdi-field:last-child {
    border-right: 0;
}


.cwdi-field label {
    display: block;

    padding-top: 8px;

    margin-bottom: 1px;

    color: #687382;

    font-family:
        "Montserrat",
        Arial,
        sans-serif;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 0.2px;
}


.cwdi-input {
    position: relative;

    height: 48px;

    display: flex;

    align-items: center;
}


.cwdi-input > i:first-child {
    flex-shrink: 0;

    width: 20px;

    color: #b0b6be;

    font-size: 13px;
}


.cwdi-input input,
.cwdi-input select {
    width: 100%;

    height: 100%;

    min-width: 0;

    padding:
        0 5px;

    border: 0;

    outline: 0;

    background: transparent;

    color: #263244;

    font-family:
        "Inter",
        Arial,
        sans-serif;

    font-size: 13px;

    font-weight: 500;
}


.cwdi-input input::placeholder {
    color: #a9afb7;
}


.cwdi-input select {
    appearance: none;

    -webkit-appearance: none;

    padding-right: 20px;

    cursor: pointer;
}


.cwdi-select-arrow {
    position: absolute;

    right: 0;

    width: auto !important;

    color: #858d97 !important;

    font-size: 9px !important;

    pointer-events: none;
}


/* DATE INPUT */

.cwdi-input input[type="date"],
.cwdi-input input[type="time"] {
    color: #626b76;

    font-size: 12px;
}


/* =========================================
   PERSON ROW
========================================= */

.cwdi-person-row {
    grid-template-columns:
        1.25fr
        1.25fr
        1.15fr
        0.65fr;
}


/* =========================================
   SUBMIT
========================================= */

.cwdi-submit {
    min-height: 100%;

    padding: 0 22px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    border: 0;

    border-radius: 0;

    color: #071b31;

    background: #e2bb68;

    cursor: pointer;

    font-family:
        "Montserrat",
        Arial,
        sans-serif;

    font-size: 13px;

    font-weight: 800;

    transition:
        background 0.25s ease,
        color 0.25s ease;
}


.cwdi-submit i {
    font-size: 11px;

    transition:
        transform 0.25s ease;
}


.cwdi-submit:hover {
    color: #ffffff;

    background: #071b31;
}


.cwdi-submit:hover i {
    transform: translateX(4px);
}


/* =========================================
   TRUST
========================================= */

.cwdi-hero-trust {
    width: 100%;

    max-width: 1000px;

    margin-top: 18px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 35px;

    color:
        rgba(255,255,255,0.78);

    font-family:
        "Inter",
        Arial,
        sans-serif;

    font-size: 11px;

    font-weight: 500;
}


.cwdi-hero-trust div {
    display: flex;

    align-items: center;

    gap: 7px;
}


.cwdi-hero-trust i {
    color: #e2bb68;

    font-size: 12px;
}


/* =========================================
   LARGE LAPTOP
========================================= */

@media (max-width: 1200px) {

    .cwdi-hero-content {
        padding-left: 3%;
        padding-right: 3%;
    }

    .cwdi-booking-box {
        max-width: 1080px;
    }

    .cwdi-field {
        padding-left: 10px;
        padding-right: 10px;
    }

    .cwdi-input input,
    .cwdi-input select {
        font-size: 12px;
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .cwdi-hero {
        min-height: auto;
    }

    .cwdi-hero-content {
        min-height: auto;

        padding:
            135px 20px 35px;
    }

    .cwdi-hero-heading {
        margin-bottom: 25px;
    }

    .cwdi-hero-heading h1 {
        font-size: 48px;
    }

    .cwdi-booking-box {
        max-width: 720px;
    }

    .cwdi-form-row,
    #cwdi-round-form .cwdi-form-row:first-child {
        grid-template-columns:
            repeat(2, 1fr);

        border-radius: 8px;
    }

    .cwdi-field {
        min-height: 72px;

        border-right:
            1px solid #e1e4e8;

        border-bottom:
            1px solid #e1e4e8;
    }

    .cwdi-field:nth-child(2n) {
        border-right: 0;
    }

    .cwdi-field:nth-last-child(-n+2) {
        border-bottom: 0;
    }

    .cwdi-person-row {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .cwdi-person-row .cwdi-field:nth-child(2n) {
        border-right: 0;
    }

    .cwdi-person-row .cwdi-field:nth-last-child(-n+2) {
        border-bottom: 0;
    }

    .cwdi-submit {
        min-height: 62px;

        border-radius: 0;
    }

    .cwdi-hero-trust {
        gap: 20px;

        flex-wrap: wrap;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .cwdi-hero {
        min-height: auto;
    }

    .cwdi-hero-video video {
        object-position: 62% center;
    }

    .cwdi-hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(3,16,31,0.72) 0%,
                rgba(3,16,31,0.80) 45%,
                rgba(3,16,31,0.93) 100%
            );
    }

    .cwdi-hero-content {
        padding:
            105px 12px 28px;
    }

    .cwdi-hero-heading {
        margin-bottom: 20px;
    }

    .cwdi-hero-tag {
        font-size: 9px;

        letter-spacing: 1.7px;

        margin-bottom: 12px;
    }

    .cwdi-hero-heading h1 {
        font-size: 39px;

        line-height: 1.08;

        letter-spacing: -0.8px;
    }

    .cwdi-hero-heading p {
        margin-top: 12px;

        padding: 0 10px;

        font-size: 14px;

        line-height: 1.55;
    }


    /* BOOKING BOX */

    .cwdi-booking-box {
        width: 100%;

        border-radius: 10px;
    }


    /* TABS */

    .cwdi-trip-tabs {
        min-height: 57px;
    }

    .cwdi-trip-tab {
        min-width: 0;

        flex: 1;

        padding: 0 10px;

        font-size: 11px;
    }

    .cwdi-trip-tab i {
        font-size: 13px;
    }

    .cwdi-trip-tab::after {
        left: 10px;
        right: 10px;
    }


    /* FORM */

    .cwdi-trip-form {
        padding:
            12px;
    }

    .cwdi-form-row,
    #cwdi-round-form .cwdi-form-row:first-child,
    .cwdi-person-row {
        display: flex;

        flex-direction: column;

        border-radius: 7px;
    }


    .cwdi-field {
        width: 100%;

        min-height: 67px;

        border-right: 0 !important;

        border-bottom:
            1px solid #e1e4e8 !important;
    }

    .cwdi-field:last-child {
        border-bottom: 0 !important;
    }


    .cwdi-input {
        height: 42px;
    }


    .cwdi-input input,
    .cwdi-input select {
        font-size: 13px;
    }


    .cwdi-submit {
        width: 100%;

        min-height: 54px;

        margin-top: 0;

        border-radius: 0 0 6px 6px;
    }


    /* TRUST */

    .cwdi-hero-trust {
        margin-top: 16px;

        display: grid;

        grid-template-columns:
            repeat(2, 1fr);

        gap: 10px;

        font-size: 10px;
    }

    .cwdi-hero-trust div {
        justify-content: center;

        padding: 7px 3px;
    }

}


/* =========================================
   VERY SMALL MOBILE
========================================= */

@media (max-width: 380px) {

    .cwdi-hero-content {
        padding-left: 8px;
        padding-right: 8px;
    }

    .cwdi-hero-heading h1 {
        font-size: 34px;
    }

    .cwdi-hero-heading p {
        font-size: 13px;
    }

    .cwdi-trip-tab {
        font-size: 10px;
    }

    .cwdi-trip-form {
        padding: 9px;
    }

}


/* =========================================
   OUR CHAUFFEUR SERVICES
========================================= */

.cwdi-services,
.cwdi-services * {
    box-sizing: border-box;
}

.cwdi-services {
    position: relative;

    width: 100%;
    min-height: 760px;

    padding: 105px 0 95px;

    overflow: hidden;

    background: #f7f5f0;

    color: #071b31;
}


/* BACKGROUND */

.cwdi-services-bg {
    position: absolute;

    width: 650px;
    height: 650px;

    right: -250px;
    top: 70px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(216,174,85,0.14) 0%,
            rgba(216,174,85,0.05) 38%,
            transparent 70%
        );

    pointer-events: none;
}


/* CONTAINER */

.cwdi-services-container {
    position: relative;

    z-index: 2;

    width: min(1200px, calc(100% - 50px));

    margin: 0 auto;
}


/* =========================================
   HEADING
========================================= */

.cwdi-services-heading {
    max-width: 760px;

    margin: 0 auto 55px;

    text-align: center;
}


.cwdi-services-eyebrow {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 13px;

    margin-bottom: 17px;

    color: #b48632;

    font-family:
        "Montserrat",
        Arial,
        sans-serif;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2.5px;
}


.cwdi-services-eyebrow span {
    width: 35px;
    height: 1px;

    background: #d8ae55;

    position: relative;
}


.cwdi-services-eyebrow span:first-child::after,
.cwdi-services-eyebrow span:last-child::after {
    content: "";

    position: absolute;

    width: 4px;
    height: 4px;

    top: -2px;

    border-radius: 50%;

    background: #d8ae55;
}


.cwdi-services-eyebrow span:first-child::after {
    right: 0;
}


.cwdi-services-eyebrow span:last-child::after {
    left: 0;
}


.cwdi-services-heading h2 {
    margin: 0;

    font-family:
        "Montserrat",
        Arial,
        sans-serif;

    font-size: clamp(36px, 4vw, 54px);

    line-height: 1.08;

    font-weight: 800;

    letter-spacing: -1.5px;

    color: #071b31;
}


.cwdi-services-heading h2 span {
    color: #b48632;
}


.cwdi-services-heading p {
    max-width: 680px;

    margin: 18px auto 0;

    color: #66717e;

    font-family:
        "Inter",
        Arial,
        sans-serif;

    font-size: 16px;

    line-height: 1.7;
}


/* =========================================
   SERVICES GRID
========================================= */

.cwdi-services-grid {
    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 16px;
}


/* =========================================
   CARD
========================================= */

.cwdi-service-card {
    position: relative;

    min-height: 390px;

    padding: 30px 27px 28px;

    overflow: hidden;

    border:
        1px solid rgba(7,27,49,0.09);

    border-radius: 16px;

    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #fbfaf7 100%
        );

    box-shadow:
        0 12px 35px rgba(7,27,49,0.07);

    transition:
        transform 0.45s cubic-bezier(.2,.8,.2,1),
        box-shadow 0.45s ease,
        border-color 0.35s ease;
}


/* TOP GOLD LINE */

.cwdi-service-card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 100%;
    height: 3px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #d8ae55,
            transparent
        );

    transform: scaleX(0);

    transition:
        transform 0.45s ease;
}


/* CARD HOVER */

.cwdi-service-card:hover {
    transform: translateY(-12px);

    border-color:
        rgba(216,174,85,0.55);

    box-shadow:
        0 25px 55px rgba(7,27,49,0.14);
}


.cwdi-service-card:hover::before {
    transform: scaleX(1);
}


/* =========================================
   NUMBER
========================================= */

.cwdi-service-number {
    position: absolute;

    top: 20px;
    right: 23px;

    font-family:
        "Montserrat",
        Arial,
        sans-serif;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1px;

    color: rgba(7,27,49,0.20);

    transition:
        color 0.35s ease,
        transform 0.35s ease;
}


.cwdi-service-card:hover .cwdi-service-number {
    color: #d8ae55;

    transform:
        translateY(-3px);
}


/* =========================================
   ICON
========================================= */

.cwdi-service-icon {
    width: 65px;
    height: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 48px;

    border-radius: 15px;

    color: #071b31;

    background:
        linear-gradient(
            135deg,
            rgba(216,174,85,0.24),
            rgba(216,174,85,0.08)
        );

    border:
        1px solid rgba(216,174,85,0.25);

    font-size: 24px;

    transition:
        transform 0.45s cubic-bezier(.2,.8,.2,1),
        background 0.35s ease,
        color 0.35s ease;
}


.cwdi-service-card:hover .cwdi-service-icon {
    transform:
        rotate(-6deg)
        scale(1.08);

    color: #ffffff;

    background: #071b31;
}


/* =========================================
   CONTENT
========================================= */

.cwdi-service-content {
    position: relative;

    z-index: 3;
}


.cwdi-service-label {
    display: block;

    margin-bottom: 9px;

    color: #b48632;

    font-family:
        "Montserrat",
        Arial,
        sans-serif;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.cwdi-service-content h3 {
    margin: 0 0 13px;

    color: #071b31;

    font-family:
        "Montserrat",
        Arial,
        sans-serif;

    font-size: 23px;

    line-height: 1.2;

    font-weight: 750;
}


.cwdi-service-content p {
    margin: 0;

    color: #6d7680;

    font-family:
        "Inter",
        Arial,
        sans-serif;

    font-size: 14px;

    line-height: 1.65;
}


/* =========================================
   SERVICE LINK
========================================= */

.cwdi-service-link {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-top: 23px;

    color: #071b31;

    text-decoration: none;

    font-family:
        "Montserrat",
        Arial,
        sans-serif;

    font-size: 12px;

    font-weight: 800;

    transition:
        color 0.25s ease,
        gap 0.3s ease;
}


.cwdi-service-link i {
    color: #c0933c;

    font-size: 11px;

    transition:
        transform 0.3s ease;
}


.cwdi-service-link:hover {
    color: #b48632;

    gap: 13px;
}


.cwdi-service-link:hover i {
    transform: translateX(3px);
}


/* =========================================
   CARD GLOW
========================================= */

.cwdi-service-glow {
    position: absolute;

    width: 180px;
    height: 180px;

    right: -90px;
    bottom: -90px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(216,174,85,0.20),
            transparent 68%
        );

    opacity: 0;

    transform: scale(0.6);

    transition:
        opacity 0.5s ease,
        transform 0.5s ease;
}


.cwdi-service-card:hover .cwdi-service-glow {
    opacity: 1;

    transform: scale(1);
}


/* =========================================
   BOTTOM CTA
========================================= */

.cwdi-services-bottom {
    min-height: 85px;

    margin-top: 42px;

    padding:
        0 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 30px;

    border-radius: 14px;

    background: #071b31;

    box-shadow:
        0 18px 45px rgba(7,27,49,0.14);
}


.cwdi-services-bottom p {
    margin: 0;

    color: rgba(255,255,255,0.85);

    font-family:
        "Inter",
        Arial,
        sans-serif;

    font-size: 14px;

    font-weight: 500;
}


/* ROUTE */

.cwdi-services-route {
    display: flex;

    align-items: center;

    gap: 5px;
}


.cwdi-services-route span:not(.cwdi-route-dot) {
    width: 5px;
    height: 1px;

    background:
        rgba(216,174,85,0.5);
}


.cwdi-route-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #d8ae55;

    box-shadow:
        0 0 0 4px rgba(216,174,85,0.12);
}


/* CTA BUTTON */

.cwdi-services-btn {
    min-height: 45px;

    padding: 0 20px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    border-radius: 6px;

    background: #d8ae55;

    color: #071b31;

    text-decoration: none;

    font-family:
        "Montserrat",
        Arial,
        sans-serif;

    font-size: 12px;

    font-weight: 800;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}


.cwdi-services-btn:hover {
    transform: translateY(-2px);

    background: #ffffff;
}


.cwdi-services-btn i {
    transition:
        transform 0.3s ease;
}


.cwdi-services-btn:hover i {
    transform: translateX(4px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1050px) {

    .cwdi-services-container {
        width: min(100% - 36px, 900px);
    }

    .cwdi-services-grid {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 18px;
    }

    .cwdi-service-card {
        min-height: 350px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .cwdi-services {
        padding:
            75px 0 65px;
    }

    .cwdi-services-container {
        width: calc(100% - 24px);
    }

    .cwdi-services-heading {
        margin-bottom: 35px;
    }

    .cwdi-services-eyebrow {
        font-size: 9px;

        letter-spacing: 1.8px;

        gap: 9px;
    }

    .cwdi-services-eyebrow span {
        width: 22px;
    }

    .cwdi-services-heading h2 {
        font-size: 34px;

        letter-spacing: -0.8px;
    }

    .cwdi-services-heading p {
        margin-top: 15px;

        font-size: 14px;

        line-height: 1.65;
    }


    .cwdi-services-grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }


    .cwdi-service-card {
        min-height: 330px;

        padding:
            25px 23px;
    }


    .cwdi-service-icon {
        width: 58px;
        height: 58px;

        margin-bottom: 38px;

        font-size: 21px;
    }


    .cwdi-service-content h3 {
        font-size: 22px;
    }


    .cwdi-service-content p {
        font-size: 14px;
    }


    .cwdi-services-bottom {
        margin-top: 25px;

        padding:
            20px;

        flex-direction: column;

        gap: 15px;

        text-align: center;
    }


    .cwdi-services-route {
        display: none;
    }


    .cwdi-services-bottom p {
        font-size: 13px;
    }


    .cwdi-services-btn {
        width: 100%;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 380px) {

    .cwdi-services-heading h2 {
        font-size: 30px;
    }

    .cwdi-service-card {
        min-height: 315px;
    }

}


/* =========================================
   OUR CAR FLEET
========================================= */

.cwdi-fleet,
.cwdi-fleet * {
    box-sizing: border-box;
}

.cwdi-fleet {
    position: relative;

    width: 100%;

    padding: 105px 0 95px;

    overflow: hidden;

    background: #071b31;

    color: #ffffff;
}


/* BACKGROUND DECORATION */

.cwdi-fleet::before {
    content: "";

    position: absolute;

    width: 650px;
    height: 650px;

    left: -330px;
    top: 80px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(216,174,85,0.14),
            transparent 68%
        );

    pointer-events: none;
}


.cwdi-fleet::after {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -250px;
    bottom: -200px;

    border-radius: 50%;

    border: 1px solid rgba(216,174,85,0.08);

    pointer-events: none;
}


/* CONTAINER */

.cwdi-fleet-container {
    position: relative;

    z-index: 2;

    width: 100%;

    margin: 0 auto;
}


/* =========================================
   HEADING
========================================= */

.cwdi-fleet-heading {
    width: min(760px, calc(100% - 40px));

    margin: 0 auto 38px;

    text-align: center;
}


.cwdi-fleet-eyebrow {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 13px;

    margin-bottom: 17px;

    color: #e2bb68;

    font-family:
        "Montserrat",
        Arial,
        sans-serif;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2.5px;
}


.cwdi-fleet-eyebrow span {
    width: 35px;
    height: 1px;

    background: #d8ae55;
}


.cwdi-fleet-heading h2 {
    margin: 0;

    font-family:
        "Montserrat",
        Arial,
        sans-serif;

    font-size: clamp(36px, 4vw, 54px);

    line-height: 1.08;

    font-weight: 800;

    letter-spacing: -1.5px;
}


.cwdi-fleet-heading h2 span {
    color: #e2bb68;
}


.cwdi-fleet-heading p {
    max-width: 670px;

    margin: 18px auto 0;

    color: rgba(255,255,255,0.67);

    font-family:
        "Inter",
        Arial,
        sans-serif;

    font-size: 16px;

    line-height: 1.7;
}


/* =========================================
   FILTERS
========================================= */

.cwdi-fleet-filters {
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 8px;

    margin-bottom: 48px;

    padding: 0 20px;
}


.cwdi-fleet-filter {
    min-height: 40px;

    padding: 0 18px;

    border:
        1px solid rgba(255,255,255,0.14);

    border-radius: 30px;

    background:
        rgba(255,255,255,0.045);

    color:
        rgba(255,255,255,0.65);

    cursor: pointer;

    font-family:
        "Montserrat",
        Arial,
        sans-serif;

    font-size: 11px;

    font-weight: 700;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}


.cwdi-fleet-filter:hover {
    color: #ffffff;

    border-color:
        rgba(216,174,85,0.55);

    transform: translateY(-2px);
}


.cwdi-fleet-filter.active {
    color: #071b31;

    background: #d8ae55;

    border-color: #d8ae55;
}


/* =========================================
   SLIDER WRAPPER
========================================= */

.cwdi-fleet-slider-wrap {
    position: relative;

    width: 100%;
}


/* =========================================
   SLIDER
========================================= */

.cwdi-fleet-slider {
    width: 100%;

    display: flex;

    gap: 22px;

    overflow-x: auto;

    overflow-y: visible;

    padding:
        45px
        max(25px, calc((100vw - 1200px) / 2))
        55px;

    scroll-behavior: smooth;

    scroll-snap-type: x mandatory;

    scrollbar-width: none;
}


.cwdi-fleet-slider::-webkit-scrollbar {
    display: none;
}


/* =========================================
   CAR CARD
========================================= */

.cwdi-car-card {
    position: relative;

    flex: 0 0 360px;

    min-height: 410px;

    scroll-snap-align: center;

    overflow: visible;

    border:
        1px solid rgba(255,255,255,0.11);

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            #102941 0%,
            #091d32 100%
        );

    box-shadow:
        0 20px 50px rgba(0,0,0,0.22);

    transition:
        transform 0.45s cubic-bezier(.2,.8,.2,1),
        border-color 0.35s ease,
        box-shadow 0.4s ease;

    isolation: isolate;
}


/* HOVER CARD */

.cwdi-car-card:hover {
    transform: translateY(-10px);

    border-color:
        rgba(216,174,85,0.50);

    box-shadow:
        0 30px 70px rgba(0,0,0,0.38);
}


/* =========================================
   CAR IMAGE AREA
========================================= */

.cwdi-car-image {
    position: relative;

    height: 235px;

    display: flex;

    align-items: flex-end;
    justify-content: center;

    overflow: visible;

    border-radius: 18px 18px 0 0;
}


/* IMAGE BACKGROUND */

.cwdi-car-image::before {
    content: "";

    position: absolute;

    width: 260px;
    height: 180px;

    left: 50%;
    bottom: 0;

    transform:
        translateX(-50%);

    border-radius: 50%;

    background:
        radial-gradient(
            ellipse,
            rgba(216,174,85,0.18),
            transparent 70%
        );

    z-index: -1;
}


/* CAR IMAGE */

.cwdi-car-image img {
    position: relative;

    z-index: 2;

    width: 112%;

    max-width: none;

    height: auto;

    max-height: 225px;

    object-fit: contain;

    object-position: center bottom;

    transform:
        translateY(13px)
        scale(1);

    filter:
        drop-shadow(
            0 20px 17px rgba(0,0,0,0.38)
        );

    transition:
        transform 0.55s cubic-bezier(.2,.8,.2,1),
        filter 0.45s ease;
}


/* CAR ZOOM */

.cwdi-car-card:hover
.cwdi-car-image img {
    transform:
        translateY(3px)
        scale(1.14);

    filter:
        drop-shadow(
            0 28px 25px rgba(0,0,0,0.48)
        );
}


/* =========================================
   BADGE
========================================= */

.cwdi-car-badge {
    position: absolute;

    left: 18px;
    top: 18px;

    z-index: 5;

    min-height: 25px;

    padding: 0 10px;

    display: inline-flex;

    align-items: center;

    border-radius: 4px;

    color: #071b31;

    background: #d8ae55;

    font-family:
        "Montserrat",
        Arial,
        sans-serif;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1px;
}


/* =========================================
   CARD INFO
========================================= */

.cwdi-car-info {
    min-height: 78px;

    padding:
        10px 20px 4px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    border-top:
        1px solid rgba(255,255,255,0.07);
}


.cwdi-car-type {
    display: block;

    margin-bottom: 6px;

    color: #d8ae55;

    font-family:
        "Montserrat",
        Arial,
        sans-serif;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.cwdi-car-info h3 {
    margin: 0;

    color: #ffffff;

    font-family:
        "Montserrat",
        Arial,
        sans-serif;

    font-size: 19px;

    line-height: 1.2;

    font-weight: 750;
}


/* ARROW */

.cwdi-car-arrow {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #d8ae55;

    border:
        1px solid rgba(216,174,85,0.3);

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.35s ease;
}


.cwdi-car-card:hover .cwdi-car-arrow {
    color: #071b31;

    background: #d8ae55;

    transform: rotate(-8deg);
}


/* =========================================
   DETAILS
========================================= */

.cwdi-car-details {
    min-height: 52px;

    margin: 0 20px;

    display: flex;

    align-items: center;

    gap: 20px;

    border-top:
        1px solid rgba(255,255,255,0.07);

    color:
        rgba(255,255,255,0.52);

    font-family:
        "Inter",
        Arial,
        sans-serif;

    font-size: 11px;
}


.cwdi-car-details span {
    display: flex;

    align-items: center;

    gap: 7px;
}


.cwdi-car-details i {
    color: #d8ae55;

    font-size: 11px;
}


/* =========================================
   SLIDER ARROWS
========================================= */

.cwdi-fleet-arrow {
    position: absolute;

    top: 50%;

    z-index: 20;

    width: 48px;
    height: 48px;

    margin-top: -10px;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(216,174,85,0.38);

    border-radius: 50%;

    color: #d8ae55;

    background:
        rgba(7,27,49,0.94);

    cursor: pointer;

    box-shadow:
        0 10px 25px rgba(0,0,0,0.25);

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;
}


.cwdi-fleet-arrow:hover {
    color: #071b31;

    background: #d8ae55;

    transform: scale(1.08);
}


.cwdi-fleet-prev {
    left: 18px;
}


.cwdi-fleet-next {
    right: 18px;
}


/* =========================================
   BOTTOM
========================================= */

.cwdi-fleet-bottom {
    width: min(1100px, calc(100% - 50px));

    min-height: 65px;

    margin: 25px auto 0;

    padding: 0 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 35px;

    border-top:
        1px solid rgba(255,255,255,0.08);
}


.cwdi-fleet-bottom span {
    display: flex;

    align-items: center;

    gap: 8px;

    color:
        rgba(255,255,255,0.58);

    font-family:
        "Inter",
        Arial,
        sans-serif;

    font-size: 11px;
}


.cwdi-fleet-bottom span i {
    color: #d8ae55;
}


.cwdi-fleet-bottom a {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #d8ae55;

    text-decoration: none;

    font-family:
        "Montserrat",
        Arial,
        sans-serif;

    font-size: 11px;

    font-weight: 800;
}


.cwdi-fleet-bottom a i {
    transition:
        transform 0.25s ease;
}


.cwdi-fleet-bottom a:hover i {
    transform: translateX(4px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .cwdi-fleet {
        padding:
            85px 0 75px;
    }

    .cwdi-car-card {
        flex-basis: 330px;
    }

    .cwdi-fleet-arrow {
        display: none;
    }

    .cwdi-fleet-bottom {
        gap: 20px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .cwdi-fleet {
        padding:
            75px 0 65px;
    }

    .cwdi-fleet-heading {
        width: calc(100% - 30px);

        margin-bottom: 30px;
    }

    .cwdi-fleet-eyebrow {
        font-size: 9px;

        letter-spacing: 1.8px;
    }

    .cwdi-fleet-heading h2 {
        font-size: 34px;

        letter-spacing: -0.8px;
    }

    .cwdi-fleet-heading p {
        font-size: 14px;
    }


    /* FILTERS */

    .cwdi-fleet-filters {
        justify-content: flex-start;

        overflow-x: auto;

        scrollbar-width: none;

        padding:
            0 15px 5px;

        margin-bottom: 22px;
    }

    .cwdi-fleet-filters::-webkit-scrollbar {
        display: none;
    }

    .cwdi-fleet-filter {
        flex-shrink: 0;

        padding: 0 15px;

        font-size: 10px;
    }


    /* SLIDER */

    .cwdi-fleet-slider {
        gap: 14px;

        padding:
            38px 15px 48px;

        scroll-padding-left: 15px;
    }


    .cwdi-car-card {
        flex:
            0 0
            calc(100vw - 48px);

        min-height: 390px;

        border-radius: 15px;
    }


    .cwdi-car-image {
        height: 225px;
    }


    .cwdi-car-image img {
        width: 115%;

        max-height: 215px;
    }


    .cwdi-car-card:hover
    .cwdi-car-image img {
        transform:
            translateY(4px)
            scale(1.08);
    }


    .cwdi-car-info {
        padding-left: 17px;
        padding-right: 17px;
    }


    .cwdi-car-details {
        margin-left: 17px;
        margin-right: 17px;

        gap: 12px;
    }


    .cwdi-car-details span {
        font-size: 10px;
    }


    /* BOTTOM */

    .cwdi-fleet-bottom {
        width: calc(100% - 30px);

        padding:
            18px 0 0;

        flex-direction: column;

        gap: 12px;

        text-align: center;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 380px) {

    .cwdi-car-card {
        flex-basis:
            calc(100vw - 38px);
    }

    .cwdi-car-info h3 {
        font-size: 17px;
    }

    .cwdi-car-details {
        gap: 8px;
    }

}



/* =========================================
   WHY CHOOSE US
========================================= */

.cwdi-why,
.cwdi-why * {
    box-sizing: border-box;
}

.cwdi-why {
    position: relative;

    width: 100%;

    padding: 115px 0 120px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 78% 50%,
            rgba(216,174,85,0.10),
            transparent 34%
        ),
        #071b31;
}


/* subtle background */

.cwdi-why::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -180px;
    top: 50%;

    transform: translateY(-50%);

    border-radius: 50%;

    border: 1px solid rgba(216,174,85,0.08);

    box-shadow:
        0 0 0 80px rgba(216,174,85,0.018),
        0 0 0 160px rgba(216,174,85,0.012);

    pointer-events: none;
}


/* =========================================
   CONTAINER
========================================= */

.cwdi-why-container {
    width: min(1380px, calc(100% - 70px));

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        0.88fr
        1.12fr;

    align-items: center;

    gap: 60px;
}


/* =========================================
   CONTENT
========================================= */

.cwdi-why-content {
    position: relative;

    z-index: 5;

    max-width: 560px;
}


.cwdi-section-tag {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 18px;

    color: #e2bb68;

    font-family:
        "Montserrat",
        Arial,
        sans-serif;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2.4px;
}


.cwdi-section-tag i {
    font-size: 13px;
}


.cwdi-why-content h2 {
    margin: 0;

    color: #ffffff;

    font-family:
        "Montserrat",
        Arial,
        sans-serif;

    font-size: clamp(38px, 4vw, 58px);

    font-weight: 800;

    line-height: 1.08;

    letter-spacing: -1.5px;
}


.cwdi-why-content h2 span {
    display: block;

    color: #e2bb68;
}


.cwdi-why-intro {
    max-width: 520px;

    margin: 24px 0 0;

    color:
        rgba(255,255,255,0.70);

    font-family:
        "Inter",
        Arial,
        sans-serif;

    font-size: 16px;

    line-height: 1.75;
}


/* =========================================
   LINE
========================================= */

.cwdi-why-line {
    width: 70px;

    height: 3px;

    margin: 28px 0;

    border-radius: 20px;

    background: #e2bb68;
}


/* =========================================
   STATS
========================================= */

.cwdi-why-mini {
    display: flex;

    align-items: center;

    gap: 38px;

    margin-bottom: 30px;
}


.cwdi-why-mini div {
    display: flex;

    flex-direction: column;

    gap: 5px;
}


.cwdi-why-mini strong {
    color: #ffffff;

    font-family:
        "Montserrat",
        Arial,
        sans-serif;

    font-size: 24px;

    font-weight: 800;
}


.cwdi-why-mini span {
    color:
        rgba(255,255,255,0.52);

    font-family:
        "Inter",
        Arial,
        sans-serif;

    font-size: 11px;
}


/* =========================================
   BUTTON
========================================= */

.cwdi-why-btn {
    min-height: 50px;

    padding: 0 23px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    color: #071b31;

    background: #e2bb68;

    border-radius: 7px;

    text-decoration: none;

    font-family:
        "Montserrat",
        Arial,
        sans-serif;

    font-size: 13px;

    font-weight: 800;

    box-shadow:
        0 10px 25px rgba(0,0,0,0.18);

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}


.cwdi-why-btn i {
    transition:
        transform 0.25s ease;
}


.cwdi-why-btn:hover {
    color: #071b31;

    background: #ffffff;

    transform: translateY(-3px);

    box-shadow:
        0 15px 30px rgba(0,0,0,0.25);
}


.cwdi-why-btn:hover i {
    transform: translateX(5px);
}


/* =========================================
   VISUAL
========================================= */

.cwdi-why-visual {
    position: relative;

    width: 100%;

    min-height: 570px;

    display: flex;

    align-items: center;

    justify-content: center;
}


/* =========================================
   ROUTE CIRCLES
========================================= */

.cwdi-route {
    position: absolute;

    border-radius: 50%;

    border: 1px dashed rgba(226,187,104,0.28);

    pointer-events: none;
}


.route-one {
    width: 440px;
    height: 440px;

    animation:
        cwdi-route-spin 25s linear infinite;
}


.route-two {
    width: 300px;
    height: 300px;

    border-color:
        rgba(255,255,255,0.10);

    animation:
        cwdi-route-spin-reverse 18s linear infinite;
}


@keyframes cwdi-route-spin {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


@keyframes cwdi-route-spin-reverse {

    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }

}


/* =========================================
   LOCATION DOTS
========================================= */

.cwdi-location {
    position: absolute;

    width: 31px;
    height: 31px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #071b31;

    background: #e2bb68;

    font-size: 12px;

    box-shadow:
        0 0 0 7px rgba(226,187,104,0.10),
        0 8px 20px rgba(0,0,0,0.25);

    z-index: 2;

    animation:
        cwdi-location-float 3s ease-in-out infinite;
}


.location-one {
    top: 14%;
    left: 22%;
}


.location-two {
    right: 13%;
    top: 34%;

    animation-delay: 1s;
}


.location-three {
    bottom: 14%;
    left: 31%;

    animation-delay: 2s;
}


@keyframes cwdi-location-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }

}


/* =========================================
   CENTER
========================================= */

.cwdi-why-center {
    position: relative;

    width: 190px;
    height: 190px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    z-index: 4;
}


.cwdi-center-ring {
    position: absolute;

    inset: 0;

    border-radius: 50%;

    border:
        1px solid rgba(226,187,104,0.32);

    animation:
        cwdi-center-pulse 3s ease-in-out infinite;
}


.cwdi-center-ring::before,
.cwdi-center-ring::after {
    content: "";

    position: absolute;

    inset: -14px;

    border-radius: 50%;

    border:
        1px solid rgba(226,187,104,0.10);
}


.cwdi-center-ring::after {
    inset: -29px;

    border-color:
        rgba(226,187,104,0.05);
}


@keyframes cwdi-center-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.04);
        opacity: 1;
    }

}


.cwdi-car-circle {
    width: 78px;
    height: 78px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 12px;

    border-radius: 50%;

    color: #071b31;

    background: #e2bb68;

    box-shadow:
        0 12px 35px rgba(0,0,0,0.28);
}


.cwdi-car-circle i {
    font-size: 31px;
}


.cwdi-why-center span {
    color:
        rgba(255,255,255,0.58);

    font-family:
        "Inter",
        Arial,
        sans-serif;

    font-size: 11px;
}


.cwdi-why-center strong {
    margin-top: 3px;

    color: #ffffff;

    font-family:
        "Montserrat",
        Arial,
        sans-serif;

    font-size: 15px;

    font-weight: 800;
}


/* =========================================
   BENEFIT CARDS
========================================= */

.cwdi-benefit {
    position: absolute;

    width: 235px;

    padding: 14px 16px;

    display: flex;

    align-items: center;

    gap: 12px;

    background:
        rgba(255,255,255,0.075);

    border:
        1px solid rgba(255,255,255,0.12);

    border-radius: 12px;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    box-shadow:
        0 15px 35px rgba(0,0,0,0.18);

    z-index: 5;

    animation:
        cwdi-benefit-float 4s ease-in-out infinite;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;
}


.cwdi-benefit:hover {
    background:
        rgba(255,255,255,0.12);

    border-color:
        rgba(226,187,104,0.45);

    transform:
        translateY(-7px) scale(1.02);
}


.cwdi-benefit-icon {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    color: #071b31;

    background: #e2bb68;

    font-size: 15px;
}


.cwdi-benefit div:last-child {
    display: flex;

    flex-direction: column;

    gap: 4px;
}


.cwdi-benefit strong {
    color: #ffffff;

    font-family:
        "Montserrat",
        Arial,
        sans-serif;

    font-size: 12px;

    font-weight: 700;
}


.cwdi-benefit span {
    color:
        rgba(255,255,255,0.48);

    font-family:
        "Inter",
        Arial,
        sans-serif;

    font-size: 10px;
}


.benefit-one {
    top: 6%;
    right: 5%;
}


.benefit-two {
    top: 35%;
    left: 0;

    animation-delay: 1s;
}


.benefit-three {
    right: 0;
    bottom: 22%;

    animation-delay: 2s;
}


.benefit-four {
    left: 10%;
    bottom: 3%;

    animation-delay: 3s;
}


@keyframes cwdi-benefit-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    .cwdi-why-container {
        width: min(100%, calc(100% - 40px));

        grid-template-columns:
            1fr
            1fr;

        gap: 20px;
    }

    .cwdi-why-content {
        max-width: 500px;
    }

    .cwdi-why-visual {
        transform: scale(0.88);
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .cwdi-why {
        padding: 80px 0 75px;
    }

    .cwdi-why-container {
        width: calc(100% - 28px);

        display: flex;

        flex-direction: column;

        gap: 35px;
    }

    .cwdi-why-content {
        width: 100%;

        max-width: none;

        text-align: center;
    }

    .cwdi-section-tag {
        font-size: 10px;

        letter-spacing: 2px;
    }

    .cwdi-why-content h2 {
        font-size: 38px;

        letter-spacing: -0.8px;
    }

    .cwdi-why-intro {
        margin-left: auto;
        margin-right: auto;

        font-size: 14px;

        line-height: 1.65;
    }

    .cwdi-why-line {
        margin: 23px auto;
    }

    .cwdi-why-mini {
        justify-content: center;

        gap: 25px;
    }

    .cwdi-why-mini strong {
        font-size: 20px;
    }

    .cwdi-why-mini span {
        font-size: 9px;
    }

    .cwdi-why-btn {
        margin-top: 4px;
    }


    /* VISUAL */

    .cwdi-why-visual {
        width: 100%;

        min-height: 510px;

        transform: none;
    }

    .route-one {
        width: 330px;
        height: 330px;
    }

    .route-two {
        width: 225px;
        height: 225px;
    }

    .cwdi-why-center {
        width: 155px;
        height: 155px;
    }

    .cwdi-car-circle {
        width: 65px;
        height: 65px;
    }

    .cwdi-car-circle i {
        font-size: 25px;
    }

    .cwdi-why-center strong {
        font-size: 13px;
    }

    .cwdi-benefit {
        width: 205px;

        padding: 11px 12px;

        gap: 9px;
    }

    .cwdi-benefit-icon {
        width: 36px;
        height: 36px;

        font-size: 13px;
    }

    .cwdi-benefit strong {
        font-size: 10px;
    }

    .cwdi-benefit span {
        font-size: 9px;
    }

    .benefit-one {
        top: 0;
        right: 0;
    }

    .benefit-two {
        top: 30%;
        left: -5px;
    }

    .benefit-three {
        right: -5px;
        bottom: 27%;
    }

    .benefit-four {
        left: 5px;
        bottom: 0;
    }

    .location-one {
        left: 15%;
    }

    .location-two {
        right: 7%;
    }

    .location-three {
        left: 25%;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 420px) {

    .cwdi-why {
        padding-top: 65px;
    }

    .cwdi-why-content h2 {
        font-size: 32px;
    }

    .cwdi-why-mini {
        gap: 15px;
    }

    .cwdi-why-mini strong {
        font-size: 18px;
    }

    .cwdi-why-mini span {
        font-size: 8px;
    }

    .cwdi-why-visual {
        min-height: 465px;
    }

    .route-one {
        width: 285px;
        height: 285px;
    }

    .route-two {
        width: 195px;
        height: 195px;
    }

    .cwdi-benefit {
        width: 180px;
    }

    .benefit-one {
        right: -3px;
    }

    .benefit-three {
        right: -3px;
    }

}


/* =========================================
   REDUCE MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

    .cwdi-route,
    .cwdi-location,
    .cwdi-center-ring,
    .cwdi-benefit {
        animation: none !important;
    }

}



/* =========================================
   OUR COVERAGE SECTION
========================================= */

.cwdi-coverage,
.cwdi-coverage * {
    box-sizing: border-box;
}


/* =========================================
   MAIN SECTION
========================================= */

.cwdi-coverage {
    position: relative;

    width: 100%;
    max-width: 100%;

    margin: 0;
    padding: 85px 0 95px;

    overflow: hidden;

    background: #f8f6f1;

    color: #071b31;
}


/* =========================================
   SOFT BACKGROUND DECORATION
========================================= */

.cwdi-coverage::before {
    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    top: -330px;
    left: 50%;

    transform: translateX(-50%);

    background:
        radial-gradient(
            circle,
            rgba(216,174,85,0.10) 0%,
            rgba(216,174,85,0.04) 38%,
            transparent 72%
        );

    pointer-events: none;
}


/* =========================================
   HEADING
========================================= */

.cwdi-coverage-heading {
    position: relative;

    z-index: 5;

    width: min(900px, calc(100% - 40px));

    margin: 0 auto 62px;

    text-align: center;
}


/* =========================================
   BADGE
========================================= */

.cwdi-section-badge {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    min-height: 30px;

    padding: 0 17px;

    border:
        1px solid rgba(190,145,60,0.45);

    border-radius: 50px;

    background:
        rgba(216,174,85,0.07);

    color: #b78325;

    font-family:
        "Montserrat",
        Arial,
        sans-serif;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.cwdi-section-badge i {
    font-size: 10px;
}


/* =========================================
   MAIN HEADING
========================================= */

.cwdi-coverage-heading h2 {
    margin: 22px 0 14px;

    color: #071b31;

    font-family:
        "Montserrat",
        Arial,
        sans-serif;

    font-size: clamp(38px, 5vw, 58px);

    font-weight: 800;

    line-height: 1.08;

    letter-spacing: -1.6px;
}


.cwdi-coverage-heading h2 span {
    color: #bb882d;
}


/* =========================================
   DESCRIPTION
========================================= */

.cwdi-coverage-heading p {
    width: min(670px, 100%);

    margin: 0 auto;

    color: #526579;

    font-family:
        "Inter",
        Arial,
        sans-serif;

    font-size: 16px;

    font-weight: 400;

    line-height: 1.65;
}


/* =========================================
   MOVING CARDS WRAPPER
========================================= */

.cwdi-cities-wrapper {
    position: relative;

    width: 100vw;
    max-width: 100vw;

    margin-left: calc(50% - 50vw);

    overflow: hidden;

    padding: 0;

    isolation: isolate;
}


/* =========================================
   TRACK
========================================= */

.cwdi-cities-track {
    display: flex;

    width: max-content;

    gap: 20px;

    padding: 0;

    animation:
        cwdiCoverageMove 38s linear infinite;

    will-change: transform;
}


/* =========================================
   PAUSE WHEN HOVER
========================================= */

.cwdi-cities-wrapper:hover
.cwdi-cities-track {
    animation-play-state: paused;
}


/* =========================================
   CITY CARD
========================================= */

.cwdi-city-card {
    position: relative;

    flex: 0 0 360px;

    width: 360px;
    height: 216px;

    overflow: hidden;

    border:
        1px solid rgba(7,27,49,0.08);

    border-radius: 15px;

    background: #15333f;

    box-shadow:
        0 15px 35px rgba(7,27,49,0.16);

    cursor: pointer;
}


/* =========================================
   IMAGE WRAPPER
========================================= */

.cwdi-city-image {
    position: absolute;

    inset: 0;

    overflow: hidden;
}


/* =========================================
   IMAGE
========================================= */

.cwdi-city-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    transform: scale(1);

    transition:
        transform 0.8s cubic-bezier(.2,.7,.2,1),
        filter 0.8s ease;
}


/* =========================================
   IMAGE ZOOM ON HOVER
========================================= */

.cwdi-city-card:hover
.cwdi-city-image img {
    transform: scale(1.14);

    filter:
        brightness(1.06)
        saturate(1.08);
}


/* =========================================
   DARK OVERLAY
========================================= */

.cwdi-city-overlay {
    position: absolute;

    inset: 0;

    z-index: 2;

    background:
        linear-gradient(
            90deg,
            rgba(5,25,34,0.93) 0%,
            rgba(5,25,34,0.65) 45%,
            rgba(5,25,34,0.18) 100%
        );

    transition:
        background 0.5s ease;
}


.cwdi-city-card:hover
.cwdi-city-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(5,25,34,0.88) 0%,
            rgba(5,25,34,0.52) 46%,
            rgba(5,25,34,0.14) 100%
        );
}


/* =========================================
   CARD CONTENT
========================================= */

.cwdi-city-content {
    position: absolute;

    top: 22px;
    left: 22px;

    z-index: 5;

    display: flex;

    flex-direction: column;

    align-items: flex-start;
}


/* =========================================
   LABEL
========================================= */

.cwdi-city-label {
    margin-bottom: 9px;

    color: #5d9ab1;

    font-family:
        "Montserrat",
        Arial,
        sans-serif;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.8px;

    line-height: 1.2;

    text-transform: uppercase;
}


/* =========================================
   CITY NAME
========================================= */

.cwdi-city-content h3 {
    margin: 0;

    color: #ffffff;

    font-family:
        "Montserrat",
        Arial,
        sans-serif;

    font-size: 26px;

    font-weight: 800;

    line-height: 1.1;

    text-shadow:
        0 2px 12px rgba(0,0,0,0.25);
}


/* =========================================
   STATE
========================================= */

.cwdi-city-content p {
    margin: 6px 0 0;

    color:
        rgba(255,255,255,0.76);

    font-family:
        "Inter",
        Arial,
        sans-serif;

    font-size: 12px;

    font-weight: 600;

    line-height: 1.4;
}


/* =========================================
   SMALL LINE
========================================= */

.cwdi-city-line {
    width: 31px;
    height: 2px;

    margin-top: 13px;

    display: block;

    border-radius: 20px;

    background: #5d9ab1;

    transition:
        width 0.35s ease,
        background 0.35s ease;
}


.cwdi-city-card:hover
.cwdi-city-line {
    width: 58px;

    background: #e2bb68;
}


/* =========================================
   MOVEMENT
========================================= */

@keyframes cwdiCoverageMove {

    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(
            calc(-50% - 10px)
        );
    }

}


/* =========================================
   LARGE LAPTOP
========================================= */

@media (max-width: 1200px) {

    .cwdi-coverage {
        padding:
            75px 0
            85px;
    }


    .cwdi-coverage-heading {
        margin-bottom: 52px;
    }


    .cwdi-city-card {
        flex-basis: 330px;

        width: 330px;

        height: 205px;
    }


    .cwdi-cities-track {
        gap: 18px;

        animation-duration: 36s;
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .cwdi-coverage {
        padding:
            68px 0
            75px;
    }


    .cwdi-coverage-heading {
        width:
            calc(100% - 36px);

        margin-bottom: 45px;
    }


    .cwdi-coverage-heading h2 {
        font-size: 42px;

        letter-spacing: -1px;
    }


    .cwdi-coverage-heading p {
        font-size: 15px;
    }


    .cwdi-city-card {
        flex-basis: 310px;

        width: 310px;

        height: 195px;

        border-radius: 14px;
    }


    .cwdi-cities-track {
        gap: 16px;

        animation-duration: 33s;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .cwdi-coverage {
        padding:
            58px 0
            65px;
    }


    .cwdi-coverage-heading {
        width:
            calc(100% - 28px);

        margin-bottom: 38px;
    }


    .cwdi-section-badge {
        min-height: 28px;

        padding: 0 13px;

        font-size: 8px;

        letter-spacing: 1.6px;
    }


    .cwdi-coverage-heading h2 {

        margin-top: 17px;

        margin-bottom: 12px;

        font-size: 34px;

        line-height: 1.12;

        letter-spacing: -0.8px;
    }


    .cwdi-coverage-heading p {
        font-size: 14px;

        line-height: 1.6;
    }


    /* CARDS */

    .cwdi-city-card {
        flex-basis: 285px;

        width: 285px;

        height: 185px;

        border-radius: 13px;
    }


    .cwdi-cities-track {
        gap: 13px;

        animation-duration: 29s;
    }


    .cwdi-city-content {
        top: 18px;
        left: 18px;
    }


    .cwdi-city-label {
        margin-bottom: 8px;

        font-size: 8px;

        letter-spacing: 1.5px;
    }


    .cwdi-city-content h3 {
        font-size: 23px;
    }


    .cwdi-city-content p {
        font-size: 11px;
    }


    .cwdi-city-line {
        margin-top: 11px;
    }

}


/* =========================================
   VERY SMALL MOBILE
========================================= */

@media (max-width: 380px) {

    .cwdi-coverage-heading h2 {
        font-size: 30px;
    }


    .cwdi-coverage-heading p {
        font-size: 13px;
    }


    .cwdi-city-card {
        flex-basis: 270px;

        width: 270px;

        height: 175px;
    }


    .cwdi-city-content h3 {
        font-size: 21px;
    }

}


/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

    .cwdi-cities-track {
        animation: none;
    }


    .cwdi-city-image img,
    .cwdi-city-line,
    .cwdi-city-overlay {
        transition: none;
    }

}




/* =========================================================
   CWDI FAQ SECTION - PREMIUM VERSION
   UNIQUE PREFIX: cwdi-faq2
   ========================================================= */

.cwdi-faq2-section {
    width: 100%;
    margin: 0;
    padding: 110px 0 120px;

    position: relative;
    overflow: hidden;

    background: #f7f5ef;

    display: block;
    visibility: visible;
    opacity: 1;
}


/* RESET ONLY INSIDE FAQ */

.cwdi-faq2-section,
.cwdi-faq2-section *,
.cwdi-faq2-section *::before,
.cwdi-faq2-section *::after {
    box-sizing: border-box;
}


/* BACKGROUND DECORATION */

.cwdi-faq2-bg-circle {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    z-index: 0;
}

.cwdi-faq2-circle-one {
    width: 420px;
    height: 420px;

    top: -210px;
    right: -180px;

    border: 1px solid rgba(216,174,85,0.15);
}

.cwdi-faq2-circle-two {
    width: 280px;
    height: 280px;

    bottom: -150px;
    left: -120px;

    border: 1px solid rgba(216,174,85,0.12);
}


/* CONTAINER */

.cwdi-faq2-container {
    width: min(1180px, calc(100% - 50px));

    margin: 0 auto;

    position: relative;
    z-index: 2;
}


/* =========================================================
   HEADING
   ========================================================= */

.cwdi-faq2-heading {
    width: 100%;
    max-width: 820px;

    margin: 0 auto 60px;

    text-align: center;
}

.cwdi-faq2-eyebrow {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    margin-bottom: 18px;

    color: #b48732;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2.4px;
}

.cwdi-faq2-eyebrow span {
    display: block;

    width: 35px;
    height: 1px;

    background: #d8ae55;
}

.cwdi-faq2-heading h2 {
    margin: 0;

    color: #071b31;

    font-size: clamp(36px, 4vw, 54px);

    line-height: 1.12;

    font-weight: 800;

    letter-spacing: -1.2px;
}

.cwdi-faq2-heading h2 strong {
    color: #c99b43;

    font-weight: 800;
}

.cwdi-faq2-heading p {
    max-width: 680px;

    margin: 20px auto 0;

    color: #6d6a63;

    font-size: 16px;

    line-height: 1.7;
}


/* =========================================================
   MAIN GRID
   ========================================================= */

.cwdi-faq2-grid {
    width: 100%;

    display: grid;

    grid-template-columns:
        minmax(290px, 0.78fr)
        minmax(0, 1.42fr);

    gap: 30px;

    align-items: start;
}


/* =========================================================
   LEFT SIDEBAR
   ========================================================= */

.cwdi-faq2-sidebar {
    width: 100%;

    display: block;
}


/* MAIN DARK CARD */

.cwdi-faq2-main-card {
    width: 100%;

    position: relative;

    padding: 38px 35px;

    background: #071b31;

    border-radius: 25px;

    overflow: hidden;

    color: #ffffff;

    box-shadow:
        0 25px 55px rgba(7,27,49,0.14);
}


/* DECORATIVE RINGS */

.cwdi-faq2-main-card::before {
    content: "";

    position: absolute;

    width: 230px;
    height: 230px;

    right: -120px;
    top: -120px;

    border: 1px solid rgba(216,174,85,0.25);

    border-radius: 50%;
}

.cwdi-faq2-main-card::after {
    content: "";

    position: absolute;

    width: 140px;
    height: 140px;

    right: -70px;
    top: -70px;

    border: 1px solid rgba(216,174,85,0.18);

    border-radius: 50%;
}


/* ICON */

.cwdi-faq2-card-icon {
    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 27px;

    background: #d8ae55;

    color: #071b31;

    border-radius: 15px;

    font-size: 21px;

    position: relative;
    z-index: 2;
}


/* LABEL */

.cwdi-faq2-card-label {
    display: block;

    margin-bottom: 11px;

    color: #d8ae55;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

    position: relative;
    z-index: 2;
}


/* CARD HEADING */

.cwdi-faq2-main-card h3 {
    margin: 0 0 15px;

    color: #ffffff;

    font-size: 29px;

    line-height: 1.22;

    font-weight: 800;

    position: relative;
    z-index: 2;
}


/* CARD TEXT */

.cwdi-faq2-main-card p {
    margin: 0 0 29px;

    color: rgba(255,255,255,0.70);

    font-size: 14px;

    line-height: 1.75;

    position: relative;
    z-index: 2;
}


/* BUTTON */

.cwdi-faq2-card-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    padding: 14px 21px;

    background: #d8ae55;

    color: #071b31;

    border-radius: 10px;

    text-decoration: none;

    font-size: 14px;

    font-weight: 800;

    transition: all 0.3s ease;

    position: relative;
    z-index: 3;
}

.cwdi-faq2-card-button:hover {
    background: #e7c273;

    transform: translateY(-2px);
}

.cwdi-faq2-card-button i {
    transition: transform 0.3s ease;
}

.cwdi-faq2-card-button:hover i {
    transform: translateX(4px);
}


/* =========================================================
   TRUST ITEMS
   ========================================================= */

.cwdi-faq2-trust-item {
    width: 100%;

    display: flex;

    align-items: center;

    gap: 15px;

    margin-top: 13px;

    padding: 16px 18px;

    background: #ffffff;

    border: 1px solid #e6dfd2;

    border-radius: 16px;

    transition: all 0.3s ease;
}

.cwdi-faq2-trust-item:hover {
    transform: translateX(5px);

    border-color: #d8ae55;

    box-shadow:
        0 10px 25px rgba(7,27,49,0.06);
}

.cwdi-faq2-trust-icon {
    width: 45px;
    height: 45px;

    flex: 0 0 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #f7efd9;

    color: #b48732;

    border-radius: 12px;

    font-size: 17px;
}

.cwdi-faq2-trust-item strong {
    display: block;

    margin-bottom: 3px;

    color: #071b31;

    font-size: 14px;

    font-weight: 800;
}

.cwdi-faq2-trust-item span {
    display: block;

    color: #858078;

    font-size: 12px;
}


/* =========================================================
   FAQ LIST
   ========================================================= */

.cwdi-faq2-list {
    width: 100%;

    display: flex;

    flex-direction: column;

    gap: 12px;
}


/* FAQ ITEM */

.cwdi-faq2-item {
    width: 100%;

    background: #ffffff;

    border: 1px solid #e5ded1;

    border-radius: 16px;

    overflow: hidden;

    display: block;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.cwdi-faq2-item:hover {
    border-color: #d8ae55;

    transform: translateY(-1px);
}

.cwdi-faq2-item.cwdi-faq2-open {
    border-color: #d8ae55;

    box-shadow:
        0 14px 35px rgba(7,27,49,0.07);
}


/* =========================================================
   QUESTION
   ========================================================= */

.cwdi-faq2-question {
    width: 100%;

    min-height: 78px;

    display: grid;

    grid-template-columns:
        43px
        minmax(0, 1fr)
        38px;

    align-items: center;

    gap: 14px;

    padding: 0 20px;

    margin: 0;

    border: 0;
    outline: none;

    background: transparent;

    cursor: pointer;

    text-align: left;

    font-family: inherit;
}


/* NUMBER */

.cwdi-faq2-count {
    width: 35px;
    height: 35px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #f8f1e3;

    color: #b48732;

    border-radius: 50%;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.5px;
}


/* QUESTION TEXT */

.cwdi-faq2-question-text {
    display: block;

    color: #17263a;

    font-size: 15px;

    line-height: 1.45;

    font-weight: 750;
}


/* PLUS */

.cwdi-faq2-icon {
    width: 36px;
    height: 36px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #f6f0e2;

    color: #b48732;

    border-radius: 50%;

    font-size: 12px;

    transition:
        background 0.3s ease,
        color 0.3s ease;
}

.cwdi-faq2-icon i {
    transition: transform 0.35s ease;
}


/* ACTIVE PLUS */

.cwdi-faq2-item.cwdi-faq2-open
.cwdi-faq2-icon {
    background: #d8ae55;

    color: #071b31;
}

.cwdi-faq2-item.cwdi-faq2-open
.cwdi-faq2-icon i {
    transform: rotate(45deg);
}


/* =========================================================
   ANSWER
   ========================================================= */

.cwdi-faq2-answer {
    display: grid;

    grid-template-rows: 0fr;

    transition:
        grid-template-rows 0.38s ease;
}

.cwdi-faq2-answer > div {
    overflow: hidden;
}

.cwdi-faq2-answer p {
    margin: 0;

    padding:
        0
        72px
        0
        77px;

    color: #6e6a63;

    font-size: 14px;

    line-height: 1.75;

    opacity: 0;

    transition:
        opacity 0.25s ease,
        padding 0.38s ease;
}


/* ACTIVE ANSWER */

.cwdi-faq2-item.cwdi-faq2-open
.cwdi-faq2-answer {
    grid-template-rows: 1fr;
}

.cwdi-faq2-item.cwdi-faq2-open
.cwdi-faq2-answer p {
    padding-bottom: 24px;

    opacity: 1;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 950px) {

    .cwdi-faq2-section {
        padding: 85px 0 90px;
    }

    .cwdi-faq2-grid {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .cwdi-faq2-sidebar {
        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 13px;
    }

    .cwdi-faq2-main-card {
        grid-column: 1 / -1;
    }

    .cwdi-faq2-trust-item {
        margin-top: 0;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 650px) {

    .cwdi-faq2-section {
        padding: 70px 0 75px;
    }

    .cwdi-faq2-container {
        width: calc(100% - 28px);
    }

    .cwdi-faq2-heading {
        margin-bottom: 40px;
    }

    .cwdi-faq2-eyebrow {
        gap: 8px;

        font-size: 9px;

        letter-spacing: 1.5px;
    }

    .cwdi-faq2-eyebrow span {
        width: 20px;
    }

    .cwdi-faq2-heading h2 {
        font-size: 33px;

        letter-spacing: -0.6px;
    }

    .cwdi-faq2-heading p {
        margin-top: 17px;

        font-size: 14px;

        line-height: 1.65;
    }


    /* LEFT */

    .cwdi-faq2-sidebar {
        display: block;
    }

    .cwdi-faq2-main-card {
        padding: 31px 25px;

        border-radius: 21px;
    }

    .cwdi-faq2-main-card h3 {
        font-size: 25px;
    }

    .cwdi-faq2-main-card p {
        font-size: 13px;
    }

    .cwdi-faq2-trust-item {
        margin-top: 12px;
    }


    /* QUESTIONS */

    .cwdi-faq2-question {
        min-height: 72px;

        grid-template-columns:
            33px
            minmax(0, 1fr)
            33px;

        gap: 10px;

        padding: 9px 14px;
    }

    .cwdi-faq2-count {
        width: 31px;
        height: 31px;

        font-size: 9px;
    }

    .cwdi-faq2-question-text {
        font-size: 13px;

        line-height: 1.4;
    }

    .cwdi-faq2-icon {
        width: 31px;
        height: 31px;

        font-size: 10px;
    }

    .cwdi-faq2-answer p {
        padding:
            0
            18px
            0
            55px;

        font-size: 13px;

        line-height: 1.65;
    }

    .cwdi-faq2-item.cwdi-faq2-open
    .cwdi-faq2-answer p {
        padding-bottom: 20px;
    }
}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 380px) {

    .cwdi-faq2-heading h2 {
        font-size: 29px;
    }

    .cwdi-faq2-question {
        grid-template-columns:
            30px
            minmax(0, 1fr)
            30px;

        gap: 8px;

        padding-left: 11px;
        padding-right: 11px;
    }

    .cwdi-faq2-count {
        width: 29px;
        height: 29px;
    }

    .cwdi-faq2-question-text {
        font-size: 12px;
    }

    .cwdi-faq2-icon {
        width: 29px;
        height: 29px;
    }

    .cwdi-faq2-answer p {
        padding-left: 50px;
        padding-right: 15px;
    }
}





/* =========================================================
   CAR WITH DRIVER INDIA
   PREMIUM FOOTER
   ========================================================= */

.cwdi-footer {
    width: 100%;
    margin: 0;

    background: #071b31;

    color: #ffffff;

    position: relative;

    overflow: hidden;
}


/* CONTAINER */

.cwdi-footer-container {
    width: min(1180px, calc(100% - 50px));

    margin: 0 auto;
}


/* =========================================================
   MAIN FOOTER
   ========================================================= */

.cwdi-footer-main {
    padding: 80px 0 65px;

    position: relative;
}

.cwdi-footer-main::before {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    right: -180px;
    top: -180px;

    border: 1px solid rgba(216,174,85,0.08);

    border-radius: 50%;
}

.cwdi-footer-main::after {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    left: -130px;
    bottom: -130px;

    border: 1px solid rgba(216,174,85,0.07);

    border-radius: 50%;
}


/* GRID */

.cwdi-footer-grid {
    display: grid;

    grid-template-columns:
        1.35fr
        0.8fr
        1fr
        1.2fr;

    gap: 50px;

    position: relative;

    z-index: 2;
}


/* =========================================================
   FOOTER BRAND
   ========================================================= */

.cwdi-footer-brand {
    max-width: 330px;
}


/* LOGO */

.cwdi-footer-logo {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    text-decoration: none;

    margin-bottom: 23px;
}

.cwdi-footer-logo-icon {
    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #d8ae55;

    color: #071b31;

    border-radius: 13px;

    font-size: 21px;
}

.cwdi-footer-logo-text {
    display: flex;

    flex-direction: column;

    gap: 3px;
}

.cwdi-footer-logo-text strong {
    color: #ffffff;

    font-size: 18px;

    line-height: 1;

    font-weight: 800;

    letter-spacing: 0.4px;
}

.cwdi-footer-logo-text small {
    color: #d8ae55;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 4px;
}


/* DESCRIPTION */

.cwdi-footer-description {
    margin: 0;

    color: rgba(255,255,255,0.62);

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================================
   SOCIAL
   ========================================================= */

.cwdi-footer-social {
    display: flex;

    align-items: center;

    gap: 9px;

    margin-top: 25px;
}

.cwdi-footer-social a {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,0.14);

    border-radius: 50%;

    color: rgba(255,255,255,0.72);

    text-decoration: none;

    font-size: 13px;

    transition: all 0.3s ease;
}

.cwdi-footer-social a:hover {
    background: #d8ae55;

    border-color: #d8ae55;

    color: #071b31;

    transform: translateY(-4px);
}


/* =========================================================
   FOOTER COLUMNS
   ========================================================= */

.cwdi-footer-column h4 {
    margin: 4px 0 22px;

    color: #ffffff;

    font-size: 16px;

    font-weight: 800;
}

.cwdi-footer-column h4::after {
    content: "";

    display: block;

    width: 30px;
    height: 2px;

    margin-top: 9px;

    background: #d8ae55;
}


/* LIST */

.cwdi-footer-column ul {
    list-style: none;

    margin: 0;
    padding: 0;
}

.cwdi-footer-column li {
    margin-bottom: 11px;
}

.cwdi-footer-column li a {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: rgba(255,255,255,0.62);

    text-decoration: none;

    font-size: 13px;

    transition: all 0.3s ease;
}

.cwdi-footer-column li a i {
    color: #d8ae55;

    font-size: 9px;

    transition: transform 0.3s ease;
}

.cwdi-footer-column li a:hover {
    color: #ffffff;

    transform: translateX(4px);
}

.cwdi-footer-column li a:hover i {
    transform: translateX(3px);
}


/* =========================================================
   CONTACT
   ========================================================= */

.cwdi-footer-contact-item {
    display: flex;

    align-items: center;

    gap: 13px;

    margin-bottom: 17px;
}

.cwdi-footer-contact-icon {
    width: 39px;
    height: 39px;

    flex: 0 0 39px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: rgba(216,174,85,0.10);

    border: 1px solid rgba(216,174,85,0.17);

    border-radius: 10px;

    color: #d8ae55;

    font-size: 13px;
}

.cwdi-footer-contact-item div {
    min-width: 0;
}

.cwdi-footer-contact-item small {
    display: block;

    margin-bottom: 3px;

    color: rgba(255,255,255,0.42);

    font-size: 9px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;
}

.cwdi-footer-contact-item a,
.cwdi-footer-contact-item div > span {
    display: block;

    color: rgba(255,255,255,0.82);

    font-size: 12px;

    line-height: 1.45;

    text-decoration: none;

    word-break: break-word;

    transition: color 0.3s ease;
}

.cwdi-footer-contact-item a:hover {
    color: #d8ae55;
}


/* =========================================================
   GOLD CTA
   ========================================================= */

.cwdi-footer-cta {
    background: #d8ae55;

    color: #071b31;
}

.cwdi-footer-cta-inner {
    min-height: 125px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}

.cwdi-footer-cta-inner span {
    display: block;

    margin-bottom: 6px;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 2px;

    opacity: 0.7;
}

.cwdi-footer-cta-inner h3 {
    margin: 0;

    font-size: 28px;

    line-height: 1.2;

    font-weight: 850;
}


/* CTA BUTTON */

.cwdi-footer-cta-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    padding: 15px 22px;

    background: #071b31;

    color: #ffffff;

    border-radius: 10px;

    text-decoration: none;

    font-size: 13px;

    font-weight: 800;

    white-space: nowrap;

    transition: all 0.3s ease;
}

.cwdi-footer-cta-button:hover {
    background: #102b48;

    transform: translateY(-2px);
}

.cwdi-footer-cta-button i {
    transition: transform 0.3s ease;
}

.cwdi-footer-cta-button:hover i {
    transform: translateX(4px);
}


/* =========================================================
   BOTTOM
   ========================================================= */

.cwdi-footer-bottom {
    background: #051426;

    border-top: 1px solid rgba(255,255,255,0.07);
}

.cwdi-footer-bottom-inner {
    min-height: 70px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}

.cwdi-footer-bottom p {
    margin: 0;

    color: rgba(255,255,255,0.42);

    font-size: 11px;
}

.cwdi-footer-legal {
    display: flex;

    align-items: center;

    gap: 13px;
}

.cwdi-footer-legal a {
    color: rgba(255,255,255,0.45);

    font-size: 11px;

    text-decoration: none;

    transition: color 0.3s ease;
}

.cwdi-footer-legal a:hover {
    color: #d8ae55;
}

.cwdi-footer-legal span {
    width: 3px;
    height: 3px;

    background: #d8ae55;

    border-radius: 50%;
}


/* =========================================================
   WHATSAPP FLOATING BUTTON
   ========================================================= */

.cwdi-whatsapp-float {
    width: 57px;
    height: 57px;

    display: flex;

    align-items: center;
    justify-content: center;

    position: fixed;

    right: 24px;
    bottom: 25px;

    z-index: 9998;

    background: #25D366;

    color: #ffffff;

    border-radius: 50%;

    text-decoration: none;

    font-size: 27px;

    box-shadow:
        0 8px 25px rgba(0,0,0,0.20);

    animation: cwdiWhatsappPulse 2.2s infinite;

    transition: transform 0.3s ease;
}

.cwdi-whatsapp-float:hover {
    transform: scale(1.08);

    animation-play-state: paused;
}


/* WHATSAPP PULSE */

@keyframes cwdiWhatsappPulse {

    0% {
        box-shadow:
            0 0 0 0 rgba(37,211,102,0.40),
            0 8px 25px rgba(0,0,0,0.20);
    }

    70% {
        box-shadow:
            0 0 0 13px rgba(37,211,102,0),
            0 8px 25px rgba(0,0,0,0.20);
    }

    100% {
        box-shadow:
            0 0 0 0 rgba(37,211,102,0),
            0 8px 25px rgba(0,0,0,0.20);
    }

}


/* TOOLTIP */

.cwdi-whatsapp-tooltip {
    position: absolute;

    right: 68px;

    top: 50%;

    transform: translateY(-50%);

    padding: 8px 12px;

    background: #071b31;

    color: #ffffff;

    border-radius: 7px;

    font-size: 11px;

    font-weight: 700;

    white-space: nowrap;

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition: all 0.25s ease;
}

.cwdi-whatsapp-tooltip::after {
    content: "";

    position: absolute;

    right: -5px;

    top: 50%;

    transform: translateY(-50%) rotate(45deg);

    width: 9px;
    height: 9px;

    background: #071b31;
}

.cwdi-whatsapp-float:hover .cwdi-whatsapp-tooltip {
    opacity: 1;

    visibility: visible;
}


/* =========================================================
   SCROLL TO TOP
   ========================================================= */

.cwdi-scroll-top {
    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    position: fixed;

    right: 30px;
    bottom: 92px;

    z-index: 9997;

    border: 1px solid rgba(216,174,85,0.55);

    background: #071b31;

    color: #d8ae55;

    border-radius: 10px;

    cursor: pointer;

    font-size: 13px;

    opacity: 0;

    visibility: hidden;

    transform: translateY(15px);

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease,
        background 0.3s ease;
}

.cwdi-scroll-top.cwdi-scroll-visible {
    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}

.cwdi-scroll-top:hover {
    background: #d8ae55;

    color: #071b31;

    transform: translateY(-3px);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {

    .cwdi-footer-grid {
        grid-template-columns:
            1.2fr
            0.8fr
            0.9fr;

        gap: 40px;
    }

    .cwdi-footer-contact {
        grid-column: 1 / -1;

        display: grid;

        grid-template-columns: repeat(2, 1fr);

        gap: 0 25px;
    }

    .cwdi-footer-contact h4 {
        grid-column: 1 / -1;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .cwdi-footer-container {
        width: calc(100% - 30px);
    }

    .cwdi-footer-main {
        padding: 60px 0 45px;
    }

    .cwdi-footer-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .cwdi-footer-brand {
        max-width: 100%;
    }

    .cwdi-footer-column {
        width: 100%;
    }

    .cwdi-footer-contact {
        display: block;
    }

    .cwdi-footer-contact h4 {
        margin-bottom: 22px;
    }


    /* CTA */

    .cwdi-footer-cta-inner {
        min-height: auto;

        padding: 30px 0;

        flex-direction: column;

        align-items: flex-start;

        gap: 20px;
    }

    .cwdi-footer-cta-inner h3 {
        font-size: 24px;
    }

    .cwdi-footer-cta-button {
        width: 100%;
    }


    /* BOTTOM */

    .cwdi-footer-bottom-inner {
        min-height: auto;

        padding: 20px 0;

        flex-direction: column;

        align-items: flex-start;

        gap: 12px;
    }

    .cwdi-footer-legal {
        flex-wrap: wrap;
    }


    /* FLOATING */

    .cwdi-whatsapp-float {
        width: 53px;
        height: 53px;

        right: 16px;
        bottom: 17px;

        font-size: 24px;
    }

    .cwdi-scroll-top {
        width: 42px;
        height: 42px;

        right: 21px;
        bottom: 82px;
    }

    .cwdi-whatsapp-tooltip {
        display: none;
    }

}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 380px) {

    .cwdi-footer-logo-text strong {
        font-size: 16px;
    }

    .cwdi-footer-description {
        font-size: 12px;
    }

    .cwdi-footer-social a {
        width: 36px;
        height: 36px;
    }

    .cwdi-footer-cta-inner h3 {
        font-size: 22px;
    }

}
/* =========================================
   CAR WITH DRIVER INDIA
   LOGO IMAGE (added for brand logo swap)
========================================= */

.cwdi-logo-img-wrap {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;

    background: #ffffff;
    padding: 8px 16px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.cwdi-logo-img {
    display: block;
    height: 40px;
    width: auto;
}

.cwdi-footer-logo.cwdi-logo-img-wrap {
    margin-bottom: 18px;
}

@media (max-width: 640px) {
    .cwdi-logo-img {
        height: 32px;
    }

    .cwdi-logo-img-wrap {
        padding: 6px 12px;
        border-radius: 10px;
    }
}

/* =========================================
   CAR WITH DRIVER INDIA
   BOOKING FORM — SIZE INCREASE
   (Round Trip form made a little bigger)
========================================= */

.cwdi-booking-box {
    max-width: 1240px;
}

.cwdi-trip-form {
    padding: 34px 32px 30px;
}

.cwdi-form-row {
    border-radius: 9px;
}

.cwdi-form-row + .cwdi-form-row {
    margin-top: 18px;
}

.cwdi-field {
    padding: 0 18px;
}

.cwdi-field label {
    padding-top: 12px;
    font-size: 11px;
}

.cwdi-input {
    height: 58px;
}

.cwdi-input > i:first-child {
    width: 22px;
    font-size: 15px;
}

.cwdi-input input,
.cwdi-input select {
    font-size: 15px;
    padding: 0 6px;
}

.cwdi-input input[type="date"],
.cwdi-input input[type="time"] {
    font-size: 14px;
}

.cwdi-select-arrow {
    font-size: 11px !important;
}

.cwdi-submit {
    padding: 0 30px;
    font-size: 15px;
    gap: 12px;
}

.cwdi-submit i {
    font-size: 13px;
}

@media (max-width: 991px) {
    .cwdi-trip-form {
        padding: 26px;
    }

    .cwdi-field {
        min-height: 82px;
    }

    .cwdi-input {
        height: 52px;
    }
}

@media (max-width: 600px) {
    .cwdi-trip-form {
        padding: 16px;
    }

    .cwdi-field {
        min-height: 74px;
    }

    .cwdi-input {
        height: 46px;
    }

    .cwdi-input input,
    .cwdi-input select {
        font-size: 14px;
    }

    .cwdi-submit {
        min-height: 58px;
        font-size: 14px;
    }
}
