/* ===================================================
   DIVINE REALTORS
   SINGLE PROJECT
=================================================== */

:root{

--primary:#b68d40;
--secondary:#1d1d1d;
--light:#f8f8f8;
--white:#ffffff;
--text:#555;
--radius:14px;
--shadow:0 15px 40px rgba(0,0,0,.08);
--transition:.35s;

}

*{

box-sizing:border-box;

}

body{

font-family:'Poppins',sans-serif;
color:var(--text);
background:#fff;
line-height:1.7;

}

section{

padding:90px 0;

}

.container{

width:min(1200px,92%);
margin:auto;

}

.section-title{

text-align:center;
margin-bottom:60px;

}

.section-title span{

display:inline-block;
font-size:13px;
font-weight:600;
letter-spacing:3px;
color:var(--primary);
text-transform:uppercase;
margin-bottom:10px;

}

.section-title h2{

font-size:40px;
color:var(--secondary);
font-family:'Cormorant Garamond',serif;
margin:0;

}

.primary-btn{

display:inline-flex;
align-items:center;
justify-content:center;
gap:10px;
padding:15px 34px;
background:var(--primary);
color:#fff;
text-decoration:none;
border-radius:40px;
font-weight:600;
transition:var(--transition);

}

.primary-btn:hover{

transform:translateY(-3px);

}

.secondary-btn{

display:inline-flex;
align-items:center;
justify-content:center;
gap:10px;
padding:15px 34px;
background:#25D366;
color:#fff;
text-decoration:none;
border-radius:40px;
font-weight:600;
transition:var(--transition);

}

.secondary-btn:hover{

transform:translateY(-3px);

}

.outline-btn{

display:inline-flex;
align-items:center;
justify-content:center;
padding:12px 30px;
border:2px solid var(--primary);
color:var(--primary);
text-decoration:none;
border-radius:40px;
font-weight:600;
transition:.3s;

}

.outline-btn:hover{

background:var(--primary);
color:#fff;

}

/*===================================================
                HERO SECTION
===================================================*/

.project-hero{

position:relative;
height:90vh;
min-height:650px;
overflow:hidden;

}

.project-hero img{

width:100%;
height:100%;
object-fit:cover;
display:block;

}

.project-hero::before{

content:"";
position:absolute;
inset:0;
background:linear-gradient(
180deg,
rgba(0,0,0,.15),
rgba(0,0,0,.55)
);

z-index:1;

}

.hero-overlay{

position:absolute;
inset:0;
display:flex;
align-items:center;
justify-content:center;
z-index:2;

}

.hero-overlay .container{

max-width:850px;
text-align:center;
color:#fff;

}

.hero-overlay h1{

font-size:64px;
font-family:'Cormorant Garamond',serif;
font-weight:700;
margin-bottom:20px;
line-height:1.1;

}

.hero-overlay p{

font-size:22px;
margin-bottom:20px;
opacity:.95;

}

.hero-overlay h2{

font-size:42px;
font-weight:700;
color:var(--primary);
margin-bottom:40px;

}

.hero-buttons{

display:flex;
justify-content:center;
align-items:center;
gap:20px;
flex-wrap:wrap;

}

.hero-buttons .primary-btn,

.hero-buttons .secondary-btn{

min-width:190px;

}

/* Premium Blur Box */

.hero-overlay .container{

background:rgba(255,255,255,.06);
backdrop-filter:blur(10px);
padding:50px;
border-radius:20px;
border:1px solid rgba(255,255,255,.15);

}

/* Scroll Indicator */

.project-hero::after{

content:"";
position:absolute;
bottom:30px;
left:50%;
transform:translateX(-50%);
width:2px;
height:50px;
background:rgba(255,255,255,.6);

animation:scrollDown 2s infinite;

z-index:5;

}

@keyframes scrollDown{

0%{

opacity:0;
transform:translate(-50%,0);

}

50%{

opacity:1;

}

100%{

opacity:0;
transform:translate(-50%,18px);

}

}

/*===================================================
                PROJECT GALLERY
===================================================*/

.project-gallery{

padding:80px 0;
background:#fff;

}

.gallery-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:25px;

}

.gallery-item{

display:block;
overflow:hidden;
border-radius:18px;
box-shadow:var(--shadow);
transition:.4s;

}

.gallery-item img{

width:100%;
height:260px;
object-fit:cover;
display:block;
transition:.5s;

}

.gallery-item:hover{

transform:translateY(-8px);

}

.gallery-item:hover img{

transform:scale(1.08);

}

/*===================================================
                PROJECT INFORMATION
===================================================*/

.project-info{

background:var(--light);

}

.info-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;

}

.info-card{

background:#fff;
padding:35px;
border-radius:18px;
box-shadow:var(--shadow);
text-align:center;
transition:.35s;

}

.info-card:hover{

transform:translateY(-8px);

}

.info-card i{

font-size:34px;
color:var(--primary);
margin-bottom:20px;

}

.info-card h4{

font-size:18px;
margin-bottom:12px;
color:var(--secondary);

}

.info-card p{

margin:0;
color:var(--text);

}

.info-card a{

color:var(--primary);
text-decoration:none;
font-weight:600;

}

.info-card a:hover{

text-decoration:underline;

}

/*===================================================
                DEVELOPER SECTION
===================================================*/

.developer-section{

background:#fff;

}

.developer-card{

display:grid;
grid-template-columns:280px 1fr;
gap:50px;
align-items:center;
padding:50px;
border-radius:20px;
box-shadow:var(--shadow);
background:#fff;

}

.developer-logo{

width:220px;
height:220px;
object-fit:contain;
display:block;
margin:auto;

}

.developer-right h2{

font-size:40px;
font-family:'Cormorant Garamond',serif;
color:var(--secondary);
margin-bottom:20px;

}

.developer-right p{

margin-bottom:16px;
color:var(--text);

}

.developer-right strong{

color:var(--secondary);

}

.developer-right .primary-btn{

margin-top:20px;

}

/*===================================================
                PROJECT OVERVIEW
===================================================*/

.overview-section{

background:var(--light);

}

.overview-content{

max-width:900px;
margin:auto;
font-size:18px;
line-height:1.9;
color:var(--text);

}

.overview-content h2,
.overview-content h3,
.overview-content h4{

color:var(--secondary);
margin-top:30px;

}

.overview-content p{

margin-bottom:20px;

}

/*===================================================
                AMENITIES
===================================================*/

.project-amenities{

background:#fff;

}

.amenities-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:25px;

}

.amenity-card{

display:flex;
align-items:center;
gap:18px;
padding:28px;
background:#fff;
border-radius:18px;
box-shadow:var(--shadow);
transition:.35s;

}

.amenity-card:hover{

transform:translateY(-8px);

}

.amenity-icon{

width:60px;
height:60px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
background:rgba(182,141,64,.12);

}

.amenity-icon i{

font-size:26px;
color:var(--primary);

}

.amenity-text{

font-size:17px;
font-weight:500;
color:var(--secondary);

}


/*===================================================
                BROCHURE
===================================================*/

.brochure-section{

background:var(--light);

}

.brochure-box{

display:flex;
justify-content:space-between;
align-items:center;
gap:40px;

padding:50px;

background:#fff;

border-radius:20px;

box-shadow:var(--shadow);

}

.brochure-content h2{

font-size:38px;
margin-bottom:15px;
color:var(--secondary);

}

.brochure-content p{

font-size:17px;
max-width:650px;

}


/*===================================================
                MAP
===================================================*/

.project-map{

background:#fff;

}

.map-wrapper{

overflow:hidden;

border-radius:20px;

box-shadow:var(--shadow);

}

.map-wrapper iframe{

display:block;

width:100%;

border:0;

}


/*===================================================
                CTA STRIP
===================================================*/

.project-cta{

padding:70px 0;

background:linear-gradient(
135deg,
#0d1b2a,
#1b263b
);

}

.cta-box{

display:flex;

justify-content:space-between;

align-items:center;

gap:40px;

color:#fff;

}

.cta-box h2{

font-size:42px;

margin-bottom:12px;

font-family:'Cormorant Garamond',serif;

}

.cta-buttons{

display:flex;

gap:20px;

flex-wrap:wrap;

}


/*===================================================
                ENQUIRY
===================================================*/

.project-enquiry{

background:var(--light);

}

.enquiry-wrapper{

display:grid;

grid-template-columns:1fr 1fr;

gap:50px;

align-items:start;

}

.enquiry-left{

padding:45px;

background:#fff;

border-radius:20px;

box-shadow:var(--shadow);

}

.enquiry-left h3{

font-size:34px;

margin-bottom:25px;

font-family:'Cormorant Garamond',serif;

}

.enquiry-left ul{

list-style:none;

padding:0;

margin:0;

}

.enquiry-left li{

display:flex;

align-items:center;

gap:14px;

margin-bottom:20px;

font-size:17px;

}

.enquiry-left i{

color:var(--primary);

}

.enquiry-right{

padding:45px;

background:#fff;

border-radius:20px;

box-shadow:var(--shadow);

}

.enquiry-right input,

.enquiry-right textarea{

width:100%;

padding:16px 18px;

margin-bottom:18px;

border:1px solid #ddd;

border-radius:10px;

font-size:16px;

font-family:'Poppins',sans-serif;

transition:.3s;

}

.enquiry-right input:focus,

.enquiry-right textarea:focus{

outline:none;

border-color:var(--primary);

}

.enquiry-right textarea{

min-height:160px;

resize:vertical;

}

.enquiry-right button{

width:100%;

border:none;

cursor:pointer;

}


/*===================================================
            SUCCESS MESSAGE
===================================================*/

.success-message{

background:#e8f9ee;

color:#1f7a37;

padding:18px;

border-radius:12px;

margin-bottom:35px;

font-weight:600;

display:flex;

align-items:center;

gap:12px;

}

.success-message i{

font-size:22px;

}

/*===================================================
                RELATED PROJECTS
===================================================*/

.related-projects{

background:var(--light);

}

.projects-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(340px,1fr));

gap:35px;

}

.project-card{

background:#fff;

border-radius:20px;

overflow:hidden;

box-shadow:var(--shadow);

transition:.35s;

}

.project-card:hover{

transform:translateY(-10px);

}

.project-image{

overflow:hidden;

}

.project-image img{

width:100%;

height:260px;

object-fit:cover;

display:block;

transition:.5s;

}

.project-card:hover img{

transform:scale(1.08);

}

.project-content{

padding:30px;

}

.project-developer{

display:inline-block;

font-size:13px;

font-weight:600;

letter-spacing:2px;

color:var(--primary);

text-transform:uppercase;

margin-bottom:12px;

}

.project-content h3{

margin-bottom:15px;

font-size:28px;

font-family:'Cormorant Garamond',serif;

}

.project-content h3 a{

text-decoration:none;

color:var(--secondary);

}

.project-price{

margin-bottom:25px;

font-size:17px;

}

.project-price strong{

display:block;

margin-top:8px;

font-size:28px;

color:var(--primary);

}

.no-projects{

text-align:center;

padding:50px;

background:#fff;

border-radius:20px;

}


/*===================================================
            QUICK CONTACT
===================================================*/

.quick-contact{

background:#fff;

padding:70px 0;

}

.quick-contact-box{

display:flex;

justify-content:space-between;

align-items:center;

gap:40px;

padding:40px;

background:#0d1b2a;

border-radius:20px;

color:#fff;

}

.quick-buttons{

display:flex;

gap:20px;

flex-wrap:wrap;

}


/*===================================================
            FLOATING WHATSAPP
===================================================*/

.floating-whatsapp{

position:fixed;

right:25px;

bottom:100px;

width:65px;

height:65px;

display:flex;

align-items:center;

justify-content:center;

background:#25D366;

color:#fff;

font-size:30px;

border-radius:50%;

box-shadow:0 15px 35px rgba(0,0,0,.2);

text-decoration:none;

z-index:999;

transition:.35s;

}

.floating-whatsapp:hover{

transform:scale(1.1);

}


/*===================================================
            MOBILE STICKY BAR
===================================================*/

.mobile-sticky-bar{

display:none;

position:fixed;

bottom:0;

left:0;

width:100%;

background:#fff;

box-shadow:0 -8px 25px rgba(0,0,0,.12);

z-index:9999;

grid-template-columns:repeat(3,1fr);

}

.mobile-sticky-bar a{

padding:16px;

text-align:center;

text-decoration:none;

font-weight:600;

font-size:14px;

display:flex;

flex-direction:column;

gap:8px;

align-items:center;

}

.call-btn{

background:#0d1b2a;

color:#fff;

}

.whatsapp-btn{

background:#25D366;

color:#fff;

}

.visit-btn{

background:var(--primary);

color:#fff;

}

.mobile-sticky-bar i{

font-size:22px;

}


/*===================================================
            RESPONSIVE
===================================================*/

@media(max-width:992px){

.hero-overlay h1{

font-size:46px;

}

.hero-overlay h2{

font-size:34px;

}

.developer-card{

grid-template-columns:1fr;

text-align:center;

}

.brochure-box,

.cta-box,

.quick-contact-box{

flex-direction:column;

text-align:center;

}

.enquiry-wrapper{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

section{

padding:70px 0;

}

.hero-overlay .container{

padding:35px;

}

.hero-overlay h1{

font-size:34px;

}

.hero-overlay p{

font-size:18px;

}

.hero-overlay h2{

font-size:28px;

}

.section-title h2{

font-size:32px;

}

.gallery-grid,

.projects-grid,

.info-grid,

.amenities-grid{

grid-template-columns:1fr;

}

.project-image img{

height:220px;

}

.mobile-sticky-bar{

display:grid;

}

.floating-whatsapp{

bottom:90px;

right:20px;

}

body{

padding-bottom:75px;

}

}

@media(max-width:480px){

.hero-buttons{

flex-direction:column;

}

.hero-buttons a{

width:100%;

}

.primary-btn,

.secondary-btn,

.outline-btn{

width:100%;

justify-content:center;

}

}

