/* ==========================================
   Divine Realtors Premium Theme
========================================== */

:root{
    --primary:#0B1F3A;
    --secondary:#D4AF37;
    --white:#ffffff;
    --text:#1F2937;
    --transition:0.35s ease;
}

/* ================= RESET ================= */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#fff;
    color:var(--text);
    overflow-x:hidden;
}

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

a{
    text-decoration:none;
}

.container{
    width:min(92%,1400px);
    margin:auto;
}

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

.dr-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:90px;
    display:flex;
    align-items:center;
    z-index:9999;

    background:rgba(11,31,58,.72);
    backdrop-filter:blur(18px);
    transition:0.35s ease;
}

.header-container{
    width:min(92%,1400px);
    margin:auto;

    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo img{
    height:58px;
    width:auto;
}

.nav-menu{
    display:flex;
    align-items:center;
    gap:35px;
    list-style:none;
}

.nav-menu li{
    list-style:none;
}

.nav-menu a{
    color:#fff;
    font-size:15px;
    font-weight:500;
    transition:var(--transition);
}

.nav-menu a:hover{
    color:var(--secondary);
}

.header-buttons{
    display:flex;
    align-items:center;
    gap:15px;
}

.call-btn{
    padding:13px 28px;
    border:2px solid var(--secondary);
    color:#fff;
    border-radius:50px;
    transition:var(--transition);
}

.call-btn:hover{
    background:var(--secondary);
}

.enquire-btn{
    padding:13px 30px;
    border:none;
    border-radius:50px;
    background:var(--secondary);
    color:#fff;
    cursor:pointer;
    font-weight:600;
    transition:var(--transition);
}

.enquire-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(212,175,55,.35);
}

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

.hero{
    position:relative;
    min-height:100vh;

    display:flex;
    align-items:center;
    justify-content:center;

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    overflow:hidden;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        rgba(5,18,38,.72),
        rgba(5,18,38,.62)
    );
}

.hero-content{
    position:relative;
    z-index:2;

    max-width:900px;
    width:90%;

    text-align:center;

    padding-top:70px;
}

.hero-content h1{

    font-family:'Cormorant Garamond',serif;

    font-size:76px;

    line-height:1.08;

    font-weight:700;

    color:#fff;

    margin-bottom:28px;
}

.hero-content p{

    color:#fff;

    font-size:22px;

    line-height:1.8;

    margin-bottom:45px;

    opacity:.96;
}

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:22px;

    flex-wrap:wrap;
}

.primary-btn,
.secondary-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    min-width:230px;

    height:60px;

    border-radius:60px;

    font-size:17px;

    font-weight:600;

    transition:.35s ease;
}

.primary-btn{

    background:var(--secondary);

    color:#fff;
}

.primary-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 15px 35px rgba(212,175,55,.35);
}

.secondary-btn{

    border:2px solid #fff;

    color:#fff;

    background:transparent;
}

.secondary-btn:hover{

    background:#fff;

    color:var(--primary);

    transform:translateY(-4px);
}

/* ================= MOBILE ================= */

@media(max-width:991px){

    .nav-menu{
        display:none;
    }

    .hero-content h1{
        font-size:54px;
    }

    .hero-content p{
        font-size:18px;
    }

}

@media(max-width:768px){

    .dr-header{
        height:80px;
    }

    .logo img{
        height:48px;
    }

    .hero-content{
        padding-top:40px;
    }

    .hero-content h1{
        font-size:42px;
    }

    .hero-content p{
        font-size:17px;
    }

    .primary-btn,
    .secondary-btn{
        width:100%;
        max-width:320px;
    }

}

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

.about-section{
    padding:120px 0;
    background:#fff;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.about-image{
    position:relative;
}

.about-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 25px 60px rgba(0,0,0,.12);
}

.section-subtitle{
    display:inline-block;
    color:var(--secondary);
    font-size:14px;
    font-weight:600;
    letter-spacing:3px;
    margin-bottom:12px;
}

.about-content h2{
    font-family:'Cormorant Garamond',serif;
    font-size:56px;
    line-height:1.15;
    color:var(--primary);
    margin-bottom:25px;
}

.about-content p{
    color:#555;
    line-height:1.9;
    font-size:16px;
    margin-bottom:20px;
}

/* ===== Premium Trust Cards ===== */

.about-highlights{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:22px;

    margin:45px 0;

}

.highlight-item{

    display:flex;
    align-items:center;
    gap:18px;

    background:#fff;

    padding:22px;

    border-radius:18px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s ease;

    border:1px solid rgba(212,175,55,.18);

}

.highlight-item:hover{

    transform:translateY(-6px);

    box-shadow:0 22px 50px rgba(0,0,0,.14);

}

.highlight-item i{

    width:60px;
    height:60px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:rgba(212,175,55,.15);

    color:var(--secondary);

    font-size:24px;

    flex-shrink:0;

}

.highlight-item span{

    color:var(--primary);

    font-weight:600;

    line-height:1.5;

    font-size:16px;

}

/* Contact Button */

.about-content .primary-btn{

    margin-top:10px;

}

/* ================= Responsive ================= */

@media(max-width:992px){

    .about-grid{

        grid-template-columns:1fr;

        gap:50px;

    }

    .about-content{

        text-align:center;

    }

    .about-content h2{

        font-size:42px;

    }

    .about-highlights{

        grid-template-columns:1fr;

    }

}

@media(max-width:768px){

    .about-section{

        padding:80px 0;

    }

    .about-content h2{

        font-size:36px;

    }

}

@media(max-width:992px){

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

    .about-content h2{
        font-size:40px;
    }

}
/* ================= WHY CHOOSE US ================= */

.why-choose-section{
    padding:120px 0;
    background:#f8f9fb;
}

.section-title{
    text-align:center;
    max-width:760px;
    margin:0 auto 70px;
}

.section-title h2{
    font-family:'Cormorant Garamond',serif;
    font-size:54px;
    color:var(--primary);
    margin:18px 0;
}

.section-title p{
    color:#666;
    line-height:1.8;
}

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

.why-card{
    background:#fff;
    padding:40px 30px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.35s ease;
    border:1px solid rgba(212,175,55,.15);
}

.why-card:hover{
    transform:translateY(-8px);
    box-shadow:0 22px 50px rgba(0,0,0,.14);
}

.why-icon{
    width:80px;
    height:80px;
    margin:0 auto 25px;
    border-radius:50%;
    background:rgba(212,175,55,.12);
    display:flex;
    align-items:center;
    justify-content:center;
}

.why-icon i{
    font-size:34px;
    color:var(--secondary);
}

.why-card h3{
    font-size:24px;
    color:var(--primary);
    margin-bottom:15px;
    font-family:'Cormorant Garamond',serif;
}

.why-card p{
    color:#666;
    line-height:1.8;
    font-size:15px;
}

@media(max-width:1100px){
    .why-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

    .why-choose-section{
        padding:80px 0;
    }

    .section-title h2{
        font-size:40px;
    }

    .why-grid{
        grid-template-columns:1fr;
    }
}
/* ================= DEVELOPER PARTNERS ================= */

.developer-section{
    padding:120px 0;
    background:#fff;
}

.developer-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.developer-card{

    background:#fff;

    border-radius:18px;

    padding:40px;

    display:flex;

    justify-content:center;

    align-items:center;

    min-height:180px;

    border:1px solid #eee;

    box-shadow:0 12px 35px rgba(0,0,0,.06);

    transition:.35s ease;

}

.developer-card:hover{

    transform:translateY(-6px);

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

}

.developer-card img{

    max-width:170px;

    max-height:80px;

    object-fit:contain;

    filter:grayscale(100%);

    opacity:.75;

    transition:.35s ease;

}

.developer-card:hover img{

    filter:none;

    opacity:1;

}

@media(max-width:991px){

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

}

@media(max-width:768px){

    .developer-section{
        padding:80px 0;
    }

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

}
/* ================= FEATURED PROJECTS ================= */

.featured-projects{
    padding:120px 0;
    background:#f8f9fb;
}

.projects-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.project-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s ease;

}

.project-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 55px rgba(0,0,0,.14);

}

.project-image{

    position:relative;

    overflow:hidden;

}

.project-image img{

    width:100%;

    height:260px;

    object-fit:cover;

    transition:.4s ease;

}

.project-card:hover img{

    transform:scale(1.06);

}

.project-tag{

    position:absolute;

    top:18px;

    left:18px;

    background:var(--secondary);

    color:#fff;

    padding:8px 16px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

}

.project-content{

    padding:30px;

}

.project-content h3{

    font-family:'Cormorant Garamond',serif;

    font-size:34px;

    color:var(--primary);

    margin-bottom:15px;

}

.location{

    color:#777;

    margin-bottom:22px;

}

.location i{

    color:var(--secondary);

    margin-right:8px;

}

.project-features{

    list-style:none;

    margin-bottom:30px;

}

.project-features li{

    margin-bottom:12px;

    color:#555;

}

.project-features i{

    color:var(--secondary);

    margin-right:10px;

}

.projects-button{

    text-align:center;

    margin-top:60px;

}

@media(max-width:1100px){

    .projects-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .featured-projects{

        padding:80px 0;

    }

    .projects-grid{

        grid-template-columns:1fr;

    }

}

.project-hero{
padding:80px 0;
background:#f8f9fc;
}

.project-banner img{
width:100%;
border-radius:20px;
display:block;
}

.project-info{
margin-top:40px;
}

.project-category{
display:inline-block;
background:#d4af37;
color:#fff;
padding:8px 18px;
border-radius:30px;
font-weight:600;
margin-bottom:20px;
}

.project-location{
margin-top:15px;
font-size:18px;
color:#666;
}

.project-details{
padding:70px 0;
}

.details-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
}

.detail-box{
background:#fff;
padding:30px;
border-radius:18px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
text-align:center;
}

.detail-box h4{
margin-bottom:12px;
color:#777;
}

.detail-box p{
font-size:20px;
font-weight:700;
color:#1f2937;
}

.project-description{
padding:70px 0;
line-height:1.9;
}

.project-filters{

background:#fff;

padding:30px;

border-radius:20px;

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

margin:40px 0;

}

.filter-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:20px;

}

.filter-grid input,
.filter-grid select{

width:100%;

padding:16px;

border:1px solid #ddd;

border-radius:12px;

font-size:15px;

outline:none;

}

.filter-grid button{

width:100%;

}

@media(max-width:991px){

.filter-grid{

grid-template-columns:1fr;

}
}
html{
    scroll-behavior:smooth;
}
/*====================================
          PREMIUM FOOTER
====================================*/

.dr-footer{
    background:#081223;
    color:#fff;
    padding:90px 0 25px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.5fr;
    gap:50px;
}

.footer-logo{
    width:180px;
    margin-bottom:20px;
}

.footer-text{
    color:#bfc7d5;
    line-height:1.9;
}

.footer-column h3{
    color:#D4AF37;
    margin-bottom:20px;
    font-size:22px;
}

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

.footer-column li{
    margin-bottom:14px;
}

.footer-column a{
    color:#d9d9d9;
    transition:.3s;
}

.footer-column a:hover{
    color:#D4AF37;
}

.footer-contact i{
    width:22px;
    color:#D4AF37;
    margin-right:10px;
}

.footer-social{
    display:flex;
    gap:15px;
    margin-top:25px;
}

.footer-social a{
    width:45px;
    height:45px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.08);
    color:#fff;
    transition:.3s;
}

.footer-social a:hover{
    background:#D4AF37;
    transform:translateY(-4px);
}

.footer-bottom{
    margin-top:60px;
    padding-top:25px;
    border-top:1px solid rgba(255,255,255,.08);
    text-align:center;
    color:#bfc7d5;
}

@media(max-width:992px){

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

}

@media(max-width:768px){

    .dr-footer{
        padding:70px 0 25px;
    }

    .footer-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

    .footer-logo{
        margin:0 auto 20px;
    }

    .footer-social{
        justify-content:center;
    }

}
/*====================================
        FLOATING BUTTONS
====================================*/

.floating-buttons{

    position:fixed;

    right:25px;

    bottom:25px;

    display:flex;

    flex-direction:column;

    gap:15px;

    z-index:9999;

}

.float-whatsapp,
.float-call,
#backToTop{

    width:60px;

    height:60px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    color:#fff;

    border:none;

    cursor:pointer;

    font-size:24px;

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

    transition:.35s ease;

}

.float-whatsapp{

    background:#25D366;

}

.float-call{

    background:#0B1F3A;

}

#backToTop{

    background:#D4AF37;

    opacity:0;

    visibility:hidden;

    transform:translateY(20px);

}

#backToTop.show{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

.float-whatsapp:hover,
.float-call:hover,
#backToTop:hover{

    transform:translateY(-6px) scale(1.05);

}