/* =====================================================
   PAGE HEADER
===================================================== */

.page-header{
    padding:120px 20px 60px;
    text-align:center;
    background:linear-gradient(
        to bottom,
        #f8f8f8 0%,
        #ffffff 100%
    );
    border-bottom:1px solid rgba(0,0,0,.05);
}

.page-header h1{
    font-size:48px;
    margin-bottom:15px;
    color:#1f2937;
}

.page-header p{
    font-size:18px;
    color:#666;
    max-width:700px;
    margin:auto;
}

/* =====================================================
   PROJECT LIST
===================================================== */

.property-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(190px,0.5fr));
    gap:40px;
    justify-content:center;
    align-items:stretch;
}

@media(max-width:992px){

.property-grid{
    grid-template-columns:1fr;
}

}

.projects-list{
    background:#ffffff;
    padding:70px 0 100px;
}

/* =====================================================
   PROJECT CARD
===================================================== */

.property-card{
    position:relative;
    width:100%;
    max-width:300px;
    margin:0 auto;
    background:#111827;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}
.property-card:hover{
    transform:translateY(-8px);
}

.property-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.property-info{
    padding:18px 24px 22px;
}

.property-info h3{
    font-family:'Playfair Display',serif;
    font-size:30px;
    font-weight:700;
    line-height:1.2;
    color:#fff;
    margin:0;
}

.property-info h4{
    font-family:'Manrope',sans-serif;
    font-size:18px;
    font-weight:500;
    color:#ffffff;
    margin:6px 0 0;
    letter-spacing:1px;
}

.price{
    display:inline-block;
    padding:8px 18px;
    background:#D4AF37;
    color:#111827;
    font-size:14px;
    font-weight:700;
    border-radius:999px;
    margin-bottom:14px;
}

/* =====================================================
   CONSULTATION CTA
===================================================== */

.consultation-cta{
    padding:90px 20px;
    text-align:center;
    background:#f4f0e8;
    position:relative;
    overflow:hidden;
}

.consultation-cta::before{
    content:"";
    position:absolute;
    left:-10%;
    bottom:-40px;
    width:120%;
    height:180px;
    background:
        repeating-radial-gradient(
            circle at center,
            transparent 0 18px,
            rgba(214,174,52,0.12) 19px 20px
        );
    opacity:.6;
}

.consultation-cta .container{
    position:relative;
    z-index:2;
}

.consultation-cta h2{
    font-size:52px;
    color:#1f2937;
    margin-bottom:18px;
    font-family:serif;
}

.consultation-cta p{
    font-size:20px;
    color:#666;
    margin-bottom:35px;
}

.cta-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:14px;

    background:#d6ae34;
    color:#111;
    text-decoration:none;
    padding:18px 42px;
    border-radius:50px;
    font-weight:700;
    font-size:22px;
    line-height:1;
    transition:.3s;
}

.cta-btn i{
    font-size:24px;
    line-height:1;
}

.cta-btn span{
    line-height:1;
}

.cta-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 25px rgba(0,0,0,.15);
}

/* =====================================================
   ANIMATION
===================================================== */


/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:768px){

.page-header{
    padding:120px 20px 55px;
}

.page-header h1{
    font-size:34px;
    line-height:1.2;
    margin-bottom:12px;
}

.page-header p{
    font-size:16px;
    line-height:1.7;
    max-width:320px;
    margin:0 auto;
}

.property-grid{
    grid-template-columns:1fr;
}

.property-info{
    padding:20px;
}

.property-info h3{
    font-size:24px;
}

.consultation-cta{
    padding:70px 20px;
}

.consultation-cta h2{
    font-size:34px;
    line-height:1.25;
    margin-bottom:18px;
}

.consultation-cta p{
    font-size:16px;
    line-height:1.8;
    max-width:520px;
    margin:0 auto 30px;
}

.cta-btn{
    width:100%;
    max-width:340px;
    min-height:56px;

    font-size:17px;
    font-weight:700;
}

}

/* ==========================================
   EXTRA RESPONSIVE IMPROVEMENTS
========================================== */

@media (max-width:1024px){

    .projects-list{
        padding:60px 0 90px;
    }

    .property-grid{
        grid-template-columns:1fr;
        gap:35px;
        justify-items:center;
    }

    .property-card{
        width:100%;
        max-width:420px;
    }

    .property-card img{
        height:260px;
    }

    .property-info{
        padding:24px;
    }

    .property-info h3{
        font-size:32px;
    }

    .property-info h4{
        font-size:18px;
    }

}

@media (max-width:768px){

    .projects-list{
        padding:50px 0 80px;
    }

    .page-header{
        padding:120px 20px 55px;
    }

    .property-card{
        width:100%;
        max-width:380px;
        border-radius:20px;
    }

    .property-card img{
        height:240px;
    }

    .property-info{
        padding:22px;
    }

    .property-info h3{
        font-size:28px;
        line-height:1.25;
    }

    .property-info h4{
        font-size:17px;
        margin-top:8px;
    }

    .price{
        font-size:15px;
        padding:8px 18px;
    }

}

@media (max-width:480px){

    .page-header h1{
        font-size:32px;
    }

    .page-header p{
        font-size:16px;
    }

    .property-card img{
        height:200px;
    }

    .property-info{
        padding:18px;
    }

    .property-info h3{
        font-size:22px;
    }

    .price{
        font-size:13px;
        padding:7px 16px;
    }

    .consultation-cta{
        padding:70px 20px;
    }

    .consultation-cta h2{
        font-size:32px;
    }

    .consultation-cta p{
        font-size:16px;
    }

}

.sold-out-badge{
    position:absolute;
    top:46px;
    left:-100px;

    width:360px;
    padding:14px 0;

    background:#c1121f;
    color:#fff;

    text-align:center;
    font-size:20px;
    font-weight:800;
    letter-spacing:3px;
    line-height:1.15;
    text-transform:uppercase;

    transform:rotate(-35deg);

    z-index:20;

    box-shadow:0 8px 20px rgba(0,0,0,.35);
}

.new-launch-badge{
    background:#2E8B57;
}

.limited-badge{
    background:#F39C12;
}