.selpro-page{
    background:#f8f6f2;
    color:#222;
    overflow-x:hidden;
}

/* HERO */

.selpro-hero{
    position:relative;
    max-width:1400px;
    margin:80px auto 140px;
    padding:0 20px;
}

.selpro-carousel{
    position:relative;
    border-radius:32px;
    overflow:hidden;
    background:#f8f6f2;
}
    

.selpro-slide{
    width:100%;
    height:80vh;
    display:none;

    object-fit:contain;
    object-position:center;

    border-radius:32px;
}

.selpro-slide.active{
    display:block;
}
/* FLOATING CARD */

.selpro-overlay-card{
    position:absolute;
    left:50%;
    bottom:-60px;
    transform:translateX(-50%);

    background:rgba(255,255,255,.85);
    backdrop-filter:blur(16px);

    padding:30px 50px;
    border-radius:24px;

    text-align:center;

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

.selpro-project-title{
    font-size:40px;
    margin-bottom:12px;
}

.selpro-meta-row{
    display:flex;
    gap:16px;
    justify-content:center;
}

.selpro-meta-item{
    opacity:.7;
}

/* STORY */

.selpro-story-section{
    max-width:1200px;
    margin:120px auto;
    padding:0 20px;

    display:grid;
    grid-template-columns:1fr 2fr;
    gap:80px;
}

.selpro-story-heading{
    font-size:48px;
    font-weight:300;
}

.selpro-story-content{
    line-height:2;
    font-size:18px;
}

/* IMAGE BREAK */

.selpro-image-break{
    max-width:1400px;
    margin:120px auto;
    padding:0 20px;
}

.selpro-image-break img{
    width:100%;
    border-radius:24px;
}

/* STATS */

.selpro-statistics{
    max-width:1300px;
    margin:120px auto;

    display:flex;
    justify-content:center;
    flex-wrap:wrap;

    gap:25px;
    padding:0 20px;
}

.selpro-stat-card{
    width:220px;

    text-align:center;
    padding:40px;

    border:1px solid rgba(0,0,0,.08);
    border-radius:24px;
}
.selpro-stat-card h2{
    font-size:52px;
    color:#A0522D;
}

.selpro-stat-card p{
    opacity:.7;
}

/* QUOTE */

.selpro-quote-section{
    max-width:900px;
    margin:150px auto;
    text-align:center;
    padding:0 20px;
}

.selpro-quote-text{
    font-size:42px;
    line-height:1.5;
    font-style:italic;
    color:#A0522D;
}

/* GALLERY */

.selpro-gallery{
    max-width:1400px;
    margin:120px auto;
    padding:0 20px;
}

.selpro-gallery-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.selpro-gallery-item img{
    width:100%;
    display:block;
    border-radius:24px;
}

/* NEXT PROJECT */

.selpro-next-project-wrap{
    text-align:center;
    margin:120px 0;
}

.selpro-next-project-btn{
    text-decoration:none;
    color:white;

    background:#A0522D;

    padding:16px 36px;
    border-radius:999px;

    transition:.3s;
}

.selpro-next-project-btn:hover{
    transform:translateY(-4px);
}

/* CAROUSEL BUTTONS */

.selpro-carousel-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);

    width:56px;
    height:56px;

    border:none;
    border-radius:50%;

    background:rgba(0,0,0,.55);
    color:white;

    cursor:pointer;
    z-index:20;
}

.selpro-prev-btn{
    left:20px;
}

.selpro-next-btn{
    right:20px;
}
.selpro-dots{
    position:absolute;
    bottom:25px;
    left:50%;
    transform:translateX(-50%);

    display:flex;
    gap:10px;
}

.selpro-dot{
    width:10px;
    height:10px;
    border-radius:50%;

    background:rgba(255,255,255,.5);
    cursor:pointer;
}

.selpro-dot.active{
    background:white;
    transform:scale(1.4);
}

.selpro-image-break-video {
    width: 100%;
    height: 700px;
    border: none;
}

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

@media (max-width: 768px){

    .selpro-hero{
        margin:30px auto 100px;
        padding:0 12px;
    }

    .selpro-slide{
        height:55vh;
        border-radius:18px;
        object-fit:contain;
    }

    .selpro-overlay-card{
        width:90%;
        padding:20px;
        bottom:-50px;
    }

    .selpro-project-title{
        font-size:24px;
        line-height:1.2;
    }

    .selpro-meta-row{
        flex-direction:column;
        gap:6px;
    }

    .selpro-story-section{
        grid-template-columns:1fr;
        gap:30px;
        margin:80px auto;
        padding:0 20px;
    }

    .selpro-story-heading{
        font-size:32px;
        text-align:center;
    }

    .selpro-story-content{
        font-size:16px;
        line-height:1.8;
        text-align:justify;
    }

    .selpro-image-break{
        margin:80px auto;
        padding:0 12px;
    }

    .selpro-image-break img{
        border-radius:18px;
    }

    .selpro-image-break-video{
        height:250px;
        border-radius:18px;
        overflow:hidden;
    }

    .selpro-statistics{
        margin:80px auto;
        gap:16px;
        padding:0 12px;
    }

    .selpro-stat-card{
        width:100%;
        padding:25px;
    }

    .selpro-stat-card h2{
        font-size:36px;
    }

    .selpro-quote-section{
        margin:90px auto;
    }

    .selpro-quote-text{
        font-size:24px;
        line-height:1.6;
    }

    .selpro-gallery{
        margin:80px auto;
        padding:0 12px;
    }

    .selpro-gallery-grid{
        grid-template-columns:1fr;
        gap:16px;
    }

    .selpro-gallery-item img{
        border-radius:18px;
    }

    .selpro-next-project-wrap{
        margin:80px 0;
        padding:0 20px;
    }

    .selpro-next-project-btn{
        display:inline-block;
        width:100%;
        max-width:300px;
        text-align:center;
    }

    .selpro-carousel-btn{
        width:42px;
        height:42px;
        font-size:14px;
    }

    .selpro-prev-btn{
        left:10px;
    }

    .selpro-next-btn{
        right:10px;
    }

    .selpro-dots{
        bottom:15px;
        gap:8px;
    }

    .selpro-dot{
        width:8px;
        height:8px;
    }
}