

:root {

    --primary: #e53935;

    --primary-dark: #c62828;

    --secondary: #0f172a;

    --text: #222;

    --text-light: #6b7280;

    --bg: #ffffff;

    --gray: #f7f8fa;

    --border: #ececec;

    --radius: 22px;

    --shadow: 0 20px 60px rgba(0, 0, 0, .08);

    --transition: .35s;

}

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}

html {

    scroll-behavior: smooth;

}

body {

    font-family: 'Google Sans', sans-serif;

    font-size: 16px;

    color: var(--text);

    background: #fff;

    overflow-x: hidden;

    line-height: 1.8;

}

img {

    max-width: 100%;

    display: block;

}

a {

    text-decoration: none;

    transition: var(--transition);

}

ul {

    padding: 0;

    margin: 0;

    list-style: none;

}

section {

    padding: 120px 0;

    position: relative;

}

.container {

    max-width: 1280px;

}


h1 {

    font-size: 72px;

    font-weight: 800;

    line-height: 1.1;

    margin-bottom: 25px;

    color: #fff;

}

h1 span {

    display: block;

    color: #ffb300;

}

h2 {

    font-size: 48px;

    font-weight: 800;

    margin-bottom: 20px;

}

h3 {

    font-size: 30px;

    font-weight: 700;

}

h4 {

    font-size: 22px;

    font-weight: 700;

}

p {

    color: var(--text-light);

    margin-bottom: 0;

}

.section-title {

    max-width: 700px;

    margin: auto;

    text-align: center;

    margin-bottom: 70px;

}

.section-title span {

    display: inline-flex;

    padding: 10px 22px;

    border-radius: 100px;

    background: #fff2f2;

    color: var(--primary);

    font-weight: 700;

    margin-bottom: 18px;

}

.section-title h2 {

    margin-bottom: 15px;

}

.section-title p {

    font-size: 18px;

}

.btn-main {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 18px 36px;

    border-radius: 100px;

    background: var(--primary);

    color: #fff;

    font-weight: 700;

    transition: transform .3s, opacity .3s, box-shadow .3s;

    box-shadow:

        0 20px 40px rgba(229, 57, 53, .35);

}

.btn-main:hover {

    transform: translateY(-4px);

    background: var(--primary-dark);

    color: #fff;

}

.btn-outline {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 18px 36px;

    border-radius: 100px;

    border: 2px solid rgba(255, 255, 255, .4);

    color: #fff;

    font-weight: 700;

    margin-left: 15px;

    backdrop-filter: blur(8px);

}

.btn-outline:hover {

    background: #fff;

    color: #111;

}

.progress-line {

    position: fixed;

    left: 0;

    top: 0;

    width: 0;

    height: 4px;

    background: var(--primary);

    z-index: 999999;

}

.shadow-card {

    background: #fff;

    border-radius: 30px;

    box-shadow: var(--shadow);

}

.radius {

    border-radius: 30px;

    overflow: hidden;

}

.bg-gray {

    background: var(--gray);

}

/*================================================

HEADER

================================================*/

#header {

    position: fixed;

    left: 0;

    top: 0;

    width: 100%;

    z-index: 9999;

    padding: 24px 0;

    transition: .4s ease;

}

#header.scrolled {

    background: #ffffff;

    padding: 14px 0;

    box-shadow: 0 15px 45px rgba(0, 0, 0, .08);

    backdrop-filter: blur(8px);

}

.navbar {

    padding: 0;

}

.navbar-brand img {

    height: 54px;

    transition: .35s;

}

#header.scrolled .navbar-brand img {

    height: 46px;

}

.navbar-nav {

    gap: 14px;

}

.nav-link {

    position: relative;

    padding: 12px 20px !important;

    font-size: 16px;

    font-weight: 700;

    color: #fff;

    transition: .35s;

}

#header.scrolled .nav-link {

    color: #111;

}

.nav-link:hover {

    color: var(--primary);

}

.nav-link.active {

    color: var(--primary);

}

.nav-link::after {

    content: "";

    position: absolute;

    left: 50%;

    bottom: 0;

    width: 0;

    height: 3px;

    background: var(--primary);

    border-radius: 20px;

    transition: .35s;

    transform: translateX(-50%);

}

.nav-link:hover::after {

    width: 55%;

}

.nav-link.active::after {

    width: 55%;

}

.btn-call {

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 14px 24px;

    border-radius: 60px;

    background: #fff;

    color: #111;

    font-weight: 800;

    box-shadow:

        0 15px 40px rgba(0, 0, 0, .08);

    transition: .35s;

}

.btn-call:hover {

    transform: translateY(-4px);

    color: #fff;

    background: var(--primary);

}

.btn-call span {

    font-size: 15px;

}

.btn-whatsapp {

    padding: 14px 26px;

    border-radius: 60px;

    background: #22c55e;

    color: #fff;

    font-weight: 700;

    box-shadow:

        0 20px 40px rgba(34, 197, 94, .35);

    transition: .35s;

}

.btn-whatsapp:hover {

    transform: translateY(-4px);

    background: #18a84d;

    color: #fff;

}

.navbar-toggler {

    width: 48px;

    height: 48px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    gap: 6px;

}

.navbar-toggler span {

    width: 28px;

    height: 3px;

    border-radius: 30px;

    background: #fff;

    transition: .35s;

}

#header.scrolled .navbar-toggler span {

    background: #111;

}

#header.scrolled {

    animation: headerDown .45s ease;

}

@keyframes headerDown {

    0% {

        transform: translateY(-80px);

    }

    100% {

        transform: translateY(0);

    }

}

@media(min-width:1200px) {

    .nav-item {

        position: relative;

    }

    .nav-item:hover>.nav-link {

        transform: translateY(-2px);

    }

}

/*================================================

HERO SECTION

================================================*/

.hero {

    position: relative;

    min-height: 100vh;

    display: flex;

    align-items: center;

    overflow: hidden;

    background: url('../images/hero.webp') center center;

    background-size: cover;

    background-repeat: no-repeat;

    padding-top: 150px;

    padding-bottom: 120px;

}

.hero::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 100%;

    background:

        linear-gradient(90deg,

            rgba(7, 15, 28, .90) 0%,

            rgba(7, 15, 28, .78) 35%,

            rgba(7, 15, 28, .45) 100%);

    z-index: 1;

}

.hero>* {

    position: relative;

    z-index: 5;

}



.hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 12px 24px;

    background: rgba(255, 255, 255, .12);

    border: 1px solid rgba(255, 255, 255, .20);

    backdrop-filter: blur(8px);

    border-radius: 60px;

    color: #fff;

    font-weight: 700;

    margin-bottom: 30px;

}

.hero h1 {

    font-size: 74px;

    line-height: 1.08;

    font-weight: 900;

    color: #fff;

    margin-bottom: 30px;

    max-width: 720px;

}

.hero h1 span {

    display: block;

    margin-top: 10px;

    color: #ffb300;

}

.hero p {

    font-size: 20px;

    line-height: 1.9;

    max-width: 620px;

    color: rgba(255, 255, 255, .82);

    margin-bottom: 45px;

}

.hero-buttons {

    display: flex;

    align-items: center;

    gap: 18px;

    flex-wrap: wrap;

    margin-top: 25px;

}

.hero-buttons .btn-main {

    min-width: 210px;

    justify-content: center;

}

.hero-buttons .btn-outline {

    margin-left: 0;

    min-width: 210px;

    justify-content: center;

}

.hero-card {

    background: rgba(255, 255, 255, .14);

    border: 1px solid rgba(255, 255, 255, .20);

    backdrop-filter: blur(8px);

    border-radius: 30px;

    padding: 40px;

    color: #fff;

    box-shadow:

        0 35px 80px rgba(0, 0, 0, .30);

    animation: floatCard 5s ease-in-out infinite;

}

.card-top {

    display: flex;

    justify-content: space-between;

    align-items: center;

    font-size: 15px;

    font-weight: 700;

    margin-bottom: 35px;

}

.card-top span {

    opacity: .9;

}

.hero-stats {

    display: flex;

    justify-content: space-between;

    margin-bottom: 35px;

}

.hero-stats h2 {

    font-size: 42px;

    color: #fff;

    margin-bottom: 8px;

}

.hero-stats small {

    font-size: 14px;

    color: rgba(255, 255, 255, .7);

}

.hero-card ul {

    margin-top: 25px;

}

.hero-card li {

    padding: 12px 0;

    border-bottom: 1px solid rgba(255, 255, 255, .08);

    font-size: 16px;

}

.hero-card li:last-child {

    border: none;

}

.scroll-down {

    position: absolute;

    left: 50%;

    bottom: 35px;

    transform: translateX(-50%);

    width: 55px;

    height: 55px;

    border-radius: 100px;

    background: #fff;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 26px;

    color: #111;

    animation: bounce 2s infinite;

    z-index: 20;

    box-shadow: 0 20px 45px rgba(0, 0, 0, .15);

}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {

        transform: translate(-50%, 0);

    }

    40% {

        transform: translate(-50%, -12px);

    }

    60% {

        transform: translate(-50%, -6px);

    }

}

@keyframes floatCard {

    0% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-15px);

    }

    100% {

        transform: translateY(0);

    }

}

/*=========================================
EMERGENCY SECTION
=========================================*/

.emergency-section {

    padding: 0;
    margin-top: -70px;
    position: relative;
    z-index: 50;

}

.emergency-box {

    background: linear-gradient(135deg, #ef4444, #dc2626);

    border-radius: 30px;

    padding: 45px 60px;

    color: #fff;

    box-shadow:
        0 30px 80px rgba(239, 68, 68, .35);

    overflow: hidden;

    position: relative;

}

.emergency-box::before {

    content: "";

    position: absolute;

    right: -120px;
    top: -120px;

    width: 300px;
    height: 300px;

    background: rgba(255, 255, 255, .08);

    border-radius: 50%;

}

.emergency-box h2 {

    color: #fff;

    font-size: 38px;

    margin-bottom: 10px;

}

.emergency-box p {

    color: rgba(255, 255, 255, .9);

    font-size: 18px;

}

.btn-emergency {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 18px 40px;

    background: #fff;

    color: #dc2626;

    border-radius: 100px;

    font-weight: 800;

    transition: .35s;

    box-shadow:

        0 15px 40px rgba(0, 0, 0, .15);

}

.btn-emergency:hover {

    transform: translateY(-5px);

    background: #111;

    color: #fff;

}

.services {

    background: #fafbfc;

    position: relative;

}

.services::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 180px;

    background: #fff;

    border-radius: 0 0 80px 80px;

}

.service-card {

    position: relative;

    background: #fff;

    border-radius: 28px;

    padding: 40px;

    height: 100%;

    transition: .35s;

    overflow: hidden;

    box-shadow:

        0 15px 45px rgba(0, 0, 0, .05);

}

.service-card:hover {

    transform: translateY(-12px);

    box-shadow:

        0 30px 80px rgba(0, 0, 0, .12);

}

.service-card::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 5px;

    background:

        linear-gradient(90deg,

            #ef4444,

            #ff9800);

    transition: .35s;

}

.service-card:hover::before {

    height: 100%;

    opacity: .04;

}

.icon {

    width: 82px;

    height: 82px;

    border-radius: 24px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 36px;

    background:

        linear-gradient(135deg,

            #ef4444,

            #ff9800);

    color: #fff;

    margin-bottom: 30px;

    box-shadow:

        0 15px 35px rgba(239, 68, 68, .30);

    transition: transform .3s, opacity .3s, box-shadow .3s;

}

.service-card:hover .icon {

    transform:

        rotate(10deg) scale(1.12);

}
.icon svg{

    width:34px;
    
    height:34px;
    
    fill:currentColor;
    
    transition:.35s;
    
    }

    .service-card:hover .icon svg{

        transform:
        
        scale(1.15)
        
        rotate(-8deg);
        
        }
.service-card h4 {

    font-size: 24px;

    margin-bottom: 15px;

    transition: .3s;

}

.service-card p {

    font-size: 16px;

    line-height: 1.8;

}

.service-card:hover h4 {

    color: #ef4444;

}

.service-link {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 25px;

    font-weight: 700;

    color: #ef4444;

}

.service-link i {

    transition: .3s;

}

.service-card:hover .service-link i {

    transform: translateX(6px);

}

.service-card::after {

    content: "";

    position: absolute;

    right: -40px;

    bottom: -40px;

    width: 120px;

    height: 120px;

    background:

        rgba(239, 68, 68, .05);

    border-radius: 50%;

    transition: transform .3s, opacity .3s, box-shadow .3s;

}

.service-card:hover::after {

    transform: scale(2);

}

.services .row {

    position: relative;

    z-index: 5;

}

/*=========================================
ABOUT SECTION
=========================================*/

.about-section {

    background: #fff;

    position: relative;

    overflow: hidden;

}

.about-section::before {

    content: "";

    position: absolute;

    right: -250px;

    top: -250px;

    width: 550px;

    height: 550px;

    background: radial-gradient(circle, #ffe9e9 0%, transparent 70%);

    pointer-events: none;

}

.about-image {

    position: relative;

    padding-right: 70px;

}

.about-image img {

    border-radius: 35px;

    width: 100%;

    height: 650px;

    object-fit: cover;

    box-shadow:

        0 35px 90px rgba(0, 0, 0, .12);

}

.experience-card {

    position: absolute;

    right: 0;

    bottom: 60px;

    background: #fff;

    padding: 35px;

    width: 240px;

    border-radius: 30px;

    box-shadow:

        0 25px 70px rgba(0, 0, 0, .12);

    text-align: center;

    animation: floatCard 5s ease-in-out infinite;

}

.experience-card h2 {

    font-size: 64px;

    color: var(--primary);

    margin-bottom: 10px;

    font-weight: 900;

}

.experience-card p {

    font-size: 17px;

    font-weight: 700;

    color: #555;

}

.about-section .section-title {

    margin-bottom: 35px;

}

.about-section .section-title p {

    font-size: 18px;

    line-height: 2;

    color: #666;

    max-width: 620px;

}

.feature-box {

    display: flex;

    align-items: flex-start;

    gap: 18px;

    padding: 24px;

    border-radius: 24px;

    background: #fff;

    transition: .35s;

    border: 1px solid #f0f0f0;

    height: 100%;

    box-shadow:

        0 10px 30px rgba(0, 0, 0, .04);

}

.feature-box:hover {

    transform: translateY(-8px);

    box-shadow:

        0 30px 70px rgba(0, 0, 0, .10);

}

.feature-icon {

    width: 64px;

    height: 64px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 28px;

    border-radius: 20px;

    background:

        linear-gradient(135deg,

            #ef4444,

            #ff9800);

    color: #fff;

    box-shadow:

        0 15px 35px rgba(239, 68, 68, .30);

}

.feature-box h5 {

    font-size: 20px;

    margin-bottom: 8px;

    font-weight: 800;

}

.feature-box p {

    font-size: 15px;

    color: #777;

    line-height: 1.7;

}

.feature-box {

    position: relative;

    overflow: hidden;

}

.feature-box::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 5px;

    height: 0;

    background: var(--primary);

    transition: .35s;

}

.feature-box:hover::before {

    height: 100%;

}

.steps-section {

    background: #fafafa;

    position: relative;

}

.step-card {

    background: #fff;

    padding: 45px 35px;

    border-radius: 30px;

    text-align: center;

    position: relative;

    transition: .35s;

    height: 100%;

    box-shadow:

        0 15px 45px rgba(0, 0, 0, .05);

}

.step-card:hover {

    transform: translateY(-10px);

    box-shadow:

        0 30px 70px rgba(0, 0, 0, .10);

}

.step-number {

    position: absolute;

    right: 25px;

    top: 20px;

    font-size: 64px;

    font-weight: 900;

    color: #f3f3f3;

    line-height: 1;

}

.step-icon {

    width: 90px;

    height: 90px;

    margin: auto;

    margin-bottom: 25px;

    border-radius: 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 42px;

    background:

        linear-gradient(135deg,

            #ef4444,

            #ff9800);

    color: #fff;

    box-shadow:

        0 20px 45px rgba(239, 68, 68, .35);

}

.step-card h4 {

    margin-bottom: 15px;

    font-size: 24px;

}

.step-card p {

    font-size: 16px;

    color: #777;

}

/*================================================
FLEET SECTION
================================================*/

.fleet-section {

    background: #0f172a;

    color: #fff;

    position: relative;

    overflow: hidden;

    padding: 140px 0;

}

.fleet-section::before {

    content: "";

    position: absolute;

    top: -250px;

    right: -250px;

    width: 650px;

    height: 650px;

    border-radius: 50%;

    background: radial-gradient(circle,
            rgba(239, 68, 68, .18) 0%,
            transparent 70%);

}

.fleet-section .section-title h2 {

    color: #fff;

}

.fleet-section .section-title p {

    color: rgba(255, 255, 255, .7);

}

.fleet-card {

    position: relative;

    overflow: hidden;

    border-radius: 32px;

    background: #1b2436;

    transition: transform .3s, box-shadow .3s;

    height: 520px;

    cursor: pointer;

}

.fleet-card img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .6s;

}

.fleet-card::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 100%;

    background:

        linear-gradient(180deg,

            transparent,

            rgba(0, 0, 0, .75));

    z-index: 2;

}

.fleet-card:hover img {

    transform: scale(1.12);

}

.fleet-card:hover {

    transform: translateY(-10px);

    box-shadow:

        0 35px 90px rgba(0, 0, 0, .35);

}

.fleet-info {

    position: absolute;

    left: 35px;

    bottom: 35px;

    z-index: 5;

    color: #fff;

}

.fleet-info h4 {

    font-size: 30px;

    margin-bottom: 8px;

}

.fleet-info p {

    color: rgba(255, 255, 255, .8);

    font-size: 17px;

    margin-bottom: 20px;

}

.fleet-info a {

    display: inline-flex;

    padding: 14px 28px;

    border-radius: 60px;

    background: #ef4444;

    color: #fff;

    font-weight: 700;

    transition: .35s;

}

.fleet-info a:hover {

    background: #fff;

    color: #111;

}

.swiper {

    padding-bottom: 70px;

}

.swiper-pagination-bullet {

    width: 14px;

    height: 14px;

    background: #fff;

    opacity: .35;

}

.swiper-pagination-bullet-active {

    opacity: 1;

    background: #ef4444;

}

.swiper-button-next,

.swiper-button-prev {

    width: 62px;

    height: 62px;

    border-radius: 50%;

    background: #fff;

    color: #111;

    box-shadow:

        0 15px 40px rgba(0, 0, 0, .2);

}

.swiper-button-next:after,

.swiper-button-prev:after {

    font-size: 22px;

    font-weight: 900;

}

.fleet-stat {

    position: absolute;

    top: 35px;

    left: 35px;

    background: rgba(255, 255, 255, .15);

    backdrop-filter: blur(8px);

    padding: 14px 22px;

    border-radius: 18px;

    color: #fff;

    font-weight: 700;

    z-index: 5;

}

.gallery-section {

    background: #fafafa;

}

.gallery-grid {

    display: grid;

    grid-template-columns:

        repeat(12, 1fr);

    gap: 25px;

}

.gallery-item {

    position: relative;

    overflow: hidden;

    border-radius: 30px;

}

.gallery-item img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .55s;

}

.gallery-item:hover img {

    transform: scale(1.12);

}

.gallery-item:nth-child(1) {

    grid-column: span 6;

    height: 420px;

}

.gallery-item:nth-child(2) {

    grid-column: span 3;

    height: 420px;

}

.gallery-item:nth-child(3) {

    grid-column: span 3;

    height: 420px;

}

.gallery-item:nth-child(4) {

    grid-column: span 4;

    height: 320px;

}

.gallery-item:nth-child(5) {

    grid-column: span 4;

    height: 320px;

}

.gallery-item:nth-child(6) {

    grid-column: span 4;

    height: 320px;

}

.gallery-item::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 100%;

    background:

        rgba(0, 0, 0, .35);

    opacity: 0;

    transition: transform .3s, opacity .3s, box-shadow .3s;

    z-index: 2;

}

.gallery-item:hover::before {

    opacity: 1;

}

/*================================================
STATISTICS
================================================*/

.statistics {

    background: #ffffff;

    padding: 120px 0;

    position: relative;

}

.counter-box {

    background: #fff;

    border-radius: 30px;

    padding: 50px 35px;

    text-align: center;

    transition: transform .3s, opacity .3s, box-shadow .3s;

    border: 1px solid #f2f2f2;

    box-shadow: 0 15px 45px rgba(0, 0, 0, .05);

    height: 100%;

}

.counter-box:hover {

    transform: translateY(-10px);

    box-shadow: 0 30px 70px rgba(0, 0, 0, .10);

}

.counter-box h2 {

    font-size: 64px;

    font-weight: 900;

    color: var(--primary);

    margin-bottom: 10px;

    line-height: 1;

}

.counter-box p {

    font-size: 17px;

    font-weight: 700;

    color: #666;

}

.statistics::before {

    content: "";

    position: absolute;

    left: -250px;

    bottom: -250px;

    width: 600px;

    height: 600px;

    border-radius: 50%;

    background:

        radial-gradient(circle,

            rgba(239, 68, 68, .08),

            transparent);

}

.testimonial-section {

    background: #fafbfc;

}

.testimonial-card {

    background: #fff;

    border-radius: 30px;

    padding: 40px;

    height: 100%;

    transition: .35s;

    box-shadow:

        0 20px 50px rgba(0, 0, 0, .05);

}

.testimonial-card:hover {

    transform: translateY(-10px);

    box-shadow:

        0 35px 80px rgba(0, 0, 0, .10);

}

.stars {

    font-size: 22px;

    color: #ffb300;

    margin-bottom: 25px;

    letter-spacing: 2px;

}

.testimonial-card p {

    font-size: 17px;

    line-height: 2;

    font-style: italic;

    color: #555;

    margin-bottom: 35px;

}


.author {

    display: flex;

    align-items: center;

    gap: 15px;

}

.author img {

    width: 65px;

    height: 65px;

    border-radius: 50%;

    object-fit: cover;

}

.author h5 {

    margin: 0;

    font-size: 18px;

    font-weight: 800;

}

.author span {

    color: #888;

    font-size: 14px;

}

.cta-banner {

    padding: 140px 0;

}

.cta-box {

    background:

        linear-gradient(135deg,

            #ef4444,

            #d62828);

    border-radius: 40px;

    padding: 70px;

    position: relative;

    overflow: hidden;

    color: #fff;

    box-shadow:

        0 40px 90px rgba(239, 68, 68, .35);

}

.cta-box::before {

    content: "";

    position: absolute;

    right: -180px;

    top: -180px;

    width: 420px;

    height: 420px;

    background: rgba(255, 255, 255, .08);

    border-radius: 50%;

}

.cta-box h2 {

    color: #fff;

    font-size: 56px;

    margin-bottom: 20px;

}

.cta-box p {

    color: rgba(255, 255, 255, .88);

    font-size: 20px;

    max-width: 650px;

    margin-bottom: 35px;

}

.cta-box .btn-main {

    background: #fff;

    color: #111;

    box-shadow: none;

}

.cta-box .btn-main:hover {

    background: #111;

    color: #fff;

}

.trust-list {

    display: flex;

    gap: 18px;

    flex-wrap: wrap;

    margin-top: 35px;

}

.trust-list span {

    padding: 14px 24px;

    background: rgba(255, 255, 255, .12);

    backdrop-filter: blur(8px);

    border-radius: 100px;

    font-weight: 700;

}

/*================================================
CONTACT
================================================*/

.contact-section {

    padding: 140px 0;

    background: #ffffff;

    position: relative;

    overflow: hidden;

}

.contact-section::before {

    content: "";

    position: absolute;

    left: -220px;

    top: -220px;

    width: 500px;

    height: 500px;

    border-radius: 50%;

    background:

        radial-gradient(circle,

            rgba(239, 68, 68, .08),

            transparent);

}

.contact-info {

    padding-right: 60px;

}

.contact-info h2 {

    font-size: 54px;

    margin-bottom: 25px;

}

.contact-info p {

    font-size: 18px;

    margin-bottom: 40px;

    color: #666;

}

.contact-box {

    display: flex;

    align-items: center;

    gap: 18px;

    padding: 22px 28px;

    border-radius: 24px;

    background: #fff;

    margin-bottom: 18px;

    border: 1px solid #ececec;

    transition: .35s;

    box-shadow:

        0 12px 35px rgba(0, 0, 0, .04);

}

.contact-box:hover {

    transform: translateX(8px);

    box-shadow:

        0 25px 60px rgba(0, 0, 0, .08);

}

.contact-box a {

    color: #111;

    font-weight: 700;

}

.social-links {

    display: flex;

    gap: 14px;

    margin-top: 35px;

    flex-wrap: wrap;

}

.social-links a {

    padding: 14px 24px;

    border-radius: 60px;

    background: #f5f5f5;

    font-weight: 700;

    color: #222;

    transition: .35s;

}

.social-links a:hover {

    background: var(--primary);

    color: #fff;

}

.contact-form {

    background: #fff;

    padding: 45px;

    border-radius: 35px;

    box-shadow:

        0 25px 70px rgba(0, 0, 0, .08);

}

.contact-form input,

.contact-form textarea {

    width: 100%;

    border: none;

    background: #f8f9fb;

    padding: 20px 22px;

    border-radius: 18px;

    margin-bottom: 22px;

    font-size: 16px;

    transition: .35s;

}

.contact-form input:focus,

.contact-form textarea:focus {

    outline: none;

    background: #fff;

    box-shadow:

        0 0 0 4px rgba(239, 68, 68, .15);

}

.contact-form button {

    width: 100%;

    height: 64px;

    border: none;

    border-radius: 18px;

    background: var(--primary);

    color: #fff;

    font-size: 18px;

    font-weight: 800;

    transition: .35s;

}

.contact-form button:hover {

    background: #111;

}

footer {

    background: #0f172a;

    color: #fff;

    padding: 90px 0 35px;

    position: relative;

}

footer h5 {

    margin-bottom: 25px;

    font-size: 22px;

}

footer p,

footer li {

    color: rgba(255, 255, 255, .72);

    line-height: 2;

}

footer a {

    color: rgba(255, 255, 255, .72);

    transition: .35s;

}

footer a:hover {

    color: #fff;

    padding-left: 6px;

}

.footer-bottom {

    text-align: center;

    padding-top: 35px;

    color: rgba(255, 255, 255, .55);

    font-size: 15px;

}

footer hr {

    border-color: rgba(255, 255, 255, .08);

    margin: 45px 0;

}

.floating-whatsapp {

    position: fixed;

    right: 35px;

    bottom: 35px;

    width: 68px;

    height: 68px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #25d366;

    color: #fff;

    font-size: 30px;

    box-shadow:

        0 25px 60px rgba(37, 211, 102, .35);

    z-index: 999;

    transition: .35s;

}

.floating-whatsapp:hover {

    transform: translateY(-8px) scale(1.08);

    color: #fff;

}

.scroll-top {

    position: fixed;

    left: 35px;

    bottom: 35px;

    width: 58px;

    height: 58px;

    border-radius: 50%;

    background: #111;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #fff;

    opacity: 0;

    visibility: hidden;

    transition: .35s;

    z-index: 999;

}

.scroll-top.active {

    opacity: 1;

    visibility: visible;

}

.loader {

    position: fixed;

    inset: 0;

    background: #fff;

    display: flex;

    justify-content: center;

    align-items: center;

    z-index: 999999;

    transition: .6s;

}

.loader.hide {

    opacity: 0;

    visibility: hidden;

}

.loader-circle {

    width: 80px;

    height: 80px;

    border-radius: 50%;

    border: 6px solid #eee;

    border-top-color: var(--primary);

    animation: spin 1s linear infinite;

}

@keyframes spin {

    100% {

        transform: rotate(360deg);

    }

}

.radius-30 {

    border-radius: 30px;

}

.shadow-xl {

    box-shadow: 0 30px 80px rgba(0, 0, 0, .12);

}

.bg-light-gray {

    background: #fafafa;

}

.text-primary {

    color: var(--primary) !important;

}

/*=========================================
RESPONSIVE
=========================================*/

/* ==============================
   1400px
============================== */

@media (max-width:1400px) {

    .hero-content h1 {

        font-size: 62px;

    }

    .about-image img {

        height: 580px;

    }

    .section-title h2 {

        font-size: 44px;

    }

}

/* ==============================
       1200px
    ============================== */

@media (max-width:1200px) {

    .hero-content h1 {

        font-size: 54px;

    }

    .hero-content p {

        font-size: 18px;

    }

    .section-title h2 {

        font-size: 40px;

    }

    .about-image {

        padding-right: 20px;

    }

    .about-image img {

        height: 520px;

    }

    .experience-card {

        right: 20px;

        bottom: 20px;

        width: 210px;

        padding: 28px;

    }

    .experience-card h2 {

        font-size: 48px;

    }

    .contact-info {

        padding-right: 20px;

    }

    .cta-box {

        padding: 55px;

    }

}

/* ==============================
       992px
    ============================== */

@media (max-width:992px) {

    section {

        padding: 90px 0 !important;

    }

    .navbar {

        padding: 15px 0;

    }

    .hero {

        padding-top: 130px;

        text-align: center;

    }

    .hero-content {

        margin-bottom: 60px;

    }

    .hero-content h1 {

        font-size: 48px;

    }

    .hero-content p {

        margin: auto;

        margin-bottom: 35px;

    }

    .hero-buttons {

        justify-content: center;

    }

    .hero-card {

        position: relative;

        right: auto;

        bottom: auto;

        margin: auto;

        max-width: 420px;

    }

    .section-title {

        text-align: center;

        margin-bottom: 55px;

    }

    .section-title p {

        margin: auto;

    }

    .about-image {

        padding-right: 0;

        margin-bottom: 50px;

    }

    .about-image img {

        height: auto;

    }

    .experience-card {

        position: absolute;

        right: 25px;

        bottom: 25px;

    }

    .contact-info {

        margin-bottom: 50px;

        padding-right: 0;

    }

    .contact-form {

        margin-top: 20px;

    }

    .feature-box {

        margin-bottom: 25px;

    }

    .counter-box {

        margin-bottom: 25px;

    }

    .testimonial-card {

        margin-bottom: 25px;

    }

    footer {

        text-align: center;

    }

    footer .row>div {

        margin-bottom: 35px;

    }

    .social-links {

        justify-content: center;

    }

}

/* =========================================
   TABLET (768px)
========================================= */

@media (max-width:768px) {

    section {

        padding: 80px 0 !important;

    }

    .hero {

        min-height: auto;

        padding-top: 120px;

        padding-bottom: 80px;

    }

    .hero-content h1 {

        font-size: 40px;

        line-height: 1.2;

    }

    .hero-content p {

        font-size: 17px;

        line-height: 1.8;

    }

    .hero-buttons {

        flex-direction: column;

        gap: 15px;

    }

    .hero-buttons .btn-main,
    .hero-buttons .btn-outline {

        width: 100%;

        justify-content: center;

    }

    .hero-card {

        max-width: 100%;

        margin-top: 35px;

    }

    .section-title h2 {

        font-size: 34px;

    }

    .section-title p {

        font-size: 16px;

    }

    .about-image img {

        border-radius: 24px;

    }

    .experience-card {

        width: 180px;

        padding: 22px;

    }

    .experience-card h2 {

        font-size: 42px;

    }

    .feature-box {

        padding: 20px;

    }

    .step-card {

        padding: 35px 25px;

    }

    .cta-box {

        padding: 40px 30px;

        text-align: center;

    }

    .cta-box h2 {

        font-size: 38px;

    }

    .cta-box p {

        font-size: 17px;

        margin-left: auto;

        margin-right: auto;

    }

    .contact-form {

        padding: 30px;

    }

    .contact-info h2 {

        font-size: 40px;

    }

    .gallery-grid {

        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 18px;

    }

    .gallery-item {

        grid-column: auto !important;

        height: 240px !important;

    }

    .fleet-card {

        height: 380px;

    }

    .fleet-info h4 {

        font-size: 24px;

    }

}

/* =========================================
   MOBILE (576px)
========================================= */

@media (max-width:576px) {

    .navbar-brand img {

        max-height: 48px;

    }

    .hero {

        padding-top: 105px;

    }

    .hero-content h1 {

        font-size: 32px;

    }

    .hero-content p {

        font-size: 16px;

    }

    .section-title h2 {

        font-size: 28px;

    }

    .btn-main,
    .btn-outline {

        width: 100%;

        height: 56px;

        font-size: 15px;

    }

    .hero-badge {

        font-size: 13px;

        padding: 10px 18px;

    }

    .hero-card {

        padding: 22px;

    }

    .hero-card h4 {

        font-size: 18px;

    }

    .feature-box {

        flex-direction: column;

        text-align: center;

    }

    .feature-icon {

        margin: auto;

    }

    .step-icon {

        width: 70px;

        height: 70px;

        font-size: 30px;

    }

    .step-number {

        font-size: 46px;

    }

    .counter-box {

        padding: 35px 20px;

    }

    .counter-box h2 {

        font-size: 46px;

    }

    .testimonial-card {

        padding: 28px;

    }

    .author {

        flex-direction: column;

        text-align: center;

    }

    .cta-box {

        padding: 30px 20px;

        border-radius: 28px;

    }

    .cta-box h2 {

        font-size: 30px;

    }

    .contact-form {

        padding: 22px;

    }

    .contact-box {

        flex-direction: column;

        text-align: center;

    }

    .gallery-grid {

        grid-template-columns: 1fr;

    }

    .gallery-item {

        height: 240px !important;

    }

    .fleet-card {

        height: 320px;

    }

    .fleet-info {

        left: 20px;

        bottom: 20px;

    }

    .fleet-info h4 {

        font-size: 20px;

    }

    footer {

        padding-top: 70px;

    }

}

/* =========================================
   EXTRA SMALL (420px)
========================================= */

@media (max-width:420px) {

    .hero-content h1 {

        font-size: 28px;

    }

    .section-title h2 {

        font-size: 24px;

    }

    .hero-card {

        padding: 18px;

    }

    .experience-card {

        display: none;

    }

    .cta-box h2 {

        font-size: 26px;

    }

    .contact-info h2 {

        font-size: 30px;

    }

    .floating-whatsapp {

        right: 20px;

        bottom: 20px;

        width: 58px;

        height: 58px;

        font-size: 24px;

    }

    .scroll-top {

        left: 20px;

        bottom: 20px;

        width: 50px;

        height: 50px;

    }

}

@media (max-width:992px) {

    .navbar-collapse {

        background: #ffffff;

        margin-top: 15px;

        padding: 20px;

        border-radius: 20px;

        box-shadow: 0 20px 50px rgba(0, 0, 0, .08);

    }

    .navbar-nav {

        gap: 10px;

    }

    .navbar-nav .nav-link {

        padding: 12px 0;

    }

    .header-buttons {

        margin-top: 20px;

        display: flex;

        flex-direction: column;

        gap: 12px;

    }

    .header-buttons a {

        width: 100%;

        justify-content: center;

    }

}

/* Performance optimization */
.feature-box,
.service-card,
.fleet-card,
.testimonial-card,
.counter-box{
will-change: transform;
transform: translateZ(0);
backface-visibility:hidden;
}


.coverage-list{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:15px;
    margin-top:35px;
}

.coverage-item{
    display:flex;
    align-items:center;
    gap:12px;
    padding:15px 18px;
    background:#fff;
    border:1px solid #ececec;
    border-radius:14px;
    font-size:17px;
    font-weight:600;
    color:#1f2937;
    transition:.35s;
    box-shadow:0 5px 18px rgba(0,0,0,.05);
}

.coverage-item i{
    width:38px;
    height:38px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#ff4d30;
    color:#fff;
    border-radius:50%;
    font-size:15px;
    transition:.35s;
}

.coverage-item:hover{
    transform:translateY(-6px);
    border-color:#ff4d30;
    box-shadow:0 18px 40px rgba(255,77,48,.18);
}

.coverage-item:hover i{
    transform:scale(1.12) rotate(-10deg);
    background:#111827;
}

#header {
    background: #fff;
    padding: 10px 0;
    box-shadow: 0 15px 45px rgba(0, 0, 0, .05);
}
.nav-link {
    color:#212529;  
}

.scroll-down
 {
    bottom: 105px;
 }