/* 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;

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

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

.services-hero{

    position:relative;

    height:85vh;

    display:flex;

    align-items:center;

    background:
    linear-gradient(
        rgba(0,0,0,.60),
        rgba(0,0,0,.60)
    ),
    url("assets/service-hero.webp");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    overflow:hidden;
}

.hero-overlay{

    position:absolute;

    inset:0;

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

.services-hero-content{

    position:relative;

    z-index:2;

    max-width:800px;

    padding-left:8%;
}

.hero-subtitle{

    display:inline-block;

    color:#D4AF37;

    letter-spacing:4px;

    font-size:14px;

    font-weight:600;

    margin-bottom:20px;

    text-transform:uppercase;
}

.services-hero-content h1{

    color:#fff;

    font-size:5rem;

    line-height:1.1;

    margin-bottom:25px;

    font-weight:700;
}

.services-hero-content p{

    color:#ddd;

    font-size:1.15rem;

    line-height:1.9;

    max-width:650px;

    margin-bottom:40px;
}

.hero-buttons{

    display:flex;

    gap:20px;
}

.hero-btn-primary{

    background:#D4AF37;

    color:#fff;

    text-decoration:none;

    padding:16px 35px;

    border-radius:10px;

    font-weight:600;

    transition:.3s;
}

.hero-btn-primary:hover{

    background:#caa12d;

    transform:translateY(-3px);
}

.hero-btn-secondary{

    border:1px solid #D4AF37;

    color:#D4AF37;

    text-decoration:none;

    padding:16px 35px;

    border-radius:10px;

    font-weight:600;

    transition:.3s;
}

.hero-btn-secondary:hover{

    background:#D4AF37;

    color:#fff;
}

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

/* ===================================
   LARGE DESKTOPS (1600px+)
=================================== */

@media (min-width:1600px){

    .services-hero-content h1{

        font-size:6rem;
    }

    .services-hero-content{

        max-width:900px;
    }
}

/* ===================================
   LAPTOPS & SMALL DESKTOPS
=================================== */

@media (max-width:1200px){

    .services-hero-content h1{

        font-size:4.5rem;
    }

    .services-hero{

        height:80vh;
    }
}

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

@media (max-width:1024px){

    .services-hero{

        height:75vh;
    }

    .services-hero-content{

        padding:0 6%;
        max-width:700px;
    }

    .services-hero-content h1{

        font-size:4rem;
    }

    .services-hero-content p{

        font-size:1rem;
    }
}

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

@media (max-width:820px){

    .services-hero{

        height:70vh;
    }

    .services-hero-content h1{

        font-size:3.5rem;
    }

    .hero-buttons{

        flex-wrap:wrap;
    }
}

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

@media (max-width:768px){

    .services-hero{

        height:auto;

        min-height:700px;

        text-align:center;
    }

    .services-hero-content{

        padding:120px 25px;
        max-width:100%;
    }

    .services-hero-content h1{

        font-size:3rem;
    }

    .services-hero-content p{

        font-size:1rem;

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

    .hero-buttons{

        justify-content:center;

        flex-wrap:wrap;
    }
}

/* ===================================
   iPhone Plus / Samsung S Series
=================================== */

@media (max-width:576px){

    .services-hero{

        min-height:650px;
    }

    .services-hero-content h1{

        font-size:2.5rem;
    }

    .hero-subtitle{

        font-size:12px;

        letter-spacing:3px;
    }

    .services-hero-content p{

        font-size:.95rem;

        line-height:1.8;
    }

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

        padding:14px 28px;
    }
}

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

@media (max-width:420px){

    .services-hero{

        min-height:600px;
    }

    .services-hero-content{

        padding:100px 20px;
    }

    .services-hero-content h1{

        font-size:2rem;

        line-height:1.2;
    }

    .services-hero-content p{

        font-size:.9rem;
    }

    .hero-buttons{

        flex-direction:column;

        width:100%;
    }

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

        width:100%;

        text-align:center;
    }
}

/* ===================================
   Nest Hub
=================================== */

@media (max-height:700px){

    .services-hero{

        height:auto;

        min-height:550px;
    }

    .services-hero-content h1{

        font-size:3rem;
    }
}

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

.section-title{

    text-align:center;

    max-width:900px;

    margin:0 auto 70px;
}

.section-title span{

    display:block;

    color:#D4AF37;

    font-size:14px;

    font-weight:600;

    letter-spacing:4px;

    text-transform:uppercase;

    margin-bottom:15px;
}

.section-title h2{

    font-size:3.5rem;

    font-weight:700;

    color:#111;

    margin-bottom:20px;
}

.section-title p{

    color:#666;

    font-size:1.1rem;

    line-height:1.8;

    max-width:700px;

    margin:auto;
}

.services-grid-section{

    padding:120px 8%;

    background:#ffffff;
}

.section-desc{

    max-width:800px;

    margin:20px auto 0;

    color:#666;

    line-height:1.9;

    text-align:center;
}



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

.services-grid{

    margin-top:70px;

    display:grid;

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

    gap:35px;
}

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

.service-card{

    background:#fff;

    border-radius:24px;

    overflow:hidden;

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

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

    transition:.4s ease;
}

.service-card:hover{

    transform:translateY(-12px);

    border-color:#D4AF37;

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

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

.service-card img{

    width:100%;

    height:260px;

    object-fit:cover;

    transition:.6s ease;
}

.service-card:hover img{

    transform:scale(1.08);
}

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

.service-content{

    padding:30px;
}

.service-tag{

    color:#D4AF37;

    font-size:13px;

    font-weight:600;

    letter-spacing:3px;
}

.service-content h3{

    margin:15px 0;

    font-size:1.5rem;

    color:#111;
}

.service-content p{

    color:#666;

    line-height:1.8;

    margin-bottom:20px;
}

/* =========================
   LIST
========================= */

.service-content ul{

    list-style:none;

    margin-bottom:25px;
}

.service-content ul li{

    margin-bottom:12px;

    color:#444;

    position:relative;

    padding-left:25px;
}

.service-content ul li::before{

    content:"✓";

    position:absolute;

    left:0;

    color:#D4AF37;

    font-weight:700;
}

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

.service-btn{

    display:block;

    width:100%;

    text-align:center;

    padding:15px;

    background:#D4AF37;

    color:white;

    text-decoration:none;

    border-radius:10px;

    font-weight:600;

    transition:.3s ease;
}

.service-btn:hover{

    background:#c79f2f;
}

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

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

@media(max-width:1200px){

    .services-grid{

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

    .section-title h2{

        font-size:3rem;
    }
}

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

@media(max-width:1024px){

    .services-grid-section{

        padding:100px 6%;
    }

    .services-grid{

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

        gap:30px;
    }

    .service-card img{

        height:240px;
    }

    .section-title h2{

        font-size:2.8rem;
    }

    .service-content h3{

        font-size:1.4rem;
    }
}

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

@media(max-width:820px){

    .section-title{

        margin-bottom:60px;
    }

    .section-title h2{

        font-size:2.5rem;
    }

    .section-title p{

        font-size:1rem;
    }
}

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

@media(max-width:768px){

    .services-grid-section{

        padding:90px 25px;
    }

    .services-grid{

        grid-template-columns:1fr;

        gap:30px;
    }

    .section-title{

        margin-bottom:50px;
    }

    .section-title h2{

        font-size:2.3rem;
    }

    .section-title p{

        font-size:1rem;
    }

    .service-card img{

        height:280px;
    }

    .service-content{

        padding:25px;
    }

    .service-content h3{

        font-size:1.4rem;
    }
}

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

@media(max-width:576px){

    .services-grid-section{

        padding:80px 20px;
    }

    .section-title span{

        font-size:12px;

        letter-spacing:3px;
    }

    .section-title h2{

        font-size:2rem;
    }

    .section-title p{

        font-size:.95rem;

        line-height:1.8;
    }

    .service-card{

        border-radius:20px;
    }

    .service-card img{

        height:240px;
    }

    .service-content{

        padding:22px;
    }

    .service-content h3{

        font-size:1.3rem;
    }

    .service-content p{

        font-size:.95rem;
    }

    .service-btn{

        padding:14px;
    }
}

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

@media(max-width:420px){

    .section-title h2{

        font-size:1.8rem;
    }

    .section-title p{

        font-size:.9rem;
    }

    .service-card img{

        height:220px;
    }

    .service-content{

        padding:20px;
    }

    .service-content h3{

        font-size:1.2rem;
    }

    .service-content ul li{

        font-size:14px;
    }

    .service-btn{

        width:100%;
    }
}

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

@media(max-height:700px){

    .services-grid-section{

        padding-top:80px;

        padding-bottom:80px;
    }
}

.testimonials{

    padding:120px 0;

    background:#050505;

    overflow:hidden;
}

.testimonials .section-title{

    text-align:center;

    margin-bottom:70px;
}

.testimonials .section-title h2{

    color:#ffffff;
}

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

.testimonial-wrapper{

    position:relative;

    overflow:hidden;
}

/* Fade Effect Left & Right */

.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,
        #050505,
        transparent
    );
}

.testimonial-wrapper::after{

    right:0;

    background:
    linear-gradient(
        to left,
        #050505,
        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:#111111;

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

.testimonial-card:hover{

    transform:translateY(-10px);

    border-color:#D4AF37;

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

/* .testimonial-card p{

    color:#d4d4d4;

    line-height:2;

    margin-bottom:35px;

    font-size:15px;

    min-height:160px;
} */

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

.stars{

    color:#D4AF37;

    font-size:20px;

    letter-spacing:4px;

    margin-bottom:20px;
}

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

.testimonial-card p{

    color:#d4d4d4;

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

.client-info h4{

    color:#ffffff;

    font-size:18px;

    margin-bottom:5px;
}

.client-info span{

    color:#a8a8a8;

    font-size:14px;
}

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

@media(max-width:1024px){

    .testimonial-card{

        min-width:360px;
    }
}

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

@media(max-width:480px){

    .testimonial-card{

        min-width:270px;
    }

    .stars{

        font-size:16px;
    }

    .testimonial-card p{

        font-size:14px;
    }
}

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