/* ===========================
   PREMIUM HERO
=========================== */

.home-hero{
    position:relative;
    height:100vh;
    min-height:760px;
    overflow:hidden;
}

.home-hero img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        135deg,
        rgba(5,18,38,.82),
        rgba(5,18,38,.60)
    );

    display:flex;
    align-items:center;
}

.hero-content{
    max-width:760px;
    color:#fff;
    position:relative;
    z-index:2;
}

.hero-badge{

    display:inline-flex;
    align-items:center;

    padding:12px 22px;

    border-radius:50px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.18);

    margin-bottom:28px;

    font-size:15px;

    font-weight:600;

}

.hero-content h1{

    font-family:'Cormorant Garamond',serif;

    font-size:72px;

    line-height:1.08;

    margin-bottom:24px;

    color:#fff;

}

.hero-content p{

    font-size:21px;

    line-height:1.8;

    color:rgba(255,255,255,.92);

    margin-bottom:42px;

    max-width:650px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

    margin-bottom:60px;

}

.hero-stats{

    display:flex;

    gap:25px;

    flex-wrap:wrap;

}

.stat-box{

    min-width:170px;

    padding:24px;

    border-radius:18px;

    background:rgba(255,255,255,.10);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.18);

    transition:.35s;

}

.stat-box:hover{

    transform:translateY(-6px);

    background:rgba(255,255,255,.16);

}

.stat-box h3{

    color:#D4AF37;

    font-size:34px;

    margin-bottom:6px;

}

.stat-box span{

    color:#fff;

    font-size:15px;

    opacity:.9;

}

/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:991px){

    .home-hero{

        min-height:700px;

    }

    .hero-content h1{

        font-size:54px;

    }

    .hero-content p{

        font-size:18px;

    }

}

@media(max-width:768px){

    .home-hero{

        min-height:640px;

    }

    .hero-content{

        text-align:center;

    }

    .hero-content h1{

        font-size:40px;

    }

    .hero-content p{

        font-size:17px;

    }

    .hero-buttons{

        justify-content:center;

    }

    .hero-stats{

        justify-content:center;

    }

    .stat-box{

        width:100%;

        max-width:220px;

    

}

.property-search{
    margin-top:-70px;
    position:relative;
    z-index:20;
}

.search-grid{
    background:#fff;
    border-radius:16px;
    padding:25px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    box-shadow:0 15px 45px rgba(0,0,0,.12);
}

.search-grid select,
.search-grid button{
    height:55px;
    border-radius:10px;
    border:1px solid #ddd;
    padding:0 15px;
    font-size:15px;
}

.search-grid button{
    background:#d4af37;
    color:#fff;
    border:none;
    cursor:pointer;
    font-weight:600;
    transition:.3s;
}

.search-grid button:hover{
    background:#b8922f;
}

@media(max-width:992px){

.search-grid{
    grid-template-columns:1fr;
}

.property-search{
    margin-top:30px;
}

}
/*=============================
FEATURED PROJECTS
=============================*/

.featured-projects{
    padding:120px 0;
    background:#f8f9fb;
}

.projects-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(360px,1fr));
    gap:35px;
}

.project-card{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    transition:all .35s ease;
    box-shadow:0 12px 40px rgba(0,0,0,.08);
    border:1px solid rgba(212,175,55,.12);
}

.project-card:hover{
    transform:translateY(-10px);
    box-shadow:0 24px 60px rgba(0,0,0,.15);
}

.project-image{
    position:relative;
    height:270px;
    overflow:hidden;
}

.project-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s ease;
}

.project-card:hover .project-image img{
    transform:scale(1.08);
}

.project-tag{
    position:absolute;
    top:20px;
    left:20px;
    background:#D4AF37;
    color:#fff;
    padding:8px 18px;
    border-radius:40px;
    font-size:13px;
    font-weight:600;
    letter-spacing:.4px;
}

.project-content{
    padding:30px;
}

.project-content h3{
    font-family:'Cormorant Garamond',serif;
    font-size:32px;
    line-height:1.2;
    margin-bottom:18px;
}

.project-content h3 a{
    color:#0B1F3A;
    text-decoration:none;
    transition:.3s;
}

.project-content h3 a:hover{
    color:#D4AF37;
}

.project-content p{
    color:#666;
    margin-bottom:14px;
    font-size:15px;
    line-height:1.7;
}

.project-features{
    list-style:none;
    padding:0;
    margin:25px 0;
}

.project-features li{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:14px;
    color:#444;
    font-size:15px;
}

.project-features i{
    color:#D4AF37;
    width:20px;
    text-align:center;
}

.primary-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:15px 32px;
    border-radius:50px;
    background:#D4AF37;
    color:#fff;
    font-weight:600;
    text-decoration:none;
    transition:all .35s ease;
}

.primary-btn:hover{
    background:#0B1F3A;
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 12px 30px rgba(11,31,58,.25);
}

@media(max-width:992px){

    .projects-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .featured-projects{
        padding:80px 0;
    }

    .projects-grid{
        grid-template-columns:1fr;
    }

    .project-content h3{
        font-size:28px;
    }

    .project-image{
        height:240px;
    }

}
/*====================================
    DEVELOPER SHOWCASE
====================================*/

.developer-showcase{
    padding:110px 0;
    background:#fff;
}

.developer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
}

.developer-card{
    background:#fff;
    border:1px solid rgba(212,175,55,.15);
    border-radius:18px;
    padding:35px 20px;
    text-align:center;
    font-size:20px;
    font-weight:600;
    color:#0B1F3A;
    text-decoration:none;
    transition:.35s;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.developer-card:hover{
    background:#D4AF37;
    color:#fff;
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}