/* =========================
NAVBAR CSS
========================= */

body {
    font-family: 'DM Sans', sans-serif;
    background: #000;
}

/* =========================
HEADER
========================= */

#menu-menu .menu-item {
    list-style: none;
}

#menu-menu .ekit-menu-nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 16px;
    padding: 8px 10px;
}

/* HOVER */

#menu-menu .ekit-menu-nav-link:hover {
    color: #c3b280;
    transform: translateY(-3px);
}

#menu-menu .ekit-menu-nav-link.active {
    color: #c3b280;
}

#menu-menu {
    display: none;
}

#menu-menu.active {
    display: flex;
}

/* MOBILE */

@media(max-width:1024px) {

    .main-header .container {
        flex-direction: column;
    }

    #menu-menu {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    #menu-menu .ekit-menu-nav-link {
        width: 100%;
        justify-content: flex-start;
        padding: 14px 20px;
    }

}

/* =========================
   TABLET
========================= */

@media(max-width:1200px) {

    #menu-menu {
        gap: 10px;
    }

    #menu-menu .ekit-menu-nav-link {
        min-width: 135px;
        padding: 10px 14px;
    }

    #menu-menu .menu-title {
        font-size: 15px;
    }

    #menu-menu .menu-subtitle {
        font-size: 12px;
    }

}

/* =========================
   MOBILE
========================= */

@media(max-width:1024px) {

    #menu-menu {
        flex-direction: column;
        width: 100%;
        gap: 14px;
    }

    #menu-menu .menu-item {
        width: 100%;
    }

    #menu-menu .ekit-menu-nav-link {
        width: 100%;
        min-width: 100%;
    }

}


/* =========================
   MODAL STYLES
========================= */
/* =========================
   HERO SECTION
========================= */

.hero-section {
    padding: 90px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* MAIN WRAPPER */

.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

/* =========================
   LEFT SIDE
========================= */

.lux-left {
    width: 48%;
}

.lux-left h1 {
    font-size: 70px;
    line-height: 1.05;
    font-family: Georgia, serif;
    font-weight: 500;
    margin-bottom: 40px;
    letter-spacing: -2px;
}

.lux-left h1 span {
    color: #c3b280;
}

.lux-left h1 strong {
    color: #fff;
}

.lux-line {
    width: 140px;
    height: 8px;
    background: #c3b280;
    margin: 35px 0 50px;
}

.lux-buttons {
    display: flex;
    gap: 22px;
}

.lux-call-btn,
.lux-book-btn {
    padding: 18px 40px;
    border-radius: 60px;
    font-size: 22px;
    text-decoration: none;
    transition: .3s;
    font-weight: 600;
}

.lux-call-btn {
    border: 2px solid #c3b280;
    color: #fff;
    background: transparent;
}

.lux-call-btn:hover {
    background: #c3b280;
    color: #000;
}

.lux-book-btn {
    background: #c3b280;
    color: #fff;
}

.lux-book-btn:hover {
    background: #fff;
    color: #000;
}


/* =========================
   RIGHT FORM
========================= */

.lux-right {
    width: 52%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 50px;
    margin-top: 40px;

    border-radius: 24px;
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.lux-right h2 {
    text-align: center;
    color: #fff;
    font-size: 54px;
    margin-bottom: 40px;
    font-family: Georgia, serif;
    line-height: 1.1;
}

/* GRID */

.lux-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

/* INPUTS */

.lux-form input,
.lux-form select {
    width: 100%;
    height: 50px;
    border: none;
    outline: none;
    border-radius: 14px;
    padding: 0 22px;
    background: #f5f5f5;
    font-size: 18px;
    transition: .3s;
}

.lux-form input:focus,
.lux-form select:focus {
    box-shadow: 0 0 0 3px rgba(195, 178, 128, 0.45);
}

/* BUTTON */

.lux-submit-btn {
    width: 100%;
    height: 72px;
    border: none;
    border-radius: 16px;
    background: #c3b280;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-top: 15px;
    transition: .3s;
    cursor: pointer;
}

.lux-submit-btn:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
}


/* =========================
   HEADER
========================= */

.main-header {
    position: fixed;
    top: 38px;
    left: 0;
    width: 100%;
    padding: 18px 0;
    z-index: 999;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: .4s ease;

}

.main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    flex-wrap: nowrap;
}



/* LOGO */

.header-top {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.header-logo img {
    max-height: 75px;
    width: auto;
    display: block;
}

/* NAV */

nav {
    flex: 1;
}

/* MENU */

#menu-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 22px;
    margin: 0;
    padding: 0;
    list-style: none;
    flex-wrap: nowrap;
}



/* TOGGLE */

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}

/* =========================
   MOBILE
========================= */

@media(max-width:1024px) {

    .main-header {
        position: relative;
        padding-top: 10px;
        padding-bottom: 30px;
        z-index: 0;
    }

    .main-header .container {
        flex-direction: column;
        align-items: stretch;
    }

    .header-top {
        width: 100%;
        justify-content: space-between;
    }

    .menu-toggle {
        display: block;
    }

    nav {
        width: 100%;
    }

    #menu-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-top: 20px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 16px;
        padding: 15px 10px;
        gap: 0;
    }

    #menu-menu.active {
        display: flex;
    }

    #menu-menu .menu-item {
        width: 100%;
    }

    #menu-menu .ekit-menu-nav-link {
        display: block;
        width: 100%;
        padding: 14px 20px;
        font-size: 16px;
    }

}

/* =========================
   LARGE SCREEN
========================= */

@media(max-width:1400px) {

    .lux-left h1 {
        font-size: 70px;
    }

}


/* =========================
   TABLET
========================= */

@media(max-width:992px) {

    .hero-wrapper {
        flex-direction: column;
        gap: 60px;
    }

    .lux-left,
    .lux-right {
        width: 100%;
    }

    .lux-left {
        text-align: center;
    }

    .lux-line {
        margin-left: auto;
        margin-right: auto;
    }

    .lux-buttons {
        justify-content: center;
    }

    .lux-left h1 {
        font-size: 68px;
    }

}


/* =========================
   MOBILE
========================= */

@media(max-width:767px) {

    .hero-section {
        padding: 50px 0;
    }

    .lux-left h1 {
        font-size: 46px;
        line-height: 1.1;
    }

    .lux-right {
        padding: 30px 20px;
        border-radius: 18px;
    }

    .lux-right h2 {
        font-size: 34px;
        margin-bottom: 30px;
    }

    .lux-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .lux-form input,
    .lux-form select {
        height: 50px;
        font-size: 16px;
    }

    .lux-submit-btn {
        height: 60px;
        font-size: 18px;
    }

    .lux-buttons {
        flex-direction: column;
    }

    .lux-call-btn,
    .lux-book-btn {
        width: 100%;
        text-align: center;
        font-size: 18px;
    }

}

/* =========================
   FOOTER
========================= */

.lux-footer {
    background: #000;
    padding: 80px 0 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

/* MAIN WRAPPER */

.footer-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    padding-bottom: 70px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

/* LEFT */

.footer-left {
    width: 50%;
    padding-right: 60px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-logo {
    width: 120px;
    margin-bottom: 35px;
}

.footer-left p {
    color: #fff;
    font-size: 20px;
    line-height: 1.7;
    max-width: 520px;
    margin: 0;
}

/* CENTER */

.footer-nav {
    width: 20%;
}

.footer-nav h3,
.footer-social h3 {
    color: #fff;
    font-size: 30px;
    margin-bottom: 35px;
    font-weight: 500;
    letter-spacing: 1px;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav ul li {
    margin-bottom: 18px;
}

.footer-nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 22px;
    transition: .3s;
}

.footer-nav ul li a:hover {
    color: #c3b280;
    padding-left: 6px;
}

/* SOCIAL */

.footer-social {
    width: 20%;
}

.social-icons {
    display: flex;
    gap: 18px;
}

.social-icons a {
    width: 58px;
    height: 58px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    transition: .3s;
}

.social-icons a:hover {
    background: #c3b280;
    border-color: #c3b280;
    color: #000;
    transform: translateY(-3px);
}

/* BOTTOM */

.footer-bottom {
    padding-top: 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copy {
    color: #fff;
    font-size: 18px;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-links a,
.footer-links span {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: .3s;
}

.footer-links a:hover {
    color: #c3b280;
}


/* =========================
   TABLET
========================= */

@media(max-width:992px) {

    .footer-wrapper {
        flex-wrap: wrap;
        gap: 50px;
    }

    .footer-left {
        width: 100%;
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        padding-bottom: 40px;
    }

    .footer-nav,
    .footer-social {
        width: 45%;
    }

}


/* =========================
   MOBILE
========================= */

@media(max-width:767px) {

    .lux-footer {
        padding: 60px 0 25px;
    }

    .footer-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .footer-nav,
    .footer-social {
        width: 100%;
    }

    .footer-nav h3,
    .footer-social h3 {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .footer-nav ul li a {
        font-size: 18px;
    }

    .footer-left p {
        font-size: 17px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-copy,
    .footer-links a,
    .footer-links span {
        font-size: 16px;
    }

}

.menu-item {
    list-style: none;
    display: inline-block;
}

.menu-item .elementor-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background: #fff;
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 25px;
    font-weight: 400;
    border: 2px solid #fff;
}

.menu-item .elementor-button:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-2px);
}

.menu-item .elementor-button-text {
    letter-spacing: 0.5px;
}


/* =========================
COMMON MOBILE SPACING
========================= */

@media(max-width:768px) {

    section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        margin-bottom: 15px;
    }

    p {
        margin-bottom: 15px;
    }

    .row {
        row-gap: 25px;
    }

}

/* =========================
HERO SECTION
========================= */

.lux-hero {
    min-height: 100vh;

    background-image:

        /* VERY BRIGHT TOP */
        linear-gradient(to bottom,
            rgba(255, 255, 255, 0.72) 0%,
            rgba(235, 240, 245, 0.45) 15%,
            rgba(210, 220, 230, 0.18) 30%,
            rgba(180, 190, 205, 0.06) 45%,
            rgba(255, 255, 255, 0) 60%),

        /* DARK BOTTOM */
        linear-gradient(to top,
            rgba(0, 0, 0, 0.60) 0%,
            rgba(0, 0, 0, 0.72) 18%,
            rgba(0, 0, 0, 0.30) 38%,
            rgba(0, 0, 0, 0.00) 65%),

        url('../image/hero.webp');

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 120px;
}



.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom,
            rgba(255, 255, 255, 0.75) 0%,
            rgba(255, 255, 255, 0.45) 15%,
            rgba(255, 255, 255, 0.18) 30%,
            rgba(255, 255, 255, 0.04) 45%,
            rgba(255, 255, 255, 0) 58%),

        linear-gradient(to top,
            rgba(0, 0, 0, 0.92) 0%,
            rgba(0, 0, 0, 0.72) 18%,
            rgba(0, 0, 0, 0.28) 35%,
            rgba(0, 0, 0, 0.00) 48%);
    pointer-events: none;
    z-index: 1;
}

/* CONTENT */

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.hero-title {
    font-size: 78px;
    font-weight: 700;
    line-height: 1;
    color: #031b4e;
    margin-bottom: 30px;
}

/* BADGE */

.hour-badge {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 16px 28px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 80px;
}

/* BOTTOM CONTENT */

/* .hero-bottom-content {
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    padding-top: 40px;
} */

.hero-bottom-content {
    position: relative;
    z-index: 5;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    padding-top: 35px;
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 40px;
    flex-wrap: wrap;
}

/* TEXT */

.hero-text {
    margin: 0;

    color: #fff;

    font-size: 22px;
    font-weight: 700;
}

/* BUTTON GROUP */

.hero-btn-group {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* BUTTONS */

.hero-btn-group {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.lux-btn,
.lux-btn-outline {
    padding: 18px 40px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 22px;
    font-weight: 500;
    transition: 0.4s ease;
}

.lux-btn {
    background: #fff;
    color: #000;
}

.lux-btn:hover {
    background: #000;
    color: #fff;
    border: 2px solid #fff;
}

.lux-btn-outline {
    background: #fff;
    color: #000;
    border: 2px solid #fff;
}

.lux-btn-outline:hover {
    background: #000;
    color: #fff;
}

/* SOCIAL */

.hero-socials {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.hero-socials a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: 0.4s ease;
}

.hero-socials a:hover {
    background: #fff;
    color: #000;
    transform: scale(1.1);
}

/* MOBILE */

@media(max-width:991px) {

    .lux-hero {
        padding-top: 140px;
    }

    .hero-title {
        font-size: 52px;
    }

    .hour-badge {
        margin-bottom: 50px;
        font-size: 17px;
    }

    .hero-text {
        font-size: 18px;
    }

    .hero-socials {
        right: 20px;
    }
}

@media(max-width:576px) {

    .hero-title {
        font-size: 42px;
        margin-top: -50px;
    }

    .hero-btn-group {
        flex-direction: column;
        align-items: stretch;
    }

    .lux-btn,
    .lux-btn-outline {
        width: 100%;
        text-align: center;
    }

    .hero-socials {
        display: none;
    }

    .hero-bottom-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-btn-group {
        width: 100%;
        margin-left: 0;
    }
}

/* =========================
ABOUT SECTION
========================= */

.about-section {
    padding: 120px 0;
    background: #000;
    color: #fff;
}

/* SECTION LABEL */

.service-heading {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 35px;
}

.heading-icon {
    width: 48px;
    height: 48px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 22px !important;
}

.heading-text {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* CONTENT */

.about-main-heading {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-sub-heading {
    color: #d1d1d1;
    font-size: 22px;
    line-height: 1.7;
    margin-bottom: 45px;
}


/* POINTS */

.about-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-points li {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 28px;
    font-size: 18px;
    line-height: 1.8;
    color: #d4d4d4;
}

/* ICON */

.about-icon {
    min-width: 50px;
    height: 50px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 24px !important;
    transition: .4s ease;
}

.about-points li:hover .about-icon {
    transform: rotate(360deg) scale(1.1);
    cursor: pointer;
}



.service-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;

    width: fit-content;
    margin: 0 auto 35px;

    padding: 10px 28px 10px 18px;
    border-radius: 40px;
}

.service-heading:hover {
    border: 1px solid #fff;
    border-radius: 12px;
    cursor: pointer;
}

.heading-icon {

    font-size: 22px !important;
    color: #ffffff;
    background: #000000;
    width: 40px;
    height: 40px;
    border: 2px solid #ffffff;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    position: absolute;
    left: -5px;
    top: 50%;
    transform: translateY(-50%);

    box-shadow: 0 0 12px rgba(255, 255, 255, 0.3);
    transition: 0.4s ease;
}


.heading-text {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-left: 28px;
}


.service-heading:hover .heading-icon {

    background: #ffffff;
    color: #000000;
    cursor: pointer;

    transform:
        translateY(-50%) rotate(360deg) scale(1.3);

    box-shadow:
        0 0 10px #ffffff,
        0 0 20px rgba(255, 255, 255, 0.8),
        0 0 35px rgba(255, 255, 255, 0.6);
}

/* MOBILE */

@media(max-width:768px) {

    .about-section {
        padding: 80px 0;
    }

    .about-main-heading {
        font-size: 36px;
    }

    .about-sub-heading {
        font-size: 18px;
    }

    .about-points li {
        font-size: 16px;
    }

}

/* =========================
FLEET SECTION
========================= */

.fleet-section {
    padding: 80px 0;
    background: #050505;
    color: #fff;
}

/* HEADING */

.fleet-heading {
    margin-bottom: 70px;
}

.fleet-heading h2 {
    font-size: 54px;
    font-weight: 700;
    margin-bottom: 15px;
}

.fleet-heading p {
    color: #bdbdbd;
    max-width: 700px;
    margin: auto;
    line-height: 1.8;
}

/* CARD */

.fleet-card {
    background: #101010;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    overflow: hidden;

    display: grid;
    grid-template-columns: 1.1fr 1fr;

    transition: .4s ease;
}

.fleet-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.06);
    cursor: pointer;
}

/* IMAGE */

.fleet-image {
    position: relative;
    overflow: hidden;
}

.fleet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s ease;
}

.fleet-image::after {
    content: '';
    position: absolute;
    inset: 0;

    background:

        /* BRIGHT SKY EFFECT */
        linear-gradient(to bottom,
            rgba(255, 255, 255, 0.60) 0%,
            rgba(255, 255, 255, 0.25) 18%,
            rgba(255, 255, 255, 0.10) 35%,
            rgba(255, 255, 255, 0.02) 50%,
            rgba(255, 255, 255, 0) 65%),

        /* DARK BOTTOM */
        linear-gradient(to top,
            rgba(0, 0, 0, 0.92) 0%,
            rgba(0, 0, 0, 0.60) 28%,
            rgba(0, 0, 0, 0.18) 55%,
            rgba(0, 0, 0, 0.02) 100%);

    z-index: 1;
}

.fleet-card:hover .fleet-image img {
    transform: scale(1.05);
    cursor: pointer;
}

/* BADGE */

.fleet-badge {
    position: absolute;
    top: 25px;
    left: 25px;

    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(10px);

    padding: 12px 22px;
    border-radius: 50px;

    font-size: 14px;
    font-weight: 600;

    overflow: hidden;
    white-space: nowrap;

    width: 130px;
    transition: .5s ease;

    z-index: 2;
}

/* SHORT TEXT */

.short-text {
    opacity: 1;
    transition: .3s ease;
}

/* FULL TEXT */

.full-text {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    transition: .3s ease;
}

/* HOVER EFFECT */

.fleet-badge:hover {
    width: 380px;
    background: rgba(0, 0, 0, 0.85);
}

/* HIDE SHORT */

.fleet-badge:hover .short-text {
    opacity: 0;
}

/* SHOW FULL */

.fleet-badge:hover .full-text {
    opacity: 1;
    visibility: visible;
}

/* CONTENT */

.fleet-content {
    padding: 55px;
}

.fleet-content h3 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 10px;
}

.fleet-subtitle {
    display: inline-block;
    color: #c3b280;
    margin-bottom: 25px;
    font-size: 20px;
    font-weight: 700;
}

.fleet-description {
    color: #cfcfcf;
    line-height: 1.9;
    margin-bottom: 35px;
}

/* FEATURES */

.fleet-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.fleet-feature {
    display: flex;
    align-items: center;
    gap: 14px;
}

.fleet-feature i {
    width: 50px;
    height: 50px;
    border-radius: 50%;

    background: #fff;
    color: #000;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: .4s ease;
}

.fleet-feature:hover i {
    transform: rotate(360deg) scale(1.1);
}

/* BOTTOM */

.fleet-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.fleet-price span {
    color: #aaa;
    font-size: 14px;
}

.fleet-price h4 {
    font-size: 34px;
    margin-top: 5px;
    font-weight: 700;
}

/* BUTTON */

.fleet-btn {
    background: #fff;
    color: #000;

    padding: 16px 34px;
    border-radius: 12px;

    text-decoration: none;
    font-weight: 600;

    transition: .4s ease;
}

.fleet-btn:hover {
    background: #000;
    color: #fff;
    border: 1px solid #fff;
}

/* MOBILE */

@media(max-width:991px) {

    .fleet-card {
        grid-template-columns: 1fr;
    }

    .fleet-content {
        padding: 35px 25px;
    }

}

@media(max-width:768px) {

    .fleet-heading h2 {
        font-size: 38px;
    }

    .fleet-content h3 {
        font-size: 30px;
    }

    .fleet-features {
        grid-template-columns: 1fr;
    }

    .fleet-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .fleet-badge:hover {
        width: 355px;
        background: rgba(0, 0, 0, 0.85);
    }

}

/* =========================
SERVICES SECTION
========================= */

.services-section {
    padding: 120px 0;
    background: #050505;
    color: #fff;
}

/* TOP */

.services-top {
    max-width: 800px;
    margin: 0 auto 70px;
}

.services-title {
    font-size: 54px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.services-subtitle {
    color: #bdbdbd;
    line-height: 1.9;
    font-size: 18px;
}

/* CARD */

.service-card {
    background: #111;
    border-radius: 28px;
    overflow: hidden;
    transition: .4s ease;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(255, 255, 255, 0.05);
    cursor: pointer;

}

/* IMAGE */

.service-image {
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: .5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

/* OVERLAY */

.service-image::after {
    content: '';
    position: absolute;
    inset: 0;

    background:
        linear-gradient(to top,
            rgba(0, 0, 0, 0.75) 0%,
            rgba(0, 0, 0, 0.25) 40%,
            rgba(0, 0, 0, 0.02) 100%);
}

/* CONTENT */

.service-content {
    padding: 35px;
    position: relative;
}

/* ICON */

.service-icon {
    width: 65px;
    height: 65px;
    background: #fff;
    color: #000;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 24px;

    margin-top: -70px;
    margin-bottom: 25px;

    position: relative;
    z-index: 2;

    transition: .4s ease;
}

.service-card:hover .service-icon {
    transform: rotate(360deg) scale(1.1);
}

/* TITLE */

.service-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 18px;
}

/* TEXT */

.service-content p {
    color: #cfcfcf;
    line-height: 1.9;
    margin-bottom: 28px;
}

/* BUTTON */

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: #fff;
    text-decoration: none;
    font-weight: 600;

    transition: .3s ease;
}

.service-btn::after {
    content: '→';
    transition: .3s ease;
}

.service-btn:hover {
    color: #c3b280;
}

.service-btn:hover::after {
    transform: translateX(5px);
}

/* MOBILE */

@media(max-width:768px) {

    .services-title {
        font-size: 38px;
    }

    .service-content {
        padding: 28px 24px;
    }

    .services-section {
        padding: 80px 0;
    }

}


/* =========================
WHY SECTION
========================= */

.why-section {
    padding: 120px 0;
    background: #050505;
    color: #fff;
}

/* TOP */

.why-top {
    max-width: 850px;
    margin: 0 auto 70px;
}

.why-title {
    font-size: 54px;
    font-weight: 700;
    margin-bottom: 20px;
}

.why-subtitle {
    color: #bdbdbd;
    line-height: 1.9;
    font-size: 18px;
}

/* CARD */

.why-card {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 28px;
    padding: 45px 30px;

    height: 100%;
    transition: .4s ease;

    position: relative;
    overflow: hidden;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.06);
    cursor: pointer;
}

/* TOP LIGHT EFFECT */

.why-card::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);

    width: 220px;
    height: 220px;

    background: rgba(255, 255, 255, 0.08);
    filter: blur(70px);

    border-radius: 50%;
}

/* ICON */

.why-icon {
    width: 80px;
    height: 80px;

    background: #fff;
    color: #000;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 30px;

    position: relative;
    z-index: 2;

    transition: .5s ease;
}

.why-icon span {
    font-size: 38px;
}

.why-card:hover .why-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow:
        0 0 5px #ffffff,
        0 0 20px rgba(255, 255, 255, 0.1),
        0 0 35px rgba(255, 255, 255, 0.1);
}

/* TITLE */

.why-card h4 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 18px;

    position: relative;
    z-index: 2;
}

/* TEXT */

.why-card p {
    color: #cfcfcf;
    line-height: 1.9;

    position: relative;
    z-index: 2;
}

/* MOBILE */

@media(max-width:768px) {

    .why-title {
        font-size: 38px;
    }

    .why-subtitle {
        font-size: 16px;
    }

    .why-card {
        padding: 35px 24px;
    }

    .why-section {
        padding: 80px 0;
    }
}

/*SERVICE AREA HEADING*/

.service-area-heading {
    padding: 100px 0 40px;
    background: #000;
}

/* DIVIDER */

.custom-divider {
    width: 100%;
    height: 1px;

    background:
        linear-gradient(to right,
            transparent,
            rgba(255, 255, 255, 0.5),
            transparent);

    margin-top: 35px;
}

/* MAP SECTION*/

.map-section {
    background: #000;
    padding: 50px 0;
}

.map-wrapper {
    overflow: hidden;

    position: relative;
}

/* MAP */

#map {
    width: 100%;
    height: 500px;
    border: 0;
    border-radius: 30px;

    display: block;

    /* filter:
        grayscale(100%) contrast(1.1) brightness(0.9); */
}

/* TABLET */

@media(max-width:991px) {

    #map {
        height: 400px;
    }

}

/* MOBILE */

@media(max-width:768px) {

    .map-section {
        padding: 50px 20px;
    }

    #map {
        height: 50vh !important;
        width: 100%;
    }

}

/* SMALL MOBILE */

@media(max-width:576px) {

    #map {
        height: 50vh !important;
    }

}

/* =========================
TOPBAR
========================= */

.topbar {
    background: #000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    padding: 12px 0;

    position: relative;
    z-index: 1000;
}

/* WRAPPER */

.topbar-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* LEFT */

.topbar-left span {
    color: #d1d1d1;
    font-size: 14px;
    letter-spacing: 0.5px;
}

/* RIGHT */

.topbar-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

/* LINKS */

.topbar-right a {
    display: flex;
    align-items: center;
    gap: 8px;

    color: #fff;
    text-decoration: none;

    font-size: 14px;
    font-weight: 500;

    transition: .3s ease;
}

.topbar-right a:hover {
    color: #c3b280;
}

/* ICON */

.topbar-right .material-symbols-outlined {
    font-size: 18px;
}

/* HIDE TOPBAR */

.hide-topbar {
    transform: translateY(-100%);
    opacity: 0;
}

/* NAVBAR MOVE UP */

.main-header.move-top {
    top: 0;
}

/* MOBILE */

@media(max-width:768px) {

    .topbar {
        padding: 10px 0;
    }

    .topbar-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .topbar-right {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .topbar-left span,
    .topbar-right a {
        font-size: 13px;
    }

}



/* FLOATING CALL BUTTON */


.floating-call-btn {
    position: fixed;

    right: 25px;
    bottom: 30px;

    z-index: 9999;

    width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff;
    color: #000;

    text-decoration: none;

    border-radius: 60px;

    overflow: hidden;

    transition: .4s ease;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.25);
}

/* ICON */

.call-icon {
    font-size: 34px;

    flex-shrink: 0;
}

/* TEXT */

.call-text {
    opacity: 0;

    width: 0;

    overflow: hidden;

    white-space: nowrap;

    font-size: 15px;
    font-weight: 600;

    transition: .4s ease;
}

/* HOVER EFFECT */

.floating-call-btn:hover {
    width: 160px;

    justify-content: flex-start;

    padding: 0 22px;

    gap: 12px;

    background: #fff;
}

/* SHOW TEXT */

.floating-call-btn:hover .call-text {
    opacity: 1;
    width: 80px;
}

/* PULSE */

.floating-call-btn::before {
    content: '';

    position: absolute;
    inset: 0;

    border-radius: inherit;

    border: 2px solid rgba(255, 255, 255, 0.5);

    animation: pulseCall 2s infinite;
}

@keyframes pulseCall {

    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }

}

/* MOBILE */

@media(max-width:768px) {

    .floating-call-btn {
        width: 55px;
        height: 55px;

        right: 15px;
        bottom: 20px;
    }

    .floating-call-btn:hover {
        width: 170px;
    }

}