/*==========================================
PAGE BANNER
==========================================*/

.page-banner{
    position:relative;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    padding:180px 0 120px;
    overflow:hidden;
}

.page-banner .overlay{
    position:absolute;
    inset:0;
    background:rgba(27,36,51,.75);
}

.banner-content{
    position:relative;
    z-index:2;
    text-align:center;
    color:#fff;
}

.banner-content h1{
    font-size:56px;
    font-weight:800;
    margin-bottom:20px;
    color:#fff;
}

.banner-content p{
    max-width:760px;
    margin:0 auto 30px;
    color:rgba(255,255,255,.90);
    font-size:18px;
    line-height:1.8;
}

.breadcrumb{
    margin:0;
}

.breadcrumb-item,
.breadcrumb-item a{
    color:#fff;
    text-decoration:none;
}

.breadcrumb-item.active{
    color:var(--secondary);
}

.breadcrumb-item+.breadcrumb-item::before{
    color:#fff;
}

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

.section-title{
    margin-bottom:50px;
}

.section-title span{
    display:inline-block;
    color:var(--secondary);
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:12px;
}

.section-title h2{
    font-size:42px;
    font-weight:800;
    color:var(--primary);
    margin-bottom:20px;
}

.section-title p{
    max-width:720px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

/*==========================================
GALLERY INTRODUCTION
==========================================*/

.gallery-intro{
    position:relative;
}

.gallery-intro img{
    width:100%;
    border-radius:20px;
    box-shadow:0 20px 45px rgba(0,0,0,.12);
    transition:.4s;
}

.gallery-intro img:hover{
    transform:scale(1.02);
}

.gallery-intro p{
    color:#666;
    line-height:1.9;
    margin-bottom:20px;
}

.mini-counter{
    background:#fff;
    padding:25px;
    text-align:center;
    border-radius:18px;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.35s;
}

.mini-counter:hover{
    transform:translateY(-8px);
}

.mini-counter h3{
    font-size:34px;
    font-weight:800;
    color:var(--secondary);
    margin-bottom:10px;
}

.mini-counter p{
    margin:0;
    color:#555;
    font-weight:600;
}

/*==========================================
GALLERY FILTER
==========================================*/

.gallery-filter{
    margin-bottom:50px;
}

.gallery-filter button{
    border:none;
    background:#fff;
    color:var(--primary);
    padding:12px 28px;
    margin:8px;
    border-radius:50px;
    font-weight:600;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.35s;
}

.gallery-filter button:hover,
.gallery-filter button.active{
    background:var(--secondary);
    color:var(--primary);
    transform:translateY(-3px);
}

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

.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.gallery-item img{
    width:100%;
    height:300px;
    object-fit:cover;
    transition:.45s;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

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

.gallery-overlay{
    position:absolute;
    inset:0;
    background:rgba(27,36,51,.75);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    opacity:0;
    visibility:hidden;
    transition:all .35s ease;
    padding:20px;
}

.gallery-item:hover .gallery-overlay{
    opacity:1;
    visibility:visible;
}

.gallery-overlay h5{
    color:#fff;
    font-size:24px;
    font-weight:700;
    margin-bottom:10px;
}

.gallery-overlay p{
    color:rgba(255,255,255,.85);
    margin-bottom:20px;
}

.gallery-overlay a{
    width:60px;
    height:60px;
    border-radius:50%;
    background:var(--secondary);
    color:var(--primary);
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:22px;
    transition:.35s;
}

.gallery-overlay a:hover{
    transform:rotate(180deg) scale(1.1);
}

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

.before-after{
    position:relative;
}

.comparison-card{
    background:#fff;
    padding:25px;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.35s;
    height:100%;
}

.comparison-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 55px rgba(0,0,0,.12);
}

.comparison-card h4{
    color:var(--primary);
    font-weight:700;
}

.comparison-card img{
    width:100%;
    border-radius:18px;
    transition:.4s;
}

.comparison-card:hover img{
    transform:scale(1.03);
}

/*==========================================
VIDEO GALLERY
==========================================*/

.video-gallery{
    position:relative;
}

.video-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.35s;
    height:100%;
}

.video-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 55px rgba(0,0,0,.12);
}

.video-thumbnail{
    position:relative;
    overflow:hidden;
}

.video-thumbnail img{
    width:100%;
    height:250px;
    object-fit:cover;
    transition:.45s;
}

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

.play-btn{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:75px;
    height:75px;
    border-radius:50%;
    background:var(--secondary);
    color:var(--primary);
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:26px;
    transition:.35s;
}

.play-btn:hover{
    transform:translate(-50%,-50%) scale(1.1);
}

.video-content{
    padding:25px;
}

.video-content h5{
    color:var(--primary);
    font-weight:700;
    margin-bottom:10px;
}

.video-content p{
    color:#666;
    margin-bottom:0;
    line-height:1.8;
}

/*==========================================
CONSTRUCTION PROGRESS
==========================================*/

.construction-progress{
    position:relative;
}

.construction-progress img{
    width:100%;
    border-radius:20px;
    box-shadow:0 20px 45px rgba(0,0,0,.10);
    transition:.4s;
}

.construction-progress img:hover{
    transform:scale(1.03);
}

.progress-list{
    margin-top:30px;
}

.progress-item{
    display:flex;
    align-items:center;
    margin-bottom:20px;
    font-size:17px;
    color:#555;
    transition:.3s;
}

.progress-item:hover{
    transform:translateX(8px);
}

.progress-item:last-child{
    margin-bottom:0;
}

.progress-item i{
    width:36px;
    height:36px;
    border-radius:50%;
    background:rgba(212,175,55,.12);
    color:var(--secondary);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-right:15px;
    font-size:16px;
}

/*==========================================
COUNTER SECTION
==========================================*/

.counter-section{
    position:relative;
}

.counter-box{
    background:#fff;
    padding:40px 30px;
    text-align:center;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:all .35s ease;
    height:100%;
}

.counter-box:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 55px rgba(0,0,0,.12);
}

.counter-box i{
    width:85px;
    height:85px;
    margin:0 auto 25px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(212,175,55,.12);
    color:var(--secondary);
    font-size:34px;
    transition:.35s;
}

.counter-box:hover i{
    background:var(--secondary);
    color:var(--primary);
    transform:rotate(-8deg);
}

.counter-box h2{
    font-size:48px;
    font-weight:800;
    color:var(--secondary);
    margin-bottom:10px;
}

.counter-box p{
    color:var(--primary);
    font-weight:600;
    margin-bottom:0;
}

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

.cta-section{
    position:relative;
    overflow:hidden;
    text-align:center;
    padding:100px 0;
    background:
        linear-gradient(
            rgba(27,36,51,.92),
            rgba(27,36,51,.92)
        ),
        url("../images/banners/cta-bg.jpg");

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

.cta-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        135deg,
        rgba(212,175,55,.08),
        transparent
    );
}

.cta-section .container{
    position:relative;
    z-index:2;
}

.cta-section .sub-title{
    display:inline-block;
    color:var(--secondary);
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:15px;
}

.cta-section h2{
    color:#fff;
    font-size:46px;
    font-weight:800;
    margin-bottom:20px;
}

.cta-section p{
    max-width:760px;
    margin:0 auto 35px;
    color:rgba(255,255,255,.90);
    line-height:1.9;
}

.hero-buttons .btn{
    margin:8px;
    min-width:190px;
}

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

.faq-section{
    position:relative;
}

.faq-section .accordion{
    max-width:900px;
    margin:auto;
}

.faq-section .accordion-item{
    border:none;
    border-radius:18px !important;
    overflow:hidden;
    margin-bottom:20px;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.faq-section .accordion-button{
    background:#fff;
    color:var(--primary);
    font-size:18px;
    font-weight:700;
    padding:22px 28px;
    box-shadow:none;
}

.faq-section .accordion-button:not(.collapsed){
    background:var(--secondary);
    color:var(--primary);
}

.faq-section .accordion-button::after{
    filter:brightness(.2);
}

.faq-section .accordion-body{
    padding:24px 28px;
    color:#666;
    line-height:1.9;
}

/*==========================================
COMMON COMPONENTS
==========================================*/

.gallery-item,
.video-card,
.counter-box,
.comparison-card,
.mini-counter{
    transition:all .35s ease;
}

.gallery-item:hover,
.video-card:hover,
.counter-box:hover,
.comparison-card:hover,
.mini-counter:hover{
    transform:translateY(-10px);
}

.gallery-item img,
.video-thumbnail img,
.comparison-card img,
.construction-progress img{
    transition:all .4s ease;
}

.gallery-item:hover img,
.video-card:hover .video-thumbnail img{
    transform:scale(1.08);
}


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

@media (max-width:991.98px){

    .page-banner{
        padding:140px 0 90px;
    }

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

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

    .gallery-item img{
        height:260px;
    }

    .video-thumbnail img{
        height:220px;
    }

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

    .counter-box{
        padding:35px 25px;
    }

    .construction-progress img{
        margin-bottom:40px;
    }

}

@media (max-width:767.98px){

    .page-banner{
        padding:120px 0 80px;
    }

    .banner-content h1{
        font-size:34px;
    }

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

    .section-title h2{
        font-size:30px;
    }

    .gallery-filter button{
        display:inline-block;
        margin:6px;
        padding:10px 20px;
        font-size:14px;
    }

    .gallery-item img{
        height:240px;
    }

    .video-thumbnail img{
        height:210px;
    }

    .play-btn{
        width:60px;
        height:60px;
        font-size:20px;
    }

    .counter-box{
        padding:30px 20px;
    }

    .counter-box h2{
        font-size:38px;
    }

    .cta-section{
        padding:80px 0;
    }

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

    .hero-buttons .btn{
        width:100%;
        margin:10px 0;
    }

    .faq-section .accordion-button{
        font-size:16px;
        padding:18px 20px;
    }

}

@media (max-width:575.98px){

    .banner-content h1{
        font-size:28px;
    }

    .section-title h2{
        font-size:26px;
    }

    .gallery-item img{
        height:220px;
    }

    .video-thumbnail img{
        height:200px;
    }

    .gallery-overlay h5{
        font-size:20px;
    }

    .gallery-overlay p{
        font-size:14px;
    }

    .gallery-overlay a{
        width:50px;
        height:50px;
        font-size:18px;
    }

    .comparison-card{
        padding:20px;
    }

    .counter-box{
        padding:25px 18px;
    }

    .counter-box i{
        width:70px;
        height:70px;
        font-size:28px;
    }

    .counter-box h2{
        font-size:34px;
    }

}

/*==========================================
HOVER EFFECTS
==========================================*/

.gallery-item,
.video-card,
.counter-box,
.comparison-card,
.mini-counter,
.gallery-filter button{
    transition:all .35s ease;
}

.gallery-item:hover,
.video-card:hover,
.counter-box:hover,
.comparison-card:hover,
.mini-counter:hover{
    transform:translateY(-10px);
}

.gallery-filter button:hover{
    transform:translateY(-3px);
}

.gallery-item img,
.video-thumbnail img,
.comparison-card img,
.construction-progress img{
    transition:transform .45s ease;
}

.gallery-item:hover img,
.video-card:hover img,
.comparison-card:hover img,
.construction-progress:hover img{
    transform:scale(1.06);
}

.play-btn,
.gallery-overlay a{
    transition:all .35s ease;
}

.play-btn:hover,
.gallery-overlay a:hover{
    box-shadow:0 10px 25px rgba(212,175,55,.35);
}

/*==========================================
UTILITY CLASSES
==========================================*/

.rounded-20{
    border-radius:20px;
}

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

.py-120{
    padding-top:120px;
    padding-bottom:120px;
}

.bg-light{
    background:#f8f9fa;
}

.text-gold{
    color:var(--secondary);
}

.text-primary-dark{
    color:var(--primary);
}

/*==========================================
SMOOTH SCROLLING
==========================================*/

html{
    scroll-behavior:smooth;
}

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

a{
    transition:all .3s ease;
}

button{
    transition:all .3s ease;
}

::selection{
    background:var(--secondary);
    color:#fff;
}

/*==========================================
END OF FILE
==========================================*/