*{
    margin: 0;
    padding:0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Prevent global resets from breaking Google Places dropdown */
.pac-container, .pac-container * {
    box-sizing: content-box;
    font-family: Arial, sans-serif !important;
}
.pac-container {
    z-index: 10000 !important;
}

body{
    overflow-x: hidden;
}

/* Splash Screen */
.intro{
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    transition: 1.5s;
    background-image: url(Assets/Splash\ Background.png);
}

.logo-header{
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.logo{
    position: relative;
    opacity: 0;
    width: 607px;
    height: 246px; 

}
.logo.active{
    bottom: 0;
    opacity: 1;
    transition: ease-in-out 1s;
    transition-delay: 800;
}

.sticky__toolbar{
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* ===================== MOBILE SCROLL-REVEAL NAVBAR ===================== */
/* Logo inside hero — desktop hidden, mobile/tablet shown */
.hero__intro-logo {
    display: none;
}

@media (max-width: 1024px) {

    /* Navbar fixed + off-screen on tablet/mobile so hero fills full viewport */
    #stickyToolbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        transform: translateY(-100%);
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
    }

    /* Slides down when user scrolls */
    #stickyToolbar.nav-scrolled {
        transform: translateY(0);
    }

    /* Logo above hero text — tablet and mobile */
    .hero__intro-logo {
        display: block;
        width: 160px;
        margin-bottom: 8px;
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    /* Fades out as navbar comes in */
    .hero__intro-logo.logo-hidden {
        opacity: 0;
        transform: translateY(-8px);
    }
}
/* ===================================================================== */

/* Infobar */
.infobar{
    background: var(--unnamed-color-092871) 0% 0% no-repeat padding-box;
    background: #092871 0% 0% no-repeat padding-box;
    opacity: 1;
    height: 50px;
    width: 100 vw;
    z-index: 998;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1 rem;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.infobar__container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
    z-index: 1;
    width: 100%;
    max-width: 85vw;
    margin: 0 auto;
    padding: 0 0;
}

.infobar__container > :first-child,
.infobar__container > :last-child{
    flex: 1;
}

.infobar__container > :last-child{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}


.infobar__links{
    color: #FFFFFF;
    display: flex;
    align-items: center;
    width: auto;
    text-decoration: none;
    height: 100%;
}

.infobar__login{
    color: #FFFFFF;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.infobar__login:hover{
    color: #ED4615;
}

.contact__details{
    color: #FFFFFF;
    display: flex;
    align-items: center;
    width: auto;
    text-decoration: none;
    height: 100%;
}

.contact__phone{
    display: flex;
    align-items: center;
}

/* iOS auto-detected phone links — kill Safari blue, keep tappable */
a[x-apple-data-detectors] {
    color: inherit !important;
    -webkit-text-fill-color: inherit !important;
    text-decoration: none !important;
}

/* Explicit tel links — no underline, colour set per element via CSS or inline */
a[href^="tel"] {
    text-decoration: none;
    pointer-events: auto;
}

.contact__phone a {
    color: inherit;
    -webkit-text-fill-color: inherit;
    text-decoration: none;
}

.contact__email{
    display: flex;
    align-items: center;
}

.socials{
    display: flex;
    align-items: center;
}


/* Navbar */
.navbar{
    height: 100px;
    width: 100vw;
    background: var(--unnamed-color-ffffff) 0% 0% no-repeat padding-box;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 8px 30px #0000001A;
    opacity: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9 rem;
    z-index: 996;
}


.navbar__container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    z-index: 1;
    width: 100%;
    max-width: 85vw;
    margin: 0 auto;
    padding: 0 0;
}

#navbar__logo{
    object-fit: contain;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 2rem;
}

.navbar__menu{
    width: 50vw;
    display:flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    margin-top: 10px;
}

.navbar_item{
    height: 100px;
}

.navbar__links{
    color: #092871;
    display: inline-flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 4px;
    width: auto;
    white-space: nowrap;
    text-decoration: none;
    height: 100%;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: semi-bold;
    font-style: normal;
    transition: color 0.3s ease;
}

.navbar__links::after{
    content: '';
    display: block;
    width: 100%;
    height: 11px;
    background-image: url(Assets/ECG.svg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.navbar__links:hover,
.navbar__links.active{
    color: #ed4615;
}

.navbar__links.active::after{
    opacity: 1;
}

/* Toggle Menu

@media screen and (max-width: 1250px) {
    .navbar__container{
        display: flex;
        justify-content: space-between;
        height: 80px;
        z-index: 1;
        max-width: 1250px;
        padding: 0;
    }

    .navbar__menu{
        display: grid;
        grid-template-columns: auto;
        margin: 0;
        width: 100%;
        position: absolute;
        top: -1000px;
        opacity: 1;
        transition: all 0.5 ease;
        z-index: -1;
    }

    .navbar__menu.active{
        background: #131313;
        top:100%;
        opacity: 1;
        transition: all 0.5 ease;
        z-index: 99;
        height: 60vh;
        font-size: 1.6rem;
    }

    #navbar__logo{
        padding-left: 25px;
    }

    .navbar__toggle .bar{
        width: 25px;
        height: 3px;
        margin: 5px auto;
        transition: all 0.3s ease-in-out;
        background: #fff;
    }

    .navbar__item {
        width: 100%;
    }

    .navbar__links{
        text-align: center;
        padding: 2rem;
        width: 100%;
        display: table;
    }

    #mobile-menu{
        position:absolute;
        top: 20%;
        right: 5%;
        transform: translate(5%, 20%);
    }

    .navbar__toggle .bar{
        display: block;
        cursor: pointer;
    }

}

*/

/* Hero */
/* ── Hero ── */
.hero{
    width: 100vw;
    min-height: 88vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero__slides{
    position: absolute;
    inset: 0;
}

.hero__slide{
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: 25% top;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero__slide--active{
    opacity: 1;
}

.hero__dots{
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.hero__dot{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    border: 2px solid rgba(255,255,255,0.7);
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease, transform 0.3s ease;
}

.hero__dot--active{
    background: #FFFFFF;
    transform: scale(1.3);
}

@media screen and (max-width: 768px) {
    .hero__dots { display: none; }
    .hero__slides { display: none; }
    .hero {
        background-image: url("Assets/Mask Group 2.jpg");
        background-size: cover;
    }
}

.hero__overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(9, 40, 113, 0.88) 0%,
        rgba(9, 40, 113, 0.70) 50%,
        rgba(9, 40, 113, 0.25) 100%
    );
}

.hero__content{
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2.2vw;
    padding: 6vw 4vw 6vw 7.7vw;
    max-width: 60%;
}

.hero__badge{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(237, 70, 21, 0.8);
    border-radius: 50px;
    padding: 6px 16px;
    width: fit-content;
    font: normal normal 700 1vw/1.4 Poppins;
    color: #FFFFFF;
    letter-spacing: 2px;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
    cursor: default;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.hero__badge svg {
    color: #ED4615;
    transition: color 0.3s ease;
}

.hero__badge:hover {
    background: #ED4615;
    border-color: #ED4615;
}

.hero__badge:hover svg {
    color: #FFFFFF;
}

.hero__headline{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5vw;
}

.hero__title{
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
}

.hero__title--accent{
    font: normal normal 800 2.2vw/1.1 Poppins;
    color: #ED4615;
    letter-spacing: 0px;
}

.hero__title--main{
    font: normal normal 800 4.2vw/1.05 Poppins;
    color: #FFFFFF;
    letter-spacing: -0.5px;
}

.hero__sub{
    font: normal normal 400 1.05vw/1.7 Poppins;
    color: rgba(255, 255, 255, 0.85);
    max-width: 85%;
    margin: 0;
}

.hero__actions{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1.5vw;
}

.hero__cta{
    padding: 0 6vw;
    height: 52px;
    background: #ED4615;
    border-radius: 6px;
    color: #FFFFFF;
    font: normal normal 800 0.9vw/1 Poppins;
    letter-spacing: 1.5px;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
    white-space: nowrap;
}

.hero__cta:hover{
    background: #c8370c;
}

.hero__call__btn{
    display: none;
}

.hero__stats{
    display: flex;
    align-items: center;
    gap: 2vw;
    padding-top: 1vw;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    width: 100%;
    justify-content: flex-start;
}

.hero__stat{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
}

.hero__stat__number{
    font: normal normal 800 1.5vw/1.1 Poppins;
    color: #FFFFFF;
}

.hero__stat__label{
    font: normal normal 400 0.75vw/1.3 Poppins;
    color: rgba(255, 255, 255, 0.70);
}

.hero__stat__divider{
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.30);
}

.hero__scroll-hint {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    opacity: 0.6;
}

.hero__scroll-hint__text {
    font: normal normal 400 0.75vw/1 Poppins;
    color: #ffffff;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero__scroll-hint__arrow {
    animation: scrollBounce 1.6s ease-in-out infinite;
    color: #ffffff;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(5px); }
}

.benefits__section{
    width: 85.42vw;
    opacity: 1;
    border-radius: 25px;
    margin-top: 7vh;
    margin-right: 7.7vw;
    margin-left: 7.7vw;
    margin-bottom: 7.7vh;
    background: linear-gradient(135deg, #f05822 0%, #ed4615 55%, #c8370c 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.5vw 4vw;
    gap: 2vw;
    position: relative;
    overflow: hidden;
}

.benefits__section::before,
.benefits__section::after {
    content: '';
    position: absolute;
    width: 52%;
    aspect-ratio: 1;
    background: rgba(254, 246, 235, 0.05);
    border-radius: 15%;
    transform: rotate(45deg);
    pointer-events: none;
}

.benefits__section::before {
    right: -18%;
    top: -160%;
}

.benefits__section::after {
    right: -6%;
    top: -100%;
}

.benefits__header{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.benefits__header svg {
    width: 1.6vw;
    height: 1.6vw;
}

.benefits__title{
    text-align: center;
    font: normal normal 300 3vw/1.3 Poppins;
    color: #FEF6EB;
    letter-spacing: 0px;
}

.benefits__subtitle{
    text-align: center;
    font: normal normal 400 1.3vw/1.5 Poppins;
    color: #FEF6EB;
    opacity: 0.85;
    letter-spacing: 0px;
}

.benefits__info{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 3vw;
    position: relative;
    z-index: 1;
    width: 100%;
}

.expert__card, .safety__card, .timely__card{
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.benefits__icon{
    width: 3vw;
    height: 3vw;
    object-fit: contain;
    margin-bottom: 4px;
}

.benefits__headline{
    text-align: left;
    font: normal normal bold 1.3vw/1.5 Poppins;
    letter-spacing: 0px;
    color: #FFFFFF;
    opacity: 1;
}

.benefits__description{
    text-align: left;
    font: normal normal normal 0.95vw/1.6 Poppins;
    letter-spacing: 0px;
    color: #FFFFFF;
    opacity: 1;
}

.introduction__section{
    width: 85.42vw;
    height: 75.65vh;
    margin-right: 7.7vw;
    margin-left: 7.7vw;
    margin-bottom: 7vh;
    display: flex;
    justify-content:space-between;
    align-items: center;
}

.ambulance__image{
    width: 33.18vw;
    height: 74.65vh;
    border-radius: 20px;
}

.introduction__description{
    width: 49.48vw;
    height: 67.31vh;
    border-left: 7px solid #092871;
    opacity: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding-top: 6.3vw;
    padding-bottom: 6.0vw;
}

.introduction__description img {
    height: 18px;
    width: 20px;
    margin-left: 4.3vw;
    margin-bottom: 10px;
}

.section__title{
    text-align: left;
    font: normal normal 300 2.53vw/0.3125vw Poppins;
    letter-spacing: 0px;
    color: #171616;
    opacity: 1;
    margin-left: 4.3vw;
    margin-bottom: 10px;
}

.highlight__word{
    color: #ED4615;
}

.first__line{
    overflow-wrap: break-word;
    text-align: left;
    font: normal normal 600 2.58vw/3.00vw Poppins;
    letter-spacing: 0px;
    opacity: 1;
    margin-left: 4.3vw;
}
.intro__detail{
    text-align: left;
    font: normal normal normal 1.115vw/1.63vw Poppins;
    letter-spacing: 0px;
    color: #000000;
    opacity: 1;
    margin-left: 4.3vw;
}

.introduction__description button{
    width: 22.39vw;
    height: 7.5vh;
    background: #ED4615 0% 0% no-repeat padding-box;
    border-radius: 6px;
    opacity: 1;
    text-align: center;
    font: normal normal bold 1.345vw/0.36vw Montserrat;
    letter-spacing: 0px;
    color: #FFFFFF;
    opacity: 1;
    border: none;
    margin-left: 4.3vw;
    cursor: pointer;
}

.services__section{
    width: 85.42vw;
    height: 74.4vh;
    margin-right: 7.7vw;
    margin-left: 7.7vw;
    margin-bottom: 7vh;
    background: linear-gradient(315deg, #0e3899 0%, #092871 55%, #061a50 100%);
    border-radius: 30px;
    opacity: 1;
    padding-top: 3.2vw;
    padding-bottom: 3.2vw;
    padding-left: 6.4vw;
    padding-right: 6.4vw;
}

.services__container{
    height:100%;
    width:100%;
    display:flex;
    flex-direction: column;
    align-items: center;
}

.services__container > svg {
    width: 1.6vw;
    height: 1.6vw;
}

.services__container h2{
    margin-top: 16px;
    text-align: center;
    font: normal normal 300 3vw/1.3 Poppins;
    letter-spacing: 0px;
    color: #FEF6EB;
    opacity: 1;
    margin-bottom: 20px;
}

.services__card{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.services__card img{
    width: 43.12vw;
    height: 44.07vh;
    object-fit: cover;
}

.services__list{
    width: 29.58vw;
    height: 44.07vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.services__details{
    list-style-type: none;
    font: normal normal normal 1.05vw/1.6 Poppins;
    letter-spacing: 0px;
    color: #FEF6EB;
    opacity: 1;
    height: 33.07vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 10px;
    list-style-image: url(Assets/Ellipse\ 5.png);
}


.services__list button{
    width: 22.39vw;
    height: 52px;
    background: #ED4615 0% 0% no-repeat padding-box;
    border-radius: 11px;
    text-align: center;
    font: normal normal bold 1vw/1 Montserrat;
    letter-spacing: 1.5px;
    color: #FFFFFF;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
}

.services__list button:hover {
    background: #c8370c;
}

.fleet__section{
    width: 85.42vw;
    margin-left: 7.7vw;
    margin-right: 7.7vw;
    margin-bottom: 7vh;
    min-height: 50vh;
    display: flex;
    justify-content: space-between;
    border-radius: 30px;
    overflow: hidden;
}

.fleet__banner{
    width: 50%;
    min-height: 50vh;
    background: #092871;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4vw 5vw;
}

.fleet__banner__content{
    display: flex;
    flex-direction: column;
    gap: 1.5vw;
}

.fleet__title{
    text-align: left;
    font: normal normal 300 2.5vw/3vw Poppins;
    letter-spacing: 0px;
    color: #FEF6EB;
    opacity: 1;
    margin-top: 15px;
}

.fleet__subtitle{
    text-align: left;
    font: normal normal 600 1.5vw/2vw Poppins;
    letter-spacing: 0px;
    color: #ED4615;
    opacity: 1;
}

.fleet__description{
    text-align: left;
    font: normal normal normal 0.9vw/1.5vw Poppins;
    letter-spacing: 0px;
    color: #FFFFFF;
    opacity: 0.9;
}

.fleet__stats{
    display: flex;
    gap: 3vw;
    margin-top: 1vw;
}

.fleet__stat{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fleet__stat__number{
    font: normal normal 800 2.2vw/2.5vw Poppins;
    color: #ED4615;
}

.fleet__stat__label{
    font: normal normal 400 0.85vw/1.2vw Poppins;
    color: #FFFFFF;
    opacity: 0.8;
}

.fleet__image{
    width: 50%;
    min-height: 50vh;
    background: #171616;
    overflow: hidden;
}

.fleet__image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.process__section{
    width: 85.42vw;
    margin-left: 7.7vw;
    margin-right: 7.7vw;
    margin-bottom: 7vh;
    background: #ED4615;
    opacity: 1;
    display: flex;
    align-items: center;
    border-radius: 19px;
    padding: 4vw 5vw;
}

.process__container{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.process__header{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.process__icon{
    height: 1.6vw;
    width: 1.6vw;
}

.process__title{
    text-align: center;
    font: normal normal 300 3vw/1.3 Poppins;
    letter-spacing: 0px;
    color: #FEF6EB;
}

.process__subtitle{
    text-align: center;
    font: normal normal 400 1.1vw/1.5 Poppins;
    letter-spacing: 0px;
    color: #FEF6EB;
    opacity: 0.85;
}

.process__details{
    display: flex;
    width: 100%;
    justify-content: space-evenly;
    align-items: flex-start;
}

.process__details img{
    height: 72px;
    width: 72px;
    object-fit: contain;
}

.process__details h3{
    text-align: center;
    font: normal normal 600 1.3vw/1.4 Poppins;
    letter-spacing: 0px;
    color: #FFFFFF;
}

.process__details p{
    text-align: center;
    font: normal normal normal 0.95vw/1.65 Poppins;
    letter-spacing: 0px;
    color: #FFFFFF;
    opacity: 0.9;
}

.step__details{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 28%;
    padding: 0 1.5vw;
}

.card__border{
    border: none;
}

.step__details__text{
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
}


.testimonials__section{
    width: 85.42vw;
    opacity: 1;
    margin-top: 7vh;
    margin-right: 7.7vw;
    margin-left: 7.7vw;
    margin-bottom: 7vh;
    background: linear-gradient(135deg, #0e3899 0%, #092871 55%, #061a50 100%);
    border-radius: 19px;
    padding: 4vw 5vw;
}

.testimonials__container{
    display: flex;
    flex-direction: column;
    gap: 2.5vw;
}

.testimonials__header{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.testimonials__title{
    text-align: center;
    font: normal normal 300 2.5vw/3vw Poppins;
    color: #FEF6EB;
    letter-spacing: 0px;
}

.testimonials__cards{
    display: flex;
    gap: 2vw;
    justify-content: space-between;
}

.testimonial__card{
    background: #FFFFFF10;
    border: 1px solid #FFFFFF20;
    border-radius: 12px;
    padding: 2vw;
    width: 31%;
    display: flex;
    flex-direction: column;
    gap: 1.2vw;
    backdrop-filter: blur(4px);
}

.testimonial__stars{
    color: #ED4615;
    font-size: 1.2vw;
    letter-spacing: 3px;
}

.testimonial__text{
    font: normal normal normal 0.85vw/1.45vw Poppins;
    color: #FFFFFF;
    opacity: 0.9;
    flex: 1;
}

.testimonial__author{
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 1vw;
    border-top: 1px solid #FFFFFF20;
}

.testimonial__avatar{
    width: 2.5vw;
    height: 2.5vw;
    border-radius: 50%;
    background: #ED4615;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font: normal normal 700 0.8vw/1vw Poppins;
    flex-shrink: 0;
}

.testimonial__name{
    font: normal normal 600 0.85vw/1.2vw Poppins;
    color: #FFFFFF;
}

.testimonial__role{
    font: normal normal 400 0.75vw/1vw Poppins;
    color: #FFFFFF80;
}

.contact__section{
    width: 85.42vw;
    opacity: 1;
    margin-top: 7vh;
    margin-right: 7.7vw;
    margin-left: 7.7vw;
    margin-bottom: 7vh;
    display: flex;
    gap: 5vw;
    align-items: flex-start;
}

.contact__form__wrapper{
    flex: 1.4;
    display: flex;
    flex-direction: column;
    gap: 2vw;
}

.contact__form__header{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact__title{
    font: normal normal 300 2.5vw/3vw Poppins;
    color: #171616;
    letter-spacing: 0px;
}

.contact__subtitle{
    font: normal normal normal 0.95vw/1.5vw Poppins;
    color: #555555;
}

.contact__success{
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 2vw 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    transition: opacity 0.5s ease;
}

.contact__success.visible{
    opacity: 1;
    pointer-events: auto;
    position: relative;
}

.contact__success__title{
    font: normal normal 600 1.4vw/1.5 Poppins;
    color: #092871;
}

.contact__success__body{
    font: normal normal normal 0.95vw/1.5 Poppins;
    color: #555555;
}

.contact__form{
    display: flex;
    flex-direction: column;
    gap: 1.2vw;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.form__row{
    display: flex;
    gap: 1.5vw;
}

.form__group{
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.form__group--full{
    width: 100%;
}

.form__group label{
    font: normal normal 600 0.85vw/1.2vw Poppins;
    color: #092871;
}

.form__group input,
.form__group textarea{
    width: 100%;
    padding: 0.8vw 1vw;
    border: 1.5px solid #CCCCCC;
    border-radius: 6px;
    font: normal normal normal 0.85vw/1.2vw Poppins;
    color: #171616;
    outline: none;
    transition: border-color 0.3s ease;
    resize: none;
}

.form__group input:focus,
.form__group textarea:focus{
    border-color: #092871;
}

.form__group input.invalid{
    border-color: #ED4615;
}

.form__error{
    display: none;
    font: normal normal 500 11px/1.4 Poppins;
    color: #ED4615;
}

.form__group input.invalid ~ .form__error{
    display: block;
}

.contact__submit{
    width: 100%;
    padding: 1vw;
    background: #ED4615;
    color: #FFFFFF;
    border: none;
    border-radius: 6px;
    font: normal normal 700 1vw/1.2vw Montserrat;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact__submit:hover{
    background: #c73a10;
}

.contact__info{
    flex: 1;
    background: #092871;
    border-radius: 16px;
    padding: 3vw;
    display: flex;
    flex-direction: column;
    gap: 2vw;
    align-self: stretch;
    position: relative;
    overflow: hidden;
}

.contact__map__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.contact__map__bg iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.contact__map__tint {
    position: absolute;
    inset: 0;
    background: rgba(9, 40, 113, 0.91);
}

/* Lift all card content above the map */
.contact__info > *:not(.contact__map__bg) {
    position: relative;
    z-index: 1;
}

.contact__info__title{
    font: normal normal 600 1.5vw/2vw Poppins;
    color: #FEF6EB;
}

.contact__info__item{
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact__info__item svg{
    flex-shrink: 0;
    margin-top: 2px;
}

.contact__info__label{
    font: normal normal 600 0.8vw/1.1vw Poppins;
    color: #ED4615;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact__info__value{
    font: normal normal normal 0.9vw/1.4vw Poppins;
    color: #FFFFFF;
    opacity: 0.9;
}

.contact__socials{
    display: flex;
    gap: 1.2vw;
    margin-top: auto;
}

.contact__social__link{
    display: flex;
    align-items: center;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.contact__social__link:hover{
    opacity: 1;
}

.footer__container{
    width: 100vw;
    background: #092871;
    padding: 5vw 7.7vw 0;
}

.footer__content{
    display: flex;
    gap: 4vw;
    padding-bottom: 4vw;
    border-bottom: 1px solid #FFFFFF20;
}

.footer__brand{
    flex: 1.5;
    display: flex;
    flex-direction: column;
    gap: 1.5vw;
}

.footer__logo{
    width: 160px;
}

.footer__tagline{
    font: normal normal normal 0.85vw/1.4vw Poppins;
    color: #FFFFFF;
    opacity: 0.75;
}

.footer__social__links{
    display: flex;
    gap: 1.2vw;
    align-items: center;
}

.footer__social__links a{
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer__social__links a:hover{
    opacity: 1;
}

.footer__nav,
.footer__services,
.footer__contact{
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.2vw;
}

.footer__heading{
    font: normal normal 600 1vw/1.3vw Poppins;
    color: #FFFFFF;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding-bottom: 0.5vw;
    border-bottom: 2px solid #ED4615;
    display: inline-block;
}

.footer__links{
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7vw;
}

.footer__links li,
.footer__links a{
    font: normal normal normal 0.85vw/1.2vw Poppins;
    color: #FFFFFF;
    opacity: 0.75;
    text-decoration: none;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.footer__links a:hover{
    opacity: 1;
    color: #ED4615;
}

.footer__contact__item{
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer__contact__item span,
.footer__contact__item a{
    font: normal normal normal 0.85vw/1.2vw Poppins;
    color: #FFFFFF;
    opacity: 0.75;
    text-decoration: none;
}

.footer__cta{
    display: inline-block;
    margin-top: 0.5vw;
    padding: 0.8vw 1.5vw;
    background: #ED4615;
    color: #FFFFFF;
    border-radius: 6px;
    font: normal normal 700 0.85vw/1vw Montserrat;
    letter-spacing: 1px;
    text-decoration: none;
    text-align: center;
    transition: background 0.3s ease;
}

.footer__cta:hover{
    background: #c73a10;
}

.footer__bottom{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5vw 0;
}

.footer__bottom p{
    font: normal normal normal 0.8vw/1.2vw Poppins;
    color: #FFFFFF;
    opacity: 0.6;
}

.footer__legal{
    display: flex;
    gap: 1vw;
    align-items: center;
}

.footer__legal a{
    font: normal normal normal 0.8vw/1.2vw Poppins;
    color: #FFFFFF;
    opacity: 0.6;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer__legal a:hover{
    opacity: 1;
}

.footer__legal span{
    color: #FFFFFF;
    opacity: 0.4;
}

/* scroll-margin-top is set dynamically in app.js based on actual toolbar height */

/* Booking info block below hero CTA */
.booking__info {
    margin-top: 10px;
}

/* =========================================
   HAMBURGER TOGGLE (hidden on desktop)
   ========================================= */

.navbar__toggle{
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 8px;
    z-index: 10;
}

.navbar__toggle .bar{
    width: 25px;
    height: 3px;
    background: #092871;
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
    display: block;
}

/* Animate bars into X when active */
.navbar__toggle.active .bar:nth-child(1){
    transform: translateY(8px) rotate(45deg);
}
.navbar__toggle.active .bar:nth-child(2){
    opacity: 0;
}
.navbar__toggle.active .bar:nth-child(3){
    transform: translateY(-8px) rotate(-45deg);
}

/* =========================================
   TABLET  (≤ 1024px)
   ========================================= */
@media screen and (max-width: 1024px) {

    /* --- Infobar --- */
    .infobar__container{
        max-width: 92vw;
    }
    .socials{
        display: none;
    }
    .contact__details p{
        font-size: 11px;
    }
    .infobar__links{
        font-size: 12px;
        display: none;
    }

    /* --- Navbar --- */
    .navbar{
        position: relative;
    }
    .navbar__container{
        max-width: 92vw;
    }
    .navbar__toggle{
        display: flex;
    }
    .navbar__menu{
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #FFFFFF;
        box-shadow: 0 8px 30px #0000001A;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.4s ease;
        margin-top: 0;
        padding: 0;
        z-index: 997;
        gap: 0;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .navbar__menu.active{
        max-height: 500px;
        padding: 10px 0 20px;
    }
    .navbar__item{
        width: 100%;
        height: auto;
    }
    .navbar__links{
        padding: 14px 7vw;
        width: 100%;
        height: auto;
        border-bottom: 1px solid #F0F0F0;
        font-size: 13px;
        display: block;
    }
    .navbar__links::after{
        display: none;
    }
    .navbar__links:hover,
    .navbar__links.active{
        color: #092871;
    }

    /* --- Hero --- */
    .hero{
        min-height: 80vh;
    }
    .hero__content{
        padding: 5vw 4vw 5vw 5vw;
        gap: 2vw;
        max-width: 70%;
    }
    .hero__badge{
        font-size: 10px;
        padding: 5px 14px;
    }
    .hero__title--accent{
        font-size: 1.6vw;
    }
    .hero__title--main{
        font-size: 4.8vw;
    }
    .hero__sub{
        font-size: 1.3vw;
        max-width: 100%;
    }
    .hero__cta{
        height: 46px;
        font-size: 11px;
        padding: 0 1.8vw;
    }
    .hero__call__btn{
        font-size: 11px;
        padding: 0 1.8vw;
        height: 46px;
    }
    .hero__stat__number{
        font-size: 1.6vw;
    }
    .hero__stat__label{
        font-size: 0.9vw;
    }

    .benefits__section{
        width: 92vw;
        height: auto;
        margin: 40px auto;
        padding: 30px 4vw;
        gap: 20px;
    }
    .benefits__header svg {
        width: 22px;
        height: 22px;
    }
    .benefits__title{
        font-size: 30px;
        line-height: 1.3;
    }
    .benefits__subtitle{
        font-size: 14px;
    }
    .benefits__info{
        width: 100%;
        gap: 20px;
        align-items: flex-start;
    }
    .expert__card, .safety__card, .timely__card{
        flex: 1;
        gap: 10px;
    }
    .benefits__icon{
        width: 44px;
        height: 44px;
    }
    .benefits__headline{
        font-size: 18px;
        line-height: 1.4;
    }
    .benefits__description{
        font-size: 13px;
        line-height: 1.6;
    }

    /* --- Introduction / About --- */
    .introduction__section{
        width: 92vw;
        height: auto;
        margin: 0 auto 40px;
        flex-direction: column;
        gap: 30px;
        align-items: stretch;
    }
    .ambulance__image{
        width: 100%;
        height: 50vw;
        object-fit: cover;
    }
    .introduction__description{
        width: 100%;
        height: auto;
        border-left: 5px solid #092871;
        padding: 24px 0 24px;
        gap: 20px;
    }
    .section__title{
        font-size: 22px;
        line-height: 30px;
        margin-left: 5vw;
    }
    .first__line{
        font-size: 24px;
        line-height: 32px;
        margin-left: 5vw;
    }
    .intro__detail{
        font-size: 14px;
        line-height: 22px;
        margin-left: 5vw;
    }
    .introduction__description button{
        width: auto;
        height: 52px;
        font-size: 14px;
        padding: 0 28px;
        margin-left: 5vw;
    }

    /* --- Services --- */
    .services__section{
        width: 92vw;
        height: auto;
        margin: 0 auto 40px;
        padding: 30px 5vw;
    }
    .services__container > svg {
        width: 22px;
        height: 22px;
    }
    .services__container h2{
        font-size: 30px;
        line-height: 1.3;
        margin-top: 12px;
        margin-bottom: 16px;
    }
    .services__card{
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
    .services__card img{
        width: 100%;
        height: 40vw;
    }
    .services__list{
        width: 100%;
        height: auto;
        gap: 20px;
    }
    .services__details{
        font-size: 16px;
        line-height: 1.6;
        height: auto;
        gap: 10px;
    }
    .services__list button{
        width: 100%;
        height: 52px;
        font-size: 15px;
        line-height: 1;
    }

    /* --- Fleet --- */
    .fleet__section{
        width: 92vw;
        margin-left: auto;
        margin-right: auto;
        flex-direction: column;
        min-height: auto;
        border-radius: 20px;
    }
    .fleet__banner{
        width: 100%;
        min-height: auto;
        padding: 40px 7vw;
    }
    .fleet__banner__content{
        gap: 16px;
    }
    .fleet__title{
        font-size: 28px;
        line-height: 36px;
    }
    .fleet__subtitle{
        font-size: 16px;
        line-height: 24px;
    }
    .fleet__description{
        font-size: 14px;
        line-height: 22px;
    }
    .fleet__stat__number{
        font-size: 28px;
        line-height: 34px;
    }
    .fleet__stat__label{
        font-size: 13px;
        line-height: 18px;
    }
    .fleet__image{
        width: 100%;
        min-height: 40vw;
    }

    /* --- Process / How It Works --- */
    .process__section{
        width: 92vw;
        margin-left: auto;
        margin-right: auto;
        border-radius: 14px;
        padding: 4vw 4vw;
    }
    .process__container{
        gap: 24px;
    }
    .process__icon{
        height: 22px;
        width: 22px;
    }
    .process__title{
        font-size: 30px;
        line-height: 1.3;
    }
    .process__subtitle{
        font-size: 14px;
        line-height: 1.5;
    }
    .process__details{
        gap: 16px;
    }
    .step__details{
        width: 30%;
        gap: 14px;
        padding: 0 1vw;
    }
    .step__details img{
        height: 56px;
        width: 56px;
        object-fit: contain;
    }
    .process__details h3{
        font-size: 18px;
        line-height: 1.4;
    }
    .process__details p{
        font-size: 13px;
        line-height: 1.6;
    }

    /* --- Testimonials --- */
    .testimonials__section{
        width: 92vw;
        margin: 40px auto;
        padding: 30px 4vw;
    }
    .testimonials__title{
        font-size: 26px;
        line-height: 34px;
    }
    .testimonials__cards{
        gap: 16px;
    }
    .testimonial__card{
        padding: 18px;
        gap: 12px;
    }
    .testimonial__stars{
        font-size: 14px;
    }
    .testimonial__text{
        font-size: 12px;
        line-height: 19px;
    }
    .testimonial__avatar{
        width: 36px;
        height: 36px;
        font-size: 12px;
    }
    .testimonial__name{
        font-size: 12px;
        line-height: 17px;
    }
    .testimonial__role{
        font-size: 11px;
        line-height: 15px;
    }

    /* --- Contact --- */
    .contact__section{
        width: 92vw;
        margin: 40px auto;
        flex-direction: column;
        gap: 30px;
    }
    .contact__title{
        font-size: 26px;
        line-height: 34px;
    }
    .contact__subtitle{
        font-size: 14px;
        line-height: 22px;
    }
    .form__group label{
        font-size: 13px;
        line-height: 20px;
    }
    .form__group input,
    .form__group textarea{
        padding: 12px 14px;
        font-size: 14px;
        line-height: 20px;
    }
    .contact__submit{
        height: 52px;
        padding: 0;
        font-size: 13px;
    }
    .contact__info{
        padding: 28px;
        gap: 20px;
    }
    .contact__info__title{
        font-size: 20px;
        line-height: 28px;
    }
    .contact__info__label{
        font-size: 11px;
        line-height: 16px;
    }
    .contact__info__value{
        font-size: 14px;
        line-height: 20px;
    }

    /* --- Footer --- */
    .footer__container{
        padding: 40px 4vw 0;
    }
    .footer__content{
        flex-wrap: wrap;
        gap: 32px;
    }
    .footer__brand{
        flex: 100%;
        gap: 16px;
    }
    .footer__tagline{
        font-size: 13px;
        line-height: 20px;
    }
    .footer__nav,
    .footer__services,
    .footer__contact{
        flex: 1;
        min-width: 160px;
        gap: 12px;
    }
    .footer__heading{
        font-size: 13px;
        line-height: 18px;
    }
    .footer__links li,
    .footer__links a{
        font-size: 13px;
        line-height: 20px;
    }
    .footer__contact__item span,
    .footer__contact__item a{
        font-size: 13px;
        line-height: 20px;
    }
    .footer__cta{
        font-size: 13px;
        height: 52px;
        padding: 0 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .footer__bottom{
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 20px 0;
    }
    .footer__bottom p,
    .footer__legal a{
        font-size: 12px;
        line-height: 18px;
    }

    .process__details{
        width: 100%;
    }
}

/* =========================================
   MOBILE  (≤ 768px)
   ========================================= */
@media screen and (max-width: 768px) {

    /* --- Infobar (hide on mobile — too cramped) --- */
    .infobar{
        display: none;
    }

    /* --- Navbar --- */
    .navbar{
        height: 70px;
    }
    .navbar__container{
        height: 70px;
        max-width: 92vw;
    }
    #navbar__logo img{
        width: 130px !important;
    }
    .navbar__menu{
        top: 70px;
    }

    /* --- Hero --- */
    .hero{
        height: 100svh;
        min-height: 100svh;
        background-position: center center;
        align-items: flex-start;
    }
    .hero__overlay{
        background: linear-gradient(
            to bottom,
            rgba(9, 40, 113, 0.92) 0%,
            rgba(9, 40, 113, 0.65) 50%,
            rgba(9, 40, 113, 0.30) 100%
        );
    }
    .hero__content{
        height: 100%;
        padding: 80px 6vw 80px;
        max-width: 100%;
        gap: 32px;
        align-items: center;
        text-align: center;
        justify-content: center;
    }
    .hero__badge{
        font-size: 9px;
        padding: 5px 12px;
        letter-spacing: 1.5px;
    }
    .hero__headline{
        gap: 4px;
        align-items: center;
    }
    .hero__title--accent{
        font-size: 14px;
        letter-spacing: 2px;
    }
    .hero__title--main{
        font-size: 36px;
        letter-spacing: -0.5px;
        line-height: 1.05;
    }
    .hero__sub{
        font-size: 13px;
        line-height: 1.7;
        max-width: 88%;
    }
    .hero__actions{
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        width: 100%;
    }
    .hero__cta{
        width: 100%;
        height: 52px;
        font-size: 13px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .hero__call__btn{
        width: 100%;
        height: 52px;
        font-size: 13px;
        padding: 0;
        justify-content: center;
    }
    .hero__stats{
        margin-top: 0;
        padding-top: 20px;
        border-top: 1px solid rgba(255,255,255,0.2);
        gap: 0;
        justify-content: space-between;
        width: 100%;
    }
    .hero__stat{
        align-items: center;
        flex: 1;
    }
    .hero__stat__number{
        font-size: 15px;
        text-align: center;
    }
    .hero__stat__label{
        font-size: 9px;
        text-align: center;
        line-height: 1.3;
    }
    .hero__stat__divider{
        height: 28px;
        align-self: center;
    }

    .benefits__section{
        width: 92vw;
        margin: 28px auto;
        padding: 28px 5vw;
        border-radius: 16px;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .benefits__section::before {
        width: 80%;
        right: -30%;
        top: -80%;
    }
    .benefits__section::after {
        width: 80%;
        right: -15%;
        top: -40%;
    }
    .benefits__header svg {
        width: 20px;
        height: 20px;
    }
    .benefits__title{
        font-size: 26px;
        line-height: 1.3;
    }
    .benefits__subtitle{
        font-size: 13px;
    }
    .benefits__info{
        width: 100%;
        flex-direction: column;
        gap: 24px;
    }
    .expert__card, .safety__card, .timely__card{
        flex: unset;
        width: 100%;
        gap: 8px;
    }
    .benefits__icon{
        width: 38px;
        height: 38px;
    }
    .benefits__headline{
        font-size: 18px;
        line-height: 1.4;
    }
    .benefits__description{
        font-size: 14px;
        line-height: 1.6;
    }

    /* --- Introduction / About --- */
    .introduction__section{
        width: 92vw;
        margin: 0 auto 32px;
        flex-direction: column;
        gap: 24px;
    }
    .ambulance__image{
        width: 100%;
        height: 55vw;
    }
    .introduction__description{
        padding: 20px 0;
        gap: 18px;
    }
    .section__title{
        font-size: 18px;
        line-height: 26px;
        margin-left: 5vw;
    }
    .first__line{
        font-size: 20px;
        line-height: 28px;
        margin-left: 5vw;
    }
    .intro__detail{
        font-size: 13px;
        line-height: 20px;
        margin-left: 5vw;
    }
    .introduction__description button{
        width: calc(100% - 10vw);
        margin-left: 5vw;
        height: 50px;
        font-size: 13px;
    }
    .introduction__description img{
        margin-left: 5vw;
    }

    /* --- Services --- */
    .services__section{
        width: 92vw;
        margin: 0 auto 32px;
        padding: 28px 5vw;
        border-radius: 20px;
    }
    .services__container > svg {
        width: 20px;
        height: 20px;
    }
    .services__container h2{
        font-size: 26px;
        line-height: 1.3;
        margin-top: 12px;
        margin-bottom: 16px;
    }
    .services__card{
        flex-direction: column;
        gap: 20px;
    }
    .services__card img{
        width: 100%;
        height: 50vw;
    }
    .services__list{
        width: 100%;
        height: auto;
        gap: 18px;
    }
    .services__details{
        font-size: 15px;
        line-height: 1.7;
        height: auto;
    }
    .services__list button{
        width: 100%;
        height: 50px;
        font-size: 14px;
        line-height: 1;
    }

    /* --- Fleet --- */
    .fleet__section{
        width: 92vw;
        margin-left: auto;
        margin-right: auto;
        flex-direction: column;
        margin-bottom: 32px;
        border-radius: 16px;
    }
    .fleet__banner{
        padding: 36px 6vw;
    }
    .fleet__title{
        font-size: 24px;
        line-height: 32px;
    }
    .fleet__subtitle{
        font-size: 15px;
        line-height: 22px;
    }
    .fleet__description{
        font-size: 13px;
        line-height: 21px;
    }
    .fleet__stats{
        gap: 24px;
    }
    .fleet__stat__number{
        font-size: 26px;
        line-height: 32px;
    }
    .fleet__stat__label{
        font-size: 12px;
    }
    .fleet__image{
        min-height: 55vw;
    }

    /* --- Process / How It Works --- */
    .process__section{
        width: 92vw;
        margin-left: auto;
        margin-right: auto;
        border-radius: 12px;
        padding: 5vw 5vw;
    }
    .process__container{
        gap: 20px;
    }
    .process__icon{
        height: 20px;
        width: 20px;
    }
    .process__title{
        font-size: 26px;
        line-height: 1.3;
    }
    .process__subtitle{
        font-size: 13px;
        line-height: 1.5;
    }
    .process__details{
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
    .step__details{
        width: 100%;
        flex-direction: row;
        align-items: flex-start;
        gap: 20px;
        padding: 22px 0;
        border-bottom: 1px solid #FFFFFF30;
    }
    .step__details:last-child{
        border-bottom: none;
    }
    .step__details img{
        height: 48px;
        width: 48px;
        object-fit: contain;
        flex-shrink: 0;
    }
    .step__details__text{
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    .process__details h3{
        font-size: 18px;
        line-height: 1.3;
        text-align: left;
    }
    .process__details p{
        font-size: 14px;
        line-height: 1.6;
        text-align: left;
    }

    /* --- Testimonials --- */
    .testimonials__section{
        width: 92vw;
        margin: 28px auto;
        padding: 28px 5vw;
        border-radius: 14px;
    }
    .testimonials__title{
        font-size: 22px;
        line-height: 30px;
    }
    .testimonials__cards{
        flex-direction: column;
        gap: 16px;
    }
    .testimonial__card{
        width: 100%;
        padding: 20px;
        gap: 12px;
    }
    .testimonial__stars{
        font-size: 18px;
    }
    .testimonial__text{
        font-size: 14px;
        line-height: 22px;
    }
    .testimonial__avatar{
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    .testimonial__name{
        font-size: 14px;
        line-height: 20px;
    }
    .testimonial__role{
        font-size: 12px;
        line-height: 17px;
    }

    /* --- Contact --- */
    .contact__section{
        width: 92vw;
        margin: 28px auto;
        flex-direction: column;
        gap: 24px;
    }
    .contact__form__wrapper{
        gap: 20px;
    }
    .contact__title{
        font-size: 22px;
        line-height: 30px;
    }
    .contact__subtitle{
        font-size: 13px;
        line-height: 20px;
    }
    .form__row{
        flex-direction: column;
        gap: 14px;
    }
    .form__group label{
        font-size: 13px;
    }
    .form__group input,
    .form__group textarea{
        padding: 12px 14px;
        font-size: 14px;
        line-height: 20px;
    }
    .contact__submit{
        height: 52px;
        padding: 0;
        font-size: 13px;
        letter-spacing: 1px;
    }
    .contact__info{
        padding: 24px;
        border-radius: 12px;
        gap: 18px;
    }
    .contact__info__title{
        font-size: 18px;
        line-height: 26px;
    }
    .contact__info__label{
        font-size: 11px;
    }
    .contact__info__value{
        font-size: 14px;
        line-height: 20px;
    }
    .contact__socials{
        gap: 16px;
    }

    /* --- Footer --- */
    .footer__container{
        padding: 36px 5vw 0;
    }
    .footer__content{
        flex-direction: column;
        gap: 28px;
    }
    .footer__brand{
        gap: 14px;
    }
    .footer__logo{
        width: 130px;
    }
    .footer__tagline{
        font-size: 13px;
        line-height: 20px;
    }
    .footer__nav,
    .footer__services,
    .footer__contact{
        display: none;
    }
    .footer__social__links{
        display: none;
    }
    .footer__brand{
        gap: 14px;
    }
    .footer__content{
        gap: 20px;
    }
    .footer__nav,
    .footer__services{
        gap: 10px;
    }
    .footer__heading{
        font-size: 13px;
    }
    .footer__links{
        gap: 8px;
    }
    .footer__links li,
    .footer__links a{
        font-size: 13px;
        line-height: 20px;
    }
    .footer__bottom{
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding: 18px 0;
    }
    .footer__bottom p,
    .footer__legal a{
        font-size: 12px;
        line-height: 18px;
    }
    .footer__legal{
        gap: 10px;
    }

    .process__details{
        width: 100%;
    }
}

/* ===================== CHOICE OVERLAY ===================== */
.choice__overlay{
    position: fixed;
    inset: 0;
    background: rgba(9, 32, 81, 0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.choice__overlay.active{
    opacity: 1;
    pointer-events: all;
}

.choice__modal{
    background: #FFFFFF;
    border-radius: 16px;
    padding: 44px 40px 40px;
    width: 100%;
    max-width: 520px;
    position: relative;
    transform: translateY(24px);
    transition: transform 0.25s ease;
    text-align: center;
}

.choice__overlay.active .choice__modal{
    transform: translateY(0);
}

.choice__title{
    font: normal normal 700 26px/1.2 Poppins;
    color: #092871;
    margin: 0 0 8px;
}

.choice__subtitle{
    font: normal normal 400 15px/1.4 Poppins;
    color: #777;
    margin: 0 0 32px;
}

.choice__options{
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.choice__option{
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 24px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    text-align: left;
    width: 100%;
}

.choice__option:hover{
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.choice__option--call{
    background: #ED4615;
    color: #FFFFFF;
    -webkit-text-fill-color: #FFFFFF;
}

.choice__option--online{
    background: #092871;
}

.choice__option__icon{
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: rgba(255,255,255,0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.choice__option__text{
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.choice__option__label{
    font: normal normal 700 16px/1 Poppins;
    color: #FFFFFF;
    letter-spacing: 0.5px;
}

.choice__option__desc{
    font: normal normal 400 13px/1.4 Poppins;
    color: rgba(255,255,255,0.75);
}

@media screen and (max-width: 768px){
    .choice__modal{
        padding: 36px 24px 28px;
    }
    .choice__title{
        font-size: 20px;
    }
    .choice__option{
        padding: 16px 18px;
    }
    .choice__option__icon{
        width: 44px;
        height: 44px;
        min-width: 44px;
    }
    .choice__option__label{
        font-size: 14px;
    }
}

/* ===================== BOOKING MODAL ===================== */
.booking__overlay{
    position: fixed;
    inset: 0;
    background: rgba(9, 32, 81, 0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.booking__overlay.active{
    opacity: 1;
    pointer-events: all;
}

.booking__modal{
    background: #FFFFFF;
    border-radius: 16px;
    padding: 40px;
    width: 100%;
    max-width: 680px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 24px 60px rgba(9, 32, 81, 0.25);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.booking__overlay.active .booking__modal{
    transform: translateY(0);
}

.booking__close{
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: color 0.2s ease;
}

.booking__close:hover{
    color: #ED4615;
}

.booking__header{
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}

.booking__title{
    font: normal normal 700 28px/1.2 Poppins;
    color: #092871;
    margin: 0 0 6px;
}

.booking__subtitle{
    font: normal normal 400 16px/1.4 Poppins;
    color: #777;
    margin: 0;
}

.booking__form{
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.booking__row{
    display: flex;
    gap: 16px;
}

.booking__field{
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 6px;
}

.booking__field label{
    font: normal normal 600 12px/1 Poppins;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.booking__required{
    color: #ED4615;
}

.booking__field input{
    height: 46px;
    border: 1.5px solid #E0E0E0;
    border-radius: 8px;
    padding: 0 14px;
    font: normal normal 400 14px/1 Poppins;
    color: #222;
    outline: none;
    transition: border-color 0.2s ease;
    width: 100%;
    box-sizing: border-box;
    background: #FAFAFA;
}

.booking__field input:focus{
    border-color: #092871;
    background: #FFFFFF;
}

.booking__field input.invalid{
    border-color: #ED4615;
}

.booking__error{
    font: normal normal 400 11px/1 Poppins;
    color: #ED4615;
    display: none;
}

.booking__field input.invalid + .booking__error{
    display: block;
}

/* Next available pickup checkbox */
.booking__next-available {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    margin-bottom: 12px;
    user-select: none;
}

.booking__next-available input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.booking__next-available__box {
    width: 16px;
    height: 16px;
    border: 1.5px solid #E0E0E0;
    border-radius: 4px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FAFAFA;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.booking__next-available input[type="checkbox"]:checked ~ .booking__next-available__box {
    background: #ED4615;
    border-color: #ED4615;
}

.booking__next-available__box::after {
    content: '';
    width: 4px;
    height: 8px;
    border: 2px solid #fff;
    border-top: none;
    border-left: none;
    transform: rotate(45deg) translateY(-1px);
    display: none;
}

.booking__next-available input[type="checkbox"]:checked ~ .booking__next-available__box::after {
    display: block;
}

.booking__next-available__label {
    font: normal normal 600 12px/1 Poppins;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Disabled state when next available is checked */
#bookDateTimeRow.booking__datetime--disabled {
    opacity: 0.4;
    pointer-events: none;
}

.booking__submit{
    height: 52px;
    background: #ED4615;
    border: none;
    border-radius: 8px;
    color: #FFFFFF;
    font: normal normal 800 14px/1 Poppins;
    letter-spacing: 1.5px;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.2s ease;
    width: 100%;
}

.booking__submit:hover{
    background: #c8370c;
}

.booking__submit:disabled{
    background: #aaa;
    cursor: not-allowed;
}

.booking__submit__error{
    font: normal normal 400 11px/1.4 Poppins;
    color: #ED4615;
    min-height: 16px;
    margin-top: 6px;
    text-align: center;
}

.booking__success{
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
    padding: 40px 20px;
}

.booking__success h3{
    font: normal normal 700 20px/1.2 Poppins;
    color: #092871;
    margin: 0;
}

.booking__success p{
    font: normal normal 400 14px/1.6 Poppins;
    color: #666;
    margin: 0;
}

/* Mobile */
@media screen and (max-width: 768px) {
    .booking__modal{
        padding: 28px 20px 32px;
    }
    .booking__row{
        flex-direction: column;
        gap: 16px;
    }
    .booking__title{
        font-size: 18px;
    }
}

@media screen and (max-width: 768px) {
    .hero {
        background-position: 20% 25% !important;
    }
    .hero__headline {
        gap: 16px;
    }
    .hero__title {
        gap: 6px;
    }
    .hero__title--accent {
        font-size: 17px;
    }
    .hero__title--main {
        font-size: 42px;
        line-height: 1.0;
        display: flex;
        flex-direction: column;
        gap: 6px;
    }
    .hero__title--word {
        display: block;
    }
    .hero__sub {
        font-size: 15px;
        line-height: 1.75;
        margin-top: 4px;
    }
    .hero__stats {
        padding-top: 10px;
        gap: 2vw;
    }
    .hero__stat {
        gap: 5px;
    }
    .hero__stat__number {
        font-size: 22px;
        letter-spacing: 0.5px;
    }
    .hero__stat__label {
        font-size: 11px;
        letter-spacing: 0.3px;
    }
    .hero__stat__divider {
        height: 40px;
    }
    /* Hide Certified and its divider */
    .hero__stat:nth-child(5),
    .hero__stat__divider:nth-child(4) {
        display: none;
    }
    .hero__call__btn {
        display: none;
    }
    .hero__cta {
        background: #ED4615;
        border: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    .hero__cta:hover,
    .hero__cta:active {
        background: #c8370c;
        border: none;
    }
    .hero__badge {
        background: linear-gradient(135deg, #ED4615, #c8370c);
        border-color: transparent;
        transition: none;
    }
    .hero__badge svg {
        color: #FFFFFF;
        transition: none;
    }
    .hero__badge:hover,
    .hero__badge:active {
        background: linear-gradient(135deg, #ED4615, #c8370c);
        border-color: transparent;
    }
    .hero__badge:hover svg,
    .hero__badge:active svg {
        color: #FFFFFF;
    }
    .hero__scroll-hint {
        gap: 8px;
        align-items: center;
    }
    .hero__scroll-hint__text {
        font-size: 10px;
        letter-spacing: 1.5px;
    }
}

