/* ================= OFFPLAN PAGE ================= */

html, body{
    overflow-x: hidden;
}
body{
    position: relative;
    overflow-x: hidden;
}
.owl-stage{
    overflow:hidden;
}
[data-aos]{
    will-change: transform, opacity;
}
.offplan-section{
    background:#f5f5f5;
    padding:120px 0;
}
.dropdown-toggle::after{
    margin-left:6px;
    vertical-align:middle;
}
.dropdown-menu{
    display:none;
    flex-direction:column;
}
.dropdown-menu.show{
    display:flex;
    flex-direction: column;
}
.dropdown{
    display:flex;
    align-items:center;
    gap:6px;
}

.dropdown-arrow{
    cursor:pointer;
    font-size:22px;
}
.offplan-container{
    width:88%;
    max-width:1400px;
    margin:auto;
}

/* ================= HEADER ================= */

.offplan-header{
    margin-bottom:60px;
}

.offplan-title{
    font-family:"Clash Grotesk", sans-serif;
    font-weight:500;
    font-size:42px;
    line-height:100%;
    margin-bottom:12px;
}

.offplan-sub{
    font-family:"Clash Grotesk", sans-serif;
    font-size:18px;
    line-height:27px;
    color:#666;
    max-width:600px;
}

/* ================= SEARCH BAR ================= */

.offplan-search{
    display:flex;
    gap:15px;
    margin-bottom:80px;
    flex-wrap:wrap;
}

.offplan-search input,
.offplan-search select{
    height:52px;
    padding:0 18px;
    border-radius:10px;
    border:1px solid #ddd;
    font-family:"Clash Grotesk", sans-serif;
    font-size:16px;
    outline:none;
}

.offplan-search input{
    flex:1;
    min-width:260px;
}

.offplan-search-btn{
    background:rgba(0,92,93,1);
    color:#fff;
    border:none;
    padding:0 36px;
    border-radius:10px;
    font-family:"Urbanist", sans-serif;
    font-weight:500;
    font-size:16px;
    cursor:pointer;
    transition:0.3s;
}

.offplan-search-btn:hover{
    opacity:0.85;
}

/* ================= GRID ================= */

.offplan-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
}

/* ================= CARD ================= */

.offplan-card{
    background:#fff;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 20px 40px rgba(0,0,0,0.05);
    transition:0.3s ease;
}

.offplan-card:hover{
    transform:translateY(-6px);
}

/* IMAGE */

.offplan-image{
    position:relative;
}

.offplan-image img{
    width:100%;
    height:260px;
    object-fit:cover;
}

/* CONTENT */

.offplan-content{
    padding:26px;
}

/* TITLE */

.offplan-project{
    font-family:"Clash Grotesk", sans-serif;
    font-weight:500;
    font-size:20px;
    line-height:27px;
    margin-bottom:10px;
}

/* PRICE */

.offplan-price{
    font-family:"Clash Grotesk", sans-serif;
    font-weight:500;
    font-size:18px;
    color:rgba(0,92,93,1);
    margin-bottom:14px;
}

/* META */

.offplan-meta{
    font-family:"Clash Grotesk", sans-serif;
    font-size:16px;
    color:#666;
    margin-bottom:6px;
}

/* BUTTON */

.offplan-btn{
    display:inline-flex;
    align-items:center;
    gap:6px;
    margin-top:18px;
    padding:10px 20px;
    border:1px solid rgba(0,92,93,1);
    border-radius:8px;
    text-decoration:none;
    font-family:"Urbanist", sans-serif;
    font-size:15px;
    color:rgba(0,92,93,1);
    transition:0.3s ease;
}

.offplan-btn:hover{
    background:rgba(0,92,93,1);
    color:#fff;
}

/* ================= RESPONSIVE ================= */

@media (max-width:1200px){

.offplan-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media (max-width:768px){

.offplan-grid{
grid-template-columns:1fr;
}



.offplan-title{
font-size:32px;
}

}


@media (max-width:768px){

/* keep cards responsive */
.offplan-grid{
    grid-template-columns:1fr;
}

/* search layout */
.offplan-search{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

/* search input */
.offplan-search input{
    flex:1;
    height:56px;
}

/* search button */
.offplan-search-btn{
    height:56px;
    white-space:nowrap;
}

/* filters */
.offplan-search select{
    flex:1 1 calc(25% - 10px);
}

}