html{
    scroll-behavior:smooth;
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#000;
    color:#fff;
    font-family:Arial, sans-serif;
}

.header{
    width:100%;
    height:110px;
    padding:0 45px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    background:
        linear-gradient(rgba(0,0,0,.76), rgba(0,0,0,.76)),
        radial-gradient(circle at right, rgba(212,175,55,.22), transparent 35%);
    border-bottom:1px solid rgba(212,175,55,.25);
}

.logo{
    display:flex;
    align-items:center;
    text-decoration:none;
}

.logo img{
    width:310px;
    height:auto;
    display:block;
}

.navbar{
    display:flex;
    align-items:center;
    gap:28px;
    margin-left:30px;
}

.navbar a{
    position:relative;
    color:#fff;
    text-decoration:none;
    font-size:13px;
    font-weight:600;
    letter-spacing:.4px;
    text-transform:uppercase;
    transition:.3s;
}

.navbar a:hover,
.navbar a.active{
    color:#D4AF37;
}

.navbar a.active::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-28px;
    width:48px;
    height:2px;
    background:#D4AF37;
}

.quote-btn{
    width:160px;
    height:58px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    background:linear-gradient(135deg,#D4AF37,#F0C75E,#B8941F);
    color:#000;
    text-decoration:none;
    border-radius:8px;
    font-size:10px;
    font-weight:800;
    letter-spacing:1px;
    text-transform:uppercase;
    box-shadow:0 10px 30px rgba(212,175,55,.25);
}

.quote-btn span{
    font-size:28px;
    line-height:1;
    margin-top:-2px;
}

@media(max-width:1100px){
    .navbar{
        gap:18px;
    }

    .logo img{
        width:260px;
    }

    .quote-btn{
        width:170px;
    }
}
.hero{
    position:relative;
    min-height:850px;
    background:
        linear-gradient(90deg, rgba(0,0,0,.95) 0%, rgba(0,0,0,.65) 35%, rgba(0,0,0,.18) 70%),
        url("images/hero-main-image.png");
    background-size:cover;
    background-position:center;
    padding:120px 70px 60px;
    overflow:hidden;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to bottom, rgba(0,0,0,.15), rgba(0,0,0,.75));
    pointer-events:none;
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:760px;
}

.hero-small-title{
    display:flex;
    align-items:center;
    gap:16px;
    color:#D4AF37;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:18px;
    margin-bottom:35px;
}

.hero-small-title span{
    width:28px;
    height:3px;
    background:#D4AF37;
}

.hero h1{
    font-family:Georgia, serif;
    font-size:76px;
    line-height:1.08;
    font-weight:500;
    color:#fff;
    margin-bottom:28px;
}

.hero h1 strong{
    color:#D4AF37;
    font-weight:500;
}

.hero p{
    font-size:21px;
    line-height:1.7;
    max-width:650px;
    color:#eeeeee;
    margin-bottom:40px;
}

.hero-buttons{
    display:flex;
    gap:22px;
    align-items:center;
}

.primary-btn,
.whatsapp-btn{
    height:68px;
    min-width:250px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;
    border-radius:6px;
    text-decoration:none;
    text-transform:uppercase;
    letter-spacing:1.2px;
    font-weight:700;
}

.primary-btn{
    background:linear-gradient(135deg,#D4AF37,#F0C75E,#B8941F);
    color:#000;
}

.primary-btn span{
    font-size:30px;
}

.whatsapp-btn{
    border:1px solid rgba(212,175,55,.65);
    color:#fff;
    background:rgba(0,0,0,.35);
}

.whatsapp-btn img{
    width:30px;
    height:30px;
    filter:brightness(0) invert(1);
}

.hero-features{
    position:absolute;
    left:70px;
    right:70px;
    bottom:45px;
    z-index:3;
    display:grid;
    grid-template-columns:repeat(5,1fr);
    border:1px solid rgba(255,255,255,.25);
    background:rgba(0,0,0,.45);
    backdrop-filter:blur(10px);
    border-radius:8px;
    overflow:hidden;
}

.feature-box{
    display:flex;
    align-items:center;
    gap:20px;
    padding:28px 32px;
    border-right:1px solid rgba(255,255,255,.22);
}

.feature-box:last-child{
    border-right:none;
}

.feature-box img{
    width:32px;
    height:32px;
    filter:brightness(0) saturate(100%) invert(73%) sepia(60%) saturate(545%) hue-rotate(359deg) brightness(90%) contrast(90%);
}

.feature-box h4{
    font-size:15px;
    text-transform:uppercase;
    margin-bottom:8px;
}

.feature-box p{
    font-size:15px;
    margin:0;
    color:#d6d6d6;
    line-height:1.3;
}
/* ABOUT US */

.about-section{

    display:grid;

    grid-template-columns: 1.1fr 1fr;

    align-items:center;

    background:#050505;

}

.about-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

}

.about-content{

    padding:85px 75px;
    border:1px solid rgba(212,175,55,.30);
    background:
    linear-gradient(
    rgba(255,255,255,.02),
    rgba(255,255,255,.01)
    );

    backdrop-filter:blur(8px);
    box-shadow:
    0 0 40px rgba(212,175,55,.08);

    margin:40px;
    border-radius:16px;

    background:rgba(255,255,255,.01);

}

.section-tag{

    color:#D4AF37;

    font-size:16px;

    letter-spacing:4px;

    font-weight:700;

    text-transform:uppercase;

}

.about-content h2{

    font-size:50px;
    line-height:1.08;
    font-family:Georgia, serif;
    font-weight:500;
    color:#fff;
    margin:20px 0 35px;
    letter-spacing:-1px;

    line-height:1.1;

    margin:20px 0 30px;

    font-family:Georgia,serif;

    color:#fff;

}

.about-content p{

    color:#d8d8d8;
    font-size:16px;
    line-height:1.5;
    margin-bottom:24px;;

    line-height:1.5;

    margin-bottom:22px;

}

.about-features{

   margin-top:55px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    border-top:1px solid rgba(212,175,55,.20);

    padding-top:40px;

}

.about-feature{

    text-align:center;

}

.about-feature img{

    width:42px;

    height:42px;

    margin-bottom:15px;

    filter:brightness(0) saturate(100%) invert(73%) sepia(60%) saturate(545%) hue-rotate(359deg) brightness(90%) contrast(90%);
}

.about-feature h4{

    font-size:18px;

    color:#fff;

    margin-bottom:10px;

}

.about-feature span{

    color:#bfbfbf;

    font-size:15px;

}
.about-image{
    position:relative;
}

.about-image::after{

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    to right,
    rgba(0,0,0,.10),
    rgba(0,0,0,.05)
    );
}
/* SERVICES SECTION */

.services-section{
    padding:100px 70px 110px;
    background:
        radial-gradient(circle at top right, rgba(212,175,55,.08), transparent 35%),
        #050505;
}

.services-header{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:end;
    gap:80px;
    margin-bottom:55px;
}

.services-header h2{
    font-family:Georgia, serif;
    font-size:64px;
    line-height:1.08;
    color:#fff;
    font-weight:500;
    margin-top:18px;
}

.services-header h2 strong{
    color:#D4AF37;
    font-weight:500;
}

.services-header p{
    max-width:620px;
    font-size:22px;
    line-height:1.8;
    color:#d8d8d8;
    border-left:2px solid #D4AF37;
    padding-left:35px;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:26px;
}

.service-card{
    background:#0b0b0b;
    border:1px solid rgba(212,175,55,.28);
    border-radius:10px;
    overflow:hidden;
    transition:.35s;
}

.service-card:hover{
    transform:translateY(-8px);
    border-color:#D4AF37;
    box-shadow:0 25px 60px rgba(212,175,55,.12);
}

.service-img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
    filter:brightness(.82);
}

.service-content{
    padding:0 30px 34px;
    margin-top:-48px;
    position:relative;
    z-index:2;
}

.service-icon{
    width:92px;
    height:92px;
    border:2px solid #D4AF37;
    border-radius:50%;
    background:rgba(0,0,0,.78);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:28px;
}

.service-icon img{
    width:46px;
    height:46px;
    filter:brightness(0) saturate(100%) invert(73%) sepia(60%) saturate(545%) hue-rotate(359deg) brightness(90%) contrast(90%);
}

.service-card h3{
    color:#fff;
    font-size:25px;
    line-height:1.35;
    text-transform:uppercase;
    margin-bottom:18px;
}

.service-content span{
    display:block;
    width:38px;
    height:2px;
    background:#D4AF37;
    margin-bottom:20px;
}

.service-card p{
    font-size:18px;
    line-height:1.7;
    color:#cfcfcf;
    margin-bottom:32px;
}

.service-card a{
    color:#D4AF37;
    text-decoration:none;
    text-transform:uppercase;
    font-size:17px;
    font-weight:700;
    letter-spacing:.5px;
}

.service-card a b{
    margin-left:10px;
    font-size:24px;
}
/* AIRPORT SEO SECTION */

.airport-seo-section{
    padding:90px 70px 70px;
    background:
        linear-gradient(rgba(0,0,0,.88), rgba(0,0,0,.96)),
        radial-gradient(circle at left, rgba(212,175,55,.08), transparent 35%),
        #050505;
    border-top:1px solid rgba(212,175,55,.35);
    border-bottom:1px solid rgba(212,175,55,.35);
}

.airport-seo-header{
    text-align:center;
    max-width:1200px;
    margin:0 auto 55px;
}

.airport-seo-header span{
    color:#D4AF37;
    font-size:28px;
    letter-spacing:8px;
    font-weight:700;
}

.airport-title-icon{
    color:#D4AF37;
    font-size:48px;
    margin:18px 0 8px;
}

.airport-seo-header h2{
    font-family:Georgia, serif;
    font-size:66px;
    font-weight:500;
    color:#fff;
    line-height:1.15;
}

.airport-seo-header h2 strong{
    color:#D4AF37;
    font-weight:500;
}

.airport-seo-header p{
    color:#d4d4d4;
    font-size:22px;
    line-height:1.65;
    margin-top:24px;
}

.airport-list{
    max-width:1450px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.airport-card{
    min-height:280px;
    padding:35px 28px;
    background:
        linear-gradient(180deg, rgba(20,20,20,.95), rgba(5,5,5,.98));
    border:1px solid rgba(212,175,55,.55);
    border-radius:10px;
    text-align:center;
    transition:.35s;
}

.airport-card:hover{
    transform:translateY(-8px);
    border-color:#D4AF37;
    box-shadow:0 25px 60px rgba(212,175,55,.13);
}

.airport-card img{
    width:88px;
    height:88px;
    object-fit:contain;
    margin-bottom:25px;
}

.airport-card h3{
    color:#fff;
    font-size:33px;
    font-weight:700;
    margin-bottom:4px;
}

.airport-card h4{
    color:#D4AF37;
    font-size:25px;
    font-weight:500;
    margin-bottom:22px;
}

.airport-card p{
    color:#d0d0d0;
    font-size:18px;
    line-height:1.55;
}

.airport-bottom-bar{
    margin:38px auto 0;
    max-width:1450px;
    padding-top:25px;
    border-top:1px solid rgba(212,175,55,.4);
    display:grid;
    grid-template-columns:1fr auto 1fr;
    align-items:center;
    gap:35px;
    color:#fff;
    font-size:22px;
}

.airport-bottom-bar a{
    min-width:300px;
    height:62px;
    border:1px solid #D4AF37;
    color:#D4AF37;
    text-decoration:none;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:28px;
    font-size:22px;
    text-transform:uppercase;
    letter-spacing:2px;
    border-radius:8px;
}

.airport-bottom-bar a span{
    font-size:30px;
}

.airport-bottom-bar div:last-child{
    text-align:right;
}
.airport-contact-bar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
    padding:40px 0;
    border-top:1px solid rgba(212,175,55,.25);
}

.contact-item{
    display:flex;
    align-items:center;
    gap:16px;
}

.contact-item img{
    width:48px;
    height:48px;
    object-fit:contain;
}

.contact-item small{
    display:block;
    color:#999;
    font-size:13px;
    margin-bottom:4px;
}

.contact-item strong{
    color:#fff;
    font-size:28px;
    font-weight:600;
}

.airport-cta{
    display:flex;
    align-items:center;
    justify-content:center;
    min-width:390px;
    height:78px;
    border:1px solid #D4AF37;
    color:#D4AF37;
    text-decoration:none;
    font-size:22px;
    letter-spacing:3px;
    text-transform:uppercase;
    transition:.3s;
}

.airport-cta:hover{
    background:#D4AF37;
    color:#000;
}

@media(max-width:768px){

    .airport-contact-bar{
        flex-direction:column;
        text-align:center;
    }

    .airport-cta{
        width:100%;
        min-width:auto;
    }

    .contact-item{
        justify-content:center;
    }

    .contact-item strong{
        font-size:22px;
    }
}

/* RESPONSIVE */

@media(max-width:1200px){
    .airport-list{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){
    .airport-seo-section{
        padding:70px 25px;
    }

    .airport-seo-header h2{
        font-size:42px;
    }

    .airport-seo-header span{
        font-size:18px;
        letter-spacing:4px;
    }

    .airport-list{
        grid-template-columns:1fr;
    }

    .airport-bottom-bar{
        grid-template-columns:1fr;
        text-align:center;
    }

    .airport-bottom-bar div:last-child{
        text-align:center;
    }
}

/* WHY CHOOSE US FIX */

.why-section{
    padding:90px 60px;
    background:#050505;
    overflow:hidden;
}

.why-header{
    text-align:center;
    max-width:1000px;
    margin:0 auto 60px;
}

.why-header h2{
    font-family:Georgia, serif;
    font-size:64px;
    line-height:1.15;
    color:#fff;
}

.why-header h2 strong{
    color:#D4AF37;
}

.why-header p{
    color:#d0d0d0;
    font-size:20px;
    line-height:1.7;
    margin-top:22px;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
    max-width:1300px;
    margin:0 auto;
}

.why-card{
    background:linear-gradient(180deg,#111,#050505);
    border:1px solid rgba(212,175,55,.35);
    border-radius:18px;
    padding:35px 25px;
    text-align:center;
}

.why-icon{
    width:90px;
    height:90px;
    margin:0 auto 25px;
    border-radius:50%;
    border:1px solid rgba(212,175,55,.55);
    display:flex;
    align-items:center;
    justify-content:center;
}

.why-icon img{
    width:48px;
    height:48px;
    filter: brightness(0) saturate(100%) invert(76%) sepia(51%) saturate(694%) hue-rotate(5deg) brightness(99%) contrast(88%);
}

.why-card h3{
    font-family:Georgia, serif;
    font-size:28px;
    line-height:1.2;
    color:#fff;
}

.why-card p{
    font-size:17px;
    line-height:1.6;
    color:#cfcfcf;
}

/* PHONE SLIDER */

@media(max-width:768px){

    .why-section{
        padding:70px 22px;
    }

    .why-header h2{
        font-size:42px;
    }

    .why-grid{
        display:flex;
        overflow-x:auto;
        gap:18px;
        scroll-snap-type:x mandatory;
        padding-bottom:20px;
    }

    .why-card{
        min-width:82%;
        scroll-snap-align:center;
    }
}

/* Tablet */

@media(max-width:1400px){

.why-grid{
    grid-template-columns:repeat(3,1fr);
}

}

/* Mobile */

@media(max-width:768px){

.why-header h2{
    font-size:48px;
}

.why-grid{
    grid-template-columns:1fr;
}

}
/* TESTIMONIALS */

.testimonials-section{
    padding:110px 70px;
    background:
        radial-gradient(circle at top center, rgba(212,175,55,.08), transparent 35%),
        #050505;
}

.testimonials-header{
    text-align:center;
    max-width:1000px;
    margin:0 auto 70px;
}

.testimonials-header span{
    color:#D4AF37;
    font-size:22px;
    letter-spacing:6px;
    font-weight:700;
}

.testimonials-header h2{
    font-family:Georgia, serif;
    font-size:72px;
    font-weight:500;
    color:#fff;
    margin:25px 0 20px;
}

.testimonials-header h2 strong{
    color:#D4AF37;
    font-weight:500;
}

.testimonials-header p{
    color:#c9c9c9;
    font-size:22px;
    line-height:1.6;
}

.testimonials-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.testimonial-card{
    position:relative;
    min-height:430px;
    border:1px solid rgba(212,175,55,.45);
    border-radius:14px;
    overflow:hidden;
    background:#111;
}

.testimonial-bg{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    filter:brightness(.35);
}

.testimonial-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(90deg, rgba(0,0,0,.92), rgba(0,0,0,.65));
}

.testimonial-content{
    position:relative;
    z-index:2;
    padding:42px;
}

.quote-icon{
    width:45px;
    height:45px;
    margin-bottom:25px;
    filter:brightness(0) saturate(100%) invert(73%) sepia(60%) saturate(545%) hue-rotate(359deg) brightness(90%) contrast(90%);
}

.stars{
    color:#D4AF37;
    font-size:30px;
    letter-spacing:5px;
    margin-bottom:28px;
}

.review{
    color:#fff;
    font-family:Georgia, serif;
    font-size:27px;
    line-height:1.55;
    margin-bottom:30px;
}

.review-line{
    width:90px;
    height:1px;
    background:#D4AF37;
    margin-bottom:30px;
}

.client{
    display:flex;
    align-items:center;
    gap:18px;
}

.avatar{
    width:70px;
    height:70px;
    border-radius:50%;
    border:1px solid #D4AF37;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#D4AF37;
    font-weight:800;
    background:#0b0b0b;
}

.client h4{
    color:#fff;
    font-family:Georgia, serif;
    font-size:25px;
    margin-bottom:6px;
}

.client span{
    color:#D4AF37;
    font-size:17px;
    display:block;
}

.client small{
    color:#cfcfcf;
    font-size:15px;
}

.slider-dots{
    margin-top:42px;
    display:flex;
    justify-content:center;
    gap:18px;
}

.slider-dots span{
    width:14px;
    height:14px;
    border-radius:50%;
    background:#444;
}

.slider-dots span.active{
    background:#D4AF37;
}
/* QUOTE FORM */

.quote-section{
    min-height:900px;
    padding:90px 70px;
    display:grid;
    grid-template-columns:1fr 1.15fr;
    gap:60px;
    align-items:center;
    background:
        linear-gradient(90deg, rgba(0,0,0,.92), rgba(0,0,0,.75)),
        url("images/quote-bg.png");
    background-size:cover;
    background-position:center;
}

.quote-left span{
    color:#D4AF37;
    font-size:18px;
    font-weight:700;
    letter-spacing:3px;
}

.quote-left h2{
    font-family:Georgia, serif;
    font-size:72px;
    line-height:1.08;
    color:#fff;
    font-weight:500;
    margin:25px 0;
}

.quote-left h2 strong{
    color:#D4AF37;
    font-weight:500;
}

.quote-left p{
    color:#e0e0e0;
    font-size:20px;
    line-height:1.8;
    max-width:560px;
}

.quote-benefits{
    margin-top:55px;
    display:grid;
    gap:28px;
}

.quote-benefits > div{
    display:flex;
    align-items:center;
    gap:22px;
}

.quote-benefits img{
    width:48px;
    height:48px;
    filter:brightness(0) saturate(100%) invert(73%) sepia(60%) saturate(545%) hue-rotate(359deg) brightness(90%) contrast(90%);
}

.quote-benefits h4{
    color:#fff;
    font-size:20px;
    margin-bottom:6px;
}

.quote-benefits p{
    font-size:16px;
    color:#cfcfcf;
    line-height:1.4;
}

.quote-form{
    background:linear-gradient(180deg, rgba(20,20,20,.92), rgba(5,5,5,.96));
    border:1px solid rgba(212,175,55,.45);
    border-radius:18px;
    padding:55px 45px;
    box-shadow:0 25px 70px rgba(0,0,0,.45);
}

.quote-form h3{
    color:#D4AF37;
    text-align:center;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:20px;
    margin-bottom:35px;
}

.form-row{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
    margin-bottom:24px;
}

.form-row.two{
    grid-template-columns:repeat(2,1fr);
}

.quote-form input,
.quote-form select,
.quote-form textarea{
    width:100%;
    height:56px;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.18);
    border-radius:8px;
    color:#fff;
    padding:0 18px;
    font-size:16px;
    outline:none;
}

.quote-form textarea{
    height:120px;
    resize:none;
    padding-top:18px;
    margin-bottom:28px;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder{
    color:#9d9d9d;
}

.quote-form button{
    width:100%;
    height:62px;
    border:none;
    border-radius:8px;
    background:linear-gradient(135deg,#D4AF37,#F0C75E,#B8941F);
    color:#000;
    font-size:18px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:1px;
    cursor:pointer;
}

.quote-form button span{
    margin-left:15px;
    font-size:24px;
}

.quote-form small{
    display:block;
    text-align:center;
    margin-top:22px;
    color:#cfcfcf;
    font-size:14px;
}
/* Make date, time, select icons gold */

.quote-form input[type="date"]::-webkit-calendar-picker-indicator,
.quote-form input[type="time"]::-webkit-calendar-picker-indicator {
    filter:
        brightness(0)
        saturate(100%)
        invert(72%)
        sepia(68%)
        saturate(480%)
        hue-rotate(7deg)
        brightness(95%)
        contrast(95%);
    cursor: pointer;
}

/* Dropdown arrows */
.quote-form select{
    color:#fff;
}

.quote-form select option{
    background:#111;
    color:#fff;
}
.form-icon{
    width:20px;
    height:20px;
    filter:
        brightness(0)
        saturate(100%)
        invert(72%)
        sepia(68%)
        saturate(480%)
        hue-rotate(7deg)
        brightness(95%)
        contrast(95%);
}
/* AREAS WE COVER */

.areas-section{
    padding:95px 70px 110px;
    background:
        radial-gradient(circle at top right, rgba(212,175,55,.08), transparent 35%),
        radial-gradient(circle at left, rgba(255,255,255,.04), transparent 28%),
        #050505;
    border-top:1px solid rgba(212,175,55,.35);
    border-bottom:1px solid rgba(212,175,55,.35);
}

.areas-header{
    text-align:center;
    max-width:950px;
    margin:0 auto 55px;
}

.areas-header span{
    color:#D4AF37;
    font-size:20px;
    font-weight:700;
    letter-spacing:6px;
}

.area-pin{
    color:#D4AF37;
    font-size:22px;
    margin:14px 0 8px;
}

.areas-header h2{
    font-family:Georgia, serif;
    font-size:64px;
    font-weight:500;
    color:#fff;
    margin-bottom:22px;
    text-transform:none;
    letter-spacing:normal;
    line-height:1.15;
}

.areas-header p{
    color:#d4d4d4;
    font-size:21px;
    line-height:1.7;
}

.areas-grid{
    max-width:1250px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
    justify-items:stretch;
}

.area-card{
    background: rgba(10,10,10,.85);
    border: 1px solid rgba(212,175,55,.5);
    border-radius: 12px;

    min-height: 170px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;

    transition: all .3s ease;
}

.area-card:hover{
    transform: translateY(-8px);
    border-color: #D4AF37;
    box-shadow: 0 0 25px rgba(212,175,55,.25);
}

.area-card img{
    width:44px;
    height:44px;
    object-fit:contain;
    margin-bottom:14px;
}

.area-card h3{
    margin-top: 10px;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
}
@media(max-width:1000px){
    .areas-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .area-card:nth-last-child(3){
        grid-column:auto;
    }
}

/* RESPONSIVE */
@media(max-width:1000px){
    .areas-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .area-card:nth-last-child(3){
        grid-column:auto;
    }
}

@media(max-width:600px){
    .areas-section{
        padding:70px 25px;
    }

    .areas-header h2{
        font-size:42px;
    }

    .areas-grid{
        grid-template-columns:1fr;
    }
}
.map-section{
    padding:100px 70px;
    background:#050505;
    text-align:center;
}

.map-header span{
    color:#D4AF37;
    letter-spacing:4px;
    font-size:18px;
    text-transform:uppercase;
}

.map-header h2{
    font-size:68px;
    color:#fff;
    margin:20px 0;
}

.map-header h2 span{
    color:#D4AF37;
}

.map-header p{
    color:#cfcfcf;
    max-width:900px;
    margin:0 auto 50px;
    font-size:22px;
    line-height:1.8;
}

.map-container{
    border:1px solid rgba(212,175,55,.4);
    border-radius:18px;
    overflow:hidden;
}

.map-container iframe{
    width:100%;
    height:550px;
    border:none;
}
.review-section{
    text-align:center;
    margin-bottom:50px;
}

.review-badge{
    max-width:700px;
    margin:auto;
    padding:35px;
    background:rgba(255,255,255,0.02);
    border:1px solid rgba(212,175,55,0.25);
    border-radius:12px;
}

.review-stars{
    color:#D4AF37;
    font-size:28px;
    letter-spacing:5px;
    margin-bottom:15px;
}

.review-badge h3{
    color:#fff;
    font-size:28px;
    margin-bottom:15px;
    font-family:'Playfair Display',serif;
}

.review-badge p{
    color:#cfcfcf;
    line-height:1.8;
    margin-bottom:15px;
}

.review-info{
    color:#D4AF37;
    font-weight:500;
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}
/* FOOTER */

.footer-section{
    background:
        linear-gradient(rgba(0,0,0,.88), rgba(0,0,0,.94)),
        url("images/footer_section_image.png");
    background-size:cover;
    background-position:center;
    border-top:1px solid rgba(212,175,55,.55);
    color:#fff;
}

.footer-main{
    padding:90px 70px 70px;
    display:grid;
    grid-template-columns:1.4fr .9fr 1.2fr;
    gap:70px;
    max-width:1650px;
    margin:auto;
}

.footer-brand,
.footer-links{
    border-right:1px solid rgba(212,175,55,.25);
}

.footer-logo{
    width:360px;
    max-width:100%;
    margin-bottom:35px;
}

.footer-brand p{
    color:#e0e0e0;
    font-size:18px;
    line-height:1.65;
    max-width:520px;
    margin-bottom:32px;
}

.footer-contact-item{
    display:flex;
    align-items:center;
    gap:24px;
    margin-bottom:22px;
    font-size:18px;
    color:#fff;
}

.footer-contact-item img,
.footer-feature img,
.footer-socials img{
    filter:brightness(0) saturate(100%) invert(73%) sepia(60%) saturate(545%) hue-rotate(359deg) brightness(90%) contrast(90%);
}

.footer-contact-item img{
    width:30px;
    height:30px;
}

.footer-socials{
    display:flex;
    gap:22px;
    margin-top:35px;
}

.footer-socials a{
    width:40px;
    height:40px;
    border:1px solid #D4AF37;
    border-radius:8px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.03);
}

.footer-socials img{
    width:30px;
    height:30px;
}

.footer-links h3,
.footer-why h3{
    color:#D4AF37;
    font-size:20px;
    letter-spacing:4px;
    text-transform:uppercase;
    margin-bottom:28px;
}

.footer-links h3::after,
.footer-why h3::after{
    content:"";
    display:block;
    width:58px;
    height:2px;
    background:#D4AF37;
    margin-top:20px;
}

.footer-links ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li{
    margin-bottom:24px;
}

.footer-links a{
    color:#fff;
    text-decoration:none;
    font-size:18px;
    display:flex;
    justify-content:space-between;
    max-width:280px;
}

.footer-links a{
    font-size:15px;
    color:#cfcfcf;
    transition:.3s;
}

.footer-feature{
    display:flex;
    align-items:center;
    gap:28px;
    margin-bottom:36px;
}

.footer-feature img{
    width:30px;
    height:30px;
}

.footer-feature span{
    color:#e5e5e5;
    font-size:18px;
    line-height:1.4;
}

.footer-bottom{
    border-top:1px solid rgba(212,175,55,.55);
    padding:34px 70px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:55px;
    flex-wrap:wrap;
}

.footer-bottom p,
.footer-bottom a{
    color:#e0e0e0;
    font-size:15px;
    text-decoration:none;
}

.footer-bottom span{
    width:1px;
    height:26px;
    background:#D4AF37;
}

/* MOBILE FOOTER */

@media(max-width:1000px){

    .footer-main{
        grid-template-columns:1fr;
    }

    .footer-brand,
    .footer-links{
        border-right:none;
        border-bottom:1px solid rgba(212,175,55,.25);
        padding-bottom:40px;
    }

    .footer-logo{
        width:280px;
    }
}
.menu-toggle{
    display:none;
}

@media(max-width:768px){

    .header{
        height:auto;
        padding:18px 22px;
        flex-direction:row;
        justify-content:space-between;
        align-items:center;
        position:relative;
    }

    .logo img{
        width:210px;
    }

    .menu-toggle{
        display:block;
        background:none;
        border:1px solid #D4AF37;
        color:#D4AF37;
        font-size:28px;
        width:48px;
        height:48px;
        border-radius:6px;
        cursor:pointer;
    }

    .navbar{
        display:none;
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#050505;
        padding:25px;
        flex-direction:column;
        gap:22px;
        border-top:1px solid rgba(212,175,55,.3);
        border-bottom:1px solid rgba(212,175,55,.3);
        z-index:999;
    }

    .navbar.active{
        display:flex;
    }

    .navbar a{
        font-size:14px;
        text-align:center;
    }

    .quote-btn{
        display:none;
    }

    .hero{
        min-height:auto;
        padding:90px 25px 40px;
        background-position:center;
    }

    .hero h1{
        font-size:46px;
    }

    .hero p{
        font-size:16px;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:flex-start;
    }

    .hero-features{
        position:static;
        margin-top:45px;
        grid-template-columns:1fr;
    }

    .about-section,
    .services-header,
    .quote-section{
        grid-template-columns:1fr;
    }

    .about-content{
        margin:20px;
        padding:40px 25px;
    }

    .about-content h2,
    .services-header h2,
    .why-header h2,
    .testimonials-header h2,
    .quote-left h2{
        font-size:42px;
    }

    .about-features,
    .services-grid,
    .why-grid{
        grid-template-columns:1fr;
    }

    .services-section,
    .why-section,
    .quote-section{
        padding:70px 25px;
    }

    .form-row,
    .form-row.two{
        grid-template-columns:1fr;
    }

    @media(max-width:768px){

    .testimonials-section{
        padding:70px 20px;
        overflow:hidden;
    }

    .testimonial-grid{
        display:flex;
        overflow-x:auto;
        gap:18px;
        scroll-snap-type:x mandatory;
        scroll-behavior:smooth;
        width:100%;
        padding-bottom:25px;
    }

    .testimonial-grid::-webkit-scrollbar{
        display:none;
    }

    .testimonial-card{
        min-width:100%;
        max-width:100%;
        scroll-snap-align:center;
        padding:30px 24px;
        min-height:auto;
    }

    .testimonial-bg,
    .testimonial-overlay{
        display:none !important;
    }

    .testimonial-text,
    .review{
        font-size:24px;
        line-height:1.55;
    }

    .slider-dots{
        display:flex;
        justify-content:center;
        gap:12px;
        margin-top:20px;
    }

    .slider-dots span{
        width:12px;
        height:12px;
        background:#555;
        border-radius:50%;
        cursor:pointer;
    }

    .slider-dots span.active{
        background:#D4AF37;
    }
}

    .client-info h4{
        font-size:24px;
    }

    .avatar{
        width:62px;
        height:62px;
    }

    .footer-main{
        grid-template-columns:1fr;
        padding:60px 25px;
    }

    .footer-bottom{
        padding:25px;
        gap:20px;
        text-align:center;
    }
}
/* FINAL MOBILE TESTIMONIAL FIX */

@media(max-width:768px){

    .testimonials-section{
        padding:70px 18px !important;
        overflow:hidden !important;
    }

    .testimonial-grid{
        display:flex !important;
        grid-template-columns:none !important;
        gap:18px !important;
        overflow-x:auto !important;
        scroll-snap-type:x mandatory !important;
        scroll-behavior:smooth !important;
        width:100% !important;
        max-width:100% !important;
        margin:0 !important;
    }

    .testimonial-card{
        flex:0 0 100% !important;
        min-width:100% !important;
        max-width:100% !important;
        width:100% !important;
        scroll-snap-align:start !important;
        padding:35px 25px !important;
        box-sizing:border-box !important;
    }

    .testimonial-text,
    .review{
        font-size:22px !important;
        line-height:1.55 !important;
        word-wrap:break-word !important;
    }

    .testimonial-card h4,
    .client-info h4{
        font-size:24px !important;
    }

    .stars{
        font-size:22px !important;
        letter-spacing:2px !important;
    }

    .quote-icon{
        width:35px !important;
    }

    .slider-dots{
        display:flex !important;
        justify-content:center !important;
        gap:12px !important;
        margin-top:25px !important;
    }

    .slider-dots span{
        width:11px !important;
        height:11px !important;
        border-radius:50% !important;
        background:#555 !important;
    }

    .slider-dots span.active{
        background:#D4AF37 !important;
    }
}
/* FINAL IPHONE HERO FIX */

@media(max-width:768px){

    html,
    body{
        width:100%;
        overflow-x:hidden;
    }

    .header{
        width:100%;
    }

    .hero{
        width:100%;
        padding:80px 22px 45px !important;
        background-position:center right;
        overflow:hidden;
    }

    .hero-content{
        max-width:100%;
        width:100%;
    }

    .hero-small-title{
        font-size:14px;
        letter-spacing:2px;
        line-height:1.4;
    }

    .hero h1{
        font-size:42px !important;
        line-height:1.12 !important;
        max-width:100%;
        word-break:normal;
    }

    .hero p{
        font-size:16px !important;
        line-height:1.6;
        max-width:100%;
    }

    .primary-btn,
    .whatsapp-btn{
        min-width:100%;
        width:100%;
    }
}
/* FINAL TESTIMONIAL MOBILE FIX */

@media(max-width:768px){

    .testimonials-section{
        padding:70px 16px !important;
        overflow:hidden !important;
    }

    .testimonial-grid,
    .testimonials-grid{
        display:flex !important;
        grid-template-columns:none !important;
        flex-wrap:nowrap !important;
        overflow-x:auto !important;
        gap:18px !important;
        width:100% !important;
        max-width:100% !important;
        scroll-snap-type:x mandatory !important;
        scroll-behavior:smooth !important;
        padding-bottom:25px !important;
    }

    .testimonial-grid::-webkit-scrollbar,
    .testimonials-grid::-webkit-scrollbar{
        display:none !important;
    }

    .testimonial-card{
        flex:0 0 90% !important;
        width:90% !important;
        min-width:90% !important;
        max-width:90% !important;
        scroll-snap-align:center !important;
        padding:28px 22px !important;
        box-sizing:border-box !important;
    }

    .testimonial-text,
    .review{
        font-size:20px !important;
        line-height:1.55 !important;
        white-space:normal !important;
        word-break:normal !important;
        overflow-wrap:break-word !important;
    }

    .stars{
        font-size:22px !important;
        letter-spacing:2px !important;
    }

    .quote-icon{
        width:34px !important;
    }

    .client-info h4{
        font-size:22px !important;
    }
}
@media(max-width:768px){
    .menu-toggle{
        display:flex !important;
        align-items:center;
        justify-content:center;
        position:absolute;
        right:22px;
        top:28px;
        z-index:9999;
        background:#050505;
        border:1px solid #D4AF37;
        color:#D4AF37;
        font-size:28px;
        width:48px;
        height:48px;
        border-radius:6px;
    }
}
.form-field{
    width:100%;
}

.form-field label{
    display:block;
    color:#D4AF37;
    font-size:14px;
    font-weight:700;
    margin-bottom:10px;
    letter-spacing:1px;
    text-transform:uppercase;
}

.form-field input{
    width:100%;
}
/* MOBILE MENU FIX */

@media(max-width:768px){

    .navbar{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#050505;
        border-top:1px solid rgba(212,175,55,.35);
        border-bottom:1px solid rgba(212,175,55,.35);
        padding:35px 20px;
        display:none;
        flex-direction:column;
        align-items:center;
        gap:24px;
        z-index:999;
    }

    .navbar.active{
        display:flex;
    }

    .navbar a{
        font-size:18px;
        color:#fff;
        text-align:center;
        background:none !important;
        border:none !important;
        padding:0;
    }

    .navbar a.active,
    .navbar a:hover{
        color:#D4AF37;
    }

    .navbar a.active::after{
        display:none !important;
    }

    .menu-icon{
        display:block;
        cursor:pointer;
        color:#D4AF37;
        font-size:34px;
    }

    .header{
        position:relative;
    }
}
.menu-btn{
    display:none;
}
@media(max-width:768px){

    .header{
        position:sticky;
        top:0;
        z-index:9999;
        height:75px;
        padding:10px 18px;
        border-bottom:1px solid rgba(212,175,55,.45);
        background:#000;
    }

    .logo img{
        width:170px;
    }

    .menu-btn{
        display:flex;
        align-items:center;
        justify-content:center;
        width:44px;
        height:44px;
        background:transparent;
        border:1px solid #D4AF37;
        color:#D4AF37;
        font-size:28px;
        border-radius:6px;
        cursor:pointer;
        z-index:10001;
    }

    .navbar{
        position:fixed;
        top:75px;
        left:0;
        width:100%;
        background:rgba(0,0,0,.96);
        border-top:1px solid rgba(212,175,55,.35);
        border-bottom:1px solid rgba(212,175,55,.35);
        padding:22px 20px;
        display:none;
        flex-direction:column;
        align-items:center;
        gap:18px;
        z-index:10000;
    }

    .navbar.active{
        display:flex;
    }

    .navbar a{
        font-size:14px;
        color:#fff;
        padding:0;
        background:none !important;
    }

    .navbar a.active::after{
        display:none !important;
    }

    .navbar a:hover,
    .navbar a.active{
        color:#D4AF37;
    }

    .quote-btn{
        display:none;
    }

    .hero{
        padding-top:95px;
    }
}
@media(max-width:768px){

    .service-card p{
        font-size:18px;
        line-height:1.6;
    }

    .service-card h3{
        font-size:34px;
        line-height:1.2;
    }
}
@media(max-width:768px){

    .areas-header h2{
        font-size:46px !important;
        line-height:1.15 !important;
        text-align:center;
        text-transform:none !important;
        letter-spacing:normal !important;
    }

    .areas-header span{
        font-size:15px;
        letter-spacing:4px;
    }

    .areas-header p{
        font-size:16px;
        line-height:1.7;
        text-align:center;
        max-width:320px;
        margin:0 auto 35px;
    }
}
/* LAPTOP HEADER FIX */

@media (max-width:1400px){

    .header{
        height:95px;
        padding:0 28px;
    }

    .logo img{
        width:260px;
    }

    .navbar{
        gap:26px;
        margin-left:35px;
    }

    .navbar a{
        font-size:13px;
        letter-spacing:.2px;
    }

    .quote-btn{
        width:155px;
        height:48px;
        font-size:12px;
        padding:0 14px;
        gap:8px;
    }

    .quote-btn span{
        font-size:22px;
    }
}

@media (max-width:1180px){

    .navbar{
        gap:18px;
    }

    .navbar a{
        font-size:12px;
    }

    .logo img{
        width:230px;
    }

    .quote-btn{
        width:135px;
        height:44px;
        font-size:11px;
    }
}
/* FINAL RESPONSIVE FIX */

/* Large laptop */
@media (max-width:1500px){

    .header{
        height:92px;
        padding:0 26px;
    }

    .logo img{
        width:250px;
    }

    .navbar{
        gap:22px;
        margin-left:25px;
    }

    .navbar a{
        font-size:12px;
        letter-spacing:.2px;
        white-space:nowrap;
    }

    .quote-btn{
        width:140px;
        height:46px;
        font-size:11px;
        padding:0 12px;
        gap:8px;
    }

    .quote-btn span{
        font-size:20px;
    }

    .hero h1{
        font-size:64px;
    }
}

/* Small laptop / tablet */
@media (max-width:1300px){

    .header{
        height:85px;
        padding:0 22px;
    }

    .logo img{
        width:220px;
    }

    .navbar{
        gap:16px;
        margin-left:18px;
    }

    .navbar a{
        font-size:11px;
    }

    .quote-btn{
        width:120px;
        height:42px;
        font-size:10px;
    }

    .hero{
        padding:90px 40px 50px;
    }

    .hero h1{
        font-size:54px;
    }

    .services-grid,
    .why-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .about-section,
    .quote-section{
        grid-template-columns:1fr;
    }
}

/* Tablet and mobile */
@media (max-width:900px){

    .header{
        position:sticky;
        top:0;
        z-index:9999;
        height:78px;
        padding:10px 18px;
        background:#000;
        border-bottom:1px solid rgba(212,175,55,.45);
    }

    .logo img{
        width:175px;
    }

    .menu-btn{
        display:flex;
        align-items:center;
        justify-content:center;
        width:44px;
        height:44px;
        background:transparent;
        border:1px solid #D4AF37;
        color:#D4AF37;
        font-size:28px;
        border-radius:6px;
        cursor:pointer;
        z-index:10001;
    }

    .navbar{
        position:fixed;
        top:78px;
        left:0;
        width:100%;
        background:rgba(0,0,0,.97);
        border-top:1px solid rgba(212,175,55,.35);
        border-bottom:1px solid rgba(212,175,55,.35);
        padding:24px 20px;
        display:none;
        flex-direction:column;
        align-items:center;
        gap:18px;
        z-index:10000;
        margin-left:0;
    }

    .navbar.active{
        display:flex;
    }

    .navbar a{
        font-size:14px;
        color:#fff;
        padding:0;
        background:none !important;
    }

    .navbar a.active::after{
        display:none !important;
    }

    .quote-btn{
        display:none;
    }

    .hero{
        padding:80px 24px 45px;
        min-height:auto;
    }

    .hero h1{
        font-size:42px;
        line-height:1.15;
    }

    .hero p{
        font-size:16px;
        line-height:1.7;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:stretch;
    }

    .primary-btn,
    .whatsapp-btn{
        width:100%;
        min-width:auto;
    }

    .hero-features{
        position:static;
        margin-top:40px;
        grid-template-columns:1fr;
        left:auto;
        right:auto;
    }

    .services-header,
    .about-section,
    .quote-section{
        grid-template-columns:1fr;
    }

    .services-grid,
    .airport-grid,
    .why-grid,
    .testimonial-grid,
    .areas-grid,
    .footer-main{
        grid-template-columns:1fr;
    }

    .services-section,
    .airport-section,
    .why-section,
    .testimonials-section,
    .quote-section,
    .areas-section{
        padding:70px 24px;
    }

    .about-content{
        margin:20px;
        padding:40px 24px;
    }

    .about-content h2,
    .services-header h2,
    .airport-header h2,
    .why-header h2,
    .testimonials-header h2,
    .quote-left h2,
    .areas-header h2{
        font-size:42px !important;
        line-height:1.15 !important;
    }

    .form-row,
    .form-row.two{
        grid-template-columns:1fr;
    }

    .footer-main{
        padding:60px 24px;
    }

    .footer-bottom{
        padding:28px 24px;
        gap:18px;
        text-align:center;
    }
}

/* Small mobile */
@media (max-width:480px){

    .logo img{
        width:155px;
    }

    .hero h1{
        font-size:36px;
    }

    .section-tag,
    .airport-header span,
    .why-header span,
    .testimonials-header span,
    .areas-header span{
        font-size:13px;
        letter-spacing:3px;
    }

    .service-card h3{
        font-size:28px;
    }

    .service-card p{
        font-size:16px;
    }

    .quote-form{
        padding:35px 20px;
    }

    .areas-header p{
        font-size:16px;
        line-height:1.7;
    }
}
/* Desktop Navigation */
.menu-btn{
    display:none;
}

/* Tablet / Small Laptop */
@media (max-width:1200px){

    .menu-btn{
        display:flex;
    }

    .navbar{
        display:none;
    }

    .navbar.active{
        display:flex;
        flex-direction:column;
    }

    .quote-btn{
        display:none;
    }
}
/* FORCE HAMBURGER ON SMALL LAPTOP / ZOOM */

@media (max-width:1500px){

    .menu-btn{
        display:flex !important;
        align-items:center;
        justify-content:center;
        width:44px;
        height:44px;
        background:transparent;
        border:1px solid #D4AF37;
        color:#D4AF37;
        font-size:28px;
        border-radius:6px;
        cursor:pointer;
        z-index:10001;
        margin-left:auto;
    }

    .navbar{
        position:fixed !important;
        top:92px;
        left:0;
        width:100%;
        background:rgba(0,0,0,.97);
        border-top:1px solid rgba(212,175,55,.35);
        border-bottom:1px solid rgba(212,175,55,.35);
        padding:24px 20px;
        display:none !important;
        flex-direction:column;
        align-items:center;
        gap:18px;
        z-index:10000;
        margin-left:0;
    }

    .navbar.active{
        display:flex !important;
    }

    .quote-btn{
        display:none !important;
    }
}
/* FINAL HEADER RESPONSIVE FIX */

.menu-btn{
    display:none;
}

@media(max-width:1500px){

    .header{
        height:90px;
        padding:0 45px;
        display:flex;
        align-items:center;
        justify-content:space-between;
        background:#000;
        border-bottom:1px solid rgba(212,175,55,.35);
        position:sticky;
        top:0;
        z-index:9999;
    }

    .logo img{
        width:300px;
        max-width:100%;
    }

    .menu-btn{
        display:flex !important;
        align-items:center;
        justify-content:center;
        width:46px;
        height:46px;
        background:transparent !important;
        border:1px solid #D4AF37 !important;
        color:#D4AF37 !important;
        font-size:28px;
        border-radius:6px;
        cursor:pointer;
        margin-left:auto;
    }

    .navbar{
        display:none !important;
        position:fixed;
        top:90px;
        left:0;
        width:100%;
        background:#050505;
        border-top:1px solid rgba(212,175,55,.35);
        border-bottom:1px solid rgba(212,175,55,.35);
        padding:28px 20px;
        flex-direction:column;
        align-items:center;
        gap:22px;
        z-index:9998;
    }

    .navbar.active{
        display:flex !important;
    }

    .navbar a{
        color:#fff;
        font-size:15px;
        text-align:center;
        background:none !important;
        border:none !important;
    }

    .navbar a.active::after{
        display:none !important;
    }

    .quote-btn{
        display:none !important;
    }
}
/* FINAL AIRPORT CONTACT BAR FIX */

.premium-airport-bar{
    width:100% !important;
    display:flex !important;
    align-items:center !important;
    justify-content:space-between !important;
    gap:35px !important;
    padding:40px 0 !important;
    border-top:1px solid rgba(212,175,55,.35) !important;
}

.airport-contact-card{
    min-width:280px !important;
    display:flex !important;
    align-items:center !important;
    gap:18px !important;
    padding:20px 26px !important;
    border:1px solid rgba(212,175,55,.35) !important;
    border-radius:12px !important;
    background:rgba(255,255,255,.025) !important;
}

.airport-contact-card img{
    width:44px !important;
    height:44px !important;
    object-fit:contain !important;
}

.airport-contact-card small{
    display:block !important;
    color:#bdbdbd !important;
    font-size:14px !important;
    margin-bottom:6px !important;
}

.airport-contact-card strong{
    color:#fff !important;
    font-size:28px !important;
    font-weight:700 !important;
}

.airport-cta{
    min-width:390px !important;
    height:76px !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    border:1px solid #D4AF37 !important;
    color:#D4AF37 !important;
    text-decoration:none !important;
    font-size:22px !important;
    letter-spacing:4px !important;
    font-weight:600 !important;
}

@media(max-width:768px){
    .premium-airport-bar{
        flex-direction:column !important;
    }

    .airport-contact-card,
    .airport-cta{
        width:100% !important;
        min-width:auto !important;
    }
}
.airport-css-icon{
    width:52px;
    height:52px;
    border:1px solid #D4AF37;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#D4AF37;
    font-size:28px;
    flex-shrink:0;
}
.airport-css-icon{
    width:52px;
    height:52px;
    border:1px solid #D4AF37;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#D4AF37;
    font-size:28px;
}
.success-message{
    display:none;
    margin-top:20px;
    padding:15px 20px;
    border:1px solid #D4AF37;
    background:rgba(212,175,55,.08);
    color:#D4AF37;
    border-radius:8px;
    text-align:center;
    font-weight:600;
}
.success-message{
    display:none;
    margin-top:18px;
    padding:14px 18px;
    border:1px solid #D4AF37;
    background:rgba(212,175,55,.08);
    color:#D4AF37;
    border-radius:8px;
    text-align:center;
    font-weight:600;
}
/* iPhone quote form date/time fix */
@media (max-width: 768px){

    .quote-form{
        overflow:hidden;
    }

    .quote-form .form-row{
        display:grid;
        grid-template-columns:1fr !important;
        gap:18px;
    }

    .quote-form .form-field,
    .quote-form input,
    .quote-form select,
    .quote-form textarea{
        width:100% !important;
        max-width:100% !important;
        box-sizing:border-box !important;
    }

    .quote-form input[type="date"],
    .quote-form input[type="time"]{
        display:block;
        min-width:0 !important;
        appearance:none;
        -webkit-appearance:none;
        text-align:left;
        padding:18px 22px;
    }
}