/* =========================================
   PREMIUM RESPONSIVE CSS
   Replace old responsive CSS with this
========================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
    overflow-x:hidden;
}

body{
    overflow-x:hidden;
    font-family:'Poppins',sans-serif;
    background:#f7f5f1;
    color:#222;
    line-height:1.7;
}

/* =========================================
   CONTAINER
========================================= */

.container{
    width:100%;
    max-width:1280px;
    margin:auto;
    padding-left:24px;
    padding-right:24px;
}

/* =========================================
   IMAGES
========================================= */

img{
    width:100%;
    display:block;
}

/* =========================================
   HEADER
========================================= */

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    background:rgba(0,0,0,0.88);
    backdrop-filter:blur(12px);
}

.nav-wrapper{
    min-height:82px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo{
    font-size:32px;
    font-weight:700;
    color:#fff;
    font-family:'Playfair Display',serif;
    white-space:nowrap;
}

.logo span{
    color:#d4af37;
}

.nav{
    display:flex;
    align-items:center;
    gap:30px;
    flex-wrap:wrap;
}

.nav a{
    color:#fff;
    text-decoration:none;
    font-size:15px;
    transition:0.3s;
}

.nav a:hover{
    color:#d4af37;
}

/* =========================================
   HERO
========================================= */

.hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding-top:120px;
    padding-bottom:80px;

    background:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.70)),
    url('images/hero.png');

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.hero-content{
    width:100%;
    max-width:760px;
    position:relative;
    z-index:2;
}

.hero-tag{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:10px 20px;
    border-radius:40px;

    background:#d4af37;
    color:#111;

    font-size:14px;
    font-weight:600;

    margin-bottom:24px;
}

.hero h1{
    font-size:72px;
    line-height:1.1;
    color:#fff;
    margin-bottom:24px;
    font-family:'Playfair Display',serif;
}

.hero p{
    color:#f2f2f2;
    font-size:18px;
    max-width:640px;
    margin-bottom:36px;
}

.hero-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-width:220px;

    background:#d4af37;
    color:#111;

    text-decoration:none;
    font-weight:600;

    padding:16px 34px;
    border-radius:50px;

    transition:0.3s;
}

.hero-btn:hover{
    background:#fff;
    transform:translateY(-3px);
}

/* =========================================
   SECTION
========================================= */

.reviews-section{
    padding:110px 0;
}

.section-heading{
    text-align:center;
    margin-bottom:70px;
}

.section-heading h2{
    font-size:52px;
    line-height:1.2;
    margin-bottom:18px;
    font-family:'Playfair Display',serif;
}

.section-heading p{
    color:#666;
    font-size:18px;
    max-width:700px;
    margin:auto;
}

/* =========================================
   REVIEW GRID
========================================= */

.review-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:32px;
}

/* =========================================
   CARD
========================================= */

.review-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    position:relative;

    box-shadow:
    0 10px 40px rgba(0,0,0,0.06);

    transition:0.35s ease;
}

.review-card:hover{
    transform:translateY(-10px);
}

.review-card img{
    height:250px;
    object-fit:cover;
}

.rank-badge{
    position:absolute;
    top:18px;
    left:18px;

    background:#d4af37;
    color:#111;

    font-size:13px;
    font-weight:700;

    padding:9px 15px;
    border-radius:40px;
}

.review-content{
    padding:30px;
}

.rating{
    color:#d4af37;
    font-weight:600;
    margin-bottom:12px;
}

.review-content h3{
    font-size:30px;
    line-height:1.2;
    margin-bottom:16px;
    font-family:'Playfair Display',serif;
}

.review-content p{
    color:#666;
    margin-bottom:24px;
}

.review-content ul{
    margin-bottom:28px;
}

.review-content ul li{
    list-style:none;
    position:relative;
    padding-left:22px;
    margin-bottom:12px;
    color:#333;
}

.review-content ul li::before{
    content:"✓";
    position:absolute;
    left:0;
    color:#d4af37;
    font-weight:700;
}

.review-content a{
    display:flex;
    align-items:center;
    justify-content:center;

    width:100%;

    background:#111;
    color:#fff;

    text-decoration:none;
    font-weight:600;

    padding:15px;
    border-radius:14px;

    transition:0.3s;
}

.review-content a:hover{
    background:#d4af37;
    color:#111;
}

/* =========================================
   CTA
========================================= */

.cta-section{
    background:#111;
    text-align:center;
    padding:110px 0;
}

.cta-section h2{
    color:#fff;
    font-size:54px;
    line-height:1.2;
    margin-bottom:22px;
    font-family:'Playfair Display',serif;
}

.cta-section p{
    color:#ccc;
    font-size:18px;
    max-width:720px;
    margin:auto;
    margin-bottom:36px;
}

.cta-section a{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-width:220px;

    background:#d4af37;
    color:#111;

    text-decoration:none;
    font-weight:600;

    padding:16px 36px;
    border-radius:50px;

    transition:0.3s;
}

.cta-section a:hover{
    background:#fff;
}

/* =========================================
   FOOTER
========================================= */

.footer{
    background:#090909;
    padding:80px 0 30px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:40px;
    margin-bottom:50px;
}

.footer h4{
    color:#fff;
    font-size:20px;
    margin-bottom:20px;
}

.footer a{
    display:block;
    color:#aaa;
    text-decoration:none;
    margin-bottom:12px;
    transition:0.3s;
}

.footer a:hover{
    color:#d4af37;
}

.copyright{
    text-align:center;
    color:#777;
    border-top:1px solid #222;
    padding-top:24px;
    font-size:14px;
}

/* =========================================
   LARGE LAPTOPS
========================================= */

@media (max-width:1400px){

    .hero h1{
        font-size:64px;
    }

}

/* =========================================
   LAPTOP
========================================= */

@media (max-width:1200px){

    .review-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .hero h1{
        font-size:58px;
    }

}

/* =========================================
   TABLET
========================================= */

@media (max-width:992px){

    .nav{
        gap:18px;
    }

    .hero{
        min-height:auto;
        padding-top:160px;
        padding-bottom:100px;
    }

    .hero h1{
        font-size:50px;
    }

    .section-heading h2{
        font-size:42px;
    }

    .cta-section h2{
        font-size:44px;
    }

}

/* =========================================
   MOBILE
========================================= */

@media (max-width:768px){

    .container{
        padding-left:18px;
        padding-right:18px;
    }

    .nav{
        display:none;
    }

    .nav-wrapper{
        min-height:74px;
    }

    .logo{
        font-size:24px;
    }

    .hero{
        text-align:center;
        padding-top:140px;
        padding-bottom:80px;
    }

    .hero-content{
        margin:auto;
    }

    .hero h1{
        font-size:40px;
        line-height:1.2;
    }

    .hero p{
        font-size:16px;
        margin-left:auto;
        margin-right:auto;
    }

    .hero-btn{
        width:100%;
        max-width:260px;
    }

    .reviews-section{
        padding:80px 0;
    }

    .section-heading{
        margin-bottom:50px;
    }

    .section-heading h2{
        font-size:34px;
    }

    .section-heading p{
        font-size:16px;
    }

    .review-grid{
        grid-template-columns:1fr;
        gap:24px;
    }

    .review-card img{
        height:220px;
    }

    .review-content{
        padding:24px;
    }

    .review-content h3{
        font-size:26px;
    }

    .cta-section{
        padding:80px 0;
    }

    .cta-section h2{
        font-size:36px;
    }

    .cta-section p{
        font-size:16px;
    }

    .cta-section a{
        width:100%;
        max-width:260px;
    }

    .footer{
        padding-top:70px;
    }

    .footer-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
        gap:30px;
    }

}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width:480px){

    .hero{
        padding-top:130px;
        padding-bottom:70px;
    }

    .hero-tag{
        font-size:12px;
        padding:8px 16px;
    }

    .hero h1{
        font-size:32px;
    }

    .hero p{
        font-size:15px;
    }

    .section-heading h2{
        font-size:28px;
    }

    .review-content{
        padding:20px;
    }

    .review-content h3{
        font-size:22px;
    }

    .review-content p{
        font-size:15px;
    }

    .review-content ul li{
        font-size:14px;
    }

    .cta-section h2{
        font-size:30px;
    }

    .cta-section p{
        font-size:15px;
    }

    .footer-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

}

/* =========================================
   EXTRA SMALL
========================================= */

@media (max-width:360px){

    .hero h1{
        font-size:28px;
    }

    .logo{
        font-size:21px;
    }

    .review-content h3{
        font-size:20px;
    }

}