/* COMPANY STATS */

.stats{
    background:#081937;
    color:white;
    padding:80px 8%;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
    text-align:center;
}

.stat-box{
    background:rgba(255,255,255,.08);
    padding:40px;
    border-radius:20px;
    transition:.4s;
}

.stat-box:hover{
    transform:translateY(-10px);
    background:#FFD700;
    color:#081937;
}

.stat-box h2{
    font-size:50px;
    color:#FFD700;
    margin-bottom:15px;
}

.stat-box:hover h2{
    color:#081937;
}

.stat-box p{
    font-size:20px;
    font-weight:600;
}
/* TESTIMONIALS */

.testimonials{

padding:100px 8%;

background:white;

}

.testimonials h2{

text-align:center;

font-size:42px;

margin-bottom:15px;

}

.testimonial-subtitle{

text-align:center;

color:#666;

margin-bottom:60px;

}

.testimonial-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

gap:35px;

}

.testimonial-card{

background:white;

border-radius:20px;

padding:40px;

box-shadow:0 15px 35px rgba(0,0,0,.08);

text-align:center;

transition:.4s;

}

.testimonial-card:hover{

transform:translateY(-10px);

}

.testimonial-card img{

width:100px;

height:100px;

border-radius:50%;

object-fit:cover;

margin-bottom:20px;

border:5px solid #FFD700;

}

.testimonial-card h3{

margin-bottom:10px;

}

.testimonial-card span{

font-size:20px;

}

.testimonial-card p{

margin-top:20px;

line-height:1.8;

color:#555;

}
/* ===========================
   MOBILE RESPONSIVE
=========================== */

/* ===========================
   MOBILE RESPONSIVE
=========================== */

@media (max-width:768px){

    /* Navbar */

    .navbar{
        padding:12px 20px;
        flex-direction:column;
        gap:15px;
    }

    .logo h2{
        font-size:22px;
    }

    .nav-links{
        gap:15px;
        flex-wrap:wrap;
        justify-content:center;
    }

    .nav-links a{
        font-size:15px;
    }

    .call-btn,
    .whatsapp-btn{
        padding:10px 16px;
        font-size:14px;
    }

    /* Hero */

    .hero{
        height:70vh;
        padding:20px;
    }

    .hero-content{
        width:95%;
    }

    .hero h1{
        font-size:36px;
        line-height:1.2;
    }

    .hero p{
        font-size:16px;
        max-width:100%;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:center;
    }

    .hero-buttons a{
        width:210px;
        padding:12px 20px;
        font-size:15px;
    }

    /* Search */

    .search-section{
        padding:50px 20px;
    }

    .search-section h2{
        font-size:28px;
    }

    .search-box{
        grid-template-columns:1fr;
        gap:15px;
    }

    /* Featured */

    .featured{
        padding:50px 20px;
    }

    .featured h2{
        font-size:28px;
    }

    .featured-subtitle{
        font-size:15px;
        margin-bottom:30px;
    }

    .property-grid{
        grid-template-columns:1fr;
    }

    .property-card img{
        height:200px;
    }

    .property-info{
        padding:16px;
    }

    .property-info h3{
        font-size:20px;
    }

    .property-info p{
        font-size:14px;
    }

    .property-info h4{
        font-size:20px;
    }

    .property-info a{
        display:inline-block;
        padding:10px 16px;
        font-size:14px;
    }

    .badge{
        font-size:11px;
        padding:6px 12px;
    }

    /* Services */

    .services{
        padding:50px 20px;
    }

    .services h2{
        font-size:28px;
    }

    .service-card{
        padding:25px;
    }

    .service-icon{
        font-size:38px;
    }

    /* Testimonials */

    .testimonials{
        padding:50px 20px;
    }

    .testimonials h2{
        font-size:28px;
    }

    .testimonial-card{
        padding:25px;
    }

    /* Stats */

    .stats{
        padding:50px 20px;
    }

    .stat-box{
        padding:25px;
    }

    .stat-box h2{
        font-size:36px;
    }

    .stat-box p{
        font-size:16px;
    }

    /* Why Us */

    .why-us{
        padding:50px 20px;
    }

    .why-card{
        padding:25px;
    }

    /* CTA */

    .cta{
        padding:60px 20px;
    }

    .cta h2{
        font-size:28px;
    }

    /* Footer */

    footer{
        padding:30px 20px;
        font-size:14px;
    }

}
.hero{
    min-height:85vh;
}

.hero-content{
    width:95%;
    padding-top:80px;
}