:root{
    --navy:#101827;
    --gold:#d7ad2f;
    --dark:#111827;
    --muted:#667085;
    --light:#f8fafc;
    --white:#ffffff;
}

*{
    box-sizing:border-box;
}

body{
    margin:0;
    font-family:Arial, Helvetica, sans-serif;
    color:var(--dark);
    background:#fff;
}

.het-header{
    background:#fff;
    padding:18px 0;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 3px 20px rgba(0,0,0,.06);
}

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

.het-header__brand img{
    height:62px;
}

.het-header__nav{
    display:flex;
    gap:36px;
}

.het-header__nav a{
    color:var(--navy);
    text-decoration:none;
    font-weight:700;
}

.het-header__nav a:hover{
    color:var(--gold);
}

.het-header__phone{
    background:var(--gold);
    color:#111;
    padding:14px 24px;
    border-radius:50px;
    text-decoration:none;
    font-weight:800;
}

.het-hero{
    min-height:620px;
    background:
        linear-gradient(90deg, rgba(16,24,39,.86) 0%, rgba(16,24,39,.62) 42%, rgba(16,24,39,.12) 100%),
        url('/images/airport-banner.webp');
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    color:#fff;
}

.het-hero__content{
    max-width:720px;
    animation:fadeUp .9s ease forwards;
}

.het-hero__content > p:first-child{
    color:var(--gold);
    text-transform:uppercase;
    font-weight:900;
    letter-spacing:1.5px;
}

.het-hero h1{
    font-size:68px;
    line-height:1.05;
    font-weight:900;
    margin:15px 0 20px;
}

.het-hero h1 span{
    color:var(--gold);
}

.het-hero__text{
    font-size:21px;
    line-height:1.6;
    max-width:660px;
}

.het-btn{
    display:inline-block;
    padding:15px 30px;
    border-radius:50px;
    text-decoration:none;
    font-weight:800;
    transition:.3s ease;
}

.het-btn:hover{
    transform:translateY(-4px);
}

.het-btn--gold{
    background:var(--gold);
    color:#111;
}

.het-btn--dark{
    background:rgba(16,24,39,.85);
    color:#fff;
    border:2px solid #fff;
    margin-left:12px;
}

.het-booking{
    margin-top:-62px;
    position:relative;
    z-index:5;
}

.het-booking__box{
    background:#fff;
    padding:28px;
    border-radius:18px 18px 0 0;
    box-shadow:0 22px 60px rgba(0,0,0,.13);
    display:grid;
    grid-template-columns:repeat(6, 1fr);
    gap:15px;
    align-items:end;
}

.het-booking label{
    display:block;
    font-size:13px;
    font-weight:800;
    margin-bottom:8px;
}

.het-booking input,
.het-booking select{
    width:100%;
    height:50px;
    border:1px solid #e5e7eb;
    border-radius:14px;
    padding:0 14px;
}

.het-booking button{
    height:50px;
    background:var(--navy);
    color:#fff;
    border:0;
    border-radius:14px;
    font-weight:800;
}

.het-benefits{
    background:#fff;
    border-top:1px solid #edf0f3;
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    padding:22px 35px;
    border-radius:0 0 18px 18px;
    box-shadow:0 22px 60px rgba(0,0,0,.10);
}

.het-benefits div{
    display:flex;
    flex-direction:column;
    gap:3px;
}

.het-benefits span{
    color:var(--muted);
    font-size:14px;
}

.het-section{
    padding:90px 0;
}

.het-light{
    background:var(--light);
}

.het-title{
    text-align:center;
    margin-bottom:42px;
}

.het-title p{
    color:var(--gold);
    font-weight:900;
    margin-bottom:5px;
}

.het-title h2{
    font-size:38px;
    font-weight:900;
}

.het-service-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:26px;
}

.het-service-card{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 14px 36px rgba(0,0,0,.08);
    transition:.3s ease;
}

.het-service-card:hover{
    transform:translateY(-8px);
}

.het-service-card img{
    width:100%;
    height:170px;
    object-fit:cover;
}

.het-service-card div{
    padding:22px;
    position:relative;
}

.het-service-card h3{
    font-size:20px;
    font-weight:900;
}

.het-service-card p{
    color:var(--muted);
}

.het-service-card a{
    position:absolute;
    right:20px;
    bottom:20px;
    width:40px;
    height:40px;
    border:1px solid var(--gold);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--gold);
    text-decoration:none;
}

.het-comfort{
    display:grid;
    grid-template-columns:1.05fr .8fr .65fr;
    align-items:center;
    background:#fff;
}

.het-comfort__image{
    min-height:420px;
    background:url('/images/chauffeur-service.webp');
    background-size:cover;
    background-position:center;
}

.het-comfort__content{
    padding:70px;
}

.het-comfort__content > p:first-child{
    color:var(--gold);
    font-weight:900;
}

.het-comfort__content h2{
    font-size:42px;
    font-weight:900;
}

.het-comfort__content p{
    color:var(--muted);
}

.het-comfort__features{
    padding:40px;
    display:grid;
    gap:24px;
}

.het-comfort__features div{
    display:flex;
    flex-direction:column;
}

.het-comfort__features span{
    color:var(--muted);
    font-size:14px;
}

.het-why-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:26px;
}

.het-why-card{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 14px 36px rgba(0,0,0,.08);
    transition:.3s ease;
}

.het-why-card:hover{
    transform:translateY(-8px);
}

.het-why-card img{
    width:100%;
    height:150px;
    object-fit:cover;
}

.het-why-card h3{
    font-size:20px;
    font-weight:900;
    padding:20px 20px 5px;
}

.het-why-card p{
    color:var(--muted);
    padding:0 20px 25px;
}

.het-bottom{
    padding:70px 0;
}

.het-bottom__grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:28px;
}

.het-testimonial{
    background:#fff;
    padding:40px;
    border-radius:18px;
    box-shadow:0 14px 36px rgba(0,0,0,.08);
}

.het-quote{
    font-size:70px;
    color:var(--gold);
    line-height:1;
}

.het-testimonial span{
    display:block;
    color:var(--gold);
    margin-top:12px;
}

.het-final-cta{
    background:
        linear-gradient(90deg, rgba(16,24,39,.95), rgba(16,24,39,.75)),
        url('/images/chauffeur-service.webp');
    background-size:cover;
    background-position:center;
    color:#fff;
    padding:45px;
    border-radius:18px;
}

.het-final-cta h2{
    font-size:34px;
    font-weight:900;
}

.het-final-cta h2 span{
    color:var(--gold);
}

.het-final-cta p{
    color:#e5e7eb;
}

footer{
    margin-top:0!important;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(30px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@media(max-width:991px){
    .het-header__nav,
    .het-header__phone{
        display:none;
    }

    .het-hero h1{
        font-size:45px;
    }

    .het-booking{
        margin-top:30px;
    }

    .het-booking__box,
    .het-benefits,
    .het-service-grid,
    .het-comfort,
    .het-why-grid,
    .het-bottom__grid{
        grid-template-columns:1fr;
    }

    .het-comfort__content{
        padding:40px 25px;
    }
}
/*=========================================
    Bootstrap Icons
=========================================*/

/*=========================================
    Benefits
=========================================*/

.het-benefits{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    text-align:center;

}

.het-benefit{

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:10px;

}

.het-benefit i{

    font-size:42px;
    color:var(--gold);
    margin-bottom:18px;
    transition:.35s ease;

}

.het-benefit:hover i{

    transform:translateY(-6px) scale(1.1);

}

.het-benefit strong{

    display:block;
    font-size:22px;
    font-weight:700;
    margin-bottom:8px;
    color:var(--navy);

}

.het-benefit span{

    color:var(--muted);
    font-size:15px;

}


/*=========================================
    Comfort Features
=========================================*/

.het-comfort__features{

    display:grid;
    gap:30px;

}

.het-feature-item{

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:20px;
    background:#fff;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.35s ease;

}

.het-feature-item:hover{

    transform:translateY(-6px);

}

.het-feature-item i{

    font-size:42px;
    color:var(--gold);
    margin-bottom:15px;

}

.het-feature-item strong{

    display:block;
    font-size:20px;
    color:var(--navy);
    margin-bottom:8px;

}

.het-feature-item span{

    color:var(--muted);
    font-size:15px;

}

/* =====================================
   Coming Soon
===================================== */

.coming-page{

    position:relative;
    min-height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    background:url('/images/airport-banner.webp');
    background-size:cover;
    background-position:center;

    overflow:hidden;

}

.coming-page__overlay{

    position:absolute;
    inset:0;

    background:linear-gradient(
        rgba(16,24,39,.82),
        rgba(16,24,39,.82)
    );

}

.coming-page__content{

    position:relative;
    z-index:5;

    max-width:760px;

    padding:40px;

    animation:fadeUp 1s ease;

}

.coming-page__logo{

    width:170px;

    margin-bottom:35px;

}

.coming-page__badge{

    display:inline-block;

    background:#d7ad2f;

    color:#111827;

    font-weight:700;

    padding:10px 28px;

    border-radius:40px;

    margin-bottom:30px;

}

.coming-page h1{

    color:#fff;

    font-size:64px;

    line-height:1.1;

    font-weight:900;

    margin-bottom:25px;

}

.coming-page p{

    color:#f1f5f9;

    font-size:22px;

    line-height:1.8;

    margin-bottom:15px;

}

.coming-page__small{

    color:#d1d5db;

    font-size:18px;

}

.coming-page__button{

    display:inline-flex;

    align-items:center;

    gap:10px;

    margin-top:35px;

    background:#d7ad2f;

    color:#111827;

    text-decoration:none;

    padding:18px 38px;

    border-radius:50px;

    font-weight:700;

    transition:.35s;

}

.coming-page__button:hover{

    background:#fff;

    transform:translateY(-5px);

}

@media(max-width:768px){

    .coming-page h1{

        font-size:42px;

    }

    .coming-page p{

        font-size:18px;

    }

    .coming-page__logo{

        width:130px;

    }

}

.address-results{
    position:absolute;
    top:100%;
    left:0;
    right:0;
    background:#fff;
    z-index:9999;
    border-radius:14px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
    overflow:hidden;
    margin-top:8px;
}

.address-results__item{
    padding:12px 15px;
    cursor:pointer;
    font-size:14px;
}

.address-results__item:hover{
    background:#f8fafc;
}

.het-address-autocomplete{
    position:relative;
}

.het-address-autocomplete .geoapify-autocomplete-input{
    width:100%;
    height:50px;
    border:1px solid #e5e7eb;
    border-radius:14px;
    padding:0 16px;
    font-size:16px;
    font-weight:600;
}

.het-address-autocomplete .geoapify-autocomplete-input:focus{
    outline:none;
    border-color:var(--gold);
    box-shadow:0 0 0 4px rgba(215,173,47,.15);
}

.geoapify-autocomplete-items{
    border-radius:16px;
    margin-top:8px;
    box-shadow:0 18px 45px rgba(16,24,39,.16);
    overflow:hidden;
    z-index:99999;
}

.geoapify-autocomplete-item{
    padding:14px 16px;
    font-size:14px;
}
.geo-results{
    position:absolute;
    top:100%;
    left:0;
    right:0;
    background:#fff;
    z-index:99999;
    border-radius:16px;
    box-shadow:0 18px 45px rgba(16,24,39,.16);
    overflow:hidden;
    margin-top:8px;
}

.geo-results__item{
    padding:14px 16px;
    cursor:pointer;
    border-bottom:1px solid #eef2f7;
}

.geo-results__item:hover{
    background:#f8fafc;
}

.geo-results__item strong{
    display:block;
    color:#101827;
    font-size:15px;
}

.geo-results__item span{
    display:block;
    color:#667085;
    font-size:13px;
    margin-top:3px;
}

.het-booking--uber{
    margin-top:-90px;
    position:relative;
    z-index:10;
}

.uber-booking{
    max-width:80%;
    margin: 0px auto;
    background:#fff;
    border-radius:28px;
    padding:28px;
    box-shadow:0 28px 80px rgba(16,24,39,.18);
}

.uber-booking__route{
    position:relative;
    display:grid;
    gap:16px;
}

.uber-booking__field{
    position:relative;
    display:grid;
    grid-template-columns:28px 1fr;
    align-items:center;
    background:#f8fafc;
    border:1px solid #e5e7eb;
    border-radius:18px;
    padding:14px 16px;
}

.uber-booking__field label,
.uber-booking__details label{
    display:block;
    font-size:12px;
    font-weight:800;
    color:#64748b;
    margin-bottom:4px;
}

.uber-booking__field input,
.uber-booking__details input,
.uber-booking__details select{
    width:100%;
    border:0;
    outline:0;
    background:transparent;
    font-size:17px;
    font-weight:800;
    color:#101827;
}

.uber-dot{
    width:12px;
    height:12px;
    border-radius:50%;
    display:block;
}

.uber-dot--pickup{
    background:#22c55e;
}

.uber-dot--destination{
    background:#101827;
}

.uber-booking__route::before{
    content:"";
    position:absolute;
    left:21px;
    top:43px;
    height:54px;
    width:2px;
    background:#d1d5db;
}

.uber-swap{
    position:absolute;
    right:14px;
    top:55px;
    width:42px;
    height:42px;
    border-radius:50%;
    border:1px solid #e5e7eb;
    background:#fff;
    color:#101827;
    z-index:5;
}

.uber-booking__quick{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin:18px 0;
}

.uber-booking__quick button{
    border:0;
    background:rgba(215,173,47,.13);
    color:#101827;
    border-radius:999px;
    padding:10px 14px;
    font-size:13px;
    font-weight:800;
}

.uber-booking__details{
    display:grid;
    grid-template-columns:1fr 1fr 1.2fr;
    gap:12px;
    margin-bottom:18px;
}

.uber-booking__details > div{
    background:#f8fafc;
    border:1px solid #e5e7eb;
    border-radius:16px;
    padding:13px 14px;
}

.uber-booking__submit{
    width:100%;
    height:58px;
    border:0;
    border-radius:18px;
    background:#101827;
    color:#fff;
    font-size:17px;
    font-weight:900;
}

.geo-results{
    top:calc(100% + 8px);
    text-align:left;
}

@media(max-width:768px){
    .het-booking--uber{
        margin-top:20px;
    }

    .uber-booking{
        max-width:100%;
    }

    .uber-booking__details{
        grid-template-columns:1fr;
    }
}

.het-footer{

background:#08111f;

color:#fff;

padding:90px 0 30px;

margin-top:120px;

}

.footer-top{

display:flex;

justify-content:space-between;

gap:80px;

flex-wrap:wrap;

}

.footer-brand{

max-width:320px;

}

.footer-brand img{

width:110px;

margin-bottom:20px;

}

.footer-brand h3{

font-size:28px;

margin-bottom:15px;

}

.footer-brand p{

color:#c7cedb;

line-height:1.8;

}

.footer-stars{

margin-top:25px;

color:#d7ad2f;

font-size:22px;

}

.footer-stars span{

display:block;

font-size:14px;

color:white;

margin-top:10px;

}

.footer-links{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:60px;

flex:1;

}

.footer-links h4{

margin-bottom:22px;

color:#d7ad2f;

font-size:19px;

}

.footer-links ul{

padding:0;

margin:0;

list-style:none;

}

.footer-links li{

margin-bottom:14px;

}

.footer-links a{

color:#c7cedb;

text-decoration:none;

transition:.3s;

}

.footer-links a:hover{

color:#d7ad2f;

padding-left:8px;

}

.footer-contact li{

display:flex;

gap:12px;

align-items:center;

}

.footer-contact i{

color:#d7ad2f;

font-size:18px;

}

.footer-social{

margin-top:25px;

display:flex;

gap:14px;

}

.footer-social a{

width:44px;

height:44px;

border-radius:50%;

background:#111c2e;

display:flex;

align-items:center;

justify-content:center;

color:#d7ad2f;

font-size:20px;

transition:.3s;

}

.footer-social a:hover{

background:#d7ad2f;

color:#08111f;

transform:translateY(-5px);

}

.footer-bottom{

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

margin-top:60px;

padding-top:30px;

display:flex;

justify-content:space-between;

align-items:center;

flex-wrap:wrap;

}

.footer-bottom p{

color:#aeb7c7;

}

.footer-bottom div{

display:flex;

gap:30px;

}

.footer-bottom a{

color:#aeb7c7;

text-decoration:none;

}

.footer-bottom a:hover{

color:#d7ad2f;

}

@media(max-width:992px){

.footer-links{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.footer-top{

flex-direction:column;

}

.footer-links{

grid-template-columns:1fr;

}

.footer-bottom{

flex-direction:column;

gap:20px;

text-align:center;

}

}