/* =========================
   GLOBAL
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Montserrat',sans-serif;
    background:#f8f6f2;
    color:#111;
    line-height:1.6;
}

body.menu-open{
    overflow:hidden;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

.container{
    width:92%;
    max-width:1280px;
    margin:auto;
}

/* =========================
   BUTTONS
========================= */

.btn-primary{
    background:#0029AD;
    color:#fff;
    padding:14px 28px;
    border-radius:12px;
    font-weight:600;
    display:inline-block;
    transition:.3s;
}

.btn-primary:hover{
    background:#4A9BFF;
    color:#000;
}

.btn-secondary{
    background:#fff;
    border:1px solid #ddd;
    color:#111;
    padding:14px 28px;
    border-radius:12px;
    font-weight:600;
}

/* =========================
   HEADER
========================= */

.header{
    padding:20px 0;
    background:#f8f6f2;
}
.logo img{
    height:60px;
    border-radius: 10px;
    width:auto;
    display:block;
}

.footer-logo img{
    height:70px;
    width:auto;
    margin-bottom:15px;
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;
}

.logo h2{
    font-size:32px;
    font-weight:800;
    color:#0029AD;
}

nav ul{
    display:flex;
    list-style:none;
    gap:35px;
    flex-wrap:wrap;
}

nav a{
    color:#111;
    font-weight:500;
}

.menu-toggle{
    display:none;
    border:none;
    background:#0029AD;
    color:#fff;
    width:48px;
    height:48px;
    border-radius:14px;
    align-items:center;
    justify-content:center;
    font-size:20px;
    cursor:pointer;
    flex-shrink:0;
}

.drawer-brand{
    display:none;
}

.nav-overlay{
    position:fixed;
    inset:0;
    background:rgba(17,17,17,.45);
    opacity:0;
    visibility:hidden;
    transition:.3s ease;
    z-index:999;
}

.nav-overlay.visible{
    opacity:1;
    visibility:visible;
}



.page-banner{
    padding:80px 0 60px;
    text-align:center;
}

.page-banner h1{
    font-size:64px;
    font-weight:800;
    margin:15px 0;
}

.page-banner p{
    max-width:700px;
    margin:auto;
    color:#777;
}

.property-listing{
    padding:40px 0 100px;
}

.property-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.property-card{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    color:#111;
    transition:.3s;
}

.property-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.property-card img{
    height:240px;
    object-fit:cover;
}

.property-content{
    padding:22px;
}

.property-location{
    color:#5B7F3B;
    font-size:13px;
    font-weight:600;
}

.property-content h3{
    font-size:22px;
    margin:10px 0;
}

.property-content p{
    color:#777;
    margin-bottom:15px;
}

.view-menu{
    color:#5B7F3B;
    font-weight:600;
}

@media(max-width:991px){
    .navbar{
        align-items:flex-start;
    }

    nav{
        width:100%;
    }

    nav ul{
        justify-content:flex-start;
        gap:18px;
    }

    .page-banner{
        padding:60px 0 40px;
    }

    .page-banner h1{
        font-size:48px;
    }

    .property-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .footer-top{
        grid-template-columns:1fr 1fr;
    }

    .property-card img{
        height:220px;
    }

    .menu-toggle{
        display:flex;
        margin-left:auto;
    }

    .site-nav{
        position:fixed;
        top:0;
        left:0;
        width:min(82vw,320px);
        height:100vh;
        background:#f8f6f2;
        padding:96px 24px 24px;
        box-shadow:20px 0 40px rgba(0,0,0,.12);
        transform:translateX(-100%);
        transition:transform .3s ease;
        z-index:1000;
        overflow-y:auto;
    }

    .site-nav.open{
        transform:translateX(0);
    }

    .site-nav ul{
        flex-direction:column;
        align-items:flex-start;
        gap:18px;
    }

    .site-nav a{
        font-size:18px;
    }

    .drawer-brand{
        display:block;
        padding-bottom:18px;
        margin-bottom:18px;
        border-bottom:1px solid rgba(0,0,0,.08);
    }

    .drawer-brand img{
        width:150px;
        height:auto;
    }

    .navbar > .btn-primary{
        display:none;
    }

    .property-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){
    .navbar{
        flex-direction:column;
        align-items:flex-start;
    }

    nav ul{
        flex-direction:column;
        gap:14px;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
        text-align:center;
    }

    .menu-toggle{
        align-self:flex-end;
        margin-top:-64px;
    }

    .site-nav{
        width:min(86vw,300px);
    }

    .page-banner{
        padding:50px 0 30px;
    }

    .page-banner h1{
        font-size:34px;
    }

    .property-grid{
        grid-template-columns:1fr;
    }

    .footer-top{
        grid-template-columns:1fr;
    }

    .property-card img{
        height:210px;
    }
}

.whatsapp-float{
    position:fixed;
    bottom:25px;
    right:25px;
    width:65px;
    height:65px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    box-shadow:0 10px 25px rgba(0,0,0,.2);
    z-index:9999;
    transition:.3s ease;
}

.whatsapp-float:hover{
    transform:translateY(-5px) scale(1.05);
    box-shadow:0 15px 35px rgba(37,211,102,.4);
}

.whatsapp-float::before{
    content:"Chat With Us";
    position:absolute;
    right:80px;
    background:#111;
    color:#fff;
    padding:10px 15px;
    border-radius:10px;
    font-size:13px;
    white-space:nowrap;
    opacity:0;
    visibility:hidden;
    transition:.3s;
}

.whatsapp-float:hover::before{
    opacity:1;
    visibility:visible;
}

@media(max-width:768px){

    .whatsapp-float{
        width:58px;
        height:58px;
        bottom:20px;
        right:20px;
    }

    .whatsapp-float::before{
        display:none;
    }
}
.footer-logo img{
    height:70px;
    width:auto;
    margin-bottom:15px;
}

/* =========================
   FOOTER
========================= */

.footer{
    background:#111;
    color:#fff;
    padding-top:60px;
}

.footer-top{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:40px;
    padding-bottom:40px;
}

.footer h2{
    font-size:34px;
    margin-bottom:15px;
}

.footer h4{
    margin-bottom:15px;
}

.footer ul{
    list-style:none;
}

.footer li{
    margin-bottom:10px;
}

.footer a{
    color:#ccc;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    padding:20px 0;
    text-align:center;
    color:#999;
}
