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

*{
    box-sizing:border-box;
}
html,

body {

    width: 100%;

    max-width: 100%;

    overflow-x: hidden;

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

.site-header {
    position: relative;
    z-index: 9999;
    width: 100%;
    background: #ffffff;
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 96px;
}

.site-header__logo {
    display: inline-flex;
    align-items: center;
    position: relative;
    z-index: 10002;
}

.site-header__logo img {
    display: block;
    width: auto;
    max-width: 230px;
    height: auto;
}

.site-header__navigation {
    display: flex;
    align-items: center;
    gap: 28px;
}

.site-header__navigation a {
    color: #222222;
    text-decoration: none;
    transition: color 0.25s ease;
}

.site-header__navigation a:hover {
    color: #d0ab57;
}

.site-header__booking {
    padding: 12px 22px;
    background: #d0ab57;
    color: #ffffff !important;
    border-radius: 40px;
}

.site-header__toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 9px;
    border: 0;
    background: transparent;
    cursor: pointer;
    position: relative;
    z-index: 10002;
}

.site-header__toggle-line {
    display: block;
    width: 100%;
    height: 2px;
    margin: 6px 0;
    background: #b78b2e;
    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

@media (max-width: 991px) {
    .site-header__inner {
        min-height: 98px;
    }

    .site-header__logo img {
        max-width: 200px;
    }

    .site-header__toggle {
        display: block;
        flex: 0 0 44px;
    }

    .site-header__navigation {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        max-height: 0;
        padding: 0 24px;
        overflow: hidden;
        visibility: hidden;
        opacity: 0;
        background: #111114;
        box-shadow: 0 18px 35px rgba(0, 0, 0, 0.28);
        transition:
            max-height 0.35s ease,
            padding 0.35s ease,
            opacity 0.25s ease,
            visibility 0.25s ease;
    }

    .site-header__navigation.is-open {
        max-height: 600px;
        padding-top: 18px;
        padding-bottom: 22px;
        visibility: visible;
        opacity: 1;
    }

    .site-header__navigation a {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        color: #ffffff;
    }

    .site-header__booking {
        margin-top: 15px;
        padding: 14px 20px !important;
        border-bottom: 0 !important;
        text-align: center;
            border-radius: 40px;
    }

    .site-header__toggle.is-open .site-header__toggle-line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .site-header__toggle.is-open .site-header__toggle-line:nth-child(2) {
        opacity: 0;
    }

    .site-header__toggle.is-open .site-header__toggle-line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

.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/home_video.mp4');
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    color:#fff;
}

.het-hero{
    position:relative;
    overflow:hidden;
}

.hero-video{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:-2;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
    z-index:-1;
}

.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;
}

.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;
    border:0;
    border-radius:40px;
    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/Luxury_Comfort.png');
    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;

    }
    .het-hero__buttons
    {
           flex-direction: column;
    }
    .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;
    margin-bottom: 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;
    }
}
.uber-booking__customer{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:12px;
    margin-bottom:18px;
}

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

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

.uber-booking__customer input{
    width:100%;
    border:0;
    outline:0;
    background:transparent;
    color:#101827;
    font-size:16px;
    font-weight:700;
}

.uber-booking__privacy{
    margin:14px 0 0;
    color:#64748b;
    font-size:12px;
    line-height:1.6;
    text-align:center;
}

.uber-booking__privacy a{
    color:#101827;
    font-weight:800;
}

.booking-alert{
    max-width:560px;
    display:flex;
    align-items:flex-start;
    gap:12px;
    padding:16px 18px;
    margin-bottom:18px;
    border-radius:16px;
    font-weight:700;
}

.booking-alert--success{
    color:#166534;
    background:#dcfce7;
    border:1px solid #86efac;
}

.booking-alert--error{
    color:#991b1b;
    background:#fee2e2;
    border:1px solid #fca5a5;
}

.booking-alert ul{
    margin:8px 0 0;
    padding-left:20px;
}

@media(max-width:768px){
    .uber-booking__customer{
        grid-template-columns:1fr;
    }
}

.booking-page__grid--4{
    grid-template-columns:repeat(4, minmax(0, 1fr));
}

.booking-page__optional{
    margin-left:5px;
    color:var(--gold);
    font-size:10px;
    text-transform:uppercase;
}

.booking-page__section-heading--toggle{
    align-items:center;
}

.booking-toggle{
    display:flex;
    align-items:center;
    gap:10px;
    margin-left:auto;
    cursor:pointer;
}

.booking-toggle > input{
    position:absolute;
    opacity:0;
    pointer-events:none;
}

.booking-toggle__track{
    display: block;
    position:relative;
    width:52px;
    height:30px;
    border-radius:999px;
    background:#cbd5e1;
    transition:.25s ease;
}

.booking-toggle__thumb{
    position:absolute;
    top:4px;
    left:4px;
    width:22px;
    height:22px;
    border-radius:50%;
    background:#fff;
    box-shadow:0 2px 6px rgba(0,0,0,.2);
    transition:.25s ease;
}

.booking-toggle input:checked + .booking-toggle__track{
    background:var(--gold);
}

.booking-toggle input:checked +
.booking-toggle__track .booking-toggle__thumb{
    transform:translateX(22px);
}

.booking-toggle__label{
    color:var(--navy);
    font-size:14px;
    font-weight:900;
}

.booking-return[hidden]{
    display:none;
}

.booking-return{
    animation:bookingReturnOpen .35s ease;
}

.booking-return__reverse{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:22px;
    padding:16px 18px;
    border:1px solid rgba(215,173,47,.35);
    border-radius:16px;
    background:rgba(215,173,47,.08);
    cursor:pointer;
}

.booking-return__reverse input{
    width:18px;
    height:18px;
    margin-top:2px;
    accent-color:var(--gold);
}

.booking-return__reverse strong,
.booking-return__reverse small{
    display:block;
}

.booking-return__reverse strong{
    color:var(--navy);
}

.booking-return__reverse small{
    margin-top:4px;
    color:var(--muted);
}

.booking-return__route{
    margin-bottom:22px;
}

.booking-page__field--textarea{
    padding:18px;
}

.booking-page__field textarea{
    width:100%;
    min-height:140px;
    border:0;
    outline:0;
    background:transparent;
    color:var(--navy);
    font:inherit;
    line-height:1.7;
    resize:vertical;
}

.booking-page__character-note{
    display:block;
    margin-top:8px;
    color:var(--muted);
    font-size:11px;
    text-align:right;
}

@keyframes bookingReturnOpen{
    from{
        opacity:0;
        transform:translateY(-12px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

@media(max-width:992px){
    .booking-page__grid--4{
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }
}

@media(max-width:768px){
    .booking-page__section-heading--toggle{
        align-items:flex-start;
        flex-wrap:wrap;
    }

    .booking-toggle{
        width:100%;
        margin:12px 0 0 64px;
    }

    .booking-page__grid--4{
        grid-template-columns:1fr;
    }
}
/*End uber booking*/
.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;

}

}

/*Contact Us Start*/

.contact-hero{
    padding:110px 0;
    background:
        linear-gradient(rgba(16,24,39,.78),rgba(16,24,39,.78)),
        url('/images/airport-banner.webp');
    background-size:cover;
    background-position:center;
    color:#fff;
    text-align:center;
}

.contact-hero p{
    color:var(--gold);
    font-weight:900;
    text-transform:uppercase;
}

.contact-hero h1{
    font-size:58px;
    font-weight:900;
}

.contact-hero span{
    font-size:20px;
    color:#e5e7eb;
}

.contact-page{
    padding:90px 0;
    background:#f8fafc;
}

.contact-page__grid{
    display:grid;
    grid-template-columns:.8fr 1.2fr;
    gap:40px;
}

.contact-info,
.contact-form{
    background:#fff;
    border-radius:24px;
    padding:40px;
    box-shadow:0 18px 50px rgba(16,24,39,.08);
}

.contact-info h2,
.contact-form h2{
    font-weight:900;
    margin-bottom:18px;
}

.contact-info p{
    color:var(--muted);
    margin-bottom:30px;
}

.contact-info__item{
    display:flex;
    gap:18px;
    margin-bottom:25px;
}

.contact-info__item i{
    color:var(--gold);
    font-size:28px;
}

.contact-info__item strong{
    display:block;
}

.contact-info__item a,
.contact-info__item span{
    color:var(--muted);
    text-decoration:none;
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    border:1px solid #e5e7eb;
    border-radius:14px;
    padding:15px 18px;
    margin-bottom:16px;
    font-weight:600;
}

.contact-form textarea{
    min-height:140px;
    resize:vertical;
}

.contact-form button{
    width:100%;
    height:56px;
    border:0;
    border-radius:16px;
    background:var(--navy);
    color:#fff;
    font-weight:900;
}

@media(max-width:768px){
    .contact-page__grid,
    .form-row{
        grid-template-columns:1fr;
    }

    .contact-hero h1{
        font-size:38px;
    }
}

/*Contact Us End*/

/*Fleet Start*/
.fleet-hero{
    padding:110px 0;
    background:
        linear-gradient(rgba(16,24,39,.78),rgba(16,24,39,.78)),
        url('/images/chauffeur-service.webp');
    background-size:cover;
    background-position:center;
    color:#fff;
    text-align:center;
}

.fleet-hero p{
    color:var(--gold);
    font-weight:900;
    text-transform:uppercase;
}

.fleet-hero h1{
    font-size:58px;
    font-weight:900;
}

.fleet-hero span{
    font-size:20px;
    color:#e5e7eb;
}

.fleet-page{
    padding:90px 0;
    background:#f8fafc;
}

.fleet-intro{
    max-width:780px;
    margin:0 auto 50px;
    text-align:center;
}

.fleet-intro p{
    font-size:20px;
    color:var(--muted);
}

.fleet-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.fleet-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 18px 50px rgba(16,24,39,.08);
    transition:.35s;
}

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

.fleet-card img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.fleet-card__content{
    padding:30px;
}

.fleet-card__content span{
    color:var(--gold);
    font-weight:900;
    text-transform:uppercase;
}

.fleet-card__content h2{
    font-size:26px;
    font-weight:900;
    margin:10px 0 15px;
}

.fleet-card__content p{
    color:var(--muted);
}

.fleet-card__content ul{
    list-style:none;
    padding:0;
    margin:25px 0;
}

.fleet-card__content li{
    margin-bottom:12px;
    color:#475569;
    font-weight:700;
}

.fleet-card__content i{
    color:var(--gold);
    margin-right:10px;
}

.fleet-btn{
    display:inline-flex;
    gap:8px;
    align-items:center;
    background:var(--navy);
    color:#fff;
    text-decoration:none;
    padding:14px 22px;
    border-radius:50px;
    font-weight:900;
}

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

@media(max-width:992px){
    .fleet-grid{
        grid-template-columns:1fr;
    }

    .fleet-hero h1{
        font-size:38px;
    }
}
/*Fleet End*/
/* Airport Transfers */
.airport-hero{
    padding:110px 0;
    background:
        linear-gradient(rgba(16,24,39,.75),rgba(16,24,39,.75)),
        url('/images/airport-banner.webp');
    background-size:cover;
    background-position:center;
    color:#fff;
    text-align:center;
}

.airport-hero p,
.airport-kicker{
    color:var(--gold);
    font-weight:900;
    text-transform:uppercase;
}

.airport-hero h1{
    font-size:58px;
    font-weight:900;
}

.airport-hero span{
    font-size:20px;
    color:#e5e7eb;
}

.airport-page{
    padding:90px 0;
    background:#fff;
}

.airport-page__grid{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:40px;
    align-items:start;
}

.airport-content h2{
    font-size:44px;
    font-weight:900;
    margin-bottom:20px;
}

.airport-content p{
    color:var(--muted);
    font-size:18px;
    line-height:1.8;
}

.airport-list{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
    margin:30px 0;
}

.airport-list div{
    font-weight:800;
}

.airport-list i{
    color:var(--gold);
    margin-right:8px;
}

.airport-btn{
    display:inline-flex;
    gap:8px;
    align-items:center;
    background:var(--navy);
    color:#fff;
    text-decoration:none;
    padding:15px 28px;
    border-radius:50px;
    font-weight:900;
}

.airport-card{
    background:#f8fafc;
    border-radius:24px;
    padding:35px;
    box-shadow:0 18px 50px rgba(16,24,39,.08);
}

.airport-card h3{
    font-weight:900;
    margin-bottom:25px;
}

.airport-card ul{
    padding:0;
    margin:0;
    list-style:none;
}

.airport-card li{
    margin-bottom:16px;
    font-weight:800;
}

.airport-card i{
    color:var(--gold);
    margin-right:10px;
}

.airport-features{
    padding:90px 0;
    background:#f8fafc;
}

.airport-feature-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.airport-feature{
    background:#fff;
    border-radius:24px;
    padding:35px;
    text-align:center;
    box-shadow:0 18px 50px rgba(16,24,39,.08);
}

.airport-feature i{
    font-size:42px;
    color:var(--gold);
}

.airport-feature h3{
    font-weight:900;
    margin:20px 0 10px;
}

.airport-feature p{
    color:var(--muted);
}

@media(max-width:768px){
    .airport-page__grid,
    .airport-list,
    .airport-feature-grid{
        grid-template-columns:1fr;
    }

    .airport-hero h1{
        font-size:38px;
    }
}
/* Airport Transfers End */

/* corporate page start */
.corporate-hero{
    padding:110px 0;
    background:
        linear-gradient(rgba(16,24,39,.76),rgba(16,24,39,.76)),
        url('/images/chauffeur-service.webp');
    background-size:cover;
    background-position:center;
    color:#fff;
    text-align:center;
}

.corporate-hero p,
.corporate-kicker{
    color:var(--gold);
    font-weight:900;
    text-transform:uppercase;
}

.corporate-hero h1{
    font-size:58px;
    font-weight:900;
}

.corporate-hero span{
    font-size:20px;
    color:#e5e7eb;
}

.corporate-page{
    padding:90px 0;
    background:#fff;
}

.corporate-page__grid{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:40px;
    align-items:start;
}

.corporate-content h2{
    font-size:44px;
    font-weight:900;
    margin-bottom:20px;
}

.corporate-content p{
    color:var(--muted);
    font-size:18px;
    line-height:1.8;
}

.corporate-list{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
    margin:30px 0;
}

.corporate-list div{
    font-weight:800;
}

.corporate-list i{
    color:var(--gold);
    margin-right:8px;
}

.corporate-btn{
    display:inline-flex;
    gap:8px;
    align-items:center;
    background:var(--navy);
    color:#fff;
    text-decoration:none;
    padding:15px 28px;
    border-radius:50px;
    font-weight:900;
}

.corporate-card{
    background:#f8fafc;
    border-radius:24px;
    padding:35px;
    box-shadow:0 18px 50px rgba(16,24,39,.08);
}

.corporate-card h3{
    font-weight:900;
    margin-bottom:25px;
}

.corporate-card ul{
    padding:0;
    margin:0;
    list-style:none;
}

.corporate-card li{
    margin-bottom:16px;
    font-weight:800;
}

.corporate-card i{
    color:var(--gold);
    margin-right:10px;
}

.corporate-features{
    padding:90px 0;
    background:#f8fafc;
}

.corporate-feature-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.corporate-feature{
    background:#fff;
    border-radius:24px;
    padding:35px;
    text-align:center;
    box-shadow:0 18px 50px rgba(16,24,39,.08);
}

.corporate-feature i{
    font-size:42px;
    color:var(--gold);
}

.corporate-feature h3{
    font-weight:900;
    margin:20px 0 10px;
}

.corporate-feature p{
    color:var(--muted);
}

@media(max-width:768px){
    .corporate-page__grid,
    .corporate-list,
    .corporate-feature-grid{
        grid-template-columns:1fr;
    }

    .corporate-hero h1{
        font-size:38px;
    }
}
/* corporate page end*/
/* extra pages*/

.legal-hero{
    padding:90px 0;
    background:linear-gradient(rgba(16,24,39,.78),rgba(16,24,39,.78)),url('/images/airport-banner.webp');
    background-size:cover;
    background-position:center;
    color:#fff;
    text-align:center;
}

.legal-hero h1{
    font-size:52px;
    font-weight:900;
}

.legal-page{
    padding:80px 0;
    background:#f8fafc;
}

.legal-box{
    background:#fff;
    border-radius:24px;
    padding:45px;
    box-shadow:0 18px 50px rgba(16,24,39,.08);
}

.legal-box h2{
    font-weight:900;
    margin-top:30px;
}

.legal-box p,
.legal-box li{
    color:var(--muted);
    line-height:1.8;
}

.faq-item{
    background:#fff;
    border-radius:18px;
    padding:28px;
    margin-bottom:20px;
    box-shadow:0 12px 35px rgba(16,24,39,.07);
}

.faq-item h3{
    font-weight:900;
}
/*end extra pages*/
/* =========================================
   About Us Page
========================================= */

.about-hero{
    padding:120px 0;
    background:
        linear-gradient(
            rgba(16,24,39,.72),
            rgba(16,24,39,.72)
        ),
        url('/images/airport-banner.webp');
    background-size:cover;
    background-position:center;
    color:#fff;
    text-align:center;
}

.about-hero p,
.about-kicker{
    color:var(--gold);
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:1.4px;
}

.about-hero h1{
    max-width:900px;
    margin:0 auto 20px;
    font-size:60px;
    line-height:1.1;
    font-weight:900;
}

.about-hero span{
    display:block;
    max-width:780px;
    margin:auto;
    color:#e5e7eb;
    font-size:20px;
    line-height:1.7;
}

.about-intro{
    padding:100px 0;
    background:#fff;
}

.about-intro__grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:65px;
    align-items:center;
}

.about-intro__image,
.about-story__image{
    position:relative;
}

.about-intro__image::before{
    content:"";
    position:absolute;
    top:-18px;
    left:-18px;
    width:120px;
    height:120px;
    border-top:5px solid var(--gold);
    border-left:5px solid var(--gold);
    border-radius:20px 0 0 0;
    z-index:0;
}

.about-intro__image img,
.about-story__image img{
    position:relative;
    z-index:1;
    display:block;
    width:100%;
    min-height:470px;
    object-fit:cover;
    border-radius:28px;
    box-shadow:0 22px 60px rgba(16,24,39,.16);
}

.about-intro__content h2,
.about-story__content h2,
.about-coverage h2{
    color:var(--navy);
    font-size:46px;
    line-height:1.15;
    font-weight:900;
    margin-bottom:24px;
}

.about-intro__content > p:not(.about-kicker),
.about-story__content > p:not(.about-kicker),
.about-coverage p{
    color:var(--muted);
    font-size:18px;
    line-height:1.8;
}

.about-intro__actions{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:22px;
    margin-top:32px;
}

.about-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:15px 28px;
    border-radius:50px;
    background:var(--navy);
    color:#fff;
    text-decoration:none;
    font-weight:900;
    transition:.3s ease;
}

.about-btn:hover{
    background:var(--gold);
    color:#111;
    transform:translateY(-4px);
}

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

.about-btn--gold:hover{
    background:#fff;
    color:var(--navy);
}

.about-btn--outline{
    background:transparent;
    color:#fff;
    border:2px solid rgba(255,255,255,.8);
}

.about-btn--outline:hover{
    background:#fff;
    color:var(--navy);
}

.about-phone{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:var(--navy);
    text-decoration:none;
    font-weight:900;
}

.about-phone i{
    color:var(--gold);
    font-size:20px;
}

.about-values{
    padding:100px 0;
    background:#f8fafc;
}

.about-values__grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
}

.about-value-card{
    padding:38px 28px;
    background:#fff;
    border-radius:24px;
    text-align:center;
    box-shadow:0 18px 45px rgba(16,24,39,.08);
    transition:.35s ease;
}

.about-value-card:hover{
    transform:translateY(-8px);
}

.about-value-card i{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:72px;
    height:72px;
    margin-bottom:22px;
    border-radius:22px;
    background:rgba(215,173,47,.14);
    color:var(--gold);
    font-size:34px;
}

.about-value-card h3{
    color:var(--navy);
    font-size:22px;
    font-weight:900;
}

.about-value-card p{
    color:var(--muted);
    line-height:1.7;
}

.about-story{
    padding:100px 0;
    background:#fff;
}

.about-story__grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:65px;
    align-items:center;
}

.about-story__list{
    padding:0;
    margin:30px 0 0;
    list-style:none;
}

.about-story__list li{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:16px;
    color:#334155;
    font-weight:800;
}

.about-story__list i{
    color:var(--gold);
    font-size:20px;
}

.about-coverage{
    padding:75px 0;
    background:var(--navy);
    color:#fff;
}

.about-coverage__content{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
}

.about-coverage h2{
    color:#fff;
    max-width:740px;
    margin-bottom:16px;
}

.about-coverage p{
    max-width:760px;
    color:#d1d5db;
}

.about-cta{
    padding:110px 0;
    background:
        linear-gradient(
            rgba(16,24,39,.84),
            rgba(16,24,39,.84)
        ),
        url('/images/chauffeur-service.webp');
    background-size:cover;
    background-position:center;
    color:#fff;
    text-align:center;
}

.about-cta__content{
    max-width:800px;
    margin:auto;
}

.about-cta__content > p{
    color:var(--gold);
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:1.5px;
}

.about-cta h2{
    margin-bottom:18px;
    font-size:54px;
    font-weight:900;
}

.about-cta span{
    display:block;
    margin-bottom:32px;
    color:#e5e7eb;
    font-size:19px;
    line-height:1.7;
}

.about-cta__content > div{
    display:flex;
    justify-content:center;
    gap:16px;
    flex-wrap:wrap;
}

@media(max-width:992px){
    .about-intro__grid,
    .about-story__grid{
        grid-template-columns:1fr;
    }

    .about-values__grid{
        grid-template-columns:repeat(2,1fr);
    }

    .about-coverage__content{
        align-items:flex-start;
        flex-direction:column;
    }
}

@media(max-width:768px){
    .about-hero{
        padding:85px 0;
    }

    .about-hero h1{
        font-size:40px;
    }

    .about-hero span{
        font-size:17px;
    }

    .about-intro,
    .about-values,
    .about-story{
        padding:70px 0;
    }

    .about-intro__content h2,
    .about-story__content h2,
    .about-coverage h2{
        font-size:34px;
    }

    .about-values__grid{
        grid-template-columns:1fr;
    }

    .about-intro__image img,
    .about-story__image img{
        min-height:320px;
    }

    .about-cta h2{
        font-size:38px;
    }
}

/* =========================================
   Booking Page
========================================= */

.booking-page-hero{
    padding:110px 0;
    background:
        linear-gradient(
            rgba(16,24,39,.76),
            rgba(16,24,39,.76)
        ),
        url('/images/airport-banner.webp');
    background-size:cover;
    background-position:center;
    color:#fff;
    text-align:center;
}

.booking-page-hero p{
    color:var(--gold);
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:1.4px;
}

.booking-page-hero h1{
    max-width:900px;
    margin:0 auto 18px;
    font-size:58px;
    line-height:1.1;
    font-weight:900;
}

.booking-page-hero span{
    display:block;
    max-width:750px;
    margin:auto;
    color:#e5e7eb;
    font-size:19px;
    line-height:1.7;
}

.booking-page{
    padding:90px 0;
    background:#f8fafc;
}

.booking-page__intro{
    max-width:760px;
    margin:0 auto 45px;
    text-align:center;
}

.booking-page__intro h2{
    color:var(--navy);
    font-size:44px;
    font-weight:900;
}

.booking-page__intro > p:not(.about-kicker){
    color:var(--muted);
    font-size:18px;
    line-height:1.8;
}

.booking-page__form{
    max-width:980px;
    margin:auto;
}

.booking-page__section{
    margin-bottom:28px;
    padding:36px;
    background:#fff;
    border-radius:26px;
    box-shadow:0 20px 55px rgba(16,24,39,.08);
}

.booking-page__section-heading{
    display:flex;
    align-items:flex-start;
    gap:18px;
    margin-bottom:28px;
}

.booking-page__section-heading > span{
    display:flex;
    align-items:center;
    justify-content:center;
    flex:0 0 46px;
    width:46px;
    height:46px;
    border-radius:15px;
    background:rgba(215,173,47,.15);
    color:var(--gold);
    font-weight:900;
}

.booking-page__section-heading h3{
    margin:0 0 4px;
    color:var(--navy);
    font-size:25px;
    font-weight:900;
}

.booking-page__section-heading p{
    margin:0;
    color:var(--muted);
}

.booking-page__grid{
    display:grid;
    gap:16px;
}

.booking-page__grid--3{
    grid-template-columns:repeat(3, 1fr);
}

.booking-page__field{
    padding:14px 16px;
    background:#f8fafc;
    border:1px solid #e5e7eb;
    border-radius:16px;
}

.booking-page__field label{
    display:block;
    margin-bottom:6px;
    color:#64748b;
    font-size:12px;
    font-weight:900;
}

.booking-page__field input,
.booking-page__field select{
    width:100%;
    min-height:38px;
    padding:0;
    border:0;
    outline:0;
    background:transparent;
    color:var(--navy);
    font-size:16px;
    font-weight:700;
}

.booking-page__field:focus-within,
.booking-page__section .uber-booking__field:focus-within{
    border-color:var(--gold);
    box-shadow:0 0 0 4px rgba(215,173,47,.12);
}

.booking-page__submit-area{
    padding:32px;
    background:var(--navy);
    border-radius:24px;
    text-align:center;
}

.booking-page__submit{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    min-width:280px;
    min-height:58px;
    padding:15px 32px;
    border:0;
    border-radius:50px;
    background:var(--gold);
    color:#111;
    font-size:17px;
    font-weight:900;
    transition:.3s ease;
}

.booking-page__submit:hover{
    transform:translateY(-4px);
    background:#fff;
}

.booking-page__submit-area p{
    margin:16px 0 0;
    color:#cbd5e1;
    font-size:12px;
}

.booking-page__submit-area a{
    color:#fff;
    font-weight:800;
}

.booking-page__alert{
    max-width:980px;
    margin:0 auto 24px;
}

.booking-page-benefits{
    padding:80px 0;
    background:#fff;
}

.booking-page-benefits__grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:25px;
}

.booking-page-benefits__grid > div{
    padding:30px 22px;
    border-radius:22px;
    background:#f8fafc;
    text-align:center;
}

.booking-page-benefits i{
    color:var(--gold);
    font-size:38px;
}

.booking-page-benefits h3{
    margin:18px 0 8px;
    color:var(--navy);
    font-size:20px;
    font-weight:900;
}

.booking-page-benefits p{
    margin:0;
    color:var(--muted);
    line-height:1.7;
}

@media(max-width:992px){
    .booking-page__grid--3,
    .booking-page-benefits__grid{
        grid-template-columns:repeat(2, 1fr);
    }
}

@media(max-width:768px){
    .booking-page-hero{
        padding:80px 0;
    }

    .booking-page-hero h1{
        font-size:38px;
    }

    .booking-page{
        padding:65px 0;
    }

    .booking-page__section{
        padding:24px 18px;
    }

    .booking-page__grid--3,
    .booking-page-benefits__grid{
        grid-template-columns:1fr;
    }

    .booking-page__intro h2{
        font-size:34px;
    }

    .booking-page__submit{
        width:100%;
        min-width:0;
    }
}

/* Whatsapp */

/* =========================================
   Floating WhatsApp Chat
========================================= */

.whatsapp-chat{
    position:fixed;
    right:26px;
    bottom:26px;
    z-index:9999;

    display:flex;
    align-items:center;
    gap:14px;

    text-decoration:none;
}

.whatsapp-chat__message{
    position:relative;

    display:flex;
    align-items:center;
    gap:7px;

    padding:17px 22px;

    background:#fff;
    color:#374151;

    border-radius:14px;

    box-shadow:0 14px 40px rgba(16,24,39,.2);

    font-size:16px;
    line-height:1.2;

    opacity:0;
    visibility:hidden;
    transform:translateX(18px);

    transition:
        opacity .3s ease,
        transform .3s ease,
        visibility .3s ease;
}

.whatsapp-chat__message::after{
    content:"";

    position:absolute;
    top:50%;
    right:-8px;

    width:16px;
    height:16px;

    background:#fff;

    transform:translateY(-50%) rotate(45deg);
}

.whatsapp-chat__message span{
    font-weight:500;
}

.whatsapp-chat__message strong{
    color:#111827;
    font-weight:900;
}

.whatsapp-chat__button{
    position:relative;

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

    width:72px;
    height:72px;

    flex:0 0 72px;

    border-radius:50%;

    background:#25d366;
    color:#fff;

    box-shadow:0 14px 38px rgba(37,211,102,.38);

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

.whatsapp-chat__button i{
    position:relative;
    z-index:2;

    font-size:39px;
    line-height:1;
}

.whatsapp-chat__button::before{
    content:"";

    position:absolute;
    inset:-7px;

    border:2px solid rgba(37,211,102,.3);
    border-radius:50%;

    animation:whatsappPulse 2s infinite;
}

.whatsapp-chat:hover .whatsapp-chat__message,
.whatsapp-chat:focus-visible .whatsapp-chat__message{
    opacity:1;
    visibility:visible;
    transform:translateX(0);
}

.whatsapp-chat:hover .whatsapp-chat__button{
    transform:translateY(-5px) scale(1.04);

    box-shadow:0 18px 45px rgba(37,211,102,.5);
}

.whatsapp-chat:focus-visible{
    outline:none;
}

.whatsapp-chat:focus-visible .whatsapp-chat__button{
    outline:3px solid #111827;
    outline-offset:4px;
}

@keyframes whatsappPulse{
    0%{
        opacity:.65;
        transform:scale(.9);
    }

    70%{
        opacity:0;
        transform:scale(1.22);
    }

    100%{
        opacity:0;
        transform:scale(1.22);
    }
}

@media(max-width:768px){
    .whatsapp-chat{
        right:16px;
        bottom:16px;
    }

    .whatsapp-chat__button{
        width:60px;
        height:60px;
        flex-basis:60px;
    }

    .whatsapp-chat__button i{
        font-size:33px;
    }

    .whatsapp-chat__message{
        display:none;
    }
}

@media(prefers-reduced-motion:reduce){
    .whatsapp-chat__button::before{
        animation:none;
    }

    .whatsapp-chat__button,
    .whatsapp-chat__message{
        transition:none;
    }
}