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

.main-header{
    position:sticky;
    top:0;
    z-index:9999;
    background:#ffffff;
    border-bottom:1px solid #f0f0f0;
}

.header-container{
    max-width:1400px;
    margin:auto;
    padding:0 40px;

    height:100px;

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

/* LOGO */

.logo img{
    height:75px;
    width:auto;
    display:block;
}

/* NAVIGATION */

.nav-menu{
    display:flex;
    align-items:center;
    gap:45px;

    list-style:none;
}

.nav-menu li{
    position:relative;
}

.nav-menu li a{
    color:#222;
    text-decoration:none;

    font-size:17px;
    font-weight:600;

    transition:.3s;
}

.nav-menu li a:hover{
    color:#C8A96A;
}

/* ACTIVE LINK */

.nav-menu li a.active{
    color:#C8A96A;
}

/* DROPDOWN */

.submenu{
    position:absolute;
    top:120%;
    left:0;

    min-width:250px;

    background:#fff;

    padding:15px 0;

    border-radius:12px;

    box-shadow:
    0 15px 35px rgba(0,0,0,.08);

    opacity:0;
    visibility:hidden;

    transition:.3s;
}

.dropdown:hover .submenu{
    opacity:1;
    visibility:visible;
    top:100%;
}

.submenu li{
    width:100%;
}

.submenu li a{
    display:block;

    padding:12px 25px;

    font-size:15px;
}

.submenu li a:hover{
    background:#faf7f0;
}

/* BUTTON */

.header-btn{
    display:flex;
    align-items:center;
    gap:10px;

    padding:15px 28px;

    border:2px solid #C8A96A;

    color:#C8A96A;
    text-decoration:none;

    font-weight:600;

    border-radius:8px;

    transition:.3s;
}

.header-btn:hover{
    background:#C8A96A;
    color:#fff;
}

.header-btn span{
    transition:.3s;
}

.header-btn:hover span{
    transform:translateX(5px);
}

/* MOBILE ICON */

.mobile-toggle{
    display:none;
    font-size:30px;
    cursor:pointer;
}

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

@media(max-width:991px){

    .navbar{
        display:none;
    }

    .header-btn{
        display:none;
    }

    .mobile-toggle{
        display:block;
    }

    .header-container{
        height:90px;
        padding:0 20px;
    }

    .logo img{
        height:65px;
    }
}

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

.footer{
    background:#111111;
    color:#ffffff;
    padding-top:80px;
}

.footer-grid{
    display:grid;
    grid-template-columns:
    1.5fr
    1fr
    1fr
    1.2fr;

    gap:60px;
}

/* LOGO */

.footer-logo{
    width:220px;
    margin-bottom:25px;
}

.footer-col p{
    color:#cfcfcf;
    line-height:1.8;
    font-size:15px;
}

/* HEADINGS */

.footer-col h3{
    color:#ffffff;
    font-size:22px;
    margin-bottom:25px;
    position:relative;
}

.footer-col h3::after{
    content:"";

    position:absolute;
    left:0;
    bottom:-10px;

    width:50px;
    height:3px;

    background:#C8A96A;
}

/* LINKS */

.footer-col ul{
    list-style:none;
}

.footer-col ul li{
    margin-bottom:14px;
}

.footer-col ul li a{
    color:#cfcfcf;
    text-decoration:none;

    transition:.3s;
}

.footer-col ul li a:hover{
    color:#C8A96A;
    padding-left:5px;
}

/* CONTACT */

.footer-contact p{
    margin-bottom:20px;
}

.footer-contact strong{
    color:#ffffff;
}

/* BOTTOM BAR */

.footer-bottom{
    margin-top:60px;
    border-top:1px solid rgba(255,255,255,.08);
}

.footer-bottom-wrap{
    min-height:80px;

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

.footer-bottom p{
    color:#999;
    font-size:14px;
}

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

@media(max-width:991px){

    .footer-grid{
        grid-template-columns:1fr 1fr;
        gap:40px;
    }

    .footer-bottom-wrap{
        flex-direction:column;
        gap:15px;
        padding:20px 0;
        text-align:center;
    }

}

@media(max-width:768px){

    .footer{
        padding-top:60px;
    }

    .footer-grid{
        grid-template-columns:1fr;
        gap:40px;
    }

    .footer-logo{
        width:180px;
    }

    .footer-col h3{
        font-size:20px;
    }

}

/* ===================================
   GOOGLE FONT
=================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root{
    --primary:#C8A96A;
    --dark:#111111;
    --text:#555555;
    --light:#f8f8f8;
    --white:#ffffff;
}

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    color:var(--text);
    overflow-x:hidden;
    background:#fff;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

.container{
    width:100%;
    max-width:1400px;
    margin:auto;
    padding:0 20px;
}

section{
    padding:100px 0;
}

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

.btn-primary{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:16px 34px;

    background:var(--primary);
    color:#fff;

    border-radius:8px;
    font-weight:600;

    transition:.3s;
}

.btn-primary:hover{
    transform:translateY(-3px);
}

.btn-secondary{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:16px 34px;

    border:2px solid #fff;
    color:#fff;

    border-radius:8px;
    margin-left:15px;

    transition:.3s;
}

.btn-secondary:hover{
    background:#fff;
    color:#111;
}

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

.section-heading{
    text-align:center;
    margin-bottom:60px;
}

.section-heading span{
    color:var(--primary);
    font-weight:600;
    letter-spacing:2px;
}

.section-heading h2{
    font-size:48px;
    color:#111;
    margin-top:15px;
}

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

.hero{
    position:relative;
    height:100vh;
    overflow:hidden;
    padding:0;
}

.hero-video{
    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:100%;

    object-fit:cover;
}

.hero-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        90deg,
        rgba(0,0,0,.78) 0%,
        rgba(0,0,0,.55) 45%,
        rgba(0,0,0,.25) 100%
    );
}


.hero-subtitle{
    display:inline-block;

    padding:12px 25px;

    background:rgba(255,255,255,.12);

    border:1px solid rgba(255,255,255,.25);

    border-radius:50px;

    font-size:15px;
    font-weight:500;
}

.hero-content{
    position:relative;
    z-index:5;

    max-width:600px;

    padding-top:100px;

    color:#fff;
}

.hero-content h1{
    font-size:58px;
    line-height:1.1;
    font-weight:700;
    letter-spacing:-1px;
    margin:15px 0 20px;
}

.hero-content p{
    max-width:550px;

    font-size:18px;
    line-height:1.7;

    color:rgba(255,255,255,.92);

    margin-bottom:25px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

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

@media(max-width:991px){

    .hero-content{
        max-width:100%;
        padding-top:200px;
    }

    .hero-content h1{
        font-size:58px;
        line-height:1.1;
    }

    .hero-content p{
        font-size:18px;
    }

}

@media(max-width:768px){

    .hero{
        height:85vh;
    }

    .hero-content{
        padding-top:160px;
    }

    .hero-content h1{
        font-size:42px;
        line-height:1.15;
        letter-spacing:-1px;
    }

    .hero-content p{
        font-size:16px;
        line-height:1.7;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:flex-start;
        gap:15px;
    }

}


/* ===================================
   ABOUT
=================================== */

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.about-image img{
    border-radius:20px;
}

.section-tag{
    color:var(--primary);
    font-weight:600;
}

.about-content h2{
    font-size:48px;
    margin:20px 0;
    color:#111;
}

.about-content p{
    line-height:1.9;
    margin-bottom:20px;
}

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

.services-home{
    background:#f7f7f7;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.service-card{
    position:relative;
    overflow:hidden;
    border-radius:20px;
}

.service-card img{
    height:350px;
    object-fit:cover;
    transition:.5s;
}

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

.service-content{
    position:absolute;
    left:0;
    right:0;
    bottom:0;

    padding:25px;

    background:linear-gradient(
    transparent,
    rgba(0,0,0,.8));
}

.service-content h3{
    color:#fff;
}

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

.why-us{

    position:relative;

    background:
    linear-gradient(
    135deg,
    #111111 0%,
    #1c1c1c 100%);

    overflow:hidden;
}

.why-us .section-heading h2{
    color:#fff;
}

.why-grid{

    display:grid;

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

    gap:30px;
}

.why-card{

    position:relative;

    padding:40px 30px;

    border-radius:25px;

    background:
    rgba(255,255,255,0.08);

    backdrop-filter:blur(15px);
    -webkit-backdrop-filter:blur(15px);

    border:
    1px solid rgba(255,255,255,0.12);

    transition:.4s ease;

    overflow:hidden;
}

.why-card::before{

    content:"";

    position:absolute;

    top:-80px;
    right:-80px;

    width:160px;
    height:160px;

    border-radius:50%;

    background:
    rgba(200,169,106,.08);
}

.why-card:hover{

    transform:
    translateY(-10px);

    border-color:
    rgba(200,169,106,.4);

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

.why-icon{

    width:75px;
    height:75px;

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

    border-radius:18px;

    background:
    linear-gradient(
    135deg,
    #C8A96A,
    #e0c58b);

    margin-bottom:25px;
}

.why-icon i{

    color:#fff;
    font-size:30px;
}

.why-card h3{

    color:#fff;

    font-size:24px;

    margin-bottom:15px;
}

.why-card p{

    color:
    rgba(255,255,255,.75);

    line-height:1.8;

    font-size:15px;
}

/* ===================================
   PROJECTS
=================================== */

.projects-home{
    background:#fafafa;
}

.project-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.project-card{
    position:relative;
    overflow:hidden;
    border-radius:20px;
}

.project-card img{
    height:450px;
    object-fit:cover;
}

.project-content{
    position:absolute;
    left:0;
    right:0;
    bottom:0;

    padding:30px;

    background:linear-gradient(
    transparent,
    rgba(0,0,0,.9));
}

.project-content h3{
    color:#fff;
}

/* =========================
   PROCESS SECTION
========================= */

.process-section{

    padding:120px 0;

    background:
    linear-gradient(
    180deg,
    #f8f8f8,
    #ffffff);
}

.process-section .section-heading{

    text-align:center;

    max-width:800px;

    margin:0 auto 80px;
}

.process-section .section-heading p{

    margin-top:20px;

    color:#666;

    line-height:1.8;
}

.process-grid{

    display:grid;

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

    gap:30px;

    position:relative;
}

/* CONNECTING LINE */

.process-grid::before{

    content:"";

    position:absolute;

    top:55px;

    left:10%;

    width:80%;

    height:3px;

    background:
    linear-gradient(
    90deg,
    #C8A96A,
    #e7c98d);

    z-index:1;
}

.process-box{

    position:relative;

    z-index:2;

    text-align:center;

    padding:40px 25px;

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

    backdrop-filter:blur(12px);

    border-radius:30px;

    border:
    1px solid rgba(200, 169, 106, 1);

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

    transition:.4s ease;
}

.process-box:hover{

    transform:
    translateY(-12px);

    box-shadow:
    0 30px 70px rgba(0,0,0,.12);
}

.process-icon{

    width:110px;
    height:110px;

    margin:0 auto 25px;

    border-radius:50%;

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

    background:
    linear-gradient(
    135deg,
    #C8A96A,
    #e7c98d);

    color:#fff;

    font-size:40px;

    box-shadow:
    0 15px 35px rgba(200,169,106,.35);
}

.process-box span{

    display:block;

    font-size:14px;

    font-weight:700;

    letter-spacing:2px;

    color:#C8A96A;

    margin-bottom:10px;
}

.process-box h3{

    font-size:26px;

    color:#111;

    margin-bottom:15px;
}

.process-box p{

    color:#666;

    line-height:1.8;

    font-size:15px;
}

/* MOBILE */

@media(max-width:991px){

    .process-grid{

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

    .process-grid::before{
        display:none;
    }

}

@media(max-width:768px){

    .process-grid{

        grid-template-columns:1fr;
    }

    .process-box{

        padding:35px 25px;
    }

    .process-icon{

        width:90px;
        height:90px;

        font-size:32px;
    }

    .process-box h3{

        font-size:22px;
    }

}


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

.testimonials{
    background:#ffffff;
    position:relative;
}

.testimonials .section-heading h2{
    color:#111111;
}

.testimonial-rating{
    text-align:center;
    color:#C8A96A;
    font-size:20px;
    font-weight:600;
    margin-bottom:50px;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.testimonial-card{

    position:relative;

    padding:40px;

    border-radius:25px;

    background:
    linear-gradient(
    135deg,
    #111111,
    #1d1d1d);

    transition:.4s ease;

    overflow:hidden;
}

.testimonial-card::before{

    content:"";

    position:absolute;

    top:-70px;
    right:-70px;

    width:150px;
    height:150px;

    border-radius:50%;

    background:
    rgba(200,169,106,.08);
}

.testimonial-card:hover{

    transform:
    translateY(-10px);

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

.quote-icon{

    width:65px;
    height:65px;

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

    border-radius:18px;

    background:
    linear-gradient(
    135deg,
    #C8A96A,
    #e0c58b);

    margin-bottom:25px;
}

.quote-icon i{
    color:#fff;
    font-size:26px;
}

.stars{
    margin-bottom:20px;
}

.stars i{
    color:#C8A96A;
    margin-right:3px;
}

.testimonial-card p{

    color:
    rgba(255,255,255,.88);

    line-height:1.9;

    margin-bottom:30px;

    font-size:15px;
}

.testimonial-client{

    display:flex;
    align-items:center;
    gap:15px;
}

.client-avatar{

    width:55px;
    height:55px;

    border-radius:50%;

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

    background:
    linear-gradient(
    135deg,
    #C8A96A,
    #e0c58b);

    color:#fff;

    font-weight:700;
}

.testimonial-client h4{

    color:#ffffff;

    margin-bottom:4px;
}

.testimonial-client span{

    color:
    rgba(255,255,255,.65);

    font-size:14px;
}

.testimonial-rating{

    text-align:center;

    color:#C8A96A;

    font-size:20px;

    font-weight:600;

    margin-bottom:50px;
}
/* ===================================
   CTA
=================================== */

.cta-section{
    text-align:center;
    background:linear-gradient(
    135deg,
    #111,
    #222);

    color:#fff;
}

.cta-section h2{
    font-size:54px;
    margin-bottom:20px;
}

.cta-section p{
    font-size:18px;
    margin-bottom:35px;
}

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

@media(max-width:991px){

    .about-grid,
    .services-grid,
    .why-grid,
    .project-grid,
    .testimonial-grid{
        grid-template-columns:1fr 1fr;
    }

    .process-grid{
        grid-template-columns:1fr 1fr;
    }

    .hero-content h1{
        font-size:55px;
    }

}

@media(max-width:768px){

    section{
        padding:70px 0;
    }

    .about-grid,
    .services-grid,
    .why-grid,
    .project-grid,
    .testimonial-grid,
    .process-grid{
        grid-template-columns:1fr;
    }

    .hero-content{
        padding-top:180px;
    }

    .hero-content h1{
        font-size:42px;
    }

    .hero-content p{
        font-size:17px;
    }

    .section-heading h2{
        font-size:34px;
    }

    .about-content h2{
        font-size:34px;
    }

    .cta-section h2{
        font-size:36px;
    }

    .btn-secondary{
        margin-left:0;
        margin-top:15px;
    }
}


/* ==========================================
   ABOUT PAGE
========================================== */

/* HERO SECTION */

.page-hero{

    position:relative;

    min-height:420px;

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

    background:
    linear-gradient(
    rgba(0,0,0,.60),
    rgba(0,0,0,.60)),

    url('https://images.unsplash.com/photo-1484154218962-a197022b5858?auto=format&fit=crop&w=1920&q=80');

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

.page-hero-content{

    position:relative;
    z-index:2;

    max-width:900px;

    margin:auto;

    text-align:center;

    color:#fff;

    padding:0 20px;
}

.page-hero-content span{

    display:inline-block;

    padding:12px 24px;

    border-radius:50px;

    background:
    rgba(255,255,255,.12);

    border:
    1px solid rgba(255,255,255,.15);

    backdrop-filter:blur(10px);

    color:#fff;

    font-size:14px;

    font-weight:600;

    letter-spacing:1px;

    margin-bottom:20px;
}

.page-hero-content h1{

    font-size:58px;

    line-height:1.1;

    font-weight:700;

    margin-bottom:20px;
}

.page-hero-content p{

    font-size:20px;

    line-height:1.8;

    max-width:700px;

    margin:auto;

    color:
    rgba(255,255,255,.92);
}

/* ABOUT COMPANY */

.about-company{

    padding:100px 0;

    background:#fff;
}

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;
}

.section-tag{

    display:inline-block;

    color:#C8A96A;

    font-weight:600;

    letter-spacing:1px;

    margin-bottom:15px;
}

.about-content h2{

    font-size:52px;

    line-height:1.2;

    color:#111;

    margin-bottom:25px;
}

.about-content p{

    font-size:17px;

    line-height:1.9;

    color:#666;

    margin-bottom:20px;
}

.about-image{

    position:relative;

    padding:12px;

    background:#111;

    border:2px solid #C8A96A;

    border-radius:30px;

    box-shadow:
    0 25px 70px rgba(0,0,0,.18);

    overflow:hidden;
}

.about-image img{

    width:100%;

    display:block;

    border-radius:18px;
}

/* STATS */

.stats-section{

    padding:90px 0;

    background:#111;
}

.stats-grid{

    display:grid;

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

    gap:25px;
}

.stat-card{

    text-align:center;

    padding:40px 25px;

    background:
    rgba(255,255,255,.06);

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

    border-radius:20px;

    backdrop-filter:blur(10px);

    transition:.4s ease;
}

.stat-card:hover{

    transform:
    translateY(-8px);

    border-color:#C8A96A;
}

.stat-card h3{

    font-size:50px;

    color:#C8A96A;

    margin-bottom:10px;
}

.stat-card p{

    color:#fff;

    font-size:15px;
}

/* WHY CHOOSE US */

.about-why{

    padding:100px 0;

    background:#f8f8f8;
}

.about-why .section-heading{

    text-align:center;

    margin-bottom:60px;
}

.about-why .section-heading span{

    color:#C8A96A;

    font-weight:600;
}

.about-why .section-heading h2{

    font-size:48px;

    color:#111;

    margin-top:15px;
}

.why-grid{

    display:grid;

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

    gap:30px;
}

.why-card{

    background:#fff;

    padding:40px 30px;

    border-radius:25px;

    text-align:center;

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

    transition:.4s ease;
}

.why-card:hover{

    transform:
    translateY(-10px);

    box-shadow:
    0 25px 60px rgba(0,0,0,.12);
}

.why-card i{

    width:75px;
    height:75px;

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

    margin:0 auto 20px;

    border-radius:20px;

    background:
    linear-gradient(
    135deg,
    #C8A96A,
    #D9B97C);

    color:#fff;

    font-size:28px;
}

.why-card h3{

    font-size:22px;

    color:#111;
}

/* PROCESS */

.process-section{

    padding:100px 0;

    background:#fff;
}

.process-section .section-heading{

    text-align:center;

    margin-bottom:60px;
}

.process-grid{

    display:grid;

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

    gap:30px;
}

.process-card{

    background:#111;

    padding:40px 30px;

    border-radius:25px;

    text-align:center;

    color:#fff;

    transition:.4s ease;
}

.process-card:hover{

    transform:
    translateY(-10px);
}

.process-card span{

    display:block;

    font-size:60px;

    color:#C8A96A;

    font-weight:700;

    margin-bottom:20px;
}

.process-card h3{

    font-size:22px;
}

/* CTA */

.about-cta{

    padding:100px 0;

    background:
    linear-gradient(
    135deg,
    #111,
    #1f1f1f);

    text-align:center;

    color:#fff;
}

.about-cta h2{

    font-size:58px;

    margin-bottom:20px;
}

.about-cta p{

    font-size:18px;

    color:
    rgba(255,255,255,.75);

    margin-bottom:35px;
}

/* RESPONSIVE */

@media(max-width:1200px){

    .about-content h2{
        font-size:42px;
    }

    .page-hero-content h1{
        font-size:48px;
    }

}

@media(max-width:991px){

    .about-grid,
    .stats-grid,
    .why-grid,
    .process-grid{

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

    .about-content h2{
        font-size:38px;
    }

}

@media(max-width:768px){

    .page-hero{
        min-height:320px;
    }

    .page-hero-content h1{
        font-size:32px;
    }

    .page-hero-content p{
        font-size:16px;
    }

    .about-grid,
    .stats-grid,
    .why-grid,
    .process-grid{

        grid-template-columns:1fr;
    }

    .about-content h2{
        font-size:32px;
    }

    .about-why .section-heading h2{
        font-size:34px;
    }

    .about-cta h2{
        font-size:36px;
    }
}


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

.services-hero{
    background:
    linear-gradient(
    rgba(0,0,0,.60),
    rgba(0,0,0,.60)),
    url('https://images.pexels.com/photos/4800175/pexels-photo-4800175.jpeg');

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

.services-intro{
    padding:100px 0 50px;
    text-align:center;
}

.services-intro .section-heading{
    max-width:900px;
    margin:auto;
}

.services-intro p{
    max-width:750px;
    margin:20px auto 0;
    line-height:1.9;
    color:#666;
}

/* MAIN SERVICES */

.services-showcase{
    padding:40px 0 100px;
}

.service-card{

    position:relative;

    border-radius:30px;

    overflow:hidden;

    border:1px solid rgba(200,169,106,.45);
}

.service-card::before{

    content:"";

    position:absolute;

    inset:0;

    border-radius:30px;

    padding:2px;

    background:
    linear-gradient(
    135deg,
    #C8A96A,
    #E4C98A,
    #C8A96A
    );

    -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

    -webkit-mask-composite:xor;

    mask-composite:exclude;

    pointer-events:none;

    z-index:10;
}

.service-card{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    overflow:hidden;

    border-radius:30px;

    background:#111;

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

.service-card.reverse .service-image{
    order:2;
}

.service-card.reverse .service-content{
    order:1;
}

/* IMAGE */

.service-image{
    height:500px;
}

.service-image img{

    width:100%;
    height:100%;

    object-fit:fill;

    display:block;
}

/* CONTENT */

.service-content{

    position:relative;

    height:100%;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:flex-start;

    padding:35px 30px;

    background:
    rgba(70,70,70,.45);

    backdrop-filter:blur(12px);

    -webkit-backdrop-filter:blur(12px);

    border-left:
    1px solid rgba(255,255,255,.15);

    color:#fff;

    overflow:hidden;
}

.service-content span{

    position:absolute;

    top:20px;
    right:30px;

    font-size:120px;

    font-weight:800;

    line-height:1;

    color:
    rgba(200,169,106,.08);
}

.service-content h3{

    position:relative;

    z-index:5;

    font-size:20px;

    line-height:1.2;

    color:#fff;

    margin-bottom:15px;

    text-shadow:
    0 2px 10px rgba(0,0,0,.35);
}

.service-content h3::after{

    content:"";

    display:block;

    width:80px;

    height:3px;

    background:#C8A96A;

    margin-top:15px;
}

.service-content p{

    position:relative;

    z-index:5;

    color:
    rgba(255,255,255,.92);

    line-height:1.8;

    text-shadow:
    0 2px 8px rgba(0,0,0,.25);
}

/* SMALL SERVICES GRID */

.glass-services-grid{

    display:grid;

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

    gap:30px;

    margin-top:40px;
}

.glass-service{

    position:relative;

    padding:40px 30px;

    text-align:center;

    border-radius:25px;

    background:
    rgba(255,255,255,.75);

    backdrop-filter:blur(15px);

    -webkit-backdrop-filter:blur(15px);

    border:
    1px solid rgba(255,255,255,.5);

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

    transition:.4s ease;
}

.glass-service:hover{

    transform:
    translateY(-10px);

    box-shadow:
    0 25px 60px rgba(0,0,0,.12);
}

.glass-service i{

    width:80px;
    height:80px;

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

    margin:0 auto 20px;

    border-radius:20px;

    background:
    linear-gradient(
    135deg,
    #C8A96A,
    #D9B97C);

    color:#fff;

    font-size:32px;
}

.glass-service h4{

    font-size:22px;

    color:#111;
}

/* PROCESS SECTION */

.service-process{

    padding:100px 0;

    background:#f8f8f8;
}

.process-grid{

    display:grid;

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

    gap:30px;
}

.process-card{

    text-align:center;

    padding:40px 30px;

    background:#fff;

    border-radius:25px;

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

    transition:.4s ease;
}

.process-card:hover{

    transform:
    translateY(-10px);
}

.process-card span{

    display:block;

    font-size:60px;

    color:#C8A96A;

    font-weight:700;

    margin-bottom:20px;
}

.process-card h3{

    color:#111;

    font-size:24px;
}

/* RESPONSIVE */

@media(max-width:1200px){

    .service-content h3{
        font-size:34px;
    }

}

@media(max-width:991px){

    .service-card{
        grid-template-columns:1fr;
    }

    .service-card.reverse .service-image,
    .service-card.reverse .service-content{
        order:unset;
    }

    .glass-services-grid{
        grid-template-columns:1fr 1fr;
    }

    .process-grid{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:768px){

    .service-image{
        height:320px;
    }

    .service-content{
        padding:40px;
    }

    .service-content h3{
        font-size:30px;
    }

    .service-content span{
        font-size:80px;
    }

    .glass-services-grid{
        grid-template-columns:1fr;
    }

    .process-grid{
        grid-template-columns:1fr;
    }

}



/* ===================================
   PROJECT CATEGORIES
=================================== */

.project-categories{
    padding:20px 0 70px;
}

.category-buttons{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:15px;
}

.category-buttons button{

    padding:14px 28px;

    border:none;

    border-radius:100px;

    cursor:pointer;

    background:
    rgba(255,255,255,.75);

    backdrop-filter:blur(15px);

    -webkit-backdrop-filter:blur(15px);

    border:
    1px solid rgba(255,255,255,.5);

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

    color:#111;

    font-weight:600;

    transition:.35s ease;
}

.category-buttons button:hover{

    background:#C8A96A;

    color:#fff;

    transform:
    translateY(-3px);

    box-shadow:
    0 15px 40px rgba(200,169,106,.25);
}

/* ===================================
   FEATURED PROJECT
=================================== */

.featured-project{

    padding:100px 0;
}

.featured-grid{

    display:grid;

    grid-template-columns:1.2fr 1fr;

    gap:50px;

    align-items:center;
}

.featured-image{

    overflow:hidden;

    border-radius:30px;
}

.featured-image img{

    width:100%;

    display:block;

    border-radius:30px;

    transition:.5s ease;
}

.featured-image:hover img{

    transform:scale(1.05);
}

.project-tag{

    display:inline-block;

    padding:10px 20px;

    border-radius:50px;

    background:
    rgba(200,169,106,.12);

    color:#C8A96A;

    font-size:14px;

    font-weight:600;

    margin-bottom:20px;
}

.featured-content h2{

    font-size:48px;

    color:#111;

    margin-bottom:20px;
}

.featured-content p{

    color:#666;

    line-height:1.9;

    margin-bottom:25px;
}

.featured-content ul{

    list-style:none;

    padding:0;

    margin:0 0 35px;
}

.featured-content li{

    margin-bottom:12px;

    color:#444;
}

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

.projects-grid-section{

    padding:30px 0 100px;
}

.projects-grid{

    display:grid;

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

    gap:25px;

    grid-auto-rows:320px;
}

.project-card{

    position:relative;

    overflow:hidden;

    border-radius:30px;

    cursor:pointer;
}

.project-card.large{

    grid-column:span 2;
}

.project-card img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:.6s ease;
}

.project-card:hover img{

    transform:scale(1.08);
}

.project-overlay{

    position:absolute;

    inset:0;

    display:flex;

    align-items:flex-end;

    padding:35px;

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

    transition:.4s ease;
}

.project-overlay h3{

    color:#fff;

    font-size:28px;

    margin-bottom:8px;
}

.project-overlay p{

    color:
    rgba(255,255,255,.8);
}

.project-card:hover .project-overlay{

    background:
    linear-gradient(
    transparent,
    rgba(0,0,0,.95));
}

/* ===================================
   BEFORE AFTER
=================================== */

.before-after-section{

    padding:100px 0;

    background:#f8f8f8;
}

.before-after-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:30px;
}

.before-after-card{

    position:relative;

    overflow:hidden;

    border-radius:30px;
}

.before-after-card img{

    width:100%;

    display:block;

    border-radius:30px;
}

.label{

    position:absolute;

    top:20px;
    left:20px;

    padding:10px 18px;

    border-radius:50px;

    color:#fff;

    font-size:13px;

    font-weight:700;

    z-index:5;
}

.before{
    background:#d62828;
}

.after{
    background:#2a9d8f;
}

/* ===================================
   PROJECT STATS
=================================== */

.project-stats{

    padding:100px 0;

    background:#111;
}

.project-stats .stats-grid{

    display:grid;

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

    gap:25px;
}

.project-stats .stat-card{

    padding:40px;

    text-align:center;

    border-radius:25px;

    background:
    rgba(255,255,255,.06);

    backdrop-filter:blur(15px);

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

    transition:.4s ease;
}

.project-stats .stat-card:hover{

    transform:
    translateY(-8px);

    border-color:#C8A96A;
}

.project-stats .stat-card h3{

    color:#C8A96A;

    font-size:50px;

    margin-bottom:10px;
}

.project-stats .stat-card p{

    color:#fff;
}

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

@media(max-width:1200px){

    .featured-content h2{
        font-size:40px;
    }

}

@media(max-width:991px){

    .featured-grid{
        grid-template-columns:1fr;
    }

    .projects-grid{
        grid-template-columns:1fr 1fr;
    }

    .project-card.large{
        grid-column:span 2;
    }

    .before-after-grid{
        grid-template-columns:1fr;
    }

    .project-stats .stats-grid{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:768px){

    .projects-grid{
        grid-template-columns:1fr;
    }

    .project-card.large{
        grid-column:span 1;
    }

    .featured-content h2{
        font-size:32px;
    }

    .project-overlay h3{
        font-size:22px;
    }

    .project-stats .stats-grid{
        grid-template-columns:1fr;
    }

    .category-buttons{
        gap:10px;
    }

    .category-buttons button{
        width:100%;
    }

}



/* ===================================
   CONTACT PAGE
=================================== */

.contact-hero{

    background:
    linear-gradient(
    rgba(0,0,0,.65),
    rgba(0,0,0,.65)),
    url('https://images.pexels.com/photos/10117721/pexels-photo-10117721.jpeg');

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

/* CONTACT CARDS */

.contact-cards-section{
    padding:100px 0 60px;
}

.contact-cards{

    display:grid;

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

    gap:30px;
}

.contact-card{

    text-align:center;

    padding:45px;

    border-radius:25px;

    background:#fff;

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

    transition:.4s ease;
}

.contact-card:hover{

    transform:
    translateY(-10px);

    box-shadow:
    0 25px 60px rgba(0,0,0,.12);
}

.contact-card i{

    width:80px;
    height:80px;

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

    margin:0 auto 20px;

    border-radius:20px;

    background:
    linear-gradient(
    135deg,
    #C8A96A,
    #D9B97C);

    color:#fff;

    font-size:30px;
}

/* FORM */

.contact-form-section{
    padding:40px 0 100px;
}

.contact-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:50px;

    align-items:center;
}

.contact-image img{

    width:100%;

    border-radius:30px;
}

.contact-form-box{

    padding:50px;

    border-radius:30px;

    background:#111;

    color:#fff;
}

.contact-form-box h2{

    margin-bottom:30px;

    font-size:40px;
}

.contact-form-box input,
.contact-form-box textarea{

    width:100%;

    padding:16px 20px;

    margin-bottom:15px;

    border:none;

    border-radius:12px;
}

.contact-form-box textarea{

    height:150px;

    resize:none;
}

/* BENEFITS */

.contact-benefits{

    padding:100px 0;

    background:#f8f8f8;
}

.benefits-grid{

    display:grid;

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

    gap:25px;
}

.benefit-card{

    background:#fff;

    padding:40px;

    text-align:center;

    border-radius:25px;

    transition:.4s;
}

.benefit-card:hover{

    transform:
    translateY(-10px);
}

.benefit-card i{

    font-size:45px;

    color:#C8A96A;

    margin-bottom:20px;
}

/* MAP */

.map-section{
    padding:100px 0;
}

.map-wrapper{

    position:relative;

    overflow:hidden;

    border-radius:30px;
}

.map-wrapper iframe{

    width:100%;

    height:550px;

    border:none;
}

.map-card{

    position:absolute;

    top:30px;
    left:30px;

    background:#111;

    color:#fff;

    padding:25px 30px;

    border-radius:20px;

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

.map-card{

    position:absolute;

    top:10px;
    left:10px;

    z-index:100;

    min-width:280px;

    background:
    rgba(17,17,17,.95);

    backdrop-filter:blur(15px);

    -webkit-backdrop-filter:blur(15px);

    color:#fff;

    padding:22px 28px;

    border-radius:20px;

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

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

    transition:.3s ease;
}

.map-card:hover{

    transform:
    translateY(-4px);
}

.map-card-header{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:15px;
}

.map-card-header img{

    width:38px;

    height:auto;

    object-fit:contain;
}

.map-card-header h3{

    margin:0;

    color:#C8A96A;

    font-size:20px;

    font-weight:700;
}

.map-address{

    display:flex;

    align-items:flex-start;

    gap:12px;
}

.map-address i{

    color:#C8A96A;

    font-size:18px;

    margin-top:3px;
}

.map-address span{

    color:
    rgba(255,255,255,.9);

    line-height:1.7;

    font-size:15px;
}

/* MOBILE */

@media(max-width:991px){

    .contact-cards,
    .contact-grid,
    .benefits-grid{

        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .contact-form-box{
        padding:35px;
    }

    .contact-form-box h2{
        font-size:30px;
    }

    .map-wrapper iframe{
        height:400px;
    }

}

/* BEFORE / AFTER CARDS */

.before-after-card{

    position:relative;

    overflow:hidden;

    border-radius:30px;

    height:650px; /* same height for both cards */
}

.before-after-card img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

    transition:.4s ease;
}

.before-after-card:hover img{

    transform:scale(1.05);
}

/*==================================================
            BATHROOM GALLERY PAGE
==================================================*/

.gallery-hero{

    padding:170px 0 120px;

    text-align:center;

    background:
    linear-gradient(
    rgba(0,0,0,.70),
    rgba(0,0,0,.70)),
    url('https://images.pexels.com/photos/6585755/pexels-photo-6585755.jpeg?auto=compress&cs=tinysrgb&w=1800');

    background-size:cover;

    background-position:center;

    color:#fff;
}

.gallery-hero .hero-subtitle{

    display:inline-block;

    padding:10px 25px;

    border:1px solid rgba(255,255,255,.2);

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(12px);

    border-radius:40px;

    color:#C8A96A;

    font-weight:600;

    letter-spacing:2px;

    margin-bottom:25px;
}

.gallery-hero h1{

    font-size:68px;

    line-height:1.1;

    margin-bottom:25px;

    color:#fff;
}

.gallery-hero p{

    max-width:760px;

    margin:auto;

    font-size:20px;

    color:rgba(255,255,255,.85);

    line-height:1.9;
}

/*==============================*/

.gallery-section{

    padding:100px 0;

    background:#f7f7f7;
}

/* Masonry */

.gallery-grid{

    column-count:3;

    column-gap:25px;
}

.gallery-item{

    position:relative;

    overflow:hidden;

    border-radius:25px;

    margin-bottom:25px;

    cursor:pointer;

    break-inside:avoid;

    background:#fff;

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

    transition:.4s;
}

.gallery-item img{

    width:100%;

    display:block;

    transition:.6s;
}

.gallery-item:hover img{

    transform:scale(1.08);
}

/* Gold Border */

.gallery-item::before{

    content:"";

    position:absolute;

    inset:0;

    border:2px solid transparent;

    border-radius:25px;

    transition:.35s;

    z-index:5;
}

.gallery-item:hover::before{

    border-color:#C8A96A;
}

/* Overlay */

.gallery-overlay{

    position:absolute;

    inset:0;

    display:flex;

    justify-content:center;

    align-items:center;

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

    opacity:0;

    transition:.35s;

    z-index:3;
}

.gallery-item:hover .gallery-overlay{

    opacity:1;
}

.gallery-overlay i{

    width:75px;

    height:75px;

    border-radius:50%;

    background:#C8A96A;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    transform:scale(.5);

    transition:.35s;
}

.gallery-item:hover .gallery-overlay i{

    transform:scale(1);
}

/*==============================
        LIGHTBOX
==============================*/

.lightbox{

    position:fixed;

    inset:0;

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

    display:none;

    justify-content:center;

    align-items:center;

    z-index:999999;
}

.lightbox.active{

    display:flex;
}

.lightbox img{

    max-width:88%;

    max-height:88%;

    border-radius:18px;

    box-shadow:
    0 25px 80px rgba(0,0,0,.45);

    transition:.3s;
}

/* Close */

.close-lightbox{

    position:absolute;

    top:30px;

    right:45px;

    color:#fff;

    font-size:45px;

    cursor:pointer;

    transition:.3s;
}

.close-lightbox:hover{

    color:#C8A96A;

    transform:rotate(90deg);
}

/* Prev Next */

.prev,
.next{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:65px;

    height:65px;

    border:none;

    border-radius:50%;

    background:#C8A96A;

    color:#fff;

    font-size:30px;

    cursor:pointer;

    transition:.3s;
}

.prev:hover,
.next:hover{

    background:#111;
}

.prev{

    left:40px;
}

.next{

    right:40px;
}

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

@media(max-width:992px){

.gallery-grid{

    column-count:2;
}

.gallery-hero h1{

    font-size:48px;
}

}

@media(max-width:768px){

.gallery-grid{

    column-count:1;
}

.gallery-hero{

    padding:140px 20px 90px;
}

.gallery-hero h1{

    font-size:36px;
}

.gallery-hero p{

    font-size:17px;
}

.prev,
.next{

    width:50px;

    height:50px;

    font-size:22px;
}

.prev{

    left:15px;
}

.next{

    right:15px;
}

.close-lightbox{

    right:20px;

    top:20px;
}

}

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

.gallery-item{

    animation:fadeUp .7s ease both;
}

.gallery-item:nth-child(2){

    animation-delay:.1s;
}

.gallery-item:nth-child(3){

    animation-delay:.2s;
}

.gallery-item:nth-child(4){

    animation-delay:.3s;
}

.gallery-item:nth-child(5){

    animation-delay:.4s;
}

.gallery-item:nth-child(6){

    animation-delay:.5s;
}

.gallery-item:nth-child(7){

    animation-delay:.6s;
}

.gallery-item:nth-child(8){

    animation-delay:.7s;
}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:
        translateY(60px);
    }

    to{

        opacity:1;

        transform:
        translateY(0);
    }

}

.lightbox{

    display:none;
}

.lightbox.active{

    display:flex;
}

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

.tiles-hero{

    background:
    linear-gradient(
    rgba(0,0,0,.65),
    rgba(0,0,0,.65)),
    url('https://images.openai.com/static-rsc-4/VVQsJUhzrRxZYfaDdGwKMoSCp-J2hD8nPw_klvmp6euyggHnCzS5ksSWE3-CkeWZWOj08VRbhYcst_ZF5vW1Azz63Qil6TmndeEfQXF1bZC_3H-sAcj7HEHIY3mqnbyKR1_bIGGol-YAVIJ75JQG3NO92wio_dU9F4iD7oMP8qP1p-LyDn9fz-tRqgnUcZuk?purpose=fullsize');

    background-size:cover;

    background-position:center;
}

/*======================================================
            BEFORE & AFTER PAGE
======================================================*/

/* HERO */

.before-hero{

    padding:180px 0 130px;

    background:
    linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.70)),
    url('https://images.pexels.com/photos/6585755/pexels-photo-6585755.jpeg?auto=compress&cs=tinysrgb&w=1800');

    background-size:cover;

    background-position:center;

    text-align:center;

    color:#fff;
}

.hero-badge{

    display:inline-block;

    padding:12px 28px;

    border-radius:50px;

    background:rgba(255,255,255,.12);

    border:1px solid rgba(255,255,255,.18);

    backdrop-filter:blur(15px);

    color:#C8A96A;

    font-weight:600;

    letter-spacing:2px;

    margin-bottom:30px;
}

.before-hero h1{

    font-size:70px;

    line-height:1.15;

    margin-bottom:25px;

    color:#fff;
}

.before-hero p{

    max-width:850px;

    margin:auto;

    color:rgba(255,255,255,.82);

    font-size:20px;

    line-height:1.9;
}


/*======================================================
            INTRO
======================================================*/

.before-intro{

    padding:110px 0;

    background:#fff;
}

.intro-grid{

    display:grid;

    grid-template-columns:1.4fr .6fr;

    gap:70px;

    align-items:center;
}

.intro-content span{

    color:#C8A96A;

    font-weight:700;

    letter-spacing:2px;
}

.intro-content h2{

    font-size:52px;

    margin:20px 0 30px;
}

.intro-content p{

    color:#666;

    line-height:2;

    margin-bottom:25px;
}

.glass-card{

    padding:70px 40px;

    text-align:center;

    border-radius:30px;

    background:
    rgba(255,255,255,.55);

    border:1px solid rgba(255,255,255,.35);

    backdrop-filter:blur(25px);

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

.glass-card h3{

    font-size:80px;

    color:#C8A96A;

    margin-bottom:15px;
}

.glass-card p{

    font-size:18px;

    color:#555;
}


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

.comparison-section{

    padding:110px 0;

    background:#f8f8f8;
}

.alt-bg{

    background:#fff;
}

.comparison-card{

    display:grid;

    grid-template-columns:470px 1fr;

    gap:70px;

    align-items:center;
}

.reverse{

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

.reverse .comparison-info{

    order:2;
}

.reverse .compare-slider{

    order:1;
}


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

.comparison-info{

    background:
    rgba(255,255,255,.70);

    backdrop-filter:blur(20px);

    padding:45px;

    border-radius:30px;

    border:1px solid rgba(255,255,255,.35);

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

.comparison-info span{

    color:#C8A96A;

    letter-spacing:2px;

    font-weight:700;
}

.comparison-info h2{

    font-size:42px;

    margin:20px 0;
}

.comparison-info p{

    color:#666;

    line-height:1.9;

    margin-bottom:30px;
}

.comparison-info ul{

    list-style:none;

    padding:0;

    margin:0;
}

.comparison-info li{

    padding:14px 0;

    border-bottom:1px solid #eee;

    color:#444;

    font-size:17px;
}


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

.compare-slider{

    position:relative;

    width:100%;
}

.image-container{

    position:relative;

    overflow:hidden;

    border-radius:30px;

    height:650px;

    box-shadow:
    0 25px 80px rgba(0,0,0,.12);

    border:3px solid #C8A96A;
}

.image-container img{

    width:100%;

    height:100%;

    object-fit:cover;

    user-select:none;

    pointer-events:none;
}

.after-wrapper{

    position:absolute;

    top:0;

    left:0;

    width:50%;

    height:100%;

    overflow:hidden;
}

.after-img{

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:100%;

    object-fit:cover;
}
/*======================================================
        SLIDER HANDLE
======================================================*/

.slider-line{

    position:absolute;

    top:0;

    left:50%;

    width:4px;

    height:100%;

    background:#fff;

    transform:translateX(-50%);

    cursor:ew-resize;

    z-index:20;

    transition:.25s;
}

.slider-button{

    position:absolute;

    top:50%;

    left:50%;

    transform:translate(-50%,-50%);

    width:78px;

    height:78px;

    border-radius:50%;

    background:
    linear-gradient(135deg,#C8A96A,#b08f56);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    box-shadow:
    0 15px 35px rgba(0,0,0,.25);

    border:5px solid #fff;
}

.slider-line:hover .slider-button{

    transform:translate(-50%,-50%) scale(1.08);

}

.slider-line:hover{

    background:#C8A96A;

}

/*======================================================
        BEFORE / AFTER LABELS
======================================================*/

.label{

    position:absolute;

    top:25px;

    padding:12px 22px;

    border-radius:40px;

    font-size:13px;

    letter-spacing:2px;

    font-weight:700;

    text-transform:uppercase;

    color:#fff;

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.25);

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

    z-index:25;
}

.label.before{

    left:25px;

}

.label.after{

    right:25px;

}

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

.image-container{

    transition:.4s;

}

.image-container:hover{

    transform:translateY(-8px);

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

}

.image-container::after{

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    transparent 60%,
    rgba(0,0,0,.15));

    pointer-events:none;

}

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

.transformation-stats{

    padding:110px 0;

    background:#111;

}

.stats-grid{

    display:grid;

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

    gap:30px;

}

.stat-box{

    padding:55px 35px;

    text-align:center;

    border-radius:25px;

    background:
    rgba(255,255,255,.08);

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

    backdrop-filter:blur(20px);

    transition:.35s;

}

.stat-box:hover{

    transform:translateY(-10px);

    border-color:#C8A96A;

}

.stat-box h2{

    font-size:55px;

    color:#C8A96A;

    margin-bottom:15px;

}

.stat-box p{

    color:#ddd;

    font-size:17px;

}

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

.before-cta{

    padding:120px 0;

    background:#f6f6f6;

}

.cta-glass{

    max-width:1050px;

    margin:auto;

    padding:70px;

    border-radius:35px;

    text-align:center;

    background:
    rgba(255,255,255,.65);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.4);

    box-shadow:
    0 25px 60px rgba(0,0,0,.12);

}

.cta-glass h2{

    font-size:48px;

    margin-bottom:20px;

}

.cta-glass p{

    max-width:760px;

    margin:auto;

    line-height:1.9;

    color:#666;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    margin-top:45px;

}

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

@media(max-width:1200px){

.comparison-card,
.reverse{

    grid-template-columns:1fr;

}

.reverse .comparison-info,
.reverse .compare-slider{

    order:unset;

}

.intro-grid{

    grid-template-columns:1fr;

}

.image-container{

    height:520px;

}

.before-hero h1{

    font-size:56px;

}

}

@media(max-width:768px){

.before-hero{

    padding:140px 0 90px;

}

.before-hero h1{

    font-size:38px;

}

.before-hero p{

    font-size:16px;

}

.intro-content h2{

    font-size:34px;

}

.comparison-info{

    padding:30px;

}

.comparison-info h2{

    font-size:30px;

}

.image-container{

    height:360px;

    border-radius:20px;

}

.slider-button{

    width:60px;

    height:60px;

    font-size:22px;

}

.label{

    padding:9px 16px;

    font-size:11px;

}

.stats-grid{

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

}

.cta-glass{

    padding:40px 25px;

}

.cta-glass h2{

    font-size:32px;

}

.cta-buttons{

    flex-direction:column;

}

}

@media(max-width:480px){

.stats-grid{

    grid-template-columns:1fr;

}

.image-container{

    height:280px;

}

.before-hero h1{

    font-size:30px;

}

.hero-badge{

    font-size:12px;

    padding:10px 18px;

}

}

/*=========================================
        THANK YOU PAGE
=========================================*/

.thankyou-section{

    position:relative;

    padding:180px 20px;

    background:
    linear-gradient(135deg,#0d0d0d,#1b1b1b);

    overflow:hidden;

    min-height:100vh;

    display:flex;

    align-items:center;

}

.thankyou-bg-circle{

    position:absolute;

    border-radius:50%;

    filter:blur(80px);

    opacity:.18;

}

.circle1{

    width:420px;

    height:420px;

    background:#C8A96A;

    top:-120px;

    left:-100px;

}

.circle2{

    width:350px;

    height:350px;

    background:#ffffff;

    bottom:-120px;

    right:-80px;

}

.thankyou-card{

    position:relative;

    max-width:950px;

    margin:auto;

    text-align:center;

    padding:70px 60px;

    border-radius:35px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.12);

    box-shadow:

    0 25px 80px rgba(0,0,0,.35);

}

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

.email-wrapper{

    position:relative;

    width:170px;

    height:170px;

    margin:0 auto 40px;

}

.email-icon{

    position:absolute;

    width:110px;

    height:110px;

    background:

    linear-gradient(135deg,#C8A96A,#b9924d);

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    left:50%;

    top:50%;

    transform:translate(-50%,-50%);

    animation:floatMail 3s ease-in-out infinite;

    box-shadow:

    0 20px 40px rgba(0,0,0,.30);

}

.email-icon i{

    font-size:46px;

    color:#fff;

}

/*=========================
        PULSE
=========================*/

.pulse{

    position:absolute;

    left:50%;

    top:50%;

    transform:translate(-50%,-50%);

    border-radius:50%;

    border:2px solid rgba(200,169,106,.45);

    animation:pulseRing 3s infinite;

}

.pulse1{

    width:110px;

    height:110px;

}

.pulse2{

    width:140px;

    height:140px;

    animation-delay:.7s;

}

.pulse3{

    width:170px;

    height:170px;

    animation-delay:1.4s;

}

/*=========================
      CHECKMARK
=========================*/

.success-check{

    width:70px;

    height:70px;

    margin:20px auto;

    border-radius:50%;

    background:#28a745;

    display:flex;

    align-items:center;

    justify-content:center;

    animation:popIn .8s;

}

.success-check i{

    color:#fff;

    font-size:28px;

}

.thankyou-tag{

    display:inline-block;

    background:rgba(200,169,106,.15);

    color:#C8A96A;

    padding:10px 25px;

    border-radius:40px;

    letter-spacing:2px;

    font-size:13px;

    margin-top:20px;

    margin-bottom:25px;

}

.thankyou-card h1{

    color:#fff;

    font-size:58px;

    margin-bottom:25px;

}

.thankyou-card p{

    color:#ddd;

    font-size:18px;

    line-height:1.9;

    max-width:700px;

    margin:auto;

}

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

.thankyou-info{

    display:grid;

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

    gap:25px;

    margin:60px 0;

}

.info-box{

    padding:35px;

    border-radius:25px;

    background:rgba(255,255,255,.06);

    transition:.35s;

}

.info-box:hover{

    transform:translateY(-10px);

    border:1px solid #C8A96A;

}

.info-box i{

    color:#C8A96A;

    font-size:38px;

    margin-bottom:20px;

}

.info-box h3{

    color:#fff;

    margin-bottom:15px;

}

.info-box p{

    font-size:15px;

    color:#bbb;

}

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

.thankyou-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    margin-top:20px;

}

.redirect-text{

    color:#999;

    margin-top:40px;

    font-size:15px;

}

#countdown{

    color:#C8A96A;

    font-weight:bold;

    font-size:22px;

}

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

@keyframes floatMail{

0%{

transform:translate(-50%,-50%) translateY(0);

}

50%{

transform:translate(-50%,-50%) translateY(-15px);

}

100%{

transform:translate(-50%,-50%) translateY(0);

}

}

@keyframes pulseRing{

0%{

opacity:1;

transform:translate(-50%,-50%) scale(.8);

}

100%{

opacity:0;

transform:translate(-50%,-50%) scale(1.5);

}

}

@keyframes popIn{

0%{

transform:scale(.2);

opacity:0;

}

100%{

transform:scale(1);

opacity:1;

}

}

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

@media(max-width:991px){

.thankyou-info{

grid-template-columns:1fr;

}

.thankyou-card{

padding:50px 30px;

}

.thankyou-card h1{

font-size:42px;

}

}

@media(max-width:600px){

.thankyou-section{

padding:130px 15px;

}

.email-wrapper{

width:140px;

height:140px;

}

.email-icon{

width:90px;

height:90px;

}

.email-icon i{

font-size:38px;

}

.thankyou-card h1{

font-size:34px;

}

.thankyou-buttons{

flex-direction:column;

}

}

/* Button Ripple */

.thankyou-buttons a{

    position:relative;

    overflow:hidden;

}

.ripple{

    position:absolute;

    width:20px;

    height:20px;

    background:rgba(255,255,255,.6);

    border-radius:50%;

    transform:translate(-50%,-50%) scale(0);

    animation:rippleEffect .6s linear;

}

@keyframes rippleEffect{

    to{

        transform:translate(-50%,-50%) scale(18);

        opacity:0;

    }

}