*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#ffffff;
color:#333;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

header{
background:#fff;
box-shadow:0 2px 10px rgba(0,0,0,.08);
position:sticky;
top:0;
z-index:999;
}

.nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 0;
}

.logo{
height:80px;
}

.btn{
background:#f97316;
color:#fff;
padding:12px 20px;
text-decoration:none;
border-radius:8px;
font-weight:600;
}

.hero{
height:90vh;
background:
linear-gradient(
rgba(0,0,0,.45),
rgba(0,0,0,.45)
),
url("images/header-hero.jpeg");
background-size:cover;
background-position:center;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
color:#fff;
min-height:100vh;
}



.hero img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero h1{
font-size:55px;
margin-bottom:20px;
}

.hero p{
font-size:22px;
margin-bottom:25px;
}

.hero-btn{
background:#f97316;
padding:15px 30px;
border-radius:10px;
color:#fff;
text-decoration:none;
}

/*.hero-btn{*/
/*    display: inline-block;*/
/*    width: auto;*/
/*    max-width: 90%;*/
/*    padding: 14px 20px;*/
/*    font-size: 18px;*/
/*    line-height: 1.4;*/
/*    white-space: normal;*/
/*    text-align: center;*/
/*}*/

.amenities-section{
    padding:90px 0;
    background:#faf8f4;
}

.section-title span{
    color:#c47c1d;
    font-weight:600;
    letter-spacing:3px;
    font-size:14px;
}

.section-title h2{
    font-size:42px;
    margin:15px 0;
    color:#1b1b1b;
}

.section-title p{
    color:#666;
    max-width:650px;
    margin:auto;
    line-height:1.7;
}

.amenities-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

@media (max-width: 768px) {

    .properties-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        padding: 12px;
    }

    .property-card {
        width: 100%;
        min-width: 0;
        border-radius: 16px;
    }

    .property-card img {
        height: 190px;
    }

    .property-card-content {
        padding: 14px;
    }

    .property-card h3 {
        font-size: 21px;
        line-height: 1.3;
    }

    .property-card p {
        font-size: 14px;
    }
}

@media(max-width:992px){
    .property-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){
    
.hero-btn{
    padding: 15px 5px;
}

.section-title h2{
    font-size:32px;
}

.property-buttons{
    flex-direction:column;
}

.orange{color:#f97316;}

.why-title h2{
    font-size:32px;
}

.why-grid{
    grid-template-columns:1fr;
}

.hero h1{
font-size:34px;
}

.hero p{
font-size:18px;
}

.logo{
height:60px;
}

.hero{
    min-height:85vh;
    background-position:center center;
}
    .property-grid{
        grid-template-columns:1fr;
    }
    
    .properties-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 15px;
    }

    .property-card {
        width: 100%;
        border-radius: 18px;
    }

    .property-card img {
        height: 220px;
    }

    .property-card-content {
        padding: 20px;
    }

    .property-card h3 {
        font-size: 24px;
        line-height: 1.3;
    }

    .property-card p {
        font-size: 15px;
    }
}
}
@media(max-width:992px){
    .amenities-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:576px){
    .amenities-grid{
        grid-template-columns:1fr;
    }
}

.amenity-card{
    background:#fff;
    border-radius:20px;
    padding:45px 20px;
    text-align:center;
    transition:.4s;
    box-shadow:0 8px 25px rgba(0,0,0,.07);
    border:1px solid #eee;
}

.amenity-card i{
    font-size:42px;
    color:#f97316;
    margin-bottom:20px;
}

.amenity-card h3{
    font-size:22px;
    color:#222;
}

.amenity-card:hover{
    transform:translateY(-10px);
    background:#f97316;
}

.amenity-card:hover i,
.amenity-card:hover h3{
    color:#fff;
}

.card{
padding:25px;
background:#fff;
border-radius:15px;
box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.why{
background:#fff7ed;
padding:80px 0;
}

.why h2{
text-align:center;
margin-bottom:30px;
}

.why ul{
max-width:700px;
margin:auto;
}

.why li{
padding:12px;
font-size:18px;
}

.contact{
padding:80px 0;
}

.contact h2{
text-align:center;
margin-bottom:30px;
}

form{
max-width:650px;
margin:auto;
}

input,
textarea{
width:100%;
padding:14px;
margin-bottom:15px;
border:1px solid #ddd;
border-radius:10px;
}

button{
width:100%;
padding:15px;
border:none;
background:#f97316;
color:#fff;
font-size:18px;
border-radius:10px;
cursor:pointer;
}

footer{
    background:#2b1b68;
    color:#fff;
    padding:60px 5% 20px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:40px;
}

.footer-box h3{
    color:#ff7a00;
    margin-bottom:20px;
    font-size:22px;
}

.footer-box p{
    margin-bottom:15px;
    line-height:1.8;
    color:#ddd;
}

.footer-box i{
    color:#ff7a00;
    margin-right:10px;
    width:20px;
}

.footer-box a{
    color:#ddd;
    text-decoration:none;
}

.footer-box a:hover{
    color:#ff7a00;
}

footer hr{
    margin:40px 0 20px;
    border:none;
    border-top:1px solid rgba(255,255,255,.15);
}

.copyright{
    text-align:center;
    color:#aaa;
    font-size:15px;
}

.whatsapp{
position:fixed;
right:20px;
bottom:20px;
background:#25D366;
color:#fff;
padding:15px 20px;
border-radius:50px;
text-decoration:none;
font-weight:bold;
}

.property-section{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:25px;
    padding:40px 20px;
}
.property-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:0.3s;
    position:relative;
    display:flex;
    flex-direction:column;
    height:100%;
}

.property-card:hover{
    transform:translateY(-8px);
}

.property-card img{
    width:100%;
    height:260px;
    object-fit:cover;
    display:block;
}
.property-badge{
    position:absolute;
    top:15px;
    left:15px;
    background:#ff7a00;
    color:#fff;
    padding:8px 14px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
}

.property-content{
    padding:22px;
}

.property-content h3{
    margin:0 0 10px;
    font-size:24px;
    color:#222;
}

.location{
    color:#666;
    margin-bottom:15px;
}

.details{
    display:flex;
    justify-content:space-between;
    margin-bottom:18px;
    color:#555;
    font-size:14px;
}

.price{
    font-size:32px;
    font-weight:700;
    color:#ff7a00;
    margin-bottom:20px;
}
.buttons{
    display:flex;
    gap:10px;
}

.btn{
    flex:1;
    text-align:center;
    text-decoration:none;
    padding:12px;
    border-radius:10px;
    font-weight:600;
}

.btn-primary{
    background:#ff7a00;
    color:#fff;
}

.btn-secondary{
    border:2px solid #ff7a00;
    color:#ff7a00;
}
.plotsira-properties{
    padding:80px 5%;
    background:#f8f9fb;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:42px;
    color:#222;
    margin-bottom:10px;
}

.section-title p{
    color:#777;
    font-size:18px;
}

.property-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    align-items:stretch;
}
.property-grid + .property-grid{
    margin-top:40px;   /* Dono rows ke beech gap */
}
.property-card:hover{
    transform:translateY(-10px);
}

.property-card img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.badge{
    position:absolute;
    top:15px;
    left:15px;
    background:#ff7a00;
    color:#fff;
    padding:8px 16px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
}

.property-content{
    display:flex;
    flex-direction:column;
    flex:1;
}

.property-content h3{
    font-size:24px;
    color:#222;
    margin-bottom:10px;
}



.property-info{
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:20px;
    font-size:14px;
    color:#555;
}



.property-buttons{
    display:flex;
    gap:10px;
    margin-top:auto;
}

.details-btn,
.call-btn{
    flex:1;
    text-align:center;
    text-decoration:none;
    padding:12px;
    border-radius:10px;
    font-weight:600;
}

.details-btn{
    background:#ff7a00;
    color:#fff;
}

.call-btn{
    border:2px solid #ff7a00;
    color:#ff7a00;
}

.call-btn:hover{
    background:#ff7a00;
    color:#fff;
}

.orange{color:#f97316;}

/* WHY SECTION */

.why-section{
    padding:90px 5%;
    background:#fff;
}

.why-title{
    text-align:center;
    margin-bottom:60px;
}

.why-title span{
    color:#ff7a00;
    letter-spacing:2px;
    font-size:14px;
    font-weight:600;
}

.why-title h2{
    font-size:42px;
    margin:15px 0;
    color:#222;
}

.why-title p{
    max-width:650px;
    margin:auto;
    color:#777;
    line-height:1.8;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.why-card{
    background:#fff;
    border-radius:18px;
    padding:35px;
    text-align:center;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.35s;
    border:1px solid #eee;
}

.why-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.why-card i{
    width:80px;
    height:80px;
    line-height:80px;
    border-radius:50%;
    background:#fff3e8;
    color:#ff7a00;
    font-size:32px;
    margin-bottom:25px;
}

.why-card h3{
    font-size:24px;
    margin-bottom:15px;
    color:#222;
}

.why-card p{
    color:#666;
    line-height:1.8;
}

.project-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    display:flex;
    flex-direction:column;
    height:100%;
}

.project-image{
    width:100%;
    height:250px;   /* Same height for all images */
    overflow:hidden;
}

.project-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}