/* GOOGLE FONT */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&display=swap');

*{
    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;
        height:calc(100vh - 90px);
        background:#fff;

        gap:0;

        transition:.4s ease;
        z-index:9999;
    }

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

/* =========================
   HERO SECTION
========================= */

/* =========================
   HERO SECTION
========================= */

/* =========================
   HERO
========================= */

.hero{

    position:relative;

    width:100%;

    min-height:90vh;

    display:flex;

    align-items:center;

    overflow:hidden;

    background:#000;
}

/* REAL IMAGE */

.hero-bg{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:cover;

    z-index:1;
}

/* OVERLAY */

.hero-overlay{

    position:absolute;

    inset:0;

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

    z-index:2;
}

/* CONTENT */

.hero-content{

    position:relative;

    z-index:3;

    max-width:700px;

    margin-left:8%;
}

/* GOLD LINE */

.gold-line{

    width:0;

    height:4px;

    background:#D4AF37;

    margin-bottom:25px;

    animation:lineGrow 1s ease forwards;
}

/* SUBTITLE */

.hero-subtitle{

    color:#D4AF37;

    font-size:14px;

    letter-spacing:4px;

    margin-bottom:20px;

    opacity:0;

    transform:translateY(30px);

    animation:fadeUp .8s ease forwards;

    animation-delay:.3s;
}

/* HEADING */

.hero h1{

    color:#fff;

    font-size:5.5rem;

    line-height:1.1;

    font-weight:700;

    margin-bottom:25px;

    opacity:0;

    transform:translateX(-80px);

    animation:slideLeft 1s ease forwards;

    animation-delay:.6s;
}

/* DESCRIPTION */

.hero-description{

    color:#ddd;

    font-size:1.2rem;

    line-height:1.8;

    max-width:600px;

    margin-bottom:40px;

    opacity:0;

    transform:translateY(30px);

    animation:fadeUp .8s ease forwards;

    animation-delay:1s;
}

/* BUTTONS */

.hero-buttons{

    display:flex;

    gap:20px;

    opacity:0;

    transform:translateY(30px);

    animation:fadeUp .8s ease forwards;

    animation-delay:1.3s;
}

/* PRIMARY BUTTON */

.hero-btn-primary{

    background:#D4AF37;

    color:#fff;

    text-decoration:none;

    padding:16px 32px;

    font-weight:600;

    transition:.3s ease;
}

.hero-btn-primary:hover{

    background:#caa52e;

    transform:translateY(-3px);

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

/* SECONDARY BUTTON */

.hero-btn-secondary{

    border:1px solid #D4AF37;

    color:#D4AF37;

    text-decoration:none;

    padding:16px 32px;

    font-weight:600;

    transition:.3s ease;
}

.hero-btn-secondary:hover{

    background:#D4AF37;

    color:#fff;

    transform:translateY(-3px);

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

/* ANIMATIONS */

@keyframes lineGrow{

    from{width:0;}

    to{width:80px;}
}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(30px);
    }

    to{

        opacity:1;

        transform:translateY(0);
    }
}

@keyframes slideLeft{

    from{

        opacity:0;

        transform:translateX(-80px);
    }

    to{

        opacity:1;

        transform:translateX(0);
    }
}

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

@media(max-width:1024px){

    .hero-content{

        max-width:600px;

        margin-left:6%;
    }

    .hero h1{

        font-size:4.5rem;
    }

    .hero-description{

        font-size:1.1rem;
    }
}

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

@media(max-width:768px){

    .hero{

        min-height:100vh;

        padding:120px 25px 60px;
    }

    .hero-content{

        margin-left:0;

        max-width:100%;
    }

    .hero h1{

        font-size:clamp(3rem,12vw,4.5rem);

        line-height:1.05;
    }

    .hero-description{

        font-size:1rem;
    }

    .hero-buttons{

        flex-direction:column;

        width:100%;
    }

    .hero-btn-primary,
    .hero-btn-secondary{

        width:100%;

        text-align:center;
    }
}

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

@media(max-width:480px){

    .hero{

        padding:110px 20px 50px;
    }

    .hero h1{

        font-size:3.2rem;
    }

    .hero-description{

        font-size:.95rem;
    }

    .hero-subtitle{

        font-size:11px;

        letter-spacing:2px;
    }
}

/* =========================
   WHY CHOOSE US SECTION
========================= */

.features{

    padding:120px 8%;

    background:#ffffff;

    position:relative;
}

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

.section-title{

    text-align:center;

    margin-bottom:80px;
}

.section-title span{

    color:#D4AF37;

    letter-spacing:4px;

    font-size:14px;

    text-transform:uppercase;

    font-weight:600;

    position:relative;

    padding-bottom:12px;
}

.section-title span::after{

    content:"";

    position:absolute;

    left:50%;

    transform:translateX(-50%);

    bottom:0;

    width:60px;

    height:2px;

    background:#D4AF37;
}

.section-title h2{

    margin-top:20px;

    font-size:3rem;

    color:#111111;

    font-weight:700;
}

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

.feature-grid{

    display:grid;

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

    gap:30px;
}

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

.feature-card{

    background:#ffffff;

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

    border-radius:20px;

    padding:40px 30px;

    transition:.4s ease;

    position:relative;

    overflow:hidden;

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

/* GOLD TOP BAR */

.feature-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:3px;

    background:#D4AF37;

    transform:scaleX(0);

    transition:.4s ease;
}

.feature-card:hover::before{

    transform:scaleX(1);
}

.feature-card:hover{

    transform:translateY(-12px);

    border-color:#D4AF37;

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

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

.feature-icon{

    width:75px;
    height:75px;

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

.feature-card:hover .feature-icon{

    background:#D4AF37;

    color:#ffffff;

    transform:scale(1.08);
}

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

.feature-card h3{

    color:#111111;

    margin-bottom:15px;

    font-size:1.4rem;

    font-weight:600;
}

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

.feature-card p{

    color:#666666;

    line-height:1.8;

    font-size:.95rem;
}

/* =========================
   STATS BAR
========================= */

.stats{

    margin-top:90px;

    display:grid;

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

    background:#ffffff;

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

    border-radius:20px;

    padding:45px 30px;

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

.stat-box{

    position:relative;

    text-align:center;
}

.stat-box:not(:last-child)::after{

    content:"";

    position:absolute;

    right:0;
    top:50%;

    transform:translateY(-50%);

    width:1px;
    height:70px;

    background:rgba(212,175,55,.20);
}

.stat-box h3{

    color:#D4AF37;

    font-size:3rem;

    font-weight:700;

    margin-bottom:12px;
}

.stat-box p{

    color:#111111;

    font-size:14px;

    letter-spacing:2px;

    text-transform:uppercase;
}

/* =========================
   ANIMATION
========================= */

.feature-card{

    opacity:0;

    transform:translateY(40px);

    animation:fadeUp .8s ease forwards;
}

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

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);
    }

    to{

        opacity:1;

        transform:translateY(0);
    }
}

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

@media(max-width:1024px){

    .feature-grid{

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

    .stats{

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

        gap:30px;
    }

    .section-title h2{

        font-size:2.5rem;
    }
}

@media(max-width:768px){

    .features{

        padding:90px 25px;
    }

    .feature-grid{

        grid-template-columns:1fr;
    }

    .stats{

        grid-template-columns:1fr;

        gap:40px;
    }

    .stat-box:not(:last-child)::after{

        display:none;
    }

    .section-title h2{

        font-size:2rem;
    }
}

@media(max-width:480px){

    .feature-card{

        padding:30px 25px;
    }

    .feature-icon{

        width:65px;
        height:65px;

        font-size:26px;
    }

    .stat-box h3{

        font-size:2.4rem;
    }
}air

/* =========================
   FLEET SECTION
========================= */

/* =========================
   FLEET SECTION
========================= */

/* =========================
   FLEET SECTION
========================= */

.fleet{
    padding:120px 0;
    background:#f8f8f8;
    overflow:hidden;
}

.fleet .section-title{
    text-align:center;
    margin-bottom:80px;
}

.fleet .section-title span{
    color:#D4AF37;
    letter-spacing:4px;
    font-size:14px;
    text-transform:uppercase;
    font-weight:600;
}

.fleet .section-title h2{
    color:#111;
    font-size:3rem;
    margin-top:15px;
    font-weight:700;
}

/* =========================
   SLIDER WRAPPER
========================= */

.fleet-wrapper{
    position:relative;
    overflow:hidden;
    width:100%;
}

/* Fade Edges */

.fleet-wrapper::before,
.fleet-wrapper::after{
    content:"";
    position:absolute;
    top:0;
    width:120px;
    height:100%;
    z-index:5;
    pointer-events:none;
}

.fleet-wrapper::before{
    left:0;
    background:linear-gradient(
        to right,
        #f8f8f8,
        transparent
    );
}

.fleet-wrapper::after{
    right:0;
    background:linear-gradient(
        to left,
        #f8f8f8,
        transparent
    );
}

/* =========================
   AUTO SCROLLING TRACK
========================= */

.fleet-slider{
    display:flex;
    gap:30px;
    width:max-content;

    animation:luxuryScroll 40s linear infinite;
}

.fleet-slider:hover{
    animation-play-state:paused;
}

@keyframes luxuryScroll{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }
}

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

.fleet-card{
    min-width:350px;
    max-width:350px;

    background:#fff;

    border-radius:20px;

    overflow:hidden;

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

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

    transition:.4s ease;
}

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

    border-color:#D4AF37;

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

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

.fleet-card img{
    width:100%;
    height:240px;

    object-fit:cover;

    transition:.6s ease;
}

.fleet-card:hover img{
    transform:scale(1.08);
}

/* =========================
   INFO
========================= */

.fleet-info{
    padding:25px;
}

.fleet-info h3{
    color:#111;
    font-size:1.4rem;
    margin-bottom:10px;
}

.fleet-info p{
    color:#666;
    margin-bottom:20px;
}

/* =========================
   DETAILS
========================= */

.fleet-details{
    display:flex;
    justify-content:space-between;

    margin-bottom:25px;

    color:#D4AF37;

    font-weight:600;
}

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

.fleet-btn{
    display:block;

    text-align:center;

    text-decoration:none;

    padding:14px;

    background:#D4AF37;

    color:white;

    border-radius:10px;

    font-weight:600;

    transition:.3s;
}

.fleet-btn:hover{
    background:#c59c2d;
}

/* =========================
   NAVIGATION BUTTONS
========================= */

.slider-btn{
    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:60px;
    height:60px;

    border:none;

    border-radius:50%;

    background:#D4AF37;

    color:white;

    font-size:22px;

    cursor:pointer;

    z-index:20;

    transition:.3s;
}

.slider-btn:hover{
    transform:translateY(-50%) scale(1.1);

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

.prev{
    left:25px;
}

.next{
    right:25px;
}

/* =========================
   VIEW ALL BUTTON
========================= */

.view-all-container{
    text-align:center;
    margin-top:70px;
}

.view-all-btn{
    display:inline-block;

    padding:18px 40px;

    background:#D4AF37;

    color:white;

    text-decoration:none;

    border-radius:10px;

    font-weight:600;

    transition:.3s;
}

.view-all-btn:hover{
    background:#c59c2d;

    transform:translateY(-2px);
}



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

@media(max-width:1024px){

    .fleet-card{
        min-width:300px;
        max-width:300px;
    }

    .fleet .section-title h2{
        font-size:2.5rem;
    }
}

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

@media(max-width:768px){

    .fleet{
        padding:90px 0;
    }

    .fleet-card{
        min-width:280px;
        max-width:280px;
    }

    .fleet-card img{
        height:200px;
    }

    .fleet .section-title h2{
        font-size:2rem;
    }

    .slider-btn{
        width:50px;
        height:50px;
    }
}

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

@media(max-width:480px){

    .fleet-card{
        min-width:250px;
        max-width:250px;
    }

    .fleet-wrapper::before,
    .fleet-wrapper::after{
        width:60px;
    }

    .fleet .section-title h2{
        font-size:1.8rem;
    }
}

/* =========================
   AIRPORTS SECTION
========================= */

/* =========================
   AIRPORTS WE SERVE
========================= */

.airports-served{

    position:relative;

    padding:120px 8%;

    background:
    linear-gradient(
        rgba(255,255,255,.95),
        rgba(255,255,255,.95)
    ),
    url("assets/airport-served.webp");

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

.airports-served::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    radial-gradient(
        circle at center,
        rgba(212,175,55,.08),
        transparent 70%
    );

    pointer-events:none;
}

.airports-served > *{

    position:relative;

    z-index:2;
}

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

.airports-served .section-title{

    text-align:center;

    max-width:900px;

    margin:0 auto 80px;
}

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

.airports-served .section-title span::after{

    content:"";

    position:absolute;

    left:50%;

    transform:translateX(-50%);

    bottom:0;

    width:60px;

    height:2px;

    background:#D4AF37;
}

.airports-served .section-title h2{

    color:#111111;

    font-size:3rem;

    margin:20px 0;

    font-weight:700;
}

.airports-served .section-title p{

    color:#666666;

    font-size:1.05rem;

    line-height:1.9;

    max-width:800px;

    margin:auto;
}

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

.airport-logos{

    display:grid;

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

    gap:50px 30px;

    align-items:center;
}

/* =========================
   AIRPORT ITEM
========================= */

.airport-item{

    text-align:center;

    padding:35px 20px;

    background:#ffffff;

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

    border-radius:20px;

    transition:.4s ease;

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

.airport-item:hover{

    transform:translateY(-10px);

    border-color:#D4AF37;

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

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

.airport-item img{

    width:220px;

    max-width:100%;

    height:110px;

    object-fit:contain;

    margin-bottom:20px;

    transition:.4s ease;
}

.airport-item:hover img{

    transform:scale(1.08);
}

/* =========================
   AIRPORT NAME
========================= */

.airport-item h4{

    color:#111111;

    font-size:1.05rem;

    font-weight:600;

    transition:.3s ease;
}

.airport-item:hover h4{

    color:#D4AF37;
}

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

@media(max-width:1200px){

    .airport-logos{

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

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

@media(max-width:1024px){

    .airports-served{

        padding:100px 6%;
    }

    .airport-logos{

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

        gap:40px 25px;
    }

    .airports-served .section-title h2{

        font-size:2.6rem;
    }
}

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

@media(max-width:820px){

    .airports-served .section-title{

        margin-bottom:60px;
    }

    .airports-served .section-title h2{

        font-size:2.4rem;
    }
}

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

@media(max-width:768px){

    .airports-served{

        padding:90px 25px;
    }

    .airport-logos{

        grid-template-columns:1fr;

        gap:25px;
    }

    .airports-served .section-title h2{

        font-size:2rem;
    }

    .airports-served .section-title p{

        font-size:.95rem;
    }

    .airport-item{

        padding:30px 20px;
    }

    .airport-item img{

        width:180px;

        height:90px;
    }
}

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

@media(max-width:576px){

    .airports-served{

        padding:80px 20px;
    }

    .airports-served .section-title span{

        font-size:12px;

        letter-spacing:3px;
    }

    .airports-served .section-title h2{

        font-size:1.9rem;
    }

    .airport-item img{

        width:160px;
    }

    .airport-item h4{

        font-size:.95rem;
    }
}

/* =========================
   Small Phones
========================= */

@media(max-width:420px){

    .airports-served .section-title h2{

        font-size:1.7rem;
    }

    .airport-item{

        padding:25px 15px;
    }

    .airport-item img{

        width:140px;
    }

    .airport-item h4{

        font-size:.9rem;
    }
}

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

@media(max-height:700px){

    .airports-served{

        padding-top:80px;

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

/* =========================
   TESTIMONIALS
========================= */

.testimonials{

    padding:120px 0;

    background:#ffffff;

    overflow:hidden;
}

.testimonials .section-title{

    text-align:center;

    margin-bottom:70px;
}

.testimonials .section-title h2{

    color:#111111;
}

/* =========================
   WRAPPER
========================= */

.testimonial-wrapper{

    position:relative;

    overflow:hidden;
}

/* Luxury Fade Effect */

.testimonial-wrapper::before,
.testimonial-wrapper::after{

    content:"";

    position:absolute;

    top:0;

    width:150px;

    height:100%;

    z-index:10;

    pointer-events:none;
}

.testimonial-wrapper::before{

    left:0;

    background:
    linear-gradient(
        to right,
        #ffffff,
        transparent
    );
}

.testimonial-wrapper::after{

    right:0;

    background:
    linear-gradient(
        to left,
        #ffffff,
        transparent
    );
}

/* =========================
   SLIDER
========================= */

.testimonial-slider{

    display:flex;

    gap:30px;

    width:max-content;

    animation:testimonialScroll 50s linear infinite;
}

.testimonial-slider:hover{

    animation-play-state:paused;
}

@keyframes testimonialScroll{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }
}

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

.testimonial-card{

    min-width:420px;

    background:#ffffff;

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

    border-radius:24px;

    padding:40px;

    transition:.4s ease;

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

.testimonial-card:hover{

    transform:translateY(-10px);

    border-color:#D4AF37;

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

/* =========================
   STARS
========================= */

.stars{

    color:#D4AF37;

    font-size:20px;

    letter-spacing:4px;

    margin-bottom:20px;
}

/* =========================
   REVIEW TEXT
========================= */

.testimonial-card p{

    color:#666666;

    line-height:1.9;

    margin-bottom:30px;

    font-size:15px;
}

/* =========================
   CLIENT INFO
========================= */

.client-info{

    display:flex;

    align-items:center;

    gap:15px;
}

.client-info img{

    width:70px;

    height:70px;

    border-radius:50%;

    object-fit:cover;

    border:3px solid #D4AF37;

    transition:.3s ease;
}

.testimonial-card:hover .client-info img{

    transform:scale(1.08);

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

.client-info h4{

    color:#111111;

    font-size:18px;

    margin-bottom:5px;

    font-weight:600;
}

.client-info span{

    color:#777777;

    font-size:14px;
}

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

@media(max-width:1200px){

    .testimonial-card{

        min-width:380px;
    }
}

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

@media(max-width:1024px){

    .testimonial-card{

        min-width:360px;
    }
}

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

@media(max-width:820px){

    .testimonials{

        padding:100px 0;
    }
}

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

@media(max-width:768px){

    .testimonials{

        padding:90px 0;
    }

    .testimonial-card{

        min-width:300px;

        padding:30px;
    }

    .testimonial-wrapper::before,
    .testimonial-wrapper::after{

        width:70px;
    }

    .client-info img{

        width:60px;

        height:60px;
    }
}

/* =========================
   Phones
========================= */

@media(max-width:576px){

    .testimonial-card{

        min-width:280px;
    }

    .testimonial-card p{

        font-size:14px;
    }
}

/* =========================
   Small Phones
========================= */

@media(max-width:420px){

    .testimonial-card{

        min-width:260px;

        padding:25px;
    }

    .stars{

        font-size:16px;
    }

    .client-info h4{

        font-size:16px;
    }

    .client-info span{

        font-size:13px;
    }
}

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

@media(max-height:700px){

    .testimonials{

        padding-top:80px;

        padding-bottom:80px;
    }
}

/* =========================
   CTA SECTION
========================= */

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

.blog-section{

    padding:120px 8%;

    background:#ffffff;
}

.blog-header{

    display:flex;

    justify-content:space-between;

    align-items:flex-end;

    margin-bottom:60px;
}

.blog-subtitle{

    color:#D4AF37;

    letter-spacing:4px;

    font-size:13px;

    font-weight:600;

    text-transform:uppercase;
}

.blog-header h2{

    margin-top:15px;

    color:#111;

    font-size:2.8rem;
}

.view-more{

    color:#111;

    text-decoration:none;

    font-weight:600;

    transition:.3s;
}

.view-more:hover{

    color:#D4AF37;
}

.blog-grid{

    display:grid;

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

    gap:30px;
}

.blog-card{

    background:#fff;

    border-radius:24px;

    overflow:hidden;

    box-shadow:
    0 10px 35px rgba(0,0,0,.06);

    transition:.4s ease;
}

.blog-card:hover{

    transform:translateY(-10px);

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

.blog-card img{

    width:100%;

    height:240px;

    object-fit:cover;
}

.blog-content{

    padding:30px;
}

.blog-date{

    color:#D4AF37;

    font-size:13px;

    font-weight:600;
}

.blog-content h3{

    margin:15px 0;

    color:#111;

    font-size:1.4rem;

    line-height:1.4;
}

.blog-content p{

    color:#666;

    line-height:1.8;

    margin-bottom:20px;
}

.read-more{

    text-decoration:none;

    color:#111;

    font-weight:600;

    transition:.3s;
}

.read-more:hover{

    color:#D4AF37;
}

@media(max-width:1024px){

    .blog-grid{

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

}

@media(max-width:768px){

    .blog-section{

        padding:90px 25px;
    }

    .blog-header{

        flex-direction:column;

        align-items:flex-start;

        gap:20px;
    }

    .blog-header h2{

        font-size:2rem;
    }

    .blog-grid{

        grid-template-columns:1fr;
    }

}

/* ===================================
   FAQ SECTION
=================================== */



/* =========================
   FOOTER
========================= */

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

