/*
════════════════════════════════════════
  Project:    PrimeEstate Realty
  Developer:  Mirza Hadi
  Brand:      HS3Dev
════════════════════════════════════════
*/

:root{
    --navy:#0f172a;
    --gold:#d4af37;
    --light:#f8fafc;
    --white:#ffffff;
    --gray:#64748b;
    --dark:#1e293b;
}

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

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Segoe UI',sans-serif;
    background:var(--light);
    color:var(--dark);
    line-height:1.7;
}

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

section{
    padding:90px 0;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:2.5rem;
    font-weight:800;
    color:var(--navy);
}

.section-title p{
    color:var(--gray);
}

/* =========================
   NAVBAR
========================= */

.custom-navbar{
    background:var(--white);
    box-shadow:0 3px 15px rgba(0,0,0,.08);
}

.navbar-brand{
    font-size:1.6rem;
    color:var(--navy) !important;
}

.nav-link{
    color:var(--navy) !important;
    font-weight:600;
    margin-left:10px;
}

.nav-link:hover{
    color:var(--gold) !important;
}

.btn-gold{
    background:var(--gold);
    color:#fff;
    border:none;
    font-weight:600;
    padding:10px 20px;
    border-radius:8px;
}

.btn-gold:hover{
    background:#b89020;
    color:#fff;
}

/* =========================
   HERO
========================= */

.hero-section{
    background:
    linear-gradient(
        rgba(15,23,42,.80),
        rgba(15,23,42,.80)
    ),
    url('https://images.unsplash.com/photo-1568605114967-8130f3a36994?w=1600');

    background-size:cover;
    background-position:center;
    min-height:90vh;

    display:flex;
    align-items:center;

    color:white;
}

.hero-badge{
    display:inline-block;
    background:rgba(212,175,55,.15);
    border:1px solid var(--gold);
    color:var(--gold);
    padding:8px 16px;
    border-radius:50px;
    margin-bottom:20px;
}

.hero-section h1{
    font-size:4rem;
    font-weight:800;
    margin-bottom:20px;
}

.hero-section p{
    margin-bottom:30px;
    font-size:1.1rem;
}

.hero-image{
    border-radius:20px;

    box-shadow:
    0 20px 40px rgba(0,0,0,.3);
}

/* =========================
   STATS
========================= */

.stats-section{
    background:white;
}

.stat-box h2{
    color:var(--gold);
    font-size:3rem;
    font-weight:800;
}

.stat-box p{
    color:var(--gray);
}

/* =========================
   ABOUT
========================= */

.about-image{
    border-radius:20px;
    box-shadow:
    0 15px 35px rgba(0,0,0,.08);
}

#about h2{
    font-size:2.5rem;
    margin-bottom:20px;
    font-weight:700;
}

/* =========================
   PROPERTIES
========================= */

.properties-section{
    background:#f1f5f9;
}

.property-card{

    background:white;
    border-radius:20px;
    overflow:hidden;

    transition:.4s;

    box-shadow:
    0 8px 25px rgba(0,0,0,.06);
}

.property-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 20px 40px rgba(0,0,0,.12);
}

.property-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.property-content{
    padding:20px;
}

.property-content h4{
    font-weight:700;
}

.property-content p{
    color:var(--gray);
    margin-bottom:10px;
}

.property-content span{
    display:block;
    color:var(--gold);
    font-size:1.4rem;
    font-weight:700;
    margin-bottom:15px;
}

/* =========================
   SERVICES
========================= */

.services-section{
    background:white;
}

.service-card{

    background:white;

    padding:35px 25px;

    text-align:center;

    border-radius:20px;

    transition:.4s;

    box-shadow:
    0 10px 25px rgba(0,0,0,.06);
}

.service-card:hover{

    transform:translateY(-10px);

    background:var(--navy);
    color:white;
}

.service-card i{

    font-size:3rem;
    color:var(--gold);

    margin-bottom:20px;
}

.service-card h4{
    margin-bottom:15px;
}

/* =========================
   AGENTS
========================= */

.agents-section{
    background:#f8fafc;
}

.agent-card{

    background:white;

    border-radius:20px;

    overflow:hidden;

    text-align:center;

    box-shadow:
    0 10px 25px rgba(0,0,0,.08);
}

.agent-card img{

    width:100%;
    height:320px;

    object-fit:cover;
}

.agent-card h4{
    margin-top:20px;
    font-weight:700;
}

.agent-card p{
    color:var(--gray);
    padding-bottom:20px;
}

/* =========================
   TESTIMONIALS
========================= */

.testimonials{
    background:white;
}

.testimonial-card{

    background:#f8fafc;

    padding:30px;

    border-radius:20px;

    box-shadow:
    0 10px 20px rgba(0,0,0,.05);
}

.stars{
    color:gold;
    margin-bottom:15px;
}

/* =========================
   CTA
========================= */

.cta-section{

    background:var(--navy);

    color:white;

    text-align:center;
}

.cta-section h2{
    font-size:3rem;
    margin-bottom:20px;
}

.cta-section p{
    margin-bottom:30px;
}

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

.footer{

    background:#020617;

    color:white;

    padding:80px 0 40px;
}

.footer h4{

    color:var(--gold);

    margin-bottom:20px;
}

.footer ul{
    list-style:none;
    padding:0;
}

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

.footer ul li a{

    color:#cbd5e1;
    text-decoration:none;
}

.footer ul li a:hover{
    color:var(--gold);
}

.footer p{
    color:#cbd5e1;
}

/* =========================
   COPYRIGHT
========================= */

.copyright{

    background:#000;

    color:white;

    text-align:center;

    padding:25px 15px;
}

.copyright strong{
    color:var(--gold);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px){

    .hero-section{
        text-align:center;
    }

    .hero-image{
        margin-top:40px;
    }

    .hero-section h1{
        font-size:3rem;
    }
}

@media(max-width:768px){

    section{
        padding:70px 0;
    }

    .hero-section h1{
        font-size:2.3rem;
    }

    .section-title h2{
        font-size:2rem;
    }

    .cta-section h2{
        font-size:2rem;
    }

    .agent-card img{
        height:280px;
    }
}

@media(max-width:576px){

    .hero-section h1{
        font-size:1.9rem;
    }

    .hero-badge{
        font-size:.85rem;
    }
}