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

body{
    margin:0;
    font-family:Arial, sans-serif;
    background:#ffffff;
}

/* NAVBAR */

.navbar{

    width:100%;
    height:100px;

    background:#ffffff;

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

    padding:0 80px;

    border-bottom:1px solid #e5e5e5;
}

/* Logo */

.logo img{
    width:130px;
    height:auto;
}

/* Navigation */

.nav-links{
    display:flex;
    list-style:none;
    gap:45px;
}

.nav-links a{
    text-decoration:none;
    color:#000;

    font-size:14px;
    font-weight:600;
    letter-spacing:1px;

    position:relative;

    padding-bottom:8px;

    transition: all .3s ease;
}

.nav-links a::after{
    content:"";

    position:absolute;
    left:50%;
    transform:translateX(-50%);

    bottom:0;

    width:0;
    height:2px;

    background:#D4AF37;

    transition:.35s ease;
}

.nav-links a:hover::after{
    width:100%;
}

.nav-links a:hover{
    color:#D4AF37;
}

.active{
    color:#D4AF37 !important;
}

.active::after{
    width:100% !important;
}

/* Button */

.book-btn{
    background:#D4AF37;
    color:white;
    display:flex;
    text-decoration:none;

    padding:15px 30px;

    border-radius:4px;

    font-weight:600;
    letter-spacing:1px;

    transition:.3s;
}

.book-btn:hover{
    background:#be9827;
    transform:translateY(-2px);
    box-shadow:0 8px 25px rgba(212,175,55,.25);
}

/* Mobile Menu Button */

.menu-toggle{
    display:none;
    font-size:30px;
    cursor:pointer;
    color:#000;
}

/* Tablet */

/* =========================
   TABLETS (iPad Pro, Surface)
   ========================= */

   @media screen and (max-width:1024px){

    .navbar{
        padding:0 30px;
    }

    .logo img{
        width:120px;
    }

    .nav-links{
        gap:20px;
    }

    .nav-links a{
        font-size:12px;
    }

    .book-btn{
        display:flex;
        align-items:center;

        padding:10px 18px;
        font-size:12px;
    }

    .menu-toggle{
        display:none;
    }
}

/* =========================
   PHONES & SMALL TABLETS
   ========================= */

@media screen and (max-width:820px){

    .menu-toggle{
        display:block;
        font-size:30px;
        cursor:pointer;
        color:#000;
    }

    .book-btn{
        display:flex;
        align-items:center;

        padding:10px 16px;
        font-size:12px;

        margin-left:auto;
        margin-right:15px;
    }

    .nav-links{
        position:absolute;

        top:90px;
        left:-100%;

        width:100%;
        display:flex;
        flex-direction:column;

        background:#fff;

        gap:0;

        transition:.4s ease;
    }

    .nav-links.active-menu{
        left:0;
    }

    .nav-links li{
        width:100%;
    }

    .nav-links a{
        display:block;

        padding:20px;

        text-align:center;

        border-bottom:1px solid #eee;
    }
}

/* =========================
   SMALL PHONES
   ========================= */

@media screen and (max-width:480px){

    .navbar{
        height:80px;
        padding:0 15px;
    }

    .logo img{
        width:100px;
    }

    .book-btn{
        padding:8px 12px;
        font-size:11px;
        margin-right:10px;
    }

    .menu-toggle{
        font-size:26px;
    }

    .nav-links{
        top:80px;
    }
}

/* =========================
   VERY SMALL PHONES
   ========================= */

@media screen and (max-width:375px){

    .logo img{
        width:85px;
    }

    .book-btn{
        padding:7px 10px;
        font-size:10px;
    }

    .menu-toggle{
        font-size:22px;
    }
}

/* =========================
   SERVICE AREAS HERO
========================= */

.areas-hero{

    position:relative;

    min-height:80vh;

    display:flex;

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

    text-align:center;

    overflow:hidden;
}

/* =========================
   BACKGROUND IMAGE
========================= */

.areas-bg{

    position:absolute;

    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;

    z-index:0;
}

/* =========================
   OVERLAY
========================= */

.hero-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        rgba(0,0,0,.55),
        rgba(0,0,0,.55)
    );

    z-index:1;
}

/* =========================
   CONTENT
========================= */

.areas-content{

    position:relative;

    z-index:2;

    max-width:900px;

    padding:0 20px;
}

.areas-content span{

    display:inline-block;

    color:#D4AF37;

    font-size:14px;

    font-weight:600;

    letter-spacing:5px;

    text-transform:uppercase;

    margin-bottom:20px;
}

.areas-content h1{

    color:#fff;

    font-size:5rem;

    font-weight:700;

    line-height:1.1;

    margin-bottom:25px;
}

.areas-content p{

    color:#e5e5e5;

    font-size:1.15rem;

    line-height:1.9;

    max-width:750px;

    margin:auto;
}

/* =========================
   LARGE LAPTOPS
========================= */

@media(max-width:1200px){

    .areas-content h1{

        font-size:4.5rem;
    }
}

/* =========================
   iPad Pro / Tablets
========================= */

@media(max-width:1024px){

    .areas-hero{

        min-height:75vh;
    }

    .areas-content{

        max-width:750px;
    }

    .areas-content h1{

        font-size:4rem;
    }

    .areas-content p{

        font-size:1.05rem;
    }
}

/* =========================
   iPad Air / iPad Mini
========================= */

@media(max-width:820px){

    .areas-hero{

        min-height:70vh;
    }

    .areas-content h1{

        font-size:3.5rem;
    }

    .areas-content p{

        font-size:1rem;
    }
}

/* =========================
   Tablets & Large Phones
========================= */

@media(max-width:768px){

    .areas-hero{

        min-height:65vh;

        padding:120px 25px 80px;
    }

    .areas-content h1{

        font-size:3rem;

        line-height:1.15;
    }

    .areas-content p{

        font-size:.95rem;

        line-height:1.8;
    }

    .areas-content span{

        font-size:12px;

        letter-spacing:3px;
    }
}

/* =========================
   iPhone / Samsung
========================= */

@media(max-width:576px){

    .areas-hero{

        min-height:60vh;

        padding:110px 20px 70px;
    }

    .areas-content h1{

        font-size:2.5rem;
    }

    .areas-content p{

        font-size:.9rem;
    }
}

/* =========================
   Small Phones
   iPhone SE / Galaxy Fold
========================= */

@media(max-width:420px){

    .areas-hero{

        min-height:55vh;

        padding:100px 15px 60px;
    }

    .areas-content h1{

        font-size:2rem;

        margin-bottom:20px;
    }

    .areas-content p{

        font-size:.85rem;

        line-height:1.7;
    }

    .areas-content span{

        font-size:11px;

        letter-spacing:2px;
    }
}

/* =========================
   Nest Hub / Short Screens
========================= */

@media(max-height:700px){

    .areas-hero{

        min-height:90vh;
    }
}

/* =========================
   SERVICE INTRO SECTION
========================= */

.service-intro{

    padding:120px 8%;

    background:#ffffff;

    overflow:hidden;
}

.service-intro-container{

    display:grid;

    grid-template-columns:1.1fr .9fr;

    gap:80px;

    align-items:center;
}

/* =========================
   CONTENT
========================= */

.service-intro-content{

    animation:slideLeft 1s ease forwards;
}

.service-intro-content span{

    display:inline-block;

    color:#D4AF37;

    font-size:14px;

    font-weight:600;

    letter-spacing:4px;

    text-transform:uppercase;

    position:relative;

    padding-bottom:12px;
}

.service-intro-content span::after{

    content:"";

    position:absolute;

    left:0;
    bottom:0;

    width:60px;
    height:2px;

    background:#D4AF37;
}

.service-intro-content h2{

    font-size:3rem;

    line-height:1.2;

    margin:25px 0;

    color:#111111;

    font-weight:700;
}

.service-intro-content p{

    color:#666666;

    line-height:1.9;

    margin-bottom:20px;

    font-size:1rem;
}

/* =========================
   FEATURES
========================= */

.intro-features{

    display:grid;

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

    gap:18px;

    margin:35px 0;
}

.intro-feature{

    color:#111;

    font-weight:500;

    padding:12px 15px;

    background:#fafafa;

    border:1px solid rgba(212,175,55,.15);

    border-radius:12px;

    transition:.3s ease;
}

.intro-feature:hover{

    border-color:#D4AF37;

    transform:translateY(-3px);

    box-shadow:
    0 10px 25px rgba(212,175,55,.12);
}

/* =========================
   BUTTON
========================= */

.intro-btn{

    display:inline-block;

    padding:16px 35px;

    background:#D4AF37;

    color:white;

    text-decoration:none;

    border-radius:10px;

    font-weight:600;

    transition:.35s ease;
}

.intro-btn:hover{

    background:#c59c2d;

    transform:translateY(-4px);

    box-shadow:
    0 15px 35px rgba(212,175,55,.25);
}

/* =========================
   IMAGE
========================= */

.service-intro-image{

    overflow:hidden;

    border-radius:25px;

    position:relative;

    animation:slideRight 1s ease forwards;

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

.service-intro-image::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        rgba(212,175,55,.05),
        transparent
    );

    z-index:1;
}

.service-intro-image img{

    width:100%;

    height:600px;

    object-fit:cover;

    display:block;

    transition:.6s ease;
}

.service-intro-image:hover img{

    transform:scale(1.08);
}

/* =========================
   ANIMATIONS
========================= */

@keyframes slideLeft{

    from{

        opacity:0;

        transform:translateX(-60px);
    }

    to{

        opacity:1;

        transform:translateX(0);
    }
}

@keyframes slideRight{

    from{

        opacity:0;

        transform:translateX(60px);
    }

    to{

        opacity:1;

        transform:translateX(0);
    }
}

/* =========================
   TABLETS
========================= */

@media(max-width:1024px){

    .service-intro{

        padding:100px 6%;
    }

    .service-intro-container{

        gap:50px;
    }

    .service-intro-content h2{

        font-size:2.5rem;
    }

    .service-intro-image img{

        height:500px;
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .service-intro{

        padding:90px 25px;
    }

    .service-intro-container{

        grid-template-columns:1fr;

        gap:40px;
    }

    .service-intro-content{

        order:2;

        text-align:center;
    }

    .service-intro-image{

        order:1;
    }

    .service-intro-content span::after{

        left:50%;

        transform:translateX(-50%);
    }

    .service-intro-content h2{

        font-size:2rem;
    }

    .intro-features{

        grid-template-columns:1fr;
    }

    .service-intro-image img{

        height:350px;
    }

    .intro-btn{

        width:100%;

        text-align:center;
    }
}

/* =========================
   SMALL PHONES
========================= */

@media(max-width:480px){

    .service-intro{

        padding:80px 20px;
    }

    .service-intro-content h2{

        font-size:1.8rem;
    }

    .service-intro-content p{

        font-size:.95rem;
    }

    .service-intro-image img{

        height:280px;
    }

    .intro-feature{

        font-size:14px;
    }
}

/* =========================
   CITIES SECTION
========================= */

/* =========================
   CITIES SECTION
========================= */

.cities-section{

    padding:120px 8%;

    background:#ffffff;

    overflow:hidden;
}

/* =========================
   SECTION TITLE
========================= */

.cities-section .section-title{

    text-align:center;

    max-width:850px;

    margin:0 auto 80px;

    animation:fadeDown 1s ease;
}

.cities-section .section-title span{

    display:inline-block;

    color:#D4AF37;

    font-size:14px;

    font-weight:600;

    letter-spacing:4px;

    text-transform:uppercase;

    margin-bottom:15px;

    position:relative;

    padding-bottom:12px;
}

.cities-section .section-title span::after{

    content:"";

    position:absolute;

    left:50%;

    transform:translateX(-50%);

    bottom:0;

    width:60px;

    height:2px;

    background:#D4AF37;
}

.cities-section .section-title h2{

    font-size:3rem;

    color:#111;

    margin:20px 0;

    font-weight:700;
}

.cities-section .section-title p{

    color:#666;

    line-height:1.9;

    max-width:750px;

    margin:auto;
}

/* =========================
   GRID
========================= */

.cities-grid{

    display:grid;

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

    gap:30px;
}

/* =========================
   CARD
========================= */

.city-card{

    background:#fff;

    border:1px solid rgba(212,175,55,.15);

    border-radius:24px;

    padding:35px 30px;

    text-align:center;

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

    position:relative;

    overflow:hidden;

    opacity:0;

    transform:translateY(50px);

    animation:fadeUp .8s ease forwards;

    transition:
    transform .4s ease,
    box-shadow .4s ease,
    border-color .4s ease;
}

/* STAGGER ANIMATION */

.city-card:nth-child(1){animation-delay:.1s;}
.city-card:nth-child(2){animation-delay:.2s;}
.city-card:nth-child(3){animation-delay:.3s;}
.city-card:nth-child(4){animation-delay:.4s;}
.city-card:nth-child(5){animation-delay:.5s;}
.city-card:nth-child(6){animation-delay:.6s;}
.city-card:nth-child(7){animation-delay:.7s;}
.city-card:nth-child(8){animation-delay:.8s;}
.city-card:nth-child(9){animation-delay:.9s;}
.city-card:nth-child(10){animation-delay:1s;}
.city-card:nth-child(11){animation-delay:1.1s;}
.city-card:nth-child(12){animation-delay:1.2s;}

/* GOLD TOP LINE */

.city-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:4px;

    background:#D4AF37;

    transform:scaleX(0);

    transform-origin:left;

    transition:.4s ease;
}

.city-card:hover::before{

    transform:scaleX(1);
}

/* SHINE EFFECT */

.city-card::after{

    content:"";

    position:absolute;

    top:-100%;

    left:-120%;

    width:60%;

    height:250%;

    background:
    linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.6),
        transparent
    );

    transform:rotate(25deg);

    transition:.8s ease;
}

.city-card:hover::after{

    left:150%;
}

/* HOVER */

.city-card:hover{

    transform:
    translateY(-12px)
    scale(1.02);

    border-color:#D4AF37;

    box-shadow:
    0 25px 60px rgba(212,175,55,.18);
}

/* =========================
   CITY NAME
========================= */

.city-card h3{

    color:#111;

    font-size:1.5rem;

    margin-bottom:15px;

    transition:.3s ease;
}

.city-card:hover h3{

    color:#D4AF37;
}

/* =========================
   DESCRIPTION
========================= */

.city-card p{

    color:#666;

    line-height:1.8;

    margin-bottom:25px;

    font-size:15px;
}

/* =========================
   LINK
========================= */

.city-card a{

    color:#D4AF37;

    text-decoration:none;

    font-weight:600;

    display:inline-block;

    transition:.3s ease;
}

.city-card:hover a{

    transform:translateX(6px);
}

/* =========================
   ANIMATIONS
========================= */

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(50px);
    }

    to{

        opacity:1;

        transform:translateY(0);
    }
}

@keyframes fadeDown{

    from{

        opacity:0;

        transform:translateY(-40px);
    }

    to{

        opacity:1;

        transform:translateY(0);
    }
}

/* =========================
   LARGE LAPTOPS
========================= */

@media(max-width:1200px){

    .cities-grid{

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

/* =========================
   TABLETS
========================= */

@media(max-width:1024px){

    .cities-section{

        padding:100px 6%;
    }

    .cities-grid{

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

    .cities-section .section-title h2{

        font-size:2.6rem;
    }
}

/* =========================
   SMALL TABLETS
========================= */

@media(max-width:820px){

    .cities-section{

        padding:90px 5%;
    }

    .cities-grid{

        gap:25px;
    }

    .city-card{

        padding:30px 25px;
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .cities-section{

        padding:90px 25px;
    }

    .cities-grid{

        grid-template-columns:1fr;
    }

    .cities-section .section-title{

        margin-bottom:60px;
    }

    .cities-section .section-title h2{

        font-size:2.2rem;
    }
}

/* =========================
   PHONES
========================= */

@media(max-width:576px){

    .cities-section{

        padding:80px 20px;
    }

    .cities-section .section-title h2{

        font-size:2rem;
    }

    .city-card{

        padding:28px 22px;
    }

    .city-card h3{

        font-size:1.3rem;
    }
}

/* =========================
   SMALL PHONES
========================= */

@media(max-width:420px){

    .cities-section{

        padding:70px 15px;
    }

    .cities-section .section-title h2{

        font-size:1.8rem;
    }

    .city-card{

        padding:25px 18px;
    }

    .city-card h3{

        font-size:1.2rem;
    }

    .city-card p{

        font-size:14px;
    }
}

/* =========================
   SHORT SCREENS
========================= */

@media(max-height:700px){

    .cities-section{

        padding-top:80px;

        padding-bottom:80px;
    }
}

/* =========================
   GTA COVERAGE SECTION
========================= */

/* =========================
   GTA COVERAGE SECTION
========================= */

.gta-coverage{

    padding:120px 8%;

    background:#fafafa;

    overflow:hidden;
}

/* =========================
   CONTAINER
========================= */

.gta-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;
}

/* =========================
   IMAGE
========================= */

.gta-image{

    overflow:hidden;

    border-radius:24px;

    animation:slideLeft 1s ease forwards;
}

.gta-image img{

    width:100%;

    height:650px;

    object-fit:cover;

    border-radius:24px;

    transition:.6s ease;

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

    animation:floatImage 6s ease-in-out infinite;
}

.gta-image:hover img{

    transform:scale(1.08);
}

/* =========================
   CONTENT
========================= */

.gta-content{

    animation:slideRight 1s ease forwards;
}

.gta-content span{

    display:inline-block;

    color:#D4AF37;

    font-size:14px;

    font-weight:600;

    letter-spacing:4px;

    text-transform:uppercase;

    margin-bottom:15px;

    position:relative;

    padding-bottom:12px;
}

.gta-content span::after{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:60px;

    height:2px;

    background:#D4AF37;
}

.gta-content h2{

    font-size:3rem;

    color:#111;

    line-height:1.2;

    margin-bottom:25px;
}

.gta-content p{

    color:#666;

    font-size:16px;

    line-height:1.9;

    margin-bottom:20px;
}

/* =========================
   FEATURES
========================= */

.coverage-features{

    display:grid;

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

    gap:18px;

    margin:35px 0;
}

.feature-item{

    color:#444;

    font-size:15px;

    font-weight:500;

    padding:12px 15px;

    background:#fff;

    border:1px solid rgba(212,175,55,.12);

    border-radius:12px;

    transition:.35s ease;

    position:relative;

    overflow:hidden;
}

/* GOLD SHINE EFFECT */

.feature-item::before{

    content:"";

    position:absolute;

    top:0;

    left:-120%;

    width:80%;

    height:100%;

    background:
    linear-gradient(
        120deg,
        transparent,
        rgba(212,175,55,.15),
        transparent
    );

    transition:.8s ease;
}

.feature-item:hover::before{

    left:150%;
}

.feature-item:hover{

    border-color:#D4AF37;

    transform:translateY(-5px);

    box-shadow:
    0 15px 30px rgba(212,175,55,.12);
}

/* =========================
   BUTTON
========================= */

.coverage-btn{

    display:inline-block;

    padding:16px 36px;

    background:#D4AF37;

    color:#fff;

    text-decoration:none;

    border-radius:12px;

    font-weight:600;

    transition:.35s ease;
}

.coverage-btn:hover{

    background:#c79f2f;

    transform:translateY(-4px);

    box-shadow:
    0 15px 35px rgba(212,175,55,.25);
}

/* =========================
   ANIMATIONS
========================= */

@keyframes slideLeft{

    from{

        opacity:0;

        transform:translateX(-70px);
    }

    to{

        opacity:1;

        transform:translateX(0);
    }
}

@keyframes slideRight{

    from{

        opacity:0;

        transform:translateX(70px);
    }

    to{

        opacity:1;

        transform:translateX(0);
    }
}

@keyframes floatImage{

    0%{

        transform:translateY(0);
    }

    50%{

        transform:translateY(-8px);
    }

    100%{

        transform:translateY(0);
    }
}

/* =========================
   LARGE LAPTOPS
========================= */

@media(max-width:1200px){

    .gta-content h2{

        font-size:2.8rem;
    }

    .gta-image img{

        height:600px;
    }
}

/* =========================
   TABLETS
========================= */

@media(max-width:1024px){

    .gta-coverage{

        padding:100px 6%;
    }

    .gta-container{

        gap:60px;
    }

    .gta-content h2{

        font-size:2.5rem;
    }

    .gta-image img{

        height:550px;
    }
}

/* =========================
   SMALL TABLETS
========================= */

@media(max-width:820px){

    .gta-container{

        grid-template-columns:1fr;

        gap:50px;
    }

    .gta-content{

        text-align:center;
    }

    .gta-content span::after{

        left:50%;

        transform:translateX(-50%);
    }

    .coverage-features{

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

    .gta-image img{

        height:500px;
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .gta-coverage{

        padding:90px 25px;
    }

    .gta-content h2{

        font-size:2.2rem;
    }

    .gta-content p{

        font-size:15px;
    }

    .gta-image img{

        height:420px;
    }
}

/* =========================
   PHONES
========================= */

@media(max-width:576px){

    .gta-coverage{

        padding:80px 20px;
    }

    .coverage-features{

        grid-template-columns:1fr;
    }

    .gta-content h2{

        font-size:2rem;
    }

    .gta-image img{

        height:350px;
    }

    .coverage-btn{

        width:100%;

        text-align:center;
    }
}

/* =========================
   SMALL PHONES
========================= */

@media(max-width:420px){

    .gta-coverage{

        padding:70px 15px;
    }

    .gta-content h2{

        font-size:1.8rem;
    }

    .gta-content p{

        font-size:14px;
    }

    .gta-image img{

        height:280px;
    }

    .feature-item{

        font-size:14px;
    }
}

/* =========================
   SHORT SCREENS
========================= */

@media(max-height:700px){

    .gta-coverage{

        padding-top:80px;

        padding-bottom:80px;
    }
}

/* =========================
   AIRPORT NETWORK SECTION
========================= */

/* =========================
   AIRPORT NETWORK SECTION
========================= */

.airport-network{

    padding:120px 8%;

    background:#fafafa;

    overflow:hidden;
}

/* =========================
   SECTION TITLE
========================= */

.airport-network .section-title{

    text-align:center;

    max-width:850px;

    margin:0 auto 80px;

    animation:fadeDown 1s ease;
}

.airport-network .section-title span{

    display:inline-block;

    color:#D4AF37;

    font-size:14px;

    font-weight:600;

    letter-spacing:4px;

    text-transform:uppercase;

    margin-bottom:15px;

    position:relative;

    padding-bottom:12px;
}

.airport-network .section-title span::after{

    content:"";

    position:absolute;

    left:50%;

    transform:translateX(-50%);

    bottom:0;

    width:60px;

    height:2px;

    background:#D4AF37;
}

.airport-network .section-title h2{

    font-size:3rem;

    color:#111;

    margin:20px 0;

    font-weight:700;
}

.airport-network .section-title p{

    color:#666;

    line-height:1.9;

    max-width:700px;

    margin:auto;
}

/* =========================
   GRID
========================= */

.airport-grid{

    display:grid;

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

    gap:30px;
}

/* =========================
   CARD
========================= */

.airport-card{

    background:#fff;

    border:1px solid rgba(212,175,55,.15);

    border-radius:24px;

    padding:35px 30px;

    text-align:center;

    position:relative;

    overflow:hidden;

    box-shadow:
    0 10px 25px rgba(0,0,0,.05);

    opacity:0;

    transform:translateY(60px);

    animation:fadeUp .8s ease forwards;

    transition:.4s ease;
}

/* STAGGER ANIMATION */

.airport-card:nth-child(1){animation-delay:.1s;}
.airport-card:nth-child(2){animation-delay:.2s;}
.airport-card:nth-child(3){animation-delay:.3s;}
.airport-card:nth-child(4){animation-delay:.4s;}
.airport-card:nth-child(5){animation-delay:.5s;}
.airport-card:nth-child(6){animation-delay:.6s;}
.airport-card:nth-child(7){animation-delay:.7s;}
.airport-card:nth-child(8){animation-delay:.8s;}

/* GOLD TOP BAR */

.airport-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:4px;

    background:#D4AF37;

    transform:scaleX(0);

    transform-origin:left;

    transition:.4s ease;
}

.airport-card:hover::before{

    transform:scaleX(1);
}

/* SHINE EFFECT */

.airport-card::after{

    content:"";

    position:absolute;

    top:-100%;

    left:-120%;

    width:60%;

    height:250%;

    background:
    linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.65),
        transparent
    );

    transform:rotate(25deg);

    transition:.8s ease;
}

.airport-card:hover::after{

    left:150%;
}

/* CARD HOVER */

.airport-card:hover{

    transform:
    translateY(-12px)
    scale(1.02);

    border-color:#D4AF37;

    box-shadow:
    0 25px 60px rgba(212,175,55,.18);
}

/* =========================
   ICON
========================= */

.airport-card i{

    width:80px;
    height:80px;

    display:flex;

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

    margin:auto auto 25px;

    border-radius:50%;

    background:rgba(212,175,55,.10);

    color:#D4AF37;

    font-size:30px;

    transition:.5s ease;
}

.airport-card:hover i{

    transform:
    rotateY(180deg)
    scale(1.1);

    background:#D4AF37;

    color:#fff;
}

/* =========================
   TITLE
========================= */

.airport-card h3{

    font-size:1.4rem;

    color:#111;

    margin-bottom:15px;

    line-height:1.4;

    transition:.3s ease;
}

.airport-card:hover h3{

    color:#D4AF37;
}

/* =========================
   DESCRIPTION
========================= */

.airport-card p{

    color:#666;

    line-height:1.8;

    font-size:15px;

    margin-bottom:20px;
}

/* =========================
   AIRPORT TAG
========================= */

.airport-card span{

    display:inline-block;

    background:rgba(212,175,55,.12);

    color:#D4AF37;

    padding:8px 18px;

    border-radius:50px;

    font-size:13px;

    font-weight:600;

    margin-bottom:25px;

    transition:.3s ease;
}

.airport-card:hover span{

    background:#D4AF37;

    color:#fff;
}

/* =========================
   BUTTON
========================= */

.airport-link{

    display:inline-block;

    color:#D4AF37;

    font-weight:600;

    text-decoration:none;

    transition:.3s ease;
}

.airport-card:hover .airport-link{

    transform:translateX(6px);
}

/* =========================
   KEYFRAMES
========================= */

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(60px);
    }

    to{

        opacity:1;

        transform:translateY(0);
    }
}

@keyframes fadeDown{

    from{

        opacity:0;

        transform:translateY(-40px);
    }

    to{

        opacity:1;

        transform:translateY(0);
    }
}

/* =========================
   LARGE LAPTOPS
========================= */

@media(max-width:1200px){

    .airport-grid{

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

/* =========================
   TABLETS
========================= */

@media(max-width:1024px){

    .airport-network{

        padding:100px 6%;
    }

    .airport-grid{

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

    .airport-network .section-title h2{

        font-size:2.6rem;
    }
}

/* =========================
   SMALL TABLETS
========================= */

@media(max-width:820px){

    .airport-network{

        padding:90px 5%;
    }

    .airport-grid{

        gap:25px;
    }

    .airport-card{

        padding:30px 25px;
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .airport-network{

        padding:90px 25px;
    }

    .airport-grid{

        grid-template-columns:1fr;
    }

    .airport-network .section-title{

        margin-bottom:60px;
    }

    .airport-network .section-title h2{

        font-size:2.2rem;
    }

    .airport-card h3{

        font-size:1.3rem;
    }
}

/* =========================
   PHONES
========================= */

@media(max-width:576px){

    .airport-network{

        padding:80px 20px;
    }

    .airport-network .section-title h2{

        font-size:2rem;
    }

    .airport-card{

        padding:28px 22px;
    }

    .airport-card i{

        width:70px;
        height:70px;

        font-size:26px;
    }
}

/* =========================
   SMALL PHONES
========================= */

@media(max-width:420px){

    .airport-network{

        padding:70px 15px;
    }

    .airport-network .section-title h2{

        font-size:1.8rem;
    }

    .airport-card{

        padding:25px 18px;
    }

    .airport-card h3{

        font-size:1.15rem;
    }

    .airport-card p{

        font-size:14px;
    }
}

/* =========================
   SHORT SCREENS
========================= */

@media(max-height:700px){

    .airport-network{

        padding-top:80px;

        padding-bottom:80px;
    }
}
/* =========================
   POPULAR SERVICES SECTION
========================= */

.popular-services{

    padding:120px 8%;

    background:#ffffff;
}

/* =========================
   SECTION TITLE
========================= */

.popular-services .section-title{

    text-align:center;

    max-width:850px;

    margin:0 auto 80px;
}

.popular-services .section-title span{

    display:inline-block;

    color:#D4AF37;

    font-size:14px;

    font-weight:600;

    letter-spacing:4px;

    text-transform:uppercase;

    position:relative;

    padding-bottom:12px;
}

.popular-services .section-title span::after{

    content:"";

    position:absolute;

    left:50%;

    bottom:0;

    transform:translateX(-50%);

    width:60px;

    height:2px;

    background:#D4AF37;
}

.popular-services .section-title h2{

    color:#111;

    font-size:3rem;

    font-weight:700;

    margin:20px 0;
}

.popular-services .section-title p{

    color:#666;

    line-height:1.8;

    max-width:700px;

    margin:auto;
}

/* =========================
   SERVICES GRID
========================= */

.services-grid{

    display:grid;

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

    gap:30px;
}

/* =========================
   SERVICE CARD
========================= */

.service-area-card{

    background:#fff;

    border:1px solid rgba(212,175,55,.15);

    border-radius:24px;

    padding:40px 35px;

    transition:.4s ease;

    position:relative;

    overflow:hidden;

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

/* GOLD TOP LINE */

.service-area-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:4px;

    background:#D4AF37;

    transform:scaleX(0);

    transition:.4s ease;
}

.service-area-card:hover::before{

    transform:scaleX(1);
}

/* HOVER */

.service-area-card:hover{

    transform:translateY(-10px);

    border-color:#D4AF37;

    box-shadow:
    0 20px 50px rgba(212,175,55,.15);
}

/* =========================
   ICON
========================= */

.service-icon{

    width:80px;
    height:80px;

    display:flex;

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

    border-radius:50%;

    background:rgba(212,175,55,.10);

    color:#D4AF37;

    font-size:30px;

    margin-bottom:25px;

    transition:.4s ease;
}

.service-area-card:hover .service-icon{

    transform:scale(1.1);
}

/* =========================
   TITLE
========================= */

.service-area-card h3{

    color:#111;

    font-size:1.5rem;

    margin-bottom:15px;

    line-height:1.4;
}

/* =========================
   DESCRIPTION
========================= */

.service-area-card p{

    color:#666;

    line-height:1.9;

    margin-bottom:25px;

    font-size:15px;
}

/* =========================
   LINK
========================= */

.service-area-card a{

    color:#D4AF37;

    text-decoration:none;

    font-weight:600;

    transition:.3s ease;
}

.service-area-card a:hover{

    color:#b88d17;

    letter-spacing:.5px;
}

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

@media(max-width:1200px){

    .services-grid{

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

@media(max-width:1024px){

    .popular-services{

        padding:100px 6%;
    }

    .services-grid{

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

    .popular-services .section-title h2{

        font-size:2.6rem;
    }
}

@media(max-width:820px){

    .services-grid{

        gap:25px;
    }

    .service-area-card{

        padding:35px 30px;
    }
}

@media(max-width:768px){

    .popular-services{

        padding:90px 25px;
    }

    .services-grid{

        grid-template-columns:1fr;
    }

    .popular-services .section-title{

        margin-bottom:60px;
    }

    .popular-services .section-title h2{

        font-size:2.2rem;
    }
}

@media(max-width:576px){

    .popular-services{

        padding:80px 20px;
    }

    .popular-services .section-title h2{

        font-size:2rem;
    }

    .service-area-card{

        padding:30px 25px;
    }

    .service-icon{

        width:70px;
        height:70px;

        font-size:26px;
    }
}

@media(max-width:420px){

    .popular-services{

        padding:70px 15px;
    }

    .popular-services .section-title h2{

        font-size:1.8rem;
    }

    .service-area-card{

        padding:25px 20px;
    }

    .service-area-card h3{

        font-size:1.25rem;
    }

    .service-area-card p{

        font-size:14px;
    }

    .service-icon{

        width:65px;
        height:65px;

        font-size:24px;
    }
}

/* =========================
   COMPARISON SECTION
========================= */

/* =========================
   COMPARISON SECTION
========================= */

/* =========================
   COMPARISON SECTION
========================= */

.comparison-section{

    padding:120px 8%;

    background:#fafafa;

    overflow:hidden;
}

/* =========================
   TITLE
========================= */

.comparison-section .section-title{

    text-align:center;

    max-width:850px;

    margin:0 auto 70px;

    animation:fadeDown 1s ease;
}

.comparison-section .section-title span{

    display:inline-block;

    color:#D4AF37;

    font-size:14px;

    font-weight:600;

    letter-spacing:4px;

    text-transform:uppercase;

    position:relative;

    padding-bottom:12px;
}

.comparison-section .section-title span::after{

    content:"";

    position:absolute;

    left:50%;

    bottom:0;

    transform:translateX(-50%);

    width:60px;

    height:2px;

    background:#D4AF37;
}

.comparison-section .section-title h2{

    margin-top:20px;

    font-size:3rem;

    line-height:1.2;

    color:#111;

    font-weight:700;
}

.comparison-section .section-title p{

    margin-top:20px;

    color:#666;

    font-size:1.05rem;

    line-height:1.8;
}

/* =========================
   TABLE
========================= */

.comparison-table{

    max-width:1000px;

    margin:auto;

    background:#fff;

    border-radius:24px;

    overflow:hidden;

    border:1px solid rgba(212,175,55,.15);

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

    animation:fadeUp 1s ease;
}

/* =========================
   HEADER
========================= */

.comparison-header{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    background:#D4AF37;

    color:#fff;

    font-weight:600;

    position:relative;

    overflow:hidden;
}

.comparison-header div{

    padding:22px;
}

/* GOLD SHINE */

.comparison-header::after{

    content:"";

    position:absolute;

    top:0;

    left:-150%;

    width:50%;

    height:100%;

    background:
    linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.45),
        transparent
    );

    animation:shine 6s infinite;
}

/* =========================
   ROWS
========================= */

.comparison-row{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    border-bottom:1px solid #eee;

    transition:.35s ease;
}

.comparison-row:last-child{

    border-bottom:none;
}

.comparison-row:hover{

    background:#fffdf7;

    transform:scale(1.01);
}

.comparison-row div{

    padding:22px;

    text-align:center;
}

.comparison-row div:first-child{

    text-align:left;

    color:#111;

    font-weight:500;
}

/* =========================
   YES / NO
========================= */

.yes{

    color:#28a745;

    font-size:22px;

    font-weight:700;

    animation:pulseGreen 2s infinite;
}

.no{

    color:#dc3545;

    font-size:22px;

    font-weight:700;
}

/* =========================
   ANIMATIONS
========================= */

@keyframes fadeDown{

    from{

        opacity:0;

        transform:translateY(-40px);
    }

    to{

        opacity:1;

        transform:translateY(0);
    }
}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(50px);
    }

    to{

        opacity:1;

        transform:translateY(0);
    }
}

@keyframes shine{

    0%{

        left:-150%;
    }

    100%{

        left:200%;
    }
}

@keyframes pulseGreen{

    0%{

        transform:scale(1);
    }

    50%{

        transform:scale(1.15);
    }

    100%{

        transform:scale(1);
    }
}

/* =========================
   TABLET
========================= */

@media(max-width:1024px){

    .comparison-section{

        padding:100px 6%;
    }

    .comparison-section .section-title h2{

        font-size:2.5rem;
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .comparison-section{

        padding:90px 25px;
    }

    .comparison-section .section-title{

        margin-bottom:50px;
    }

    .comparison-section .section-title h2{

        font-size:2.2rem;
    }

    .comparison-section .section-title p{

        font-size:.95rem;
    }

    .comparison-header,
    .comparison-row{

        grid-template-columns:1.5fr 1fr 1fr;
    }

    .comparison-header div,
    .comparison-row div{

        padding:15px;

        font-size:14px;
    }
}

/* =========================
   SMALL MOBILE
========================= */

@media(max-width:576px){

    .comparison-table{

        overflow-x:auto;
    }

    .comparison-header,
    .comparison-row{

        min-width:650px;
    }

    .comparison-section .section-title h2{

        font-size:1.9rem;
    }
}

@media(max-width:420px){

    .comparison-section{

        padding:80px 15px;
    }

    .comparison-section .section-title h2{

        font-size:1.7rem;
    }

    .comparison-section .section-title p{

        font-size:.9rem;
    }
}
.cta{

    padding:140px 8%;

    background:
    linear-gradient(
        rgba(0,0,0,.75),
        rgba(0,0,0,.75)
    ),
    url("assets/cta-img.webp");

    background-size:cover;
    background-position:center;
    background-attachment:fixed;

    text-align:center;
}

.cta-content{

    max-width:800px;

    margin:auto;
}

.cta h2{

    color:white;

    font-size:3.5rem;

    margin:25px 0;
}

.cta p{

    color:#d4d4d4;

    line-height:1.9;

    font-size:1.1rem;

    margin-bottom:40px;
}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;
}

.cta-btn-primary{

    padding:18px 40px;

    background:#D4AF37;

    color:white;

    text-decoration:none;

    border-radius:10px;

    font-weight:600;

    transition:.3s;
}

.cta-btn-primary:hover{

    transform:translateY(-3px);

    background:#c59c2d;
}

.cta-btn-secondary{

    padding:18px 40px;

    border:2px solid #D4AF37;

    color:#D4AF37;

    text-decoration:none;

    border-radius:10px;

    font-weight:600;

    transition:.3s;
}

.cta-btn-secondary:hover{

    background:#D4AF37;

    color:white;
}

/* =========================
   LARGE TABLETS
========================= */

@media(max-width:1024px){

    .cta{

        padding:120px 6%;
    }

    .cta h2{

        font-size:3rem;
    }

    .cta p{

        font-size:1rem;
    }
}

/* =========================
   TABLETS
========================= */

@media(max-width:768px){

    .cta{

        padding:100px 25px;

        background-attachment:scroll;
    }

    .cta h2{

        font-size:2.5rem;

        line-height:1.2;
    }

    .cta p{

        font-size:.95rem;

        line-height:1.8;
    }

    .cta-buttons{

        flex-direction:column;

        align-items:center;

        gap:15px;
    }

    .cta-btn-primary,
    .cta-btn-secondary{

        width:100%;

        max-width:350px;

        text-align:center;
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width:576px){

    .cta{

        padding:90px 20px;
    }

    .cta h2{

        font-size:2rem;
    }

    .cta p{

        font-size:.9rem;
    }

    .cta-btn-primary,
    .cta-btn-secondary{

        padding:16px 25px;

        font-size:14px;
    }
}

/* =========================
   SMALL PHONES
========================= */

@media(max-width:420px){

    .cta{

        padding:80px 15px;
    }

    .cta h2{

        font-size:1.8rem;
    }

    .cta p{

        font-size:.85rem;

        line-height:1.7;
    }

    .cta-btn-primary,
    .cta-btn-secondary{

        width:100%;

        padding:15px 20px;

        font-size:13px;
    }
}

/* =========================
   NEST HUB / SHORT SCREENS
========================= */

@media(max-height:700px){

    .cta{

        padding-top:90px;

        padding-bottom:90px;
    }
}

.footer{

    background:#ffffff;

    padding-top:80px;

    border-top:1px solid rgba(212,175,55,.15);
}

/* =========================
   CONTAINER
========================= */

.footer-container{

    width:90%;

    margin:auto;

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:50px;

    padding-bottom:60px;
}

/* =========================
   LOGO
========================= */

.footer-logo{

    width:180px;

    margin-bottom:25px;
}

.footer-col p{

    color:#666666;

    line-height:1.8;
}

/* =========================
   HEADINGS
========================= */

.footer-col h3{

    color:#111111;

    margin-bottom:25px;

    font-size:1.2rem;

    position:relative;

    display:inline-block;

    padding-bottom:10px;
}

.footer-col h3::after{

    content:"";

    position:absolute;

    left:0;
    bottom:0;

    width:50%;

    height:2px;

    background:#D4AF37;
}

/* =========================
   LINKS
========================= */

.footer-col ul{

    list-style:none;
}

.footer-col ul li{

    margin-bottom:15px;

    color:#666666;
}

.footer-col ul li a{

    text-decoration:none;

    color:#666666;

    transition:.3s ease;
}

.footer-col ul li a:hover{

    color:#D4AF37;

    padding-left:5px;
}

/* =========================
   SOCIAL ICONS
========================= */

.footer-social{

    display:flex;

    gap:15px;

    margin-top:25px;
}

.footer-social a{

    width:45px;

    height:45px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    border:1px solid rgba(212,175,55,.3);

    color:#D4AF37;

    text-decoration:none;

    transition:.3s ease;
}

.footer-social a:hover{

    background:#D4AF37;

    color:white;

    transform:translateY(-3px);
}

/* =========================
   BOTTOM
========================= */

.footer-bottom{

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

    text-align:center;

    padding:25px 0;
}

.footer-bottom p{

    color:#888888;

    font-size:14px;
}

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

@media(max-width:1024px){

    .footer-container{

        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:768px){

    .footer{

        text-align:center;
    }

    .footer-container{

        grid-template-columns:1fr;

        gap:40px;
    }

    .footer-logo{

        margin:auto auto 20px;
    }

    .footer-social{

        justify-content:center;
    }

    .footer-col h3::after{

        left:50%;

        transform:translateX(-50%);
    }
}

.booking-modal{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.85);

    display:none;

    justify-content:center;

    align-items:center;

    z-index:9999;

    padding:20px;
}

.booking-modal.active{

    display:flex;
}

.booking-container{

    width:1100px;

    max-width:95%;

    background:#111111;

    border-radius:25px;

    overflow:hidden;

    display:grid;

    grid-template-columns:1fr 1fr;

    position:relative;

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

/* LEFT */

.booking-left img{

    width:100%;
    height:100%;

    object-fit:cover;
}

/* RIGHT */

.booking-right{

    padding:50px;
}

.booking-right h2{

    color:#D4AF37;

    font-size:2.5rem;

    margin-bottom:30px;
}

.booking-right form{

    display:grid;

    gap:18px;
}

.booking-right input{

    height:55px;

    background:#050505;

    border:1px solid rgba(212,175,55,.2);

    color:white;

    padding:0 18px;

    border-radius:10px;

    outline:none;
}

.booking-right input:focus{

    border-color:#D4AF37;
}

.booking-right button{

    height:60px;

    background:#D4AF37;

    color:white;

    border:none;

    border-radius:10px;

    font-size:16px;

    font-weight:600;

    cursor:pointer;

    margin-top:10px;
}

/* CLOSE */

.close-modal{

    position:absolute;

    top:20px;

    right:25px;

    color:white;

    font-size:35px;

    cursor:pointer;

    z-index:5;
}

@media(max-width:900px){

    .booking-container{

        grid-template-columns:1fr;
    }

    .booking-left{

        height:250px;
    }

    .booking-right{

        padding:30px;
    }
}