/* Google Font */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#f5f7fa;
    color:#222;
}

/* Navigation */

.navbar{
    position:fixed;
    top:0;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    background:rgba(8,25,55,.85);
    backdrop-filter:blur(12px);
    z-index:1000;
}

.logo h2{
    color:#FFD700;
    font-size:28px;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:30px;
}

.nav-links a{
    color:white;
    text-decoration:none;
    font-weight:500;
    transition:.3s;
}

.nav-links a:hover{
    color:#FFD700;
}

.nav-buttons{
    display:flex;
    gap:15px;
}

.call-btn,
.whatsapp-btn{
    padding:12px 22px;
    border-radius:30px;
    text-decoration:none;
    color:white;
    font-weight:600;
    transition:.3s;
}

.call-btn{
    background:#0d6efd;
}

.whatsapp-btn{
    background:#25D366;
}

.call-btn:hover,
.whatsapp-btn:hover{
    transform:translateY(-3px);
}

/* Hero */

.hero{
    height:100vh;
    background-image: url("../images/background/hero.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
}

.hero-content{
    position:relative;
    z-index:2;
    color:white;
    width:80%;
    animation:fadeUp 1.2s ease;
    padding-top:120px;
}
.hero h1{
    font-size:68px;
    font-weight:800;
    line-height:1.2;
    text-shadow:0 5px 20px rgba(0,0,0,.6);
}

.hero p{
    font-size:22px;
    max-width:700px;
    margin:25px auto 40px;
    line-height:1.8;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(50px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

.hero h1{
    font-size:60px;
    margin-bottom:20px;
}

.hero p{
    font-size:20px;
    margin-bottom:35px;
}

.hero-buttons a{
    text-decoration:none;
    padding:15px 35px;
    border-radius:35px;
    margin:10px;
    display:inline-block;
    transition:.3s;
}

.primary-btn{
    background:#FFD700;
    color:#000;
}

.secondary-btn{
    background:white;
    color:#081937;
}

.primary-btn:hover,
.secondary-btn:hover{
    transform:translateY(-4px);
}

/* Search */

.search-section{
    padding:90px 8%;
    text-align:center;
}

.search-box{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-top:35px;
}

.search-box input,
.search-box select{
    padding:16px;
    border-radius:10px;
    border:1px solid #ccc;
}

.search-box button{
    background:#081937;
    color:white;
    border:none;
    border-radius:10px;
    cursor:pointer;
    font-size:16px;
}

/* Featured */

.featured{
    padding:80px 8%;
}

.featured h2{
    text-align:center;
    margin-bottom:40px;
}

.property-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.property-card{
    background:white;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.property-card:hover{
    transform:translateY(-10px);
}

.property-card img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.property-info{
    padding:20px;
}

.property-info h4{
    color:#081937;
    margin:15px 0;
}

.property-info a{
    text-decoration:none;
    background:#081937;
    color:white;
    padding:10px 18px;
    border-radius:25px;
}

/* Why Us */

.why-us{
    padding:80px 8%;
    background:white;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    margin-top:40px;
}

.why-card{
    background:#081937;
    color:white;
    padding:35px;
    border-radius:18px;
    text-align:center;
}

/* CTA */

.cta{
    padding:90px 8%;
    text-align:center;
    background:#FFD700;
}

.cta a{
    display:inline-block;
    margin-top:30px;
    background:#081937;
    color:white;
    text-decoration:none;
    padding:16px 35px;
    border-radius:35px;
}

/* Footer */

footer{
    background:#081937;
    color:white;
    text-align:center;
    padding:40px;
    line-height:2;
}

/* Responsive */

@media(max-width:900px){

.navbar{
    flex-direction:column;
    gap:20px;
}

.search-box{
    grid-template-columns:1fr;
}

.hero h1{
    font-size:40px;
}

.hero p{
    font-size:18px;
}

}
.featured-subtitle{
    text-align:center;
    color:#666;
    margin-bottom:50px;
    font-size:18px;
}

.property-card{
    position:relative;
}

.badge{
    position:absolute;
    top:15px;
    left:15px;
    background:#FFD700;
    color:#081937;
    padding:8px 15px;
    border-radius:20px;
    font-size:13px;
    font-weight:700;
}

.property-info p{
    margin:8px 0;
    color:#555;
}

.property-info h3{
    margin-bottom:10px;
}
/* SERVICES */

.services{
    padding:90px 8%;
    background:#f8f9fb;
}

.services h2{
    text-align:center;
    font-size:42px;
    margin-bottom:15px;
}

.services-subtitle{
    text-align:center;
    color:#666;
    margin-bottom:50px;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.service-card{
    background:white;
    border-radius:20px;
    padding:40px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.service-card:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.service-icon{
    font-size:50px;
    margin-bottom:20px;
}

.service-card h3{
    margin-bottom:15px;
    color:#081937;
}
/* ===========================
   HAMBURGER MENU
=========================== */

/* Hidden on desktop */
.menu-toggle{
    display:none;
    font-size:32px;
    color:white;
    cursor:pointer;
}

/* Desktop */
.nav-menu{
    display:flex;
    align-items:center;
    gap:30px;
}

/* Mobile */
@media (max-width:768px){

    .navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 20px;
}

    .menu-toggle{
    display:block;
    font-size:32px;
    color:white;
    cursor:pointer;
    position:absolute;
    right:20px;
    top:20px;
    z-index:1001;
}

    .nav-menu{
    display:none;
    position:fixed;
    top:80px;
    left:0;
    width:100%;
    height:calc(100vh - 80px);
    background:#081937;
    padding:80px 20px 40px;
    flex-direction:column;
    align-items:center;
    overflow-y:auto;
    z-index:999;
}

    .nav-menu.active{
        display:flex;
    }

    .nav-links{
        flex-direction:column;
        gap:20px;
    }

    .nav-buttons{
        flex-direction:column;
        margin-top:20px;
    }
}