@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden !important;
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
    position: relative;
}

html,
body {
    scroll-behavior: auto;
    /* disable default */
}



/* ===== Chrome, Edge, Safari ===== */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #111; /* track color */
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #e52b2ba3 0%, #F2B705 100%);
    border-radius: 10px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(135deg, #e52b2ba3 0%, #F2B705 100%);
    }

/* ===== Firefox ===== */
* {
    scrollbar-width: thin;
    scrollbar-color: #d5a103 #d5d5d5;
}

.smooth-wrapper {
    overflow: hidden;
}

.custom-cursor {
    width: 30px;
    height: 30px;
    border: 1px solid #febf3f;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    /* so it doesn’t block clicks */
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease;
    z-index: 9999;
}

    .custom-cursor span {
        position: absolute;
        /* Important */
        top: 50%;
        left: 50%;
        width: 4px;
        /* slightly bigger so it’s visible */
        height: 4px;
        background-color: #ff4b4b;
        border-radius: 50%;
        /* make it a dot */
        transform: translate(-50%, -50%);
        /* center inside parent */
    }

a {
    text-decoration: none;
    color: var(--text-color);
}

:root {
    --color-dark: #000;
    --text-color: #fff;
    --gradient-one: #0f0f0f;
    --gradient-two: #2c2c2c;
    --gradient-three: #00e5a0;
    --gradient-four: #00ff99;
    --gradient-five: #00bcd4;
    --theme-light: #00daad;
    --bg-deep: #0f0f0f;
    --bg-card: #2c2c2c;
    --accent: #00e5a0;
    --accent-bright: #00ff99;
    --text-primary: #ffffff;
    --text-muted: #a0a0a0;
    --border-glow: rgba(0, 229, 160, 0.35);
    /* --bg: #0f0f0f; */
    --card-bg: #161616;
    --surface: #2c2c2c;
    /* --accent:    #00e5a0; */
    --accent-hi: #00ff99;
    --text: #ffffff;
    --muted: #c4c4c4;
    --border: rgba(255, 255, 255, 0.07);
    --card: #1a1a1a;
    --elevated: #202020;
    --muted2: #888;
    --border-focus: rgba(0, 229, 160, 0.5);
    --bg: #f0f2f5;
    --surface: #ffffff;
    --surface2: #f8f9fb;
    --border: #e4e7ec;
    --border-focus: #00c98d;
    --accent: #00c98d;
    --accent-hi: #00e5a0;
    --accent-dk: #00a876;
    --text: #0d1117;
    --text2: #5a6474;
    --text3: #b0b9c6;
    --shadow: rgba(0, 0, 0, 0.06);
    --shadow2: rgba(0, 201, 141, 0.18);
    --radius: 16px;
    --input-h: 56px;
    --red: #E5252A;
    --red-dark: #b81c21;
    --yellow: #F5C200;
    --light-bg: #F8F7F4;
    --card-bg: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-muted: #6B6B6B;
    --border: rgba(0, 0, 0, .07);
    --shadow: 0 8px 40px rgba(0, 0, 0, .08);
    --shadow-hover: 0 20px 60px rgba(229, 37, 42, .13);
    --r: #E8102A;
    --r2: #FF2D45;
    --r3: #FF6B7A;
    --gold: #FFB800;
    --gold2: #FFD54F;
    --bg: #F0EEE9;
    --ink: #0F0F13;
    --ink2: #2A2A35;
    /* --muted: #8A8A9A; */
    --glass: rgba(255,255,255,0.72);
    --glass2: rgba(255,255,255,0.45);
    --border: rgba(255,255,255,0.9);
    --shadow-r: 0 8px 40px rgba(232,16,42,0.18);
    --shadow-g: 0 8px 40px rgba(255,184,0,0.18);
}

figure {
    margin: 0;
    padding: 0;
}

.btn:focus {
    outline: none;
}

ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}

a,
button {
    display: inline-block;
}

    button:focus {
        outline: none;
        box-shadow: none;
    }

select {
    cursor: pointer;
}

.btn:focus {
    outline: none;
    box-shadow: none;
}

.form-control:focus {
    outline: none;
    box-shadow: none;
}

/************************** Header css **************************/

header .top_nav {
    background: linear-gradient(135deg, #ffffff, #ececec);
    border-bottom: 1px solid #c9c9c9;
    padding: 12px 0px;
}



header.scroll {
    background: rgba(0, 0, 0, 0.7);
    /* padding: 10px 0; */
}

    header.scroll .top_nav {
        display: none;
    }

    header.scroll .navbar {
        border: none;
    }

header.scroll {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99;
    transition: all 0.4s ease;
}

.topNav_left {
    display: flex;
    gap: 15px;
}

    .topNav_left i {
        /* background-color: aqua; */
        /* background: linear-gradient(135deg, var(--gradient-five), var(--gradient-three), var(--gradient-four)); */
        /* background: linear-gradient(135deg, #E52B2B 0%, #F2B705 100%); */
        background: white;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
        border-radius: 50%;
        width: 35px;
        height: 35px;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #000000;
        border: 2px solid transparent;
        transition: all .4s ease-in-out;
        margin-left: 1px;
    }



    .topNav_left a {
        display: flex;
        gap: 7px;
        align-items: center;
        transition: all .02s ease-in-out;
        background: #f8f9fa;
        /* border: 2px dashed #ea661b; */
        border-radius: 25px;
        padding: 0 8px 0px 0px;
        color: #000;
    }

        .topNav_left a:hover i {
            background: linear-gradient(135deg, #e52b2ba3 0%, #F2B705 100%);
            border: 2px solid var(--text-color);
        }

        .topNav_left a i {
            transition: all .4s ease-in-out;
        }

        .topNav_left a:hover i {
            color: #ffffff;
        }

        .topNav_left a:hover {
            /* color: red; */
            /* text-decoration: underline; */
        }

.socials-icons {
    display: flex;
    justify-content: end;
    gap: 12px;
}

    .socials-icons a {
        /* background-color: aqua; */
        /* background: linear-gradient(135deg, var(--gradient-five), var(--gradient-three), var(--gradient-four)); */
        background: #ffffff;
        border-radius: 50px;
        width: 35px;
        height: 35px;
        display: flex;
        justify-content: center;
        align-items: center;
        color: var(--color-dark);
        border: 2px solid transparent;
        transition: all .4s ease-in-out;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    }

        .socials-icons a:hover {
            background: linear-gradient(135deg, var(--gradient-three), var(--gradient-five), var(--gradient-four));
            background: linear-gradient(135deg, #e52b2ba3 0%, #F2B705 100%);
            border: 2px solid var(--text-color);
            color: #ffffff;
        }

.mainNavbar .navbar-brand img {
    width: 150px;
}

.navbar {
    /* background: linear-gradient(135deg, #ffffff, #e4e4e4); */
    border-radius: 50px;
    border: 2px solid #e9e9e9;
    /* border-top: 0px; */
    margin-top: 0px;
    padding: 5px 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.mainNavbar .navbar-nav {
    gap: 15px;
}

    .mainNavbar .navbar-nav .nav-link {
        color: #000000;
        transition: all .3s ease-in-out;
        font-weight: 500;
    }

        .mainNavbar .navbar-nav .nav-link:hover {
            color: #f1aa09;
        }

        .mainNavbar .navbar-nav .show > .nav-link,
        .mainNavbar .navbar-nav .nav-link.active {
            color: #f09f0c;
        }

.mainNavbar .navbar-collapse {
    justify-content: center;
}

.global_btn {
    background: linear-gradient(135deg, var(--gradient-three), var(--gradient-five), var(--gradient-four));
    background: linear-gradient(135deg, #e52b2ba3 0%, #F2B705 100%);
    border: 2px solid var(--text-color);
    color: white;
    border-radius: 25px;
    font-weight: 600;
    padding: 5px 5px 5px 15px !important;
    display: flex;
    gap: 10px;
    align-items: center;
    width: fit-content;
    /* ✅ ADD THIS */
    transition: all 0.4s ease;
}

    .global_btn i {
        background: var(--color-dark);
        width: 34px;
        height: 34px;
        display: flex !important;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: var(--text-color);
        border: 1px solid var(--text-color);
        /* ✅ ADD THIS */
        transition: all 0.4s ease;
    }

    .global_btn:hover {
        background: linear-gradient(135deg, var(--gradient-two), var(--gradient-two), var(--gradient-two));
        color: var(--text-color);
        /* padding: 6px 10px; */
        /* optional micro interaction */
        transform: translateY(-2px);
    }

        .global_btn:hover i {
            background: linear-gradient(135deg, var(--gradient-three), var(--gradient-five), var(--gradient-four));
            /* optional effect */
            background: linear-gradient(135deg, #bf5b00 0%, #F2B705 100%);
            transform: rotate(10deg) scale(1.1);
        }

/************************** Header css end **************************/


/* sec1_hero */

.sec1_hero {
    width: 100%;
    height: auto;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(../images/sec-hero-image.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

    .sec1_hero::before {
        content: '';
        position: absolute;
        width: 700px;
        height: 700px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(229, 37, 42, .06) 0%, transparent 70%);
        transform: translate(-50%, -50%);
        left: 50%;
        top: 50%;
        pointer-events: none;
    }

.slogan {
    padding-bottom: 12px;
}

.sec1_hero .slogan h4 {
    /* background: linear-gradient(135deg, #e52b2ba3 0%, #F2B705 100%); */
    /* color: white; */
}

    .sec1_hero .slogan h4 i {
        /* color: #000; */
        /* background: white; */
    }

.slogan h4 {
    /* background: linear-gradient(135deg, #e52b2ba3 0%, #F2B705 100%); */
    background: linear-gradient(135deg, #ffffff, #ffffff);
    /* max-width: max-content; */
    /* text-align: center; */
    /* display: flex; */
    /* align-items: center; */
    /* gap: 10px; */
    border-radius: 30px;
    padding: 6px 10px 6px 20px;
    /* font-size: 18px; */
    /* font-weight: 700; */
    /* color: #000000; */
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    /* letter-spacing: 1px; */
    font-weight: 600;
    color: #000000;
    position: relative;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

    .slogan h4 i {
        background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
        background: linear-gradient(135deg, #e52b2ba3 0%, #F2B705 100%);
        border-radius: 50px;
        width: 35px;
        height: 35px;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #ffffff;
        /* border: 2px solid #ffffff00; */
        transition: all .4s ease-in-out;
    }

.sec1_hero {
    /* background: linear-gradient(135deg, var(--gradient-one), var(--gradient-two)); */
    /* background: linear-gradient(135deg, #ffffff, #e4e4e4); */
}

.mainNavbar {
    /* background: linear-gradient(135deg, var(--gradient-one), var(--gradient-two)); */
    background: linear-gradient(135deg, #ffffff, #e4e4e4);
    /* margin: 10px 0; */
    padding: 10px 0;
}

.sec1_hero {
    padding: 3rem 0;
    /* height: 80vh; */
}

    .sec1_hero h1 {
        font-weight: 700;
        font-size: 58px;
    }

    .sec1_hero h1 {
        color: #ffffff;
    }

    .sec1_hero p {
        color: #ffffff;
        font-size: 16px;
    }


.gradient-animated {
    font-style: normal;
    background: linear-gradient(270deg, #e73928, #ea611d, #f1a70a);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 6s ease infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}


.right-hero-content {
    background: #ffffff;
    border-radius: 25px;
    max-width: 500px;
    padding: 20px;
    box-shadow: rgb(255 255 255 / 8%) 0px 2px 8px 0px;
    border-top: 2px dashed #ee8f10;
    border-bottom: 2px dashed #f0a609;
    /* border: 2px solid #c9c9c9; */
}

    .right-hero-content h2 {
        color: #000000;
        font-weight: 700;
    }

    .right-hero-content input,
    .right-hero-content select {
        background-color: #ffffff;
        border: none;
        border-bottom: 1px dashed #f1ab08;
        /* border-radius: 4px; */
        margin: 12px 0;
        width: 100%;
        color: #000000;
        padding-bottom: 12px;
    }

        .right-hero-content input:focus-visible,
        .right-hero-content select:focus-visible {
            outline: 0px !important;
        }

        .right-hero-content input::placeholder {
            color: rgb(0, 0, 0);
        }

    .right-hero-content .custom-input-div {
        position: relative;
    }

        .right-hero-content .custom-input-div i {
            width: 40px;
            height: 40px;
            font-size: 20px;
            /* border-radius: 50%; */
            background: linear-gradient(135deg, #e52b2ba3 0%, #F2B705 100%);
            color: #ffffff;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50px;
            position: absolute;
            top: 3px;
            right: 2px;
            z-index: 0;
        }

    .right-hero-content input:focus-visible,
    .right-hero-content select:focus-visible {
        border-bottom: 1px solid #f1ab08;
    }

/* sec1_hero */



/* booking engine new css  */


/* ════════════════════════════
   LAYOUT LABEL
════════════════════════════ */

.bookingenginenew .layout-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text3);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

    .bookingenginenew .layout-label::before,
    .bookingenginenew .layout-label::after {
        content: '';
        flex: 1;
        height: 1px;
        background: var(--border);
    }

/* ════════════════════════════
   FORM CARD
════════════════════════════ */
.bookingenginenew .form-card {
    background: var(--surface);
    border-radius: 24px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .04), 0 20px 50px -10px rgba(0, 0, 0, .08), 0 0 0 1px rgba(255, 255, 255, .8) inset;
    overflow: hidden;
    position: relative;
    width: 100%;
}

    /* top accent stripe */
    .bookingenginenew .form-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--accent), var(--accent-hi), transparent);
        background: radial-gradient(circle, #f2b705 0%, #f2b70500 70%);
    }

    /* ─── VERTICAL card ─── */
    .bookingenginenew .form-card.vertical {
        /* max-width: 480px; */
        padding: 40px 36px 36px;
    }



    /* ─── HORIZONTAL card ─── */
    .bookingenginenew .form-card.horizontal {
        max-width: 1040px;
        padding: 36px 40px 36px;
    }

/* ════════════════════════════
   HEADER
════════════════════════════ */
.bookingenginenew .form-header {
    margin-bottom: 32px;
}

.bookingenginenew .form-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    font-weight: 500;
    /* letter-spacing: 2.5px; */
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 10px;
}

.bookingenginenew .form-eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #e72529;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 201, 141, .4);
    }

    50% {
        box-shadow: 0 0 0 5px rgba(0, 201, 141, 0);
    }
}

.bookingenginenew .form-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--text);
}

    .bookingenginenew .form-title em {
        font-style: normal;
        color: #f3c32c;
    }

.bookingenginenew .form-sub {
    font-size: 13.5px;
    font-weight: 300;
    color: var(--text2);
    margin-top: 6px;
    line-height: 1.6;
}

/* horizontal header */
.bookingenginenew .form-card.horizontal .form-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    flex-wrap: wrap;
    gap: 12px;
}

.bookingenginenew .form-card.horizontal .form-title {
    font-size: 22px;
}

.bookingenginenew .trust-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.bookingenginenew .trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 400;
    color: var(--text2);
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 5px 12px;
}

    .bookingenginenew .trust-pill svg {
        width: 13px;
        height: 13px;
        fill: var(--accent);
        flex-shrink: 0;
    }

/* ════════════════════════════
   FIELD GROUPS
════════════════════════════ */
/* vertical grid */
.bookingenginenew .fields-v {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

@media (max-width: 900px) {
    .bookingenginenew .fields-h {
        grid-template-columns: 1fr 1fr 1fr;
    }

        .bookingenginenew .fields-h .field-group:nth-child(1) {
            grid-column: span 3;
        }
}

@media (max-width: 600px) {
    .bookingenginenew .fields-h {
        grid-template-columns: 1fr 1fr;
    }

        .bookingenginenew .fields-h .field-group:nth-child(1),
        .bookingenginenew .fields-h .field-group:nth-child(2),
        .bookingenginenew .fields-h .field-group:nth-child(3) {
            grid-column: span 2;
        }
}

@media (max-width: 420px) {
    .bookingenginenew .fields-h {
        grid-template-columns: 1fr;
    }

        .bookingenginenew .fields-h .field-group {
            grid-column: span 1 !important;
        }
}

/* ════════════════════════════
   INDIVIDUAL FIELD
════════════════════════════ */
.bookingenginenew .field-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bookingenginenew .field-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text3);
    transition: color .25s;
    padding-left: 2px;
}

.bookingenginenew .field-group:focus-within .field-label {
    color: #e7b61e;
}

.bookingenginenew .field-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

/* left icon */
.bookingenginenew .field-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    fill: var(--text3);
    pointer-events: none;
    transition: fill .25s;
    flex-shrink: 0;
}

.bookingenginenew .field-group:focus-within .field-icon {
    fill: #e7b61e;
}

/* right badge icon */
.bookingenginenew .field-badge {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgb(255 188 54 / 20%);
    border: 1px solid rgba(0, 201, 141, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transition: background .25s, border-color .25s;
}

    .bookingenginenew .field-badge svg {
        width: 15px;
        height: 15px;
        fill: #e5b00a;
    }

.bookingenginenew .field-group:focus-within .field-badge {
    background: rgb(247 202 58 / 26%);
    border-color: rgb(247 211 99);
}

.bookingenginenew .field-input,
.bookingenginenew .field-select {
    width: 100%;
    height: var(--input-h);
    background: var(--surface2);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    /*  */
    font-size: 14px;
    font-weight: 400;
    padding: 0px 50px 0px 44px;
    outline: none;
    transition: border-color .25s, background .25s, box-shadow .25s;
    -webkit-appearance: none;
    appearance: none;
    height: 45px;
}

    .bookingenginenew .field-input::placeholder {
        color: var(--text3);
        font-weight: 300;
    }

    .bookingenginenew .field-input:focus,
    .bookingenginenew .field-select:focus {
        border-color: #facc3b;
        background: #ffffff;
        box-shadow: 0 0 0 4px rgb(250 204 59 / 10%), 0 4px 12px rgba(0, 0, 0, .05);
    }

.bookingenginenew .field-select {
    cursor: pointer;
    color: var(--text2);
}

    .bookingenginenew .field-select option {
        color: var(--text);
        background: var(--surface);
    }

/* select arrow */
.bookingenginenew .select-arrow {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    fill: var(--text3);
    pointer-events: none;
    transition: fill .25s;
}

.bookingenginenew .field-group:focus-within .select-arrow {
    fill: var(--accent);
}

/* optional tag */
.bookingenginenew .optional-tag {
    font-size: 9.5px;
    color: #ee953e;
    background: var(--surface2);
    border: 1px solid rgb(0 0 0 / 12%);
    border-radius: 4px;
    padding: 1px 6px;
    margin-left: 6px;
    vertical-align: middle;
    letter-spacing: .5px;
}

/* ════════════════════════════
   DIVIDER (vertical form)
════════════════════════════ */
.bookingenginenew .fields-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 4px 0;
}

.bookingenginenew .fields-divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.bookingenginenew .fields-divider-label {
    font-size: 11px;
    color: var(--text3);
    letter-spacing: 1px;
}

/* ════════════════════════════
   FOOTER ROW
════════════════════════════ */
.bookingenginenew .form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
    flex-wrap: wrap;
    gap: 14px;
}

    .bookingenginenew .form-footer.centered {
        justify-content: center;
        margin-top: 28px;
    }

    .bookingenginenew .form-footer.h-footer {
        margin-top: 22px;
    }

/* ─ Book Button ─ */
.bookingenginenew .book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    letter-spacing: .3px;
    background: linear-gradient(135deg, #e52b2ba3 0%, #F2B705 100%);
    padding: 0 28px;
    height: 52px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform .3s cubic-bezier(.23, 1, .32, 1), box-shadow .3s;
}

    .bookingenginenew .book-btn::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, .18), transparent);
        opacity: 0;
        transition: opacity .3s;
    }

    .bookingenginenew .book-btn:hover::before {
        opacity: 1;
    }

    .bookingenginenew .book-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(0, 201, 141, .35);
    }

    .bookingenginenew .book-btn:active {
        transform: translateY(0);
        box-shadow: none;
    }

.bookingenginenew .book-btn-icon {
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, .2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .bookingenginenew .book-btn-icon svg {
        width: 12px;
        height: 12px;
        fill: white;
    }

/* full-width button variant */
.bookingenginenew .book-btn.full {
    width: 100%;
    justify-content: center;
}

/* ─ Secondary CTA ─ */
.bookingenginenew .call-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text2);
    background: var(--surface2);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 0 20px;
    height: 52px;
    cursor: pointer;
    transition: border-color .25s, color .25s, background .25s;
}

    .bookingenginenew .call-btn:hover {
        border-color: var(--accent);
        color: var(--accent);
        background: rgba(0, 201, 141, .05);
    }

    .bookingenginenew .call-btn svg {
        width: 16px;
        height: 16px;
        fill: currentColor;
    }

/* ─ Help text ─ */
.bookingenginenew .form-help {
    font-size: 12px;
    color: var(--text3);
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 6px;
}

    .bookingenginenew .form-help svg {
        width: 13px;
        height: 13px;
        fill: var(--text3);
        flex-shrink: 0;
    }

/* ─ Steps indicator (vertical) ─ */
.bookingenginenew .steps-row {
    display: flex;
    gap: 0;
    margin-bottom: 28px;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    background: var(--surface2);
}

.bookingenginenew .step-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 10px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text3);
    border-right: 1px solid var(--border);
    cursor: pointer;
    transition: background .25s, color .25s;
    position: relative;
}

    .bookingenginenew .step-item:last-child {
        border-right: none;
    }

    .bookingenginenew .step-item.active {
        background: rgba(0, 201, 141, .07);
        color: var(--accent);
    }

    .bookingenginenew .step-item svg {
        width: 14px;
        height: 14px;
        fill: currentColor;
    }

/* ─ Journey type tabs ─ */
.bookingenginenew .journey-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 4px;
}

.bookingenginenew .j-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--text2);
    background: var(--surface2);
    border: 2.5px solid var(--border);
    border-radius: 10px;
    padding: 10px 8px;
    cursor: pointer;
    transition: background .25s, border-color .25s, color .25s, box-shadow .25s;
    position: relative;
}

    .bookingenginenew .j-tab svg {
        width: 15px;
        height: 15px;
        fill: currentColor;
        flex-shrink: 0;
    }

    .bookingenginenew .j-tab.active {
        background: rgb(248 249 251);
        border-color: #facc3b;
        color: #edb70b;
        box-shadow: 0 0 0 3px rgb(250 204 59 / 12%);
    }

/* ─ Trip summary chip (horizontal) ─ */
.bookingenginenew .trip-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text2);
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 7px 14px;
}

    .bookingenginenew .trip-chip strong {
        color: var(--accent);
    }

    .bookingenginenew .trip-chip svg {
        width: 13px;
        height: 13px;
        fill: var(--accent);
    }

/* ════════════════════════════
   SECTION WRAPPERS
════════════════════════════ */
.bookingenginenew .section-wrap {
    width: 100%;
    max-width: 1040px;
}

/* ════════════════════════════
   RESPONSIVE TWEAKS
════════════════════════════ */
@media (max-width: 560px) {
    .bookingenginenew .form-card.vertical {
        padding: 30px 22px 26px;
    }

    .bookingenginenew .form-card.horizontal {
        padding: 24px 18px;
    }

    .bookingenginenew .form-title {
        font-size: 22px;
    }
}

/* booking engine new css  */




/* sec2_about */

.sec2_about {
    background: linear-gradient(135deg, var(--gradient-one), var(--gradient-two));
    background: linear-gradient(135deg, #ffffffd6, #ecececf5), url(../images/aboutwhitebg.webp);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 3rem 0;
    position: relative;
}

    .sec2_about::before {
        content: '';
        position: absolute;
        width: 700px;
        height: 700px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(229, 37, 42, .06) 0%, transparent 70%);
        top: -200px;
        left: -200px;
        pointer-events: none;
    }

    .sec2_about .aboutMainContent h2 {
    }

    .sec2_about .aboutMainContent {
        text-align: center;
    }

.aboutIMGparent {
    border: 2px dashed #f1aa08;
    border-radius: 1000px;
    padding: 10px;
    box-shadow: rgb(99 99 99 / 50%) 0px 2px 8px 0px;
}

.sec2_about img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 1000px;
    transition: all .5s ease-in-out;
}

    .sec2_about img:hover {
        transform: scale(1.02);
    }

.sec2_about h2 {
    font-size: clamp(38px, 5.5vw, 62px);
    font-weight: 700;
}

    .sec2_about h2 em {
        font-style: normal;
        position: relative;
        background: linear-gradient(270deg, #e73928, #ea611d, #f1a70a);
        background-size: 400% 400%;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: gradientMove 6s ease infinite;
    }

.sec2_about p {
    color: #000000;
    padding-top: 20px;
}

.sec2_about .slogan {
    padding-bottom: 2rem;
    position: relative;
}

    .sec2_about .slogan h4 {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-size: 20px;
        /* letter-spacing: 1px; */
        font-weight: 600;
        color: #000000;
        position: relative;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    }

    /* .sec2_about .slogan h4 {
    font-size: 18px;
} */
    .sec2_about .slogan i {
        background: linear-gradient(135deg, #e52b2ba3 0%, #F2B705 100%);
        /* width: 28px;
    height: 28px; */
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        font-size: 14px;
    }

/* Clean center line */
.sec2_about .lineUNAbout {
    position: absolute;
    bottom: 15px;
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--gradient-three), transparent);
    margin: 12px auto 0;
}

/* sec2_about */

/* why section */


/* ── Section ──────────────────────────────────── */
.why-section {
    padding: 100px 0 120px;
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

    /* large decorative circle */
    .why-section::before {
        content: '';
        position: absolute;
        width: 700px;
        height: 700px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(229, 37, 42, .06) 0%, transparent 70%);
        top: -200px;
        right: -200px;
        pointer-events: none;
    }

    .why-section::after {
        content: '';
        position: absolute;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(245, 194, 0, .07) 0%, transparent 70%);
        bottom: -100px;
        left: -100px;
        pointer-events: none;
    }

    /* ── Heading ─────────────────────────────────── */
    .why-section .section-label {
        font-size: .75rem;
        font-weight: 600;
        letter-spacing: .18em;
        text-transform: uppercase;
        color: var(--red);
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 14px;
    }

        .why-section .section-label::before {
            content: '';
            display: inline-block;
            width: 28px;
            height: 2px;
            background: var(--red);
            border-radius: 2px;
        }

    .why-section .section-title {
        font-size: clamp(38px, 5.5vw, 62px);
        font-weight: 700;
        line-height: 1.1;
        color: var(--text-dark);
        margin-bottom: 16px;
    }

        .why-section .section-title em {
            /* color: var(--red); */
            font-style: normal;
            position: relative;
            background: linear-gradient(270deg, #e73928, #ea611d, #f1a70a);
            background-size: 400% 400%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradientMove 6s ease infinite;
        }

/* .why-section .section-title span::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--yellow);
            border-radius: 2px;
            transform: scaleX(0);
            transform-origin: left;
            animation: underlineGrow 1s .8s cubic-bezier(.4, 0, .2, 1) forwards;
        } */

@keyframes underlineGrow {
    to {
        transform: scaleX(1);
    }
}

.why-section .section-sub {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 420px;
}

/* ── Feature Cards ───────────────────────────── */
.why-section .feature-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 36px 32px 32px;
    border: 1.5px solid var(--border);
    box-shadow: var(--shadow);
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform .4s cubic-bezier(.4, 0, .2, 1), box-shadow .4s cubic-bezier(.4, 0, .2, 1), border-color .4s;
    cursor: default;
}

    /* animated top accent line */
    .why-section .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 3px;
        background: var(--red);
        transition: width .5s cubic-bezier(.4, 0, .2, 1);
        border-radius: 0 0 3px 0;
    }

    /* subtle corner decoration */
    .why-section .feature-card::after {
        content: '';
        position: absolute;
        bottom: -30px;
        right: -30px;
        width: 90px;
        height: 90px;
        border-radius: 50%;
        background: rgba(229, 37, 42, .04);
        transition: transform .4s ease, background .4s;
    }

    .why-section .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-hover);
        border-color: rgba(229, 37, 42, .18);
    }

        .why-section .feature-card:hover::before {
            width: 100%;
        }

        .why-section .feature-card:hover::after {
            transform: scale(2.2);
            background: rgba(229, 37, 42, .07);
        }

/* icon badge */
.why-section .icon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(229, 37, 42, .08);
    color: var(--red);
    font-size: 1.5rem;
    margin-bottom: 22px;
    transition: background .3s, transform .3s;
}

.why-section .feature-card:hover .icon-badge {
    background: linear-gradient(135deg, #e52b2ba3 0%, #F2B705 100%);
    color: #fff;
    transform: rotate(-6deg) scale(1.1);
}

.why-section .feature-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    transition: color .3s;
}

.why-section .feature-card:hover .feature-title {
    color: #f1af13;
}

.why-section .feature-text {
    font-size: .9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* stat chip inside card */
.why-section .stat-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(245, 194, 0, .12);
    border: 1px solid rgba(245, 194, 0, .3);
    color: #987800;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .04em;
    padding: 4px 10px;
    border-radius: 100px;
    margin-top: 16px;
}

/* ── Phone mockup side ───────────────────────── */
.why-section .phone-col {
    position: relative;
}

.why-section .phone-wrap {
    position: relative;
    display: inline-block;
}

/* floating card badges */
.why-section .float-badge {
    position: absolute;
    background: #fff;
    border-radius: 14px;
    padding: 10px 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .12);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .82rem;
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
    animation: floatY 3s ease-in-out infinite;
}

    .why-section .float-badge.badge-a {
        top: 10%;
        right: -18%;
        animation-delay: 0s;
    }

    .why-section .float-badge.badge-b {
        bottom: 18%;
        left: -14%;
        animation-delay: 1.4s;
    }

@keyframes floatY {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.why-section .badge-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

/* phone image */
.why-section .phone-img {
    width: 100%;
    max-width: 320px;
    display: block;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, .18));
    animation: phoneLift 6s ease-in-out infinite;
}

@keyframes phoneLift {

    0%, 100% {
        transform: translateY(0) rotate(-2deg);
    }

    50% {
        transform: translateY(-14px) rotate(-2deg);
    }
}

/* background card behind phone */
.why-section .phone-bg-card {
    position: absolute;
    inset: 8% 4% -4% 4%;
    background: linear-gradient(135deg, #fff5f5 0%, #fff9ec 100%);
    border-radius: 28px;
    border: 1.5px solid rgba(229, 37, 42, .1);
    z-index: 0;
}

.why-section .phone-wrap {
    z-index: 1;
}

.why-section .float-badge {
    z-index: 2;
}

/* ── CTA Button ──────────────────────────────── */
.why-section .btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--red);
    color: #fff;
    font-weight: 600;
    font-size: .95rem;
    padding: 15px 36px;
    border-radius: 100px;
    border: none;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
    box-shadow: 0 8px 28px rgba(229, 37, 42, .35);
}

    .why-section .btn-cta::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, .18) 50%, transparent 70%);
        transform: translateX(-100%);
        transition: transform .6s;
    }

    .why-section .btn-cta:hover {
        transform: translateY(-3px);
        box-shadow: 0 14px 40px rgba(229, 37, 42, .4);
        color: #fff;
    }

        .why-section .btn-cta:hover::before {
            transform: translateX(100%);
        }

.why-section .btn-outline-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--text-dark);
    font-weight: 500;
    font-size: .9rem;
    padding: 15px 28px;
    border-radius: 100px;
    border: 1.5px solid var(--border);
    text-decoration: none;
    transition: border-color .3s, color .3s;
}

    .why-section .btn-outline-cta:hover {
        border-color: var(--red);
        color: var(--red);
    }

/* ── Entrance Animations ─────────────────────── */
.why-section .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .7s ease, transform .7s ease;
}

    .why-section .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* staggered delays for cards */
.why-section .reveal-d1 {
    transition-delay: .1s;
}

.why-section .reveal-d2 {
    transition-delay: .2s;
}

.why-section .reveal-d3 {
    transition-delay: .3s;
}

.why-section .reveal-d4 {
    transition-delay: .4s;
}

.why-section .reveal-phone {
    transition-delay: .25s;
}

/* pulse ring on icon badge */
.why-section .icon-badge {
    position: relative;
}

/* ── Responsive ──────────────────────────────── */
@media (max-width: 991px) {
    .why-section .phone-col {
        text-align: center;
        margin-top: 60px;
    }

    .why-section .float-badge.badge-a {
        right: 0;
    }

    .why-section .float-badge.badge-b {
        left: 0;
    }
}

@media (max-width: 576px) {
    .why-section .why-section {
        padding: 70px 0 80px;
    }

    .why-section .float-badge {
        display: none;
    }
}

/* counter number */
.why-section .count-num {
    font-size: 2rem;
    font-weight: 800;
    color: #f2b20e;
    line-height: 1;
}

.why-section .count-label {
    font-size: .78rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 3px;
}

.why-section .stats-row {
    display: flex;
    gap: 32px;
    margin-top: 36px;
}

    .why-section .stats-row .divider {
        width: 1px;
        background: var(--border);
    }

/* why section */


/* sec3_services */

.sec3_sevciescards {
    position: relative;
    background: linear-gradient(135deg, #ffffff, #f7f7f7);
    padding: 3rem 0;
    overflow: hidden;
}

/* .services_child::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
      linear-gradient(rgba(0,229,160,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0,229,160,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
  } */

.sec3_sevciescards {
    position: relative;
    z-index: 1;
    /* max-width: 1200px; */
    width: 100%;
}

    .sec3_sevciescards::before {
        content: '';
        position: absolute;
        width: 700px;
        height: 700px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(229, 37, 42, .06) 0%, transparent 70%);
        top: -200px;
        left: -200px;
        pointer-events: none;
    }

    /* Section Header */
    .sec3_sevciescards .section-header {
        text-align: center;
        margin-bottom: 60px;
        opacity: 0;
        transform: translateY(30px);
        animation: fadeUp 0.8s ease forwards;
    }

    .sec3_sevciescards .section-label {
        /*  */
        font-size: 11px;
        font-weight: 500;
        letter-spacing: 4px;
        text-transform: uppercase;
        color: var(--accent);
        margin-bottom: 14px;
        display: block;
    }

    .sec3_sevciescards .section-title {
        font-size: clamp(38px, 5.5vw, 62px);
        font-weight: 700;
        color: #000000;
        /*  */
    }

        .sec3_sevciescards .section-title em {
            /* color: var(--accent); */
            /* position: relative; */
            /* background: linear-gradient(135deg, var(--gradient-three), var(--gradient-five), var(--gradient-four)); */
            /* background-size: 400% 400%; */
            /* -webkit-background-clip: text; */
            /* -webkit-text-fill-color: transparent; */
            /* animation: gradientMove 6s ease infinite; */
            font-style: normal;
            position: relative;
            background: linear-gradient(270deg, #e73928, #ea611d, #f1a70a);
            background-size: 400% 400%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradientMove 6s ease infinite;
        }

    /* Cards Grid */
    .sec3_sevciescards .cards-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 24px;
    }

    /* Individual Card */
    .sec3_sevciescards .service-card {
        position: relative;
        background: #ffffff;
        border-radius: 20px;
        padding: 40px 32px 36px;
        border: 1px solid rgb(250 204 59);
        overflow: hidden;
        cursor: pointer;
        opacity: 0;
        transform: translateY(40px);
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
        transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1), border-color 0.4s ease, box-shadow 0.4s ease;
    }

        .sec3_sevciescards .service-card:nth-child(1) {
            animation: fadeUp 0.7s ease 0.2s forwards;
        }

        .sec3_sevciescards .service-card:nth-child(2) {
            animation: fadeUp 0.7s ease 0.38s forwards;
        }

        .sec3_sevciescards .service-card:nth-child(3) {
            animation: fadeUp 0.7s ease 0.56s forwards;
        }

        .sec3_sevciescards .service-card:nth-child(4) {
            animation: fadeUp 0.7s ease 0.72s forwards;
        }

        /* Glowing top border line on hover */
        .sec3_sevciescards .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 10%;
            right: 10%;
            height: 2px;
            background: linear-gradient(90deg, transparent, #f09b38, transparent);
            opacity: 0;
            transition: opacity 0.4s ease;
            border-radius: 0 0 4px 4px;
        }

        /* Radial glow on hover */
        .sec3_sevciescards .service-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 50% 0%, rgb(231 37 41 / 7%) 0%, transparent 65%);
            opacity: 0;
            transition: opacity 0.5s ease;
            pointer-events: none;
            border-radius: 20px;
        }

        .sec3_sevciescards .service-card:hover {
            transform: translateY(-8px);
            border-color: rgb(241 159 49 / 40%);
            box-shadow: 0 20px 50px rgb(0 0 0 / 18%), 0 0 0 1px rgb(241 159 49 / 15%), 0 0 40px #f2b7050f;
        }

            .sec3_sevciescards .service-card:hover::before {
                opacity: 1;
            }

            .sec3_sevciescards .service-card:hover::after {
                opacity: 1;
            }

    /* Icon */
    .sec3_sevciescards .icon-wrap {
        width: 60px;
        height: 60px;
        border-radius: 14px;
        background: rgb(250 204 59 / 10%);
        border: 1px solid rgb(250 203 60 / 56%);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 28px;
        position: relative;
        transition: background 0.4s ease, border-color 0.4s ease, transform 0.4s ease;
    }

    .sec3_sevciescards .service-card:hover .icon-wrap {
        background: rgb(240 155 55 / 18%);
        border-color: rgb(241 158 52 / 50%);
        transform: scale(1.05) rotate(-2deg);
    }

    .sec3_sevciescards .icon-wrap svg {
        width: 26px;
        height: 26px;
        fill: #facc3b;
        transition: fill 0.3s ease;
    }

    .sec3_sevciescards .service-card:hover .icon-wrap svg {
        fill: #f19d36;
    }

    /* Card Number */
    .sec3_sevciescards .card-number {
        position: absolute;
        top: 28px;
        right: 32px;
        font-size: 54px;
        font-weight: 700;
        color: rgb(231 37 41 / 25%);
        letter-spacing: 1px;
        transition: color 0.3s ease;
    }

    .sec3_sevciescards .service-card:hover .card-number {
        color: rgb(240 156 52 / 55%);
    }

    /* Card Content */
    .sec3_sevciescards .card-title {
        font-size: 22px;
        font-weight: 700;
        color: #000000;
        margin-bottom: 14px;
        line-height: 1.2;
        transition: color 0.3s ease;
    }

    .sec3_sevciescards .service-card:hover .card-title {
        color: #f0983c;
    }

    .sec3_sevciescards .card-desc {
        font-size: 14.5px;
        font-weight: 300;
        color: #000000;
        line-height: 1.75;
        margin-bottom: 32px;
    }

    /* CTA Button */
    .sec3_sevciescards .card-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-size: 13px;
        font-weight: 500;
        color: var(--accent);
        text-decoration: none;
        letter-spacing: 0.5px;
        padding: 10px 22px;
        border-radius: 8px;
        border: 1px solid rgba(0, 229, 160, 0.3);
        background: rgba(0, 229, 160, 0.05);
        transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease, gap 0.3s ease;
        position: relative;
        overflow: hidden;
    }

        .sec3_sevciescards .card-btn::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--accent);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
            z-index: 0;
        }

        .sec3_sevciescards .card-btn span,
        .sec3_sevciescards .card-btn svg {
            position: relative;
            z-index: 1;
            transition: color 0.3s ease;
        }

        .sec3_sevciescards .card-btn:hover::before {
            transform: scaleX(1);
        }

        .sec3_sevciescards .card-btn:hover {
            color: #0f0f0f;
            border-color: var(--accent);
            gap: 14px;
        }

            .sec3_sevciescards .card-btn:hover span {
                color: #0f0f0f;
            }

    .sec3_sevciescards .btn-arrow {
        width: 14px;
        height: 14px;
        transition: transform 0.3s ease;
    }

    .sec3_sevciescards .card-btn:hover .btn-arrow {
        transform: translateX(3px);
    }

    /* Bottom separator line */
    .sec3_sevciescards .card-line {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent 0%, #f09c35 50%, transparent 100%);
        transform: scaleX(0);
        transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
        border-radius: 0 0 20px 20px;
    }

    .sec3_sevciescards .service-card:hover .card-line {
        transform: scaleX(1);
    }

    /* Tags */
    .sec3_sevciescards .card-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 24px;
    }

    .sec3_sevciescards .tag {
        font-size: 11px;
        font-weight: 500;
        letter-spacing: 0.5px;
        color: rgba(0, 229, 160, 0.7);
        background: rgba(0, 229, 160, 0.08);
        border: 1px solid rgba(0, 229, 160, 0.15);
        border-radius: 4px;
        padding: 3px 9px;
        transition: background 0.3s ease, border-color 0.3s ease;
    }

    .sec3_sevciescards .service-card:hover .tag {
        background: rgba(0, 229, 160, 0.13);
        border-color: rgba(0, 229, 160, 0.3);
    }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 640px) {
    .sec3_sevciescards .cards-grid {
        grid-template-columns: 1fr;
    }

    body {
        /* padding: 40px 16px; */
    }
}

/* sec3_services */


/* section fleets css */

.fleet-section {
    background: linear-gradient(135deg, #ffffffd9, #ffffff), url(../images/fleets-bg.avif);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
    /* max-width: 1220px; */
    width: 100%;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}


    .fleet-section::before {
        content: '';
        position: absolute;
        width: 700px;
        height: 700px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(229, 37, 42, .06) 0%, transparent 70%);
        top: -200px;
        right: 0px;
        pointer-events: none;
    }


.swiper {
    width: 100%;
    height: 100%;
    padding: 5rem 0 3rem;
}

.swiper-slide {
    /* text-align: center; */
    font-size: 18px;
    /* background: #444; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-pagination-bullet {
    width: 16px;
    border-radius: 8px;
    transition: all .4s ease-in-out;
}

.swiper-pagination-bullet-active {
    background: #f2b705;
    width: 35px;
}

.swiper-button-next,
.swiper-button-prev {
    align-items: center;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    height: 42px;
    justify-content: center;
    position: absolute;
    width: 42px;
    z-index: 10;
    background: linear-gradient(135deg, #e52b2ba3 0%, #F2B705 100%);
    padding: 12px;
    border-radius: 22px;
}

.swiper-button-next {
    right: 0% !important;
    left: unset !important;
    top: 6% !important;
}

.swiper-button-prev {
    right: 4% !important;
    left: unset !important;
    top: 6% !important;
}

/* ════════════════════════
     HEADER
  ════════════════════════ */
.fleet-section .fleet-header {
    text-align: center;
    margin-bottom: 70px;
    opacity: 0;
    transform: translateY(28px);
    animation: riseUp .9s cubic-bezier(.23, 1, .32, 1) .1s forwards;
}

.fleet-section .fleet-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

    .fleet-section .fleet-eyebrow::before,
    .fleet-section .fleet-eyebrow::after {
        content: '';
        display: block;
        width: 28px;
        height: 1px;
        background: var(--accent);
        opacity: .5;
    }

.fleet-section .fleet-title {
    font-size: clamp(38px, 5.5vw, 62px);
    font-weight: 700;
    color: var(--text);
    line-height: 1.08;
    /*  */
}

    .fleet-section .fleet-title em {
        font-style: normal;
        /* color: var(--accent); */
        background: linear-gradient(270deg, #e73928, #ea611d, #f1a70a);
        background-size: 400% 400%;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: gradientMove 6s ease infinite;
    }

.fleet-section .fleet-sub {
    margin-top: 14px;
    font-size: 15px;
    font-weight: 300;
    color: #000000;
    max-width: 460px;
    margin-inline: auto;
    line-height: 1.7;
}

/* ════════════════════════
     CARDS GRID
  ════════════════════════ */
/* .fleet-section .cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
} */

@media (max-width: 900px) {
    .fleet-section .cards-grid {
        grid-template-columns: 1fr;
        max-width: 460px;
        margin: 0 auto;
    }
}

/* ════════════════════════
     SINGLE CARD
  ════════════════════════ */
.fleet-section .fleet-card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    background: var(--card-bg);
    border: 1px solid rgb(220 220 220);
    cursor: pointer;
    opacity: 0;
    transform: translateY(50px) scale(.97);
    transition: transform .5s cubic-bezier(.23, 1, .32, 1), box-shadow .5s ease, border-color .4s ease;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

    .fleet-section .fleet-card:nth-child(1) {
        animation: riseUp .8s cubic-bezier(.23, 1, .32, 1) .25s forwards;
    }

    .fleet-section .fleet-card:nth-child(2) {
        animation: riseUp .8s cubic-bezier(.23, 1, .32, 1) .42s forwards;
    }

    .fleet-section .fleet-card:nth-child(3) {
        animation: riseUp .8s cubic-bezier(.23, 1, .32, 1) .59s forwards;
    }

    .fleet-section .fleet-card:hover {
        transform: translateY(-10px) scale(1.01);
        border-color: #f2b70594;
        box-shadow: 0 30px 70px rgb(0 0 0 / 0.8%), 0 0 0 1px #f2b70529, 0 0 55px #f2b70517;
    }

    /* ── corner accent lines ── */
    .fleet-section .fleet-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 50px;
        height: 50px;
        border-top: 2px solid #f2b705;
        border-left: 2px solid #f2b705;
        border-radius: 22px 0 0 0;
        opacity: 0;
        transition: opacity .4s ease, width .4s ease, height .4s ease;
        z-index: 10;
    }

    .fleet-section .fleet-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        width: 50px;
        height: 50px;
        border-bottom: 2px solid #f2b705;
        border-right: 2px solid #f2b705;
        border-radius: 0 0 22px 0;
        opacity: 0;
        transition: opacity .4s ease, width .4s ease, height .4s ease;
        z-index: 10;
    }

    .fleet-section .fleet-card:hover::before,
    .fleet-section .fleet-card:hover::after {
        opacity: 1;
        width: 70px;
        height: 70px;
    }

/* ════════════════════════
     IMAGE ZONE
  ════════════════════════ */
.fleet-section .card-image-wrap {
    position: relative;
    height: 230px;
    overflow: hidden;
}

    .fleet-section .card-image-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 60%;
        transition: transform .8s cubic-bezier(.23, 1, .32, 1), filter .5s ease;
        filter: brightness(.88) saturate(1.05);
    }

.fleet-section .fleet-card:hover .card-image-wrap img {
    transform: scale(1.07);
    filter: brightness(.98) saturate(1.15);
}

/* gradient overlay on image bottom */
.fleet-section .card-image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 30%, rgba(22, 22, 22, .9) 100%);
    pointer-events: none;
}

/* floating badge */
.fleet-section .fleet-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 5;
    background: #ffffff;
    border: 1px solid rgb(238 144 71);
    color: #000000;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 30px;
    backdrop-filter: blur(8px);
}

/* book now button in image */
.fleet-section .book-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 5;
    /* display: inline-flex; */
    /* align-items: center; */
    /* gap: 7px; */
    /* background: var(--accent); */
    /* color: #fffefe; */
    font-size: 16px;
    /* font-weight: 700; */
    /* letter-spacing: .5px; */
    /* padding: 9px 18px; */
    /* border-radius: 10px; */
    /* text-decoration: none; */
    /* transition: background .3s ease, transform .3s ease, gap .3s ease; */
    /* white-space: nowrap; */
}

    .fleet-section .book-btn:hover {
        /* background: var(--accent-hi); */
        transform: scale(1.04);
        gap: 10px;
    }

    .fleet-section .book-btn svg {
        width: 13px;
        height: 13px;
        transition: transform .3s ease;
    }

    .fleet-section .book-btn:hover svg {
        transform: translateX(2px);
    }

/* car spec overlay at image bottom */
.fleet-section .spec-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 0;
    padding: 10px 16px;
}

.fleet-section .spec-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 400;
    color: rgba(255, 255, 255, .75);
    padding: 0 12px;
    border-right: 1px solid rgba(255, 255, 255, .15);
}

    .fleet-section .spec-item:first-child {
        padding-left: 0;
    }

    .fleet-section .spec-item:last-child {
        border-right: none;
    }

    .fleet-section .spec-item svg {
        width: 12px;
        height: 12px;
        fill: var(--accent);
        opacity: .9;
        flex-shrink: 0;
    }

/* ════════════════════════
     CARD BODY
  ════════════════════════ */
.fleet-section .card-body {
    padding: 24px 26px 28px;
    position: relative;
}

    /* thin accent top line */
    .fleet-section .card-body::before {
        content: '';
        position: absolute;
        top: 0;
        left: 26px;
        right: 26px;
        height: 1px;
        background: linear-gradient(90deg, #f2b705 0%, transparent 100%);
        opacity: .2;
        transition: opacity .4s ease;
    }

.fleet-section .fleet-card:hover .card-body::before {
    opacity: .6;
}

.fleet-section .car-name {
    font-size: 22px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 8px;
    /* letter-spacing: -.3px; */
    transition: color .3s ease;
}

.fleet-section .fleet-card:hover .car-name {
    color: #f2b705;
}

.fleet-section .car-desc {
    font-size: 13.5px;
    font-weight: 300;
    color: #4e4d4d;
    line-height: 1.7;
    margin-bottom: 22px;
}

/* capacity row */
.fleet-section .capacity-row {
    display: flex;
    gap: 0;
    border: 1px solid rgb(224 224 224 / 90%);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color .4s ease;
    margin-bottom: 22px;
}

.fleet-section .fleet-card:hover .capacity-row {
    border-color: #f2b70554;
}

.fleet-section .cap-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 12px 8px;
    border-right: 1px solid rgb(216 216 216 / 90%);
    transition: background .3s ease;
}

    .fleet-section .cap-item:last-child {
        border-right: none;
    }

.fleet-section .fleet-card:hover .cap-item {
    background: #f2b7051a;
}

.fleet-section .cap-icon {
    width: 18px;
    height: 18px;
    fill: #f2b705;
}

.fleet-section .cap-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
}

.fleet-section .cap-label {
    font-size: 10px;
    font-weight: 400;
    color: #4e4d4d;
    letter-spacing: .5px;
    text-transform: uppercase;
    text-align: center;
}

/* features chips */
.fleet-section .features-row {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.fleet-section .feat-chip {
    font-size: 11px;
    color: rgba(0, 229, 160, .75);
    background: rgba(0, 229, 160, .07);
    border: 1px solid rgba(0, 229, 160, .15);
    border-radius: 5px;
    padding: 4px 10px;
    transition: background .3s ease, border-color .3s ease;
}

.fleet-section .fleet-card:hover .feat-chip {
    background: rgba(0, 229, 160, .13);
    border-color: rgba(0, 229, 160, .3);
}

@keyframes riseUp {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* section fleets css */



/* sec7_airportTransfer */


/* ── WRAPPER ─────────────────────────────────── */
/* .sec7_airportTransfer .page {
            max-width: 1340px;
            margin: 0 auto;
            padding: 100px 60px;
        } */
.sec7_airportTransfer {
    position: relative;
}

    .sec7_airportTransfer .topContentHeading {
        margin: 10px auto 40px auto;
        max-width: 600px;
        text-align: center;
    }

    .sec7_airportTransfer::before {
        content: '';
        position: absolute;
        width: 700px;
        height: 700px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(229, 37, 42, .06) 0%, transparent 70%);
        top: -200px;
        left: 0;
        pointer-events: none;
    }

    /* ── TAG PILL ─────────────────────────────────── */
    .sec7_airportTransfer .tag {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        background: var(--red-light);
        border: 1px solid var(--red-border);
        color: var(--red);
        font-size: 10.5px;
        font-weight: 700;
        letter-spacing: 0.13em;
        text-transform: uppercase;
        padding: 5px 13px;
        border-radius: 100px;
        margin-bottom: 20px;
        opacity: 0;
        animation: fadeUp .55s ease forwards;
    }

        .sec7_airportTransfer .tag svg {
            width: 13px;
            height: 13px;
        }

    /* ── HEADING ──────────────────────────────────── */
    .sec7_airportTransfer .heading {
        font-size: clamp(38px, 5.5vw, 62px);
        font-weight: 700;
        text-transform: capitalize;
        line-height: 1.06;
        /* letter-spacing: -0.03em; */
        color: var(--ink);
        opacity: 0;
        animation: fadeUp .55s .08s ease forwards;
    }

        .sec7_airportTransfer .heading em {
            font-style: normal;
            color: var(--red);
            position: relative;
            background: linear-gradient(270deg, #e73928, #ea611d, #f1a70a);
            background-size: 400% 400%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradientMove 6s ease infinite;
        }

    /* ── RULE ─────────────────────────────────────── */
    .sec7_airportTransfer .rule {
        width: 44px;
        height: 3px;
        background: var(--red);
        border-radius: 2px;
        margin: 24px 0 36px;
        opacity: 0;
        animation: fadeUp .55s .14s ease forwards;
    }

    /* ═══════════════════════════════════════════════
     SECTION 1 — AIRPORT TRANSFERS
  ═══════════════════════════════════════════════ */
    .sec7_airportTransfer .at-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 44px;
        align-items: start;
    }

    /* ── VISUAL CARD ──────────────────────────────── */
    .sec7_airportTransfer .vis-card {
        /* background: url("/images/route-image.png"); */
        /* background: var(--bg-white); */
        border: 1px solid rgb(216 216 216 / 90%);
        border-radius: 26px;
        /* padding: 44px 40px 0; */
        /* min-height: 440px; */
        position: relative;
        overflow: hidden;
        box-shadow: var(--shadow-md);
        opacity: 0;
        animation: fadeLeft .7s .18s ease forwards;
    }

        .sec7_airportTransfer .vis-card img {
            position: relative;
            width: 100%;
        }

        /* subtle top-left blush */
        .sec7_airportTransfer .vis-card::before {
            content: '';
            position: absolute;
            top: -60px;
            left: -60px;
            width: 260px;
            height: 260px;
            background: radial-gradient(circle, rgba(232, 0, 29, 0.07) 0%, transparent 70%);
            pointer-events: none;
        }

        /* grid lines texture */
        .sec7_airportTransfer .vis-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background-image: linear-gradient(var(--border-2) 1px, transparent 1px), linear-gradient(90deg, var(--border-2) 1px, transparent 1px);
            background-size: 32px 32px;
            opacity: 0.55;
            pointer-events: none;
        }

        .sec7_airportTransfer .vis-card .imgTextP p {
            padding: 12px;
            color: #4e4d4d;
            margin-bottom: 0;
        }

    .sec7_airportTransfer .vc-inner {
        position: relative;
        z-index: 1;
    }

    .sec7_airportTransfer .vc-eyebrow {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.11em;
        text-transform: uppercase;
        color: var(--muted);
        margin-bottom: 12px;
    }

    .sec7_airportTransfer .vc-title {
        font-size: 26px;
        font-weight: 700;
        line-height: 1.25;
        color: var(--ink);
        margin-bottom: 12px;
        max-width: 280px;
    }

    .sec7_airportTransfer .vc-sub {
        font-size: 13.5px;
        color: var(--muted);
        line-height: 1.65;
        max-width: 270px;
        margin-bottom: 26px;
    }

    /* live badge */
    .sec7_airportTransfer .live-badge {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        background: var(--bg-warm);
        border: 1px solid var(--border);
        border-radius: 10px;
        padding: 9px 14px;
        font-size: 12px;
        color: var(--muted);
        margin-bottom: 36px;
    }

    .sec7_airportTransfer .live-dot {
        width: 8px;
        height: 8px;
        background: #16a34a;
        border-radius: 50%;
        flex-shrink: 0;
        animation: pulse-g 2s ease infinite;
    }

@keyframes pulse-g {

    0%, 100% {
        box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.45);
    }

    60% {
        box-shadow: 0 0 0 7px rgba(22, 163, 74, 0);
    }
}

/* plane illustration */
.sec7_airportTransfer .plane-illo {
    position: absolute;
    bottom: 0;
    right: -10px;
    width: 58%;
    pointer-events: none;
    animation: bob 5s ease-in-out infinite;
}

@keyframes bob {

    0%, 100% {
        transform: translateY(0) rotate(-1deg);
    }

    50% {
        transform: translateY(-14px) rotate(1deg);
    }
}

/* stat chips row */
.sec7_airportTransfer .stat-row {
    display: flex;
    gap: 10px;
    position: absolute;
    bottom: 24px;
    left: 40px;
    z-index: 2;
}

.sec7_airportTransfer .stat-chip {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 8px 14px;
    font-size: 11px;
    color: var(--ink-2);
    font-weight: 500;
    box-shadow: var(--shadow-sm);
    white-space: nowrap;
}

    .sec7_airportTransfer .stat-chip span {
        display: block;
        font-size: 16px;
        font-weight: 800;
        color: var(--red);
        line-height: 1.1;
        margin-bottom: 2px;
    }

/* ── RIGHT COLUMN ─────────────────────────────── */
.sec7_airportTransfer .at-info {
    opacity: 0;
    animation: fadeRight .7s .25s ease forwards;
}

.sec7_airportTransfer .desc {
    font-size: 15px;
    line-height: 1.78;
    color: var(--muted);
    margin-bottom: 36px;
}

    .sec7_airportTransfer .desc strong {
        color: var(--ink);
        font-weight: 500;
    }

/* routes header row */
.sec7_airportTransfer .routes-hdr {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 14px;
}

    .sec7_airportTransfer .routes-hdr::after {
        content: '';
        flex: 1;
        height: 1px;
        background: var(--border);
    }

/* route pills */
.sec7_airportTransfer .route-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 36px;
}

.sec7_airportTransfer .route-pill {
    display: flex;
    align-items: center;
    gap: 14px;
    background: white;
    border: 1px solid rgb(205 205 205 / 90%);
    border-radius: 14px;
    padding: 13px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-2);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: background .22s, border-color .22s, transform .22s, box-shadow .22s;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateX(-8px);
}

    .sec7_airportTransfer .route-pill::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, transparent, rgba(232, 0, 29, 0.04), transparent);
        transform: translateX(-100%);
        transition: transform .4s ease;
    }

    .sec7_airportTransfer .route-pill:hover::after {
        transform: translateX(100%);
    }

    .sec7_airportTransfer .route-pill:hover {
        background: var(--red-light);
        border-color: var(--red-border);
        transform: translateX(5px);
        box-shadow: 0 4px 20px rgba(232, 0, 29, 0.10);
    }

    .sec7_airportTransfer .route-pill .rp-icon i {
        color: #e72529;
    }

    .sec7_airportTransfer .route-pill:hover .rp-icon {
        background: linear-gradient(135deg, #e52b2ba3 0%, #F2B705 100%);
    }

        .sec7_airportTransfer .route-pill:hover .rp-icon i {
            color: #fff;
        }

    .sec7_airportTransfer .route-pill:hover .rp-arrow {
        color: var(--red);
        transform: translateX(3px);
    }

.sec7_airportTransfer .rp-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--red-mid);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    transition: background .22s;
}

    .sec7_airportTransfer .rp-icon svg {
        width: 13px;
        height: 13px;
        color: var(--red);
    }

.sec7_airportTransfer .rp-arrow {
    margin-left: auto;
    color: var(--border);
    transition: color .22s, transform .22s;
}

    .sec7_airportTransfer .rp-arrow svg {
        width: 15px;
        height: 15px;
    }

/* CTA button */
.sec7_airportTransfer .btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--red);
    color: #fff;
    font-weight: 700;
    font-size: 12.5px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 13px 26px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
    position: relative;
    overflow: hidden;
}

    .sec7_airportTransfer .btn::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(255, 255, 255, 0.14);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .28s ease;
    }

    .sec7_airportTransfer .btn:hover::before {
        transform: scaleX(1);
    }

    .sec7_airportTransfer .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 28px rgba(232, 0, 29, 0.35);
    }

    .sec7_airportTransfer .btn svg {
        width: 15px;
        height: 15px;
    }

/* ── SEPARATOR ────────────────────────────────── */
.sec7_airportTransfer .sep {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    margin: 80px 0;
}

/* ═══════════════════════════════════════════════
     SECTION 2 — WHERE DO YOU WANT TO TRAVEL
  ═══════════════════════════════════════════════ */
.sec7_airportTransfer .travel-head {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 48px;
    align-items: start;
}

/* dest pills */
.sec7_airportTransfer .dest-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-top: 6px;
}

.sec7_airportTransfer .dest-pill {
    display: flex;
    align-items: center;
    gap: 13px;
    background: white;
    border: 1px solid rgb(205 205 205 / 90%);
    border-radius: 13px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-2);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: background .22s, border-color .22s, transform .22s, box-shadow .22s;
    opacity: 0;
    transform: translateX(-8px);
}

    .sec7_airportTransfer .dest-pill:hover {
        background: var(--red-light);
        border-color: var(--red-border);
        transform: translateX(5px);
        box-shadow: 0 4px 18px rgba(232, 0, 29, 0.10);
    }

        .sec7_airportTransfer .dest-pill:hover .dp-icon {
            background: linear-gradient(135deg, #e52b2ba3 0%, #F2B705 100%);
        }

            .sec7_airportTransfer .dest-pill:hover .dp-icon svg {
                color: #fff;
            }

.sec7_airportTransfer .dp-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--red-mid);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    transition: background .22s;
}

    .sec7_airportTransfer .dp-icon svg {
        width: 12px;
        height: 12px;
        color: var(--red);
    }

/* mosaic */
.sec7_airportTransfer .mosaic {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 168px);
    gap: 12px;
    opacity: 0;
    animation: fadeRight .75s .3s ease forwards;
}

.sec7_airportTransfer .m-item {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

    .sec7_airportTransfer .m-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .5s ease, filter .4s ease;
        filter: brightness(0.92) saturate(0.88);
    }

    .sec7_airportTransfer .m-item:hover img {
        transform: scale(1.08);
        filter: brightness(1) saturate(1.08);
    }

    .sec7_airportTransfer .m-item::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.42) 0%, transparent 55%);
        pointer-events: none;
    }

.sec7_airportTransfer .m-label {
    position: absolute;
    bottom: 11px;
    left: 13px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95);
    z-index: 2;
    opacity: 0;
    transform: translateY(5px);
    transition: opacity .28s, transform .28s;
}

.sec7_airportTransfer .m-item:hover .m-label {
    opacity: 1;
    transform: translateY(0);
}

/* CTA row */
.sec7_airportTransfer .cta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
    padding: 28px 32px;
    background: var(--bg-white);
    border: 1px solid rgb(216 216 216 / 90%);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    opacity: 0;
    animation: fadeUp .65s .45s ease forwards;
}

.sec7_airportTransfer .cta-text {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.65;
    max-width: 400px;
    color: #4e4d4d;
}

    .sec7_airportTransfer .cta-text strong {
        color: var(--ink);
        font-weight: 500;
    }

/* ── KEYFRAMES ─────────────────────────────────── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(-22px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(22px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ── RESPONSIVE ────────────────────────────────── */
@media (max-width: 960px) {
    .sec7_airportTransfer .page {
        padding: 60px 24px;
    }

    .sec7_airportTransfer .at-grid,
    .sec7_airportTransfer .travel-head {
        grid-template-columns: 1fr;
    }

    .sec7_airportTransfer .mosaic {
        grid-template-rows: repeat(2, 140px);
    }

    .sec7_airportTransfer .cta-row {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
}

/* sec7_airportTransfer */


/* app section */
.sec5_appSec {
    padding: 3rem 0;
    position: relative;
    background: linear-gradient(135deg, #ffffffe6, #ffffff), url(../images/appSecImg.jpg);
}

    .sec5_appSec::before {
        content: '';
        position: absolute;
        width: 700px;
        height: 700px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(229, 37, 42, .06) 0%, transparent 70%);
        transform: translate(-50%, -50%);
        left: 50%;
        top: 50%;
        pointer-events: none;
    }

.app-section {
    position: relative;
    z-index: 1;
    /* max-width: 1180px; */
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    align-items: center;
}

@media (max-width: 860px) {
    .app-section {
        grid-template-columns: 1fr;
        gap: 56px;
    }

        .app-section .phone-col {
            order: -1;
        }
}

/* ══════════════════════════
     LEFT — PHONE MOCKUP
  ══════════════════════════ */
.app-section .phone-col {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    opacity: 0;
    transform: translateX(-40px);
    animation: slideInL .9s cubic-bezier(.23, 1, .32, 1) .2s forwards;
}

    /* glow behind phone */
    .app-section .phone-col::before {
        content: '';
        position: absolute;
        width: 320px;
        height: 320px;
        background: radial-gradient(circle, rgb(231 37 41 / 13%), transparent 65%); 
        border-radius: 50%;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        pointer-events: none;
        animation: pulse 4s ease-in-out infinite;
    }

@keyframes pulse {

    0%, 100% {
        transform: translateX(-50%) scale(1);
        opacity: .8;
    }

    50% {
        transform: translateX(-50%) scale(1.1);
        opacity: 1;
    }
}

/* car image bottom */
.app-section .car-img {
    position: absolute;
    bottom: -10px;
    left: -20px;
    width: 260px;
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInL .9s cubic-bezier(.23, 1, .32, 1) .55s forwards;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .7));
    z-index: 2;
    border-radius: 12px;
    border: 2px dashed #434544;
    padding: 8px;
}

/* phone shell */
.app-section .phone-shell {
    position: relative;
    z-index: 3;
    width: 240px;
    animation: phoneFloat 5s ease-in-out infinite;
}

@keyframes phoneFloat {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.app-section .phone-frame {
    width: 240px;
    background: #111;
    border-radius: 36px;
    border: 2px solid rgba(255, 255, 255, .12);
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, .8), 0 0 0 1px rgba(0, 229, 160, .12), inset 0 1px 0 rgba(255, 255, 255, .1);
    position: relative;
}

/* notch */
.app-section .notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 22px;
    background: #111;
    border-radius: 0 0 16px 16px;
    z-index: 10;
}

/* status bar */
.app-section .phone-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 16px 8px;
    font-size: 10px;
    color: rgba(255, 255, 255, .5);
}

/* app screen */
.app-section .phone-screen {
    padding: 0 12px 16px;
}

/* map area */
.app-section .map-area {
    height: 130px;
    background: #1a1a1a;
    border-radius: 14px;
    margin-bottom: 12px;
    overflow: hidden;
    position: relative;
}

    .app-section .map-area img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: .55;
        filter: saturate(.4) brightness(.6);
    }

    /* route line overlay */
    .app-section .map-area::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(0, 229, 160, .08), transparent 60%);
    }

/* pin dot */
.app-section .map-pin {
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(0, 229, 160, .25);
    z-index: 2;
    animation: pingPulse 2s ease-in-out infinite;
}

@keyframes pingPulse {

    0%, 100% {
        box-shadow: 0 0 0 4px rgba(0, 229, 160, .25);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(0, 229, 160, .08);
    }
}

/* input rows */
.app-section .input-row {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #232323;
    border-radius: 9px;
    padding: 8px 10px;
    margin-bottom: 7px;
    border: 1px solid rgba(255, 255, 255, .05);
}

.app-section .input-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

.app-section .dot-green {
    background: var(--accent);
}

.app-section .dot-red {
    background: #ff4b4b;
}

.app-section .input-text {
    font-size: 10px;
    color: rgba(255, 255, 255, .6);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* car option cards */
.app-section .car-option {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 8px 10px;
    border-radius: 9px;
    margin-bottom: 6px;
    border: 1px solid rgba(255, 255, 255, .05);
    background: #1c1c1c;
    transition: border-color .3s;
}

    .app-section .car-option.active {
        background: rgba(0, 229, 160, .08);
        border-color: rgba(0, 229, 160, .35);
    }

.app-section .car-option-img {
    width: 36px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}

.app-section .car-option-info {
    flex: 1;
    min-width: 0;
}

.app-section .car-option-name {
    font-size: 10px;
    font-weight: 600;
    color: #fff;
}

.app-section .car-option-meta {
    font-size: 9px;
    color: var(--muted);
}

.app-section .car-option-price {
    font-size: 10px;
    font-weight: 700;
    color: var(--accent);
    white-space: nowrap;
}

/* confirm btn */
.app-section .confirm-btn {
    display: block;
    width: 100%;
    background: var(--accent);
    color: #0f0f0f;
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    padding: 11px;
    border-radius: 10px;
    margin-top: 10px;
    letter-spacing: .5px;
}

/* ══════════════════════════
     RIGHT — CONTENT
  ══════════════════════════ */
.app-section .content-col {
    opacity: 0;
    transform: translateX(40px);
    animation: slideInR .9s cubic-bezier(.23, 1, .32, 1) .35s forwards;
}

.app-section .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 18px;
}

    .app-section .eyebrow::before {
        content: '';
        display: block;
        width: 24px;
        height: 1px;
        background: var(--accent);
        opacity: .5;
    }

.app-section .headline {
    font-size: clamp(38px, 5.5vw, 62px);
    font-weight: 700;
    color: var(--text);
    /*  */
    text-transform: capitalize;
    margin-bottom: 20px;
}

    .app-section .headline em {
        font-style: normal;
        position: relative;
        background: linear-gradient(270deg, #e73928, #ea611d, #f1a70a);
        background-size: 400% 400%;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: gradientMove 6s ease infinite;
    }

.app-section .body-copy {
    font-size: 15px;
    font-weight: 300;
    color: #4e4d4d;
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 440px;
}

/* feature grid */
.app-section .features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 40px;
}

.app-section .feat-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--surface);
    border: 1px solid rgb(237 237 237);
    border-radius: 13px;
    padding: 16px 14px;
    position: relative;
    overflow: hidden;
    transition: border-color .35s ease, transform .35s ease, box-shadow .35s ease;
}

    .app-section .feat-item:hover {
        border-color: rgb(242 179 13 / 21%);
        transform: translateY(-3px);
        box-shadow: 0 12px 30px rgb(0 0 0 / 24%), 0 0 20px rgb(190 191 191 / 5%);
    }

    /* glow shine on hover */
    .app-section .feat-item::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at 0% 0%, rgb(239 150 60 / 15%), transparent 60%);
        opacity: 0;
        transition: opacity .4s ease;
    }

    .app-section .feat-item:hover::before {
        opacity: 1;
    }

.app-section .feat-num {
    font-size: 16px;
    font-weight: 700;
    color: #f0a523;
    opacity: .5;
    min-width: 20px;
    margin-top: 1px;
    transition: opacity .3s;
}

.app-section .feat-item:hover .feat-num {
    opacity: 1;
}

.app-section .feat-text {
    flex: 1;
}

.app-section .feat-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 3px;
    transition: color .3s;
}

.app-section .feat-item:hover .feat-title {
    color: #e9aa2f;
}

.app-section .feat-desc {
    font-size: 12.5px;
    font-weight: 300;
    color: #4e4d4d;
    line-height: 1.5;
}

/* divider */
.app-section .divider {
    height: 1px;
    background: linear-gradient(90deg, rgb(230 230 230) 0%, rgba(0, 229, 160, .05) 60%, transparent 100%);
    margin-bottom: 32px;
}

/* app store row */
.app-section .store-label {
    font-size: 12px;
    font-weight: 400;
    color: #4e4d4d;
    margin-bottom: 14px;
    letter-spacing: .5px;
}

.sec5_appSec .phoneMockup {
    display: flex;
    justify-content: center;
}

    .sec5_appSec .phoneMockup img {
        width: 65%;
        position: relative;
        z-index: 2;
        animation: phoneFloat 5s ease-in-out infinite;
    }

.app-section .store-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.app-section .store-btn {
    display: flex;
    align-items: center;
    gap: 11px;
    background: #ffffff;
    border: 1px solid rgb(230 230 230);
    border-radius: 12px;
    padding: 11px 20px;
    text-decoration: none;
    color: var(--text);
    transition: border-color .3s, transform .3s, background .3s, box-shadow .3s;
    position: relative;
    overflow: hidden;
}

    .app-section .store-btn::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgb(239 149 64 / 15%), transparent);
        opacity: 0;
        transition: opacity .4s;
    }

    .app-section .store-btn:hover {
        border-color: rgb(242 177 18);
        transform: translateY(-3px);
        box-shadow: 0 12px 28px rgb(0 0 0 / 20%), 0 0 18px rgba(0, 229, 160, .07);
    }

        .app-section .store-btn:hover::before {
            opacity: 1;
        }

.app-section .store-icon {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}

.app-section .store-btn-text {
    position: relative;
    z-index: 1;
}

.app-section .store-small {
    display: block;
    font-size: 9px;
    font-weight: 400;
    color: #4e4d4d;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.app-section .store-big {
    display: block;
    font-size: 15px;
    font-weight: 700;
}

@keyframes slideInL {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInR {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* app section */


/* sec contact us */

/* ══════════════════
     OUTER WRAPPER
  ══════════════════ */

.sec6_contactform {
    padding: 3rem 0;
    background: linear-gradient(135deg, #ffffff, #f7f7f7);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

    .sec6_contactform::before {
        content: '';
        position: absolute;
        width: 700px;
        height: 700px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(229, 37, 42, .06) 0%, transparent 70%);
        top: -200px;
        left: -200px;
        pointer-events: none;
    }

    .sec6_contactform .contact-section {
        position: relative;
        z-index: 1;
        /* max-width: 1160px;  */
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1.15fr;
        gap: 0;
        border-radius: 26px;
        overflow: hidden;
        border: 1px solid rgb(201 201 201 / 90%);
        box-shadow: 0 40px 100px rgb(0 0 0 / 3%);
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    }

@media (max-width: 860px) {
    .sec6_contactform .contact-section {
        grid-template-columns: 1fr;
    }

    .sec6_contactform .info-panel {
        order: -1;
    }
}

/* ══════════════════
     LEFT — INFO PANEL
  ══════════════════ */
.sec6_contactform .info-panel {
    background: var(--surface);
    padding: 60px 48px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateX(-30px);
    animation: slideL .9s cubic-bezier(.23, 1, .32, 1) .15s forwards;
    border-right: 1px solid var(--border);
}

    /* top accent bar */
    .sec6_contactform .info-panel::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--accent), var(--accent-hi), transparent);
        background: radial-gradient(circle, #f2b705 0%, #f2b7050d 70%);
    }

    /* decorative large number bg */
    .sec6_contactform .info-panel .bg-text {
        position: absolute;
        bottom: -20px;
        right: -10px;
        font-size: 180px;
        font-weight: 800;
        color: #ffbf4717;
        line-height: 1;
        pointer-events: none;
        user-select: none;
        letter-spacing: -8px;
    }

.sec6_contactform .info-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
}

    .sec6_contactform .info-eyebrow::before {
        content: '';
        display: block;
        width: 20px;
        height: 1px;
        background: var(--accent);
        opacity: .5;
    }

.sec6_contactform .info-title {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 16px;
}

    .sec6_contactform .info-title em {
        font-style: normal;
        position: relative;
        background: linear-gradient(270deg, #e73928, #ea611d, #f1a70a);
        background-size: 400% 400%;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: gradientMove 6s ease infinite;
    }

.sec6_contactform .info-desc {
    font-size: 14px;
    font-weight: 300;
    color: rgb(78, 77, 77);
    line-height: 1.8;
    margin-bottom: 44px;
    max-width: 320px;
}

/* divider */
.sec6_contactform .info-divider {
    height: 1px;
    background: linear-gradient(90deg, #f2b705, transparent);
    margin-bottom: 36px;
}

/* contact info items */
.sec6_contactform .info-items {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 44px;
}

.sec6_contactform .info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.sec6_contactform .info-icon-wrap {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 11px;
    background: #f2b7050f;
    border: 1px solid #f2b705;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s, border-color .3s, transform .3s;
}

.sec6_contactform.info-item:hover .info-icon-wrap {
    background: rgba(0, 229, 160, .15);
    border-color: rgba(0, 229, 160, .4);
    transform: scale(1.06) rotate(-3deg);
}

.sec6_contactform .info-icon-wrap svg {
    width: 18px;
    height: 18px;
    fill: #f2b705;
}

.sec6_contactform .info-item-body {
    flex: 1;
}

.sec6_contactform .info-item-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 4px;
}

.sec6_contactform .info-item-value a {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.4;
    transition: color .3s;
}

.sec6_contactform .info-item-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.4;
}

.sec6_contactform .info-item:hover .info-item-value a {
    color: #feca25;
}

/* social row */
.sec6_contactform .social-row {
    display: flex;
    gap: 10px;
}

.sec6_contactform .social-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background .3s, border-color .3s, transform .3s;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

    .sec6_contactform .social-btn:hover {
        background: #f2b70526;
        border-color: #f2b705;
        transform: translateY(-3px);
    }

    .sec6_contactform .social-btn svg {
        width: 16px;
        height: 16px;
        fill: #4e4d4d;
        transition: fill .3s;
    }

    .sec6_contactform .social-btn:hover svg {
        fill: #dba400;
    }

/* ══════════════════
     RIGHT — FORM
  ══════════════════ */
.sec6_contactform .form-panel {
    background: #f4f4f4;
    padding: 60px 52px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateX(30px);
    animation: slideR .9s cubic-bezier(.23, 1, .32, 1) .3s forwards;
}

    .sec6_contactform .form-panel::after {
        content: '';
        position: absolute;
        top: -60px;
        right: -60px;
        width: 200px;
        height: 200px;
        background: radial-gradient(circle, rgba(229, 37, 42, .06) 0%, transparent 70%);
        pointer-events: none;
    }

.sec6_contactform .form-heading {
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}

.sec6_contactform .form-sub {
    font-size: 13.5px;
    font-weight: 300;
    color: var(--muted);
    margin-bottom: 36px;
    line-height: 1.6;
}

/* form grid */
.sec6_contactform .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 20px;
    margin-bottom: 18px;
}

.sec6_contactform .form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

    .sec6_contactform .form-group.full {
        grid-column: 1 / -1;
    }

.sec6_contactform .form-label {
    font-size: 14px;
    font-weight: 500;
    /* letter-spacing: 1.5px; */
    text-transform: uppercase;
    color: #7a7a7a;
    padding-left: 2px;
    transition: color .3s;
}

.sec6_contactform .input-wrap {
    position: relative;
}

.sec6_contactform .input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    fill: var(--muted);
    transition: fill .3s;
    pointer-events: none;
}

.sec6_contactform .textarea-icon {
    top: 16px;
    transform: none;
}

.sec6_contactform .form-input,
.sec6_contactform .form-textarea {
    width: 100%;
    background: #ffffff;
    border: 1px solid rgb(0 0 0 / 20%);
    border-radius: 11px;
    color: var(--text);
    font-size: 14px;
    font-weight: 300;
    padding: 13px 14px 13px 40px;
    outline: none;
    transition: border-color .3s ease, background .3s ease, box-shadow .3s ease;
    -webkit-appearance: none;
}

.sec6_contactform .slogan h4 {
    padding: 6px 8px 6px 10px;
}

.sec6_contactform .form-textarea {
    resize: none;
    height: 130px;
    padding-top: 14px;
    line-height: 1.6;
}

    .sec6_contactform .form-input::placeholder,
    .sec6_contactform .form-textarea::placeholder {
        color: var(--muted);
        font-weight: 300;
    }

    .sec6_contactform .form-input:focus,
    .sec6_contactform .form-textarea:focus {
        border-color: #ffbf47;
        background: #ffffff26;
        box-shadow: 0 0 0 3px #ffbf471f, 0 4px 16px rgb(0 0 0 / 0%);
    }

.sec6_contactform .form-group:focus-within .form-label {
    color: #fcc825;
}

.sec6_contactform .form-group:focus-within .input-icon {
    fill: #facc3b;
}

/* select */
.sec6_contactform .form-select {
    width: 100%;
    background: var(--elevated);
    border: 1px solid var(--border);
    border-radius: 11px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 300;
    padding: 13px 14px 13px 40px;
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    transition: border-color .3s, background .3s, box-shadow .3s;
}

    .sec6_contactform .form-select:focus {
        border-color: var(--border-focus);
        background: #252525;
        box-shadow: 0 0 0 3px rgba(0, 229, 160, .08);
    }

.sec6_contactform .select-arrow {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    fill: var(--muted);
    pointer-events: none;
}

/* char counter */
.sec6_contactform .char-count {
    text-align: right;
    font-size: 11px;
    color: var(--muted);
    padding-right: 2px;
    margin-top: -14px;
    margin-bottom: 6px;
}

/* submit row */
.sec6_contactform .submit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.sec6_contactform .privacy-note {
    font-size: 11.5px;
    font-weight: 300;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 7px;
}

    .sec6_contactform .privacy-note svg {
        width: 16px;
        height: 16px;
        fill: #f2b705;
        opacity: .7;
        flex-shrink: 0;
    }

.sec6_contactform .submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: #0f0f0f;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: .3px;
    padding: 14px 28px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background .3s, transform .3s, gap .3s, box-shadow .3s;
}

    .sec6_contactform .submit-btn::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, .15), transparent);
        opacity: 0;
        transition: opacity .3s;
    }

    .sec6_contactform .submit-btn:hover {
        background: var(--accent-hi);
        transform: translateY(-2px);
        gap: 14px;
        box-shadow: 0 10px 28px rgba(0, 229, 160, .3);
    }

        .sec6_contactform .submit-btn:hover::before {
            opacity: 1;
        }

    .sec6_contactform .submit-btn:active {
        transform: translateY(0);
        box-shadow: none;
    }

    .sec6_contactform .submit-btn svg {
        width: 15px;
        height: 15px;
        transition: transform .3s;
    }

    .sec6_contactform .submit-btn:hover svg {
        transform: translateX(3px);
    }

/* success msg (hidden by default) */
.sec6_contactform .success-msg {
    display: none;
    align-items: center;
    gap: 12px;
    background: rgba(0, 229, 160, .08);
    border: 1px solid rgba(0, 229, 160, .3);
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 13.5px;
    color: var(--accent);
    margin-top: 16px;
}

    .sec6_contactform .success-msg svg {
        width: 18px;
        height: 18px;
        fill: var(--accent);
        flex-shrink: 0;
    }

@keyframes slideL {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideR {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* sec contact us */


/* secTestimonails */

.secTestimonails {
    padding: 3rem 0;
    position: relative;
}

    .secTestimonails::before {
        content: '';
        position: absolute;
        width: 700px;
        height: 700px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(229, 37, 42, .06) 0%, transparent 70%);
        bottom: -200px;
        right: 0px;
        pointer-events: none;
    }

    .secTestimonails .testiContent {
        background-color: white;
        /* border: 2px solid orange; */
        /* background: linear-gradient(135deg, #e52b2ba3 0%, #F2B705 100%); */
        border-radius: 20px;
        padding: 25px;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
        height: 262px;
        max-height: 262px;
    }

    .secTestimonails .swiper {
        padding: 4rem 8px 3rem;
    }


    .secTestimonails .testiHeading {
        /* max-width: 550px; */
        margin: 0px auto;
        text-align: center;
    }

        .secTestimonails .testiHeading em {
            font-style: normal;
            position: relative;
            background: linear-gradient(270deg, #e73928, #ea611d, #f1a70a);
            background-size: 400% 400%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradientMove 6s ease infinite;
        }

        .secTestimonails .testiHeading h2 {
            font-size: clamp(38px, 5.5vw, 62px);
            font-weight: 700;
            color: var(--text);
            text-transform: capitalize;
            margin-bottom: 20px;
        }

    .secTestimonails .swiper-wrapper {
        margin: 5px;
    }

.testiContent::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-hi), transparent);
    background: radial-gradient(circle, #f2b705 0%, #f2b70500 70%);
}

.secTestimonails .testiContent .topIconquotes {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .secTestimonails .testiContent .topIconquotes i {
        /* position: absolute; */
        right: 30px;
        background: white;
        background: linear-gradient(135deg, #e52b2ba3 0%, #F2B705 100%);
        color: white;
        height: 45px;
        width: 45px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 25px;
        font-size: 22px;
    }

.secTestimonails .testiContent div h2 {
    color: #070707;
    font-size: 26px;
}

.secTestimonails .testiContent div p {
    color: #7a7a7a;
    padding: 12px 0;
    font-size: 16px;
}

.secTestimonails .testiContent span i {
    color: #f2af14;
}

/* secTestimonails */


/* sec area css */

/* ── WRAPPER ── */

.secAreas {
    position: relative;
}

    .secAreas .wrapper {
        position: relative;
        z-index: 2;
        max-width: 1260px;
        margin: 0 auto;
        padding: 40px 32px 60px;
    }

    /* ── HERO HEADER ── */
    .secAreas .hero {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        margin-bottom: 40px;
        gap: 20px;
    }


    .secAreas .slogan h4 {
        font-size: 12px;
    }

.hero-left {
}

.secAreas .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 6px 14px 6px 8px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.secAreas .secAreas .eyebrow-dot {
    width: 20px;
    height: 20px;
    background: var(--r);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulseDot 2s infinite;
}

.secAreas .eyebrow-dot svg {
    width: 10px;
    height: 10px;
    fill: white;
}

@keyframes pulseDot {

    0%, 100% {
        box-shadow: 0 0 0 0 rgba(232, 16, 42, 0.4)
    }

    50% {
        box-shadow: 0 0 0 6px rgba(232, 16, 42, 0)
    }
}

.secAreas .hero-title {
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 0.92;
    letter-spacing: -0.03em;
    color: var(--ink);
}

    .secAreas .hero-title .accent {
        -webkit-text-stroke: 2px #f2b014;
        color: transparent;
        display: inline-block;
    }

    .secAreas .hero-title .fill {
        color: var(--r);
        position: relative;
        background: linear-gradient(270deg, #e73928, #ea611d, #f1a70a);
        background-size: 400% 400%;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: gradientMove 6s ease infinite;
    }

.secAreas .hero-right {
    text-align: right;
    flex-shrink: 0;
}

.secAreas .stat-big {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--r), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.secAreas .stat-label {
    font-size: 0.78rem;
    color: var(--muted);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 4px;
}

/* ── BENTO GRID ── */
.secAreas .bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 16px;
}

/* Glass card base */
.secAreas .gc {
    background: var(--glass);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s ease;
    position: relative;
}

    .secAreas .gc:hover {
        transform: translateY(-6px) scale(1.01);
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    }

/* CARD: Main Title Card */
.secAreas .card-title-hw {
    grid-column: 1/6;
    grid-row: 1/2;
    background: linear-gradient(135deg, var(--r) 0%, #C0001A 100%);
    border: none;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
    box-shadow: var(--shadow-r);
    overflow: visible;
}

    .secAreas .card-title-hw::before {
        content: '';
        position: absolute;
        top: -60px;
        right: -60px;
        width: 200px;
        height: 200px;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 50%;
    }

    .secAreas .card-title-hw::after {
        content: '';
        position: absolute;
        bottom: -40px;
        left: 20px;
        width: 120px;
        height: 120px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 50%;
    }

.secAreas .ctitle {
    font-size: 2.4rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

    .secAreas .ctitle span {
        display: block;
        font-size: 0.9rem;
        font-weight: 400;
        opacity: 0.7;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        margin-bottom: 8px;
    }

.textStrokes {
    -webkit-text-stroke: 2px #f2b014;
    color: transparent;
    display: inline-block;
}

.secAreas .zone-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 100px;
    padding: 6px 14px;
    font-size: 0.72rem;
    font-weight: 600;
    color: white;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    width: fit-content;
    position: relative;
    z-index: 1;
}

    .secAreas .zone-badge::before {
        content: '';
        width: 6px;
        height: 6px;
        background: white;
        border-radius: 50%;
        animation: pulseDot 2s infinite;
    }

/* CARD: Map visual */
.secAreas .card-map-hw {
    grid-column: 6/13;
    grid-row: 1/3;
    padding: 0;
    border-radius: 24px;
    overflow: hidden;
    min-height: 420px;
    position: relative;
}

    .secAreas .card-map-hw iframe {
        width: 100%;
        height: 100%;
        border: none;
        filter: contrast(1.05) saturate(0.8) sepia(0.1);
        display: block;
    }

.secAreas .map-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 14px;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    z-index: 5;
}

.secAreas .live-dot {
    width: 8px;
    height: 8px;
    background: var(--r);
    border-radius: 50%;
    animation: pulseDot 1.5s infinite;
    flex-shrink: 0;
}

/* CARD: Number stat */
.secAreas .card-stat {
    grid-column: 1/4;
    grid-row: 2/3;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--glass);
}

.secAreas .stat-num {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--r);
}

.secAreas .stat-desc {
    font-size: 0.8rem;
    color: var(--muted);
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* CARD: mini stat */
.secAreas .card-mini {
    grid-column: 4/6;
    grid-row: 2/3;
    padding: 28px;
    background: linear-gradient(135deg, #FFF9E6, #FFF3C4);
    border: 1px solid rgba(255, 184, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.secAreas .stat-num-g {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--gold);
}

/* CARD: HW Areas grid */
.secAreas .card-hw-areas {
    grid-column: 1/7;
    grid-row: 3/4;
    padding: 32px;
}

.secAreas .card-surr-areas {
    grid-column: 7/13;
    grid-row: 3/4;
    padding: 32px;
}

.secAreas .section-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .secAreas .section-label .tag {
        font-size: 0.65rem;
        font-weight: 600;
        padding: 3px 9px;
        border-radius: 100px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

.secAreas .tag-red {
    background: rgba(232, 16, 42, 0.1);
    color: var(--r);
}

.secAreas .tag-gold {
    background: rgba(255, 184, 0, 0.12);
    color: #B07A00;
}

.section-sub {
    font-size: 0.75rem;
    color: var(--muted);
    margin-bottom: 20px;
    font-weight: 400;
}

.secAreas .areas-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.secAreas .chip {
    padding: 5px 12px;
    border-radius: 100px;
    font-size: 0.76rem;
    font-weight: 500;
    cursor: default;
    transition: all 0.25s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid transparent;
    white-space: nowrap;
}

.secAreas .chip-r {
    background: rgba(232, 16, 42, 0.07);
    color: var(--ink2);
    border-color: rgba(232, 16, 42, 0.12);
}

    .secAreas .chip-r:hover {
        background: var(--r);
        color: white;
        border-color: var(--r);
        transform: translateY(-2px) scale(1.04);
        box-shadow: 0 6px 20px rgba(232, 16, 42, 0.3);
    }

.secAreas .chip-g {
    background: rgba(255, 184, 0, 0.08);
    color: var(--ink2);
    border-color: rgba(255, 184, 0, 0.15);
}

    .secAreas .chip-g:hover {
        background: var(--gold);
        color: var(--ink);
        border-color: var(--gold);
        transform: translateY(-2px) scale(1.04);
        box-shadow: 0 6px 20px rgba(255, 184, 0, 0.35);
    }

/* CARD: Wide map bottom */
.secAreas .card-map-wide {
    grid-column: 1/13;
    grid-row: 4/5;
    padding: 0;
    min-height: 312px;
    overflow: hidden;
    position: relative;
    border-radius: 24px;
}

    .secAreas .card-map-wide img {
        width: 55%;
        height: max-content;
        margin: 0 auto;
        /* object-fit: contain; */
        border: none;
        filter: contrast(1.05) saturate(0.8) sepia(0.1);
        display: block;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    }

.secAreas .map-gradient-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    /* background: linear-gradient(to bottom, rgba(240, 238, 233, 0.7), transparent); */
    pointer-events: none;
    z-index: 3;
}

.secAreas .map-gradient-bot {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    /* background: linear-gradient(to top, rgba(240, 238, 233, 0.7), transparent); */
    pointer-events: none;
    z-index: 3;
}

.secAreas .map-center-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: 16px;
    padding: 14px 24px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    z-index: 5;
}

    .secAreas .map-center-badge .big {
        font-size: 1.1rem;
        font-weight: 800;
        color: var(--ink);
        display: block;
    }

    .secAreas .map-center-badge .sml {
        font-size: 0.68rem;
        color: var(--muted);
        font-weight: 500;
        letter-spacing: 0.1em;
        text-transform: uppercase;
    }

/* CARD: Footer strip */
.secAreas .footer-strip {
    grid-column: 1/13;
    padding: 20px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(90deg, rgba(232, 16, 42, 0.06) 0%, rgba(255, 184, 0, 0.06) 100%);
    border: 1px solid rgba(232, 16, 42, 0.08);
}

    .secAreas .footer-strip span {
        font-size: 0.76rem;
        color: var(--muted);
        font-weight: 400;
        letter-spacing: 0.04em;
    }

    .secAreas .footer-strip strong {
        color: var(--r);
        font-weight: 600;
    }

.secAreas.footer-dots {
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-dots i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
}

/* ── ENTRY ANIMATIONS ── */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.secAreas .gc,
.secAreas .card-map-hw,
.secAreas .card-map-wide {
    animation: fadeSlideUp 0.7s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.secAreas .card-title-hw {
    animation-delay: 0.05s;
}

.secAreas .card-map-hw {
    animation-delay: 0.12s;
}

.secAreas .card-stat {
    animation-delay: 0.18s;
}

.secAreas .card-mini {
    animation-delay: 0.22s;
}

.secAreas .card-hw-areas {
    animation-delay: 0.28s;
}

.secAreas .card-surr-areas {
    animation-delay: 0.32s;
}

.secAreas .card-map-wide {
    animation-delay: 0.38s;
}

.secAreas .footer-strip {
    animation-delay: 0.44s;
}


.lastMapImg {
    box-shadow: unset !important;
}

    .lastMapImg img {
        border-radius: 12px;
    }
/* ── RESPONSIVE ── */
@media(max-width:1024px) {
    .secAreas .bento {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .secAreas .card-title-hw {
        grid-column: 1/2;
        grid-row: auto;
    }

    .card-map-hw {
        grid-column: 2/3;
        grid-row: 1/3;
        min-height: 320px;
    }

    .secAreas .card-stat {
        grid-column: 1/2;
        grid-row: 2/3;
    }

    .secAreas .card-mini {
        grid-column: 1/2;
        grid-row: 3/4;
    }

    .secAreas .card-hw-areas {
        grid-column: 1/3;
        grid-row: 4/5;
    }

    .secAreas .card-surr-areas {
        grid-column: 1/3;
        grid-row: 5/6;
    }

    .secAreas .card-map-wide {
        grid-column: 1/3;
    }

    .secAreas .footer-strip {
        grid-column: 1/3;
    }
}

@media(max-width:680px) {
    .secAreas .wrapper {
        padding: 20px 16px 40px;
    }

    .secAreas .bento {
        grid-template-columns: 1fr;
    }

    .secAreas .card-map-hw {
        grid-column: 1;
        grid-row: auto;
        min-height: 260px;
    }

    .secAreas .card-hw-areas,
    .secAreas .card-surr-areas,
    .secAreas .card-map-wide,
    .secAreas .footer-strip {
        grid-column: 1;
    }

    .secAreas .hero-title {
        font-size: 2.4rem;
    }

    .secAreas .stat-big {
        font-size: 3rem;
    }
}

/* sec area css*/



/* footer */

footer {
    background: linear-gradient(135deg, var(--gradient-one), var(--gradient-two));
    background: linear-gradient(135deg, #ffffff, #e4e4e4);
    padding: 3rem 0;
}

    footer .footer_logo_content img {
        width: 160px;
    }

    footer .footer_logo_content p {
        padding-top: 16px;
        color: #3f3e3e;
    }

    footer h2 {
        color: #facc3b;
        font-weight: 700;
    }

    footer .footer_ul {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding-top: 20px;
    }

.footer_li i {
    border: 2px solid #facb3b;
    height: 30px;
    width: 30px;
    display: flex;
    color: #2c2c2c;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 12px;
    transition: background 0.4s ease, color 0.4s ease, transform 0.3s ease;
}

.footer_li a:hover i {
    background: linear-gradient(135deg, var(--gradient-five), var(--gradient-three), var(--gradient-four));
    background: linear-gradient(135deg, #e52b2ba3 0%, #F2B705 100%);
    color: white;
    transform: scale(1.01);
}

footer .footer_ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all .5s ease-in-out;
    color: #3f3e3e;
}

    footer .footer_ul li a:hover {
        padding-left: 5px;
        color: #f1a70a;
    }

.bottomBar {
    border-top: 2px solid #f2b20f73;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
}

    .bottomBar p {
        color: #3f3e3e;
    }

    .bottomBar ul {
        display: flex;
        gap: 10px;
    }

        .bottomBar ul li a {
            transition: all .4s ease-in-out;
            color: #3f3e3e;
        }

            .bottomBar ul li a:hover {
                color: #ef953f;
            }

/* footer */
/* inner pages banner css */
.banner-section {
    width: 100%;
    padding: 20px 0px;
    background: linear-gradient(135deg, #ffffff, #f7f7f7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .banner-section::before {
        content: '';
        position: absolute;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(229, 37, 42, .06) 0%, transparent 70%);
        top: -200px;
        left: -200px;
        pointer-events: none;
    }

    .banner-section::after {
        content: '';
        position: absolute;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(229, 37, 42, .06) 0%, transparent 70%);
        bottom: -200px;
        right: -200px;
        pointer-events: none;
    }

    .banner-section h2 {
        font-size: 52px;
        font-weight: 700;
        color: var(--bg-deep);
    }

.breadcrumb {
    justify-content: center;
    align-items: center;
    margin-top: 0px;
}

.breadcrumb-item a {
    font-family: "Poppins", sans-serif;
    color: var(--bg-deep);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--bg-deep);
}

.breadcrumb-item.active {
    font-family: "Poppins", sans-serif;
    color: var(--yellow);
    font-weight: 600;
}
/* inner pages banner css */
/* Booking Result Pages Css */
.sec-result {
    padding: 60px 0;
    /*margin-top: 140px;*/
    background: var(--light-bg);
    position: relative;
}

    .sec-result::after {
        content: '';
        position: absolute;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(245, 194, 0, .07) 0%, transparent 70%);
        bottom: -100px;
        left: -100px;
        pointer-events: none;
    }

    .sec-result::before {
        content: '';
        position: absolute;
        width: 700px;
        height: 700px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(229, 37, 42, .06) 0%, transparent 70%);
        top: -200px;
        right: -200px;
        pointer-events: none;
    }

    .sec-result .upper-list {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 7px 16px;
        background: #ffffff;
        border: 2px solid #e9e9e9;
        border-radius: 10px;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    }

        .sec-result .upper-list li {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

            .sec-result .upper-list li .icon-box {
            }

                .sec-result .upper-list li .icon-box .img-icon {
                    width: 60px;
                    height: 100%;
                    object-fit: contain;
                }

            .sec-result .upper-list li .text-box {
                padding: 0 10px;
            }

                .sec-result .upper-list li .text-box h6 {
                    font-size: 16px;
                    font-weight: 600;
                    color: #000;
                }

                .sec-result .upper-list li .text-box p {
                    font-size: 14px;
                }

    .sec-result .number-box {
        padding: 20px 0px 30px;
    }

        .sec-result .number-box ul {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

            .sec-result .number-box ul li {
                width: 24%;
                position: relative;
            }

                .sec-result .number-box ul li .num-circle {
                    text-align: center;
                    position: relative;
                }

                    .sec-result .number-box ul li .num-circle h6 {
                        background-color: #ffffff;
                        width: 50px;
                        height: 50px;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        border-radius: 50%;
                        font-size: 20px;
                        margin: 0 auto;
                        color: #000;
                        font-weight: 600;
                        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
                    }

                    .sec-result .number-box ul li .num-circle p {
                        font-size: 14px;
                        margin-top: 15px;
                        text-transform: uppercase;
                        color: #000;
                    }

    .sec-result .completed {
        /* background-color: #ed1f24 !important; */
        color: #ffffff !important;
        background: linear-gradient(135deg, #e52b2ba3 0%, #F2B705 100%);
    }

    .sec-result .for-line {
        position: relative
    }

        .sec-result .for-line::before {
            content: '';
            background-color: #000000;
            position: absolute;
            width: 67%;
            height: 4px;
            top: 30%;
            border-radius: 10px;
            left: 70%;
        }

    .sec-result .cancellation-box {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 20px;
        background-color: #000000bd;
    }

        .sec-result .cancellation-box .img-box {
            background-color: #fff;
            padding: 10px;
            border-radius: 10px;
        }

            .sec-result .cancellation-box .img-box .shield-img {
                width: 50px;
            }

        .sec-result .cancellation-box .text-box {
            padding-left: 10px;
        }

            .sec-result .cancellation-box .text-box p {
                line-height: 23px;
                color: #fff;
                font-size: 18px;
            }


.update-fleet-box {
    background: #ffffff;
    margin: 20px 0;
    padding: 20px;
    /* box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; */
    border: 2px solid #e9e9e9;
    border-radius: 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

    .update-fleet-box .img-box {
        margin-bottom: 10px;
    }

        .update-fleet-box .img-box img {
            width: 100%;
            height: 120px;
            object-fit: contain;
        }

    .update-fleet-box .car-text {
        text-align: center;
        font-size: 14px;
        line-height: 18px;
        padding-bottom: 10px;
        font-weight: 700;
    }

    .update-fleet-box .private-text {
        font-size: 14px;
    }

    .update-fleet-box .star-list {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 7px 0 0;
    }

        .update-fleet-box .star-list li {
            padding: 0 1px;
        }

            .update-fleet-box .star-list li i {
                color: #000000;
                background-color: #fbcd3a;
                padding: 4px;
                border-radius: 5px;
            }

    .update-fleet-box .fleet-detail {
        padding: 0px 13px;
        border-right: 1px solid #bbbbbb;
        border-left: 1px solid #bbbbbb;
    }

        .update-fleet-box .fleet-detail h4 {
            font-size: 22px;
            font-weight: 600;
            padding-bottom: 5px;
            color: #000000;
        }

        .update-fleet-box .fleet-detail .passenger-list {
            display: flex;
            align-items: center;
        }

            .update-fleet-box .fleet-detail .passenger-list li {
                font-size: 13px;
                padding: 0 8px 0 0;
                font-weight: 600;
            }

                .update-fleet-box .fleet-detail .passenger-list li i {
                    font-size: 16px;
                }

        .update-fleet-box .fleet-detail .passenger-list-2 {
            padding: 10px 0;
        }

            .update-fleet-box .fleet-detail .passenger-list-2 li {
                font-size: 15px;
                padding: 5px 10px;
                /* border: 1px solid #e82428; */
                margin: 7px 0;
                border-radius: 6px;
                font-size: 12px;
                background-color: #e82428;
                width: fit-content;
                color: #ffffff;
                background: linear-gradient(135deg, #e52b2ba3 0%, #F2B705 100%);
            }

                .update-fleet-box .fleet-detail .passenger-list-2 li i {
                    font-size: 16px;
                    padding-right: 5px;
                }

        .update-fleet-box .fleet-detail .info-btn {
            color: #f9b442;
            text-decoration: underline;
            font-weight: 500;
        }

    .update-fleet-box .rate-box {
        margin-top: 10%;
    }

        .update-fleet-box .rate-box h6 {
            font-size: 15px;
            margin-top: 4px;
        }

        .update-fleet-box .rate-box .prize-box {
            text-align: center;
            padding: 4px 0;
            font-size: 20px;
            line-height: 29px;
            color: #000;
            font-weight: 600;
        }

        .update-fleet-box .rate-box .done-btn {
            padding: 0px;
            border-radius: 5px;
            text-align: center;
            color: #000000;
            font-weight: 600;
        }

.right-card {
    background-color: #ffffff;
    padding: 20px;
    margin-top: 15px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border: 2px solid #e9e9e9;
    border-radius: 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

    .right-card .top-heading {
        display: flex;
        align-items: center;
        padding: 10px 0 15px;
    }

        .right-card .top-heading i {
            font-size: 24px;
            padding-right: 10px;
            color: #000000;
        }

        .right-card .top-heading h5 {
            font-size: 22px;
            color: #000000;
        }

    .right-card .distance-box {
        padding: 20px 0;
        border-top: 1px solid #000000;
        border-bottom: 1px solid #000000;
    }

        .right-card .distance-box h6 {
            color: #000;
        }

        .right-card .distance-box ul {
            padding: 10px 0 0;
        }

            .right-card .distance-box ul li {
                font-size: 14px;
                padding: 5px 0px;
                color: #000;
            }

                .right-card .distance-box ul li i {
                    font-size: 16px;
                    color: #000000;
                    padding-right: 5px;
                }

    .right-card .cal-mile {
        padding: 10px 0 0;
    }

        .right-card .cal-mile li {
            font-size: 16px;
            padding: 5px 0;
            color: #000;
        }

            .right-card .cal-mile li i {
                padding-right: 5px;
                color: #000000;
            }

    .right-card .distance-box-2 ul li {
        font-size: 14px;
        padding: 5px 0;
        color: #000;
    }

        .right-card .distance-box-2 ul li i {
            font-size: 15px;
            color: #000000;
            padding-right: 3px;
        }

.ui-menu {
    height: 250px !important;
    overflow-y: scroll;
}

.Passenger-Information {
    background: #ffffff;
    padding: 20px;
    /* box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; */
    border: 2px solid #e9e9e9;
    border-radius: 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

    .Passenger-Information h3 {
        font-size: 22px;
        font-weight: 600;
        padding-bottom: 5px;
        color: #000000;
    }

    .Passenger-Information .input-box {
        padding-bottom: 10px;
    }

        .Passenger-Information .input-box label {
            text-align: center;
            padding: 4px 0;
            font-size: 16px;
            font-weight: 600;
            line-height: 18px;
            color: #000;
            margin: 0;
        }

        .Passenger-Information .input-box .b-field {
            width: 100%;
            border: 1px solid #ccc !important;
        }

        .Passenger-Information .input-box p {
            font-size: 13px;
            padding: 4px 0;
        }

    .Passenger-Information .input-box-extra {
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

        .Passenger-Information .input-box-extra input {
            margin: 0 !important;
        }

        .Passenger-Information .input-box-extra label {
            padding-left: 10px;
        }

.ui-dialog .ui-dialog-content {
    overflow-y: hidden !important;
}

.ui-dialog .ui-dialog-buttonpane button {
    background: #000 !important;
    padding: 7px 10px !important;
    text-align: center !important;
    color: #ffffff !important;
    border-radius: 7px !important;
}

/*.ui-menu .ui-menu-item {
    width: 350px !important;
}*/

.loadingDiv {
    text-align: center;
    background: rgba(0,0,0,0.5) url(images/ajax-loader.gif) no-repeat right center;
    position: fixed;
    display: none;
    z-index: 99999999999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
}

/*.extra-sec-padding {
    margin-top: 150px;
}*/

#lkbtn_lgout {
    padding: 0 10px 0 0;
}

.handlereturndesign {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.input-wrap span {
    display: none;
}

.reserve-btn {
    display: flex;
    justify-content: center;
    align-items: center;
}

.price-box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}
/* Booking Result Pages Css */
/************************** media-query **************************/
@media only screen and (min-width: 1921px) and (max-width: 7368px) {
}

@media only screen and (min-width: 1600px) and (max-width: 1920px) {
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
}

@media only screen and (min-width: 481px) and (max-width: 767px) {
}

@media only screen and (min-width: 300px) and (max-width: 480px) {
    body {
        overflow-x: hidden !important;
    }

    .sec1_hero::before {
        display: none !important;
    }

    .sec2_about::before {
        display: none !important;
    }

    .why-section::before {
        display: none !important;
    }

    .why-section::after {
        display: none !important;
    }

    .sec3_sevciescards::before {
        display: none !important;
    }

    .fleet-section::before {
        display: none !important;
    }

    .sec7_airportTransfer::before {
        display: none !important;
    }

    .sec5_appSec::before {
        display: none !important;
    }

    .sec6_contactform::before {
        display: none !important;
    }

    .secTestimonails::before {
        display: none !important;
    }

    .navButton {
        display: none;
    }

    .topNav_left {
        gap: 5px;
        flex-wrap: wrap;
        justify-content: center;
    }

        .topNav_left a {
            background: none;
            font-size: 14px;
        }

        .topNav_left i {
            width: 30px;
            height: 30px;
            font-size: 14px;
        }

    .socials-icons {
        margin-top: 10px;
        justify-content: center;
        gap: 5px;
    }

        .socials-icons a {
            width: 30px;
            height: 30px;
            font-size: 14px;
        }

    header .top_nav {
        padding: 5px 0px;
    }

    .navbar {
        background: linear-gradient(135deg, #ffffff, #e4e4e4);
        border: none;
        box-shadow: none;
    }

    .mainNavbar .navbar-brand img {
        width: 120px;
    }

    .mainNavbar {
        padding: 5px 0;
    }

        .mainNavbar .navbar-nav {
            gap: 0px;
        }

            .mainNavbar .navbar-nav .nav-link {
                padding: 5px 0;
                font-size: 14px;
            }

    .sec1_hero {
        padding: 1rem 0;
    }

    .slogan h4 {
        padding: 5px 5px 5px 15px;
        font-size: 12px !important;
    }

        .slogan h4 i {
            width: 25px;
            height: 25px;
        }

    .sec1_hero h1 {
        font-size: 32px;
    }

    .sec1_hero p {
        font-size: 14px;
    }

    .sec2_about .slogan h4 {
        font-size: 12px;
    }

    .sec2_about h2 {
        font-size: clamp(32px, 5.5vw, 62px);
    }

    .sec2_about p {
        padding-top: 10px;
        font-size: 14px;
    }

    .global_btn {
        font-size: 14px;
    }

        .global_btn i {
            width: 28px;
            height: 28px;
        }

    .why-section .section-title {
        font-size: clamp(32px, 5.5vw, 62px);
    }

    .why-section .section-sub {
        font-size: 14px;
        max-width: 100%;
    }

    .fleet-section .fleet-header {
        margin-bottom: 10px;
    }

    .sec7_airportTransfer .mosaic {
        grid-template-columns: repeat(2, 1fr);
    }

    .app-section .features-grid {
        gap: 5px;
        margin-bottom: 20px;
    }

    .sec6_contactform .info-panel {
        padding: 20px;
    }

    .sec6_contactform .form-panel {
        padding: 20px;
    }
    .swiper-button-prev {
        right: 12% !important;
    }
    .custom-cursor{
        display: none;
    }
    .secAreas .hero {
        margin-bottom: 20px;
        gap: 0px;
    }
    footer .footer_logo_content img {
        width: 120px;
    }
    footer .footer_logo_content p {
        padding-top: 14px;
    }
    footer {
        padding: 2rem 0;
    }
    .bottomBar {
        padding-top: 1rem;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
        .bottomBar p{
            font-size: 14px;
        }
        .bottomBar ul li a {
            font-size: 14px;
        }
    footer .footer_ul {
        gap: 5px;
        padding-top: 10px;
    }
    footer h2 {
        margin-top: 15px;
    }
    .banner-section h2 {
        font-size: 42px;
    }
    .breadcrumb-item a {
        font-size: 14px;
    }
    .breadcrumb-item.active {
        font-size: 14px;
    }
    .sec2_about img {
        height: 160px;
    }
    .sec6_contactform .form-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }
    .sec-result::before{
        display: none;
    }
    .sec-result::after{
        display: none;
    }
    .sec-result .upper-list{
        display: none;
    }
    .section-padding {
        padding: 30px 0 !important;
    }
        .section-padding::before{
            display: none;
        }
    .userBookingSection::before{
        display: none;
    }
    .userBookingSection::after{
        display: none;
    }
    .frmleft{
        width: 100% !important;
    }
    .frmright{
        width: 100% !important;
    }
    .customstylinguser {
        align-items: flex-start !important;
        flex-direction: column;
    }
    .labelstyling {
        width: 100% !important;
    }
    .BookNextBtn {
        width: 100% !important;
    }
}
