/* ===============================
   GLOBAL
=================================*/
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

.container{
    width:100%;
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}
html,body{
    overflow-x:hidden;
    font-family: 'Poppins', sans-serif;
}









/* ===============================
   NAVBAR
=================================*/

header{
    position:fixed;
    width:100%;
    top:0;
    left:0;
    z-index:1000;
    transition: top 0.3s ease;
}
header.scrolled{
    top:0;
    background:rgba(255,255,255,0.98);
    backdrop-filter:blur(10px);
}

header.scrolled .navbar{
    border-radius:0;
    box-shadow:0 2px 20px rgba(0,0,0,0.12);
}

.navbar{
    height:70px;
    background:#fff;
    padding:0 30px;
    border-radius:50px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}


.logo{
    height:100%;
    display:flex;
    align-items:center;
}

.logo img{
    margin-top: 4px;
    height:70px;
    width:auto;
}


#navLinks{
    display:flex;
    list-style:none;
    gap:28px;
}

#navLinks li{
    position:relative;
}

#navLinks a{
    text-decoration:none;
    color:#222;
    font-weight:500;
    padding:8px 0;
    transition:0.3s;
}


#navLinks a:hover{
    color:#fd731e;
}


#navLinks li::after{
    content:"";
    position:absolute;
    width:0%;
    height:2px;
    background:#fd731e;
    left:0;
    bottom:-5px;
    transition:.3s;
}

#navLinks li:hover::after{
    width:100%;
}










/* ===============================
   DROPDOWN MENU
=================================*/

.dropdown-menu{
    position:absolute;
    top:55px;
    left:0;
    width:220px;
    background:#fff;
    border-radius:12px;
    box-shadow:0 15px 30px rgba(0,0,0,0.1);

    opacity:0;
    visibility:hidden;
    transform:translateY(10px);
    transition:0.3s;
}


.dropdown-menu li{
    padding:12px 18px;
    list-style: none;
}

.dropdown-menu li a{
    color:#333;
}


.dropdown-menu li:hover{
    background:#f5f5f5;
}


.dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.nav-right{
    display:flex;
    align-items:center;
    gap:15px;
}

.add-btn{

    padding:10px 18px;
    border:none;
    border-radius:25px;
    background:#fd731e;
    cursor:pointer;
    transition:0.3s;
    color: #fff;
    font-size: 16px;
    font-family: 'poppins',sans-serif;
}

.add-btn:hover{
    background:#fd731e;
    color:#fff;
}

#menuToggle{
    display:none;
    font-size:26px;
    border:none;
    background:none;
    cursor:pointer;
}

/* ===============================
   HERO SECTION
=================================*/

.hero{
    height:95vh;
    background:url("https://images.unsplash.com/photo-1502005229762-cf1b2da7c5d6")
    center/cover no-repeat;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:#1e3d3a;
    position:relative;
    padding-top:100px;
}

.hero-content{
    background:rgba(255,255,255,0.25);
    backdrop-filter:blur(6px);
    padding:40px;
    border-radius:15px;
    max-width:700px;
    width:100%;
}

.tag{
    background:#e8f3f1;
    padding:6px 14px;
    border-radius:20px;
    display:inline-block;
    margin-bottom:15px;
    font-size:14px;
    font-weight:500;
}

.hero h1{
    font-size:48px;
    margin-bottom:10px;
    line-height:1.2;
    font-weight:700;
}

.subtitle{
    margin-bottom:25px;
    font-size:16px;
    line-height:1.6;
}

/* ===============================
   SEARCH BOX
=================================*/

.search-box{
    display:flex;
    background:#fff;
    border-radius:40px;
    overflow:hidden;
    max-width:500px;
    margin:auto;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

.search-box input{
    flex:1;
    border:none;
    padding:15px 20px;
    outline:none;
    font-size:15px;
}

.search-box button{
    background:#ff8c00;
    border:none;
    padding:15px 25px;
    cursor:pointer;
    font-size:18px;
    transition:0.3s;
}

.search-box button:hover{
    background:#fe741e;
}

/* ===============================
   PROPERTY BUTTONS
=================================*/

.property-types{
    margin-top:20px;
    display:flex;
    justify-content:center;
    gap:10px;
    flex-wrap:wrap;
}

.property-types button{
    padding:12px 20px;
    border:none;
    border-radius:25px;
    background:#fff;
    cursor:pointer;
    transition:.3s;
    font-size:15px;
    font-weight:500;
    box-shadow:0 3px 10px rgba(0,0,0,0.1);
}

.property-types button:hover{
    background:#fe741e;
    color:#fff;
    transform:translateY(-2px);
}

/* ===============================
   RESPONSIVE
=================================*/

@media(max-width:992px){

#menuToggle{
    display:block;
}

/* MOBILE MENU */
#navLinks{
    position:absolute;
    top:85px;
    left:0;
    width:100%;
    background:#fff;
    flex-direction:column;
    align-items:center;
    gap:18px;
    padding:25px;
    display:none;
    box-shadow:0 10px 20px rgba(0,0,0,0.1);
    border-radius:0 0 15px 15px;
}

#navLinks.active{
    display:flex;
}

/* MOBILE DROPDOWN */
.dropdown-menu{
    position:static;
    opacity:1;
    visibility:visible;
    transform:none;
    display:none;
    box-shadow:none;
    width:100%;
}

.dropdown.active .dropdown-menu{
    display:block;
}

.nav-right{
    display:none;
}

.hero{
    height:auto;
    min-height:100vh;
    padding:100px 20px 50px;
}

.hero h1{
    font-size:32px;
    line-height:1.3;
}

.hero-content{
    padding:30px 20px;
    max-width:95%;
}

.tag{
    font-size:12px;
    padding:5px 12px;
}

.subtitle{
    font-size:14px;
    line-height:1.5;
}

.search-box{
    max-width:100%;
    flex-direction:column;
    border-radius:15px;
}

.search-box input{
    padding:12px 15px;
    border-radius:15px 15px 0 0;
    font-size:14px;
}

.search-box button{
    padding:12px 20px;
    border-radius:0 0 15px 15px;
    width:100%;
}

.property-types{
    flex-direction:column;
    gap:10px;
    width:100%;
}

.property-types button{
    width:100%;
    padding:12px 20px;
    font-size:14px;
}
}

@media(max-width:768px){

.hero{
     min-height:65vh;
    padding-top:50px;
}

.hero h1{
    font-size:28px;
}

.hero-content{
    padding:25px 15px;
}

.navbar{
    height:65px;
    padding:0 15px;
}

.logo img{
    height:50px;
}

#navLinks{
    top:75px;
}
}

@media(max-width:480px){

.hero{
    padding:70px 10px 30px;
}

.hero h1{
    font-size:24px;
}

.hero-content{
    padding:20px 15px;
}

.tag{
    font-size:11px;
    padding:4px 10px;
}

.subtitle{
    font-size:13px;
}

.property-types button{
    padding:10px 15px;
    font-size:13px;
}

.navbar{
    height:60px;
}

.logo img{
    height:45px;
}
}















/* contact page */
/* ===============================
   PAGE BANNER
=================================*/

.page-banner{
    position:relative;
    height:340px;
    background:url("https://images.unsplash.com/photo-1494526585095-c41746248156")
    center/cover no-repeat;

    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:#fff;
    padding-top:100px;
}

/* DARK OVERLAY */
.banner-overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.55);
    top:0;
    left:0;
}

/* CONTENT */
.banner-content{
    position:relative;
    z-index:2;
}

.banner-content h1{
    font-size:60px;
    font-weight:700;
    margin-bottom:10px;
}

/* BREADCRUMB */
.breadcrumb{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:8px;
    font-size:16px;
}

.breadcrumb a{
    color:#fff;
    text-decoration:none;
    font-weight:500;
}

.breadcrumb p{
    color:#ddd;
}














/* ===============================
   FOOTER
=================================*/

.footer{
    background:#232F41 ;
    padding:20px 0 20px;
}

.footer-wrapper{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:40px;
    align-items:start;
    padding:30px 20px;
}

.footer-logo{
    width:180px;
    margin-bottom:5px;
    background: #fff;
    border-radius: 6px;
}

.footer-col p{
    font-size:14px;
    line-height:1.6;
    margin-bottom:12px;
    color: #fff;
     font-family: 'poppins',sans-serif;
}

.footer-col h4{
    margin-bottom:16px;
    font-size:18px;
    color:#fe741e;
    font-family: 'poppins',sans-serif;
}
.footer-col p a{
color:#fff;
text-decoration:none;
}

.footer-col p a:hover{
color:#fe741e;
}

.footer-col ul{
    list-style:none;
    padding:0;
    color:#fff;
     font-family: 'poppins',sans-serif;
}

.footer-col ul li{
    margin-bottom:8px;
     font-family: 'poppins',sans-serif;
}

.footer-col ul li a{
    text-decoration:none;
    color:#fff;
    font-size:14px;
    transition:0.3s;
     font-family: 'poppins',sans-serif;
}

.footer-col ul li a:hover{
    color:#fe741e;
    padding-left:5px;
    font-family: 'poppins',sans-serif;
}

.social-icons{
    margin-top:15px;
    display:flex;
    gap:10px;
}

.social-icons a{
    width:38px;
    height:38px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    color:#fff;
    font-size:16px;
    text-decoration: none;
}

.social-icons .call{background:#ff6b00;}
.social-icons .facebook{background:#1877f2;}
.social-icons .whatsapp{background:#25D366;}
.social-icons .instagram{background:#e1306c;}


.social-icons a:hover{
    transform:translateY(-4px);
}


.footer-bottom{
    max-width:1200px;
    margin:auto;
    margin-top:40px;
    padding-top:15px;
    border-top:1px solid rgba(0,0,0,0.2);
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:14px;
    color:#fff;
     font-family: 'poppins',sans-serif;
}

.footer-bottom p{
    font-family: 'poppins',sans-serif;
}
.design img{
    width:120px;
}

/* =================================
   LARGE DESKTOP
================================= */

@media (max-width:1400px){

.footer-wrapper{
max-width:1200px;
margin:auto;
padding:0 30px;
}

}

/* =================================
   LAPTOP
================================= */

@media (max-width:1200px){

.footer-wrapper{
grid-template-columns:repeat(3,1fr);
gap:30px;
}

}

/* =================================
   SMALL LAPTOP / TABLET
================================= */

@media (max-width:992px){

.footer-wrapper{
grid-template-columns:repeat(2,1fr);
gap:25px;
}

.footer-logo{
width:150px;
}

}

/* =================================
   TABLET / MOBILE
================================= */

@media (max-width:768px){

.footer{
padding:20px 0 20px;
}

.footer-wrapper{
grid-template-columns:1fr;
text-align:center;
gap:5px;
}

/* center logo */
.footer-logo{
margin:auto;
}

/* center social icons */
.social-icons{
justify-content:center;
}

/* bottom footer */
.footer-bottom{
flex-direction:column;
gap:5px;
text-align:center;
}

}

/* =================================
   SMALL MOBILE
================================= */

@media (max-width:480px){

.footer-wrapper{
padding:0 15px;
gap:20px;
}

.footer-col h4{
font-size:16px;
}

.footer-col p{
font-size:14px;
}

.footer-col ul li a{
font-size:13px;
}

.social-icons a{
width:36px;
height:36px;
}

.footer-btn{
width:100%;
font-size:14px;
}

}








/* ================= CONTACT SECTION ================= */

.contact-section{
    padding:90px 0;
    background:linear-gradient(135deg,#f8f9fb,#eef2f7);
}

.contact-wrapper{
    display:grid;
    grid-template-columns:1fr 1.4fr;
    gap:50px;
    align-items:center;
}


/* ================= LEFT INFO ================= */

.contact-info{
    animation:fadeLeft 1s ease;
}

.contact-info h2{
    font-size:28px;
    margin-bottom:30px;
    position:relative;
    color: #003962;
}

.contact-info h2::after{
    content:"";
    width:70px;
    height:3px;
    background:#fd731e;
    position:absolute;
    bottom:-10px;
    left:0;
}

.hours p{
    display:flex;
    justify-content:space-between;
    padding:12px 0;
    border-bottom:1px solid #e3e3e3;
    color:#232F41;
    transition:.3s;
    font-family: 'poppins',sans-serif;
}

.hours p:hover{
    padding-left:8px;
    color:#fd731e;
}


.info-box a{
text-decoration:none;
color:#232F41;
display:inline-block;
font-family: 'poppins',sans-serif;
}

.info-box a:hover{
color:#fd731e;
}
.info-box{
    margin-top:30px;
    
}

.info-box p{
    margin:15px 0;
    font-size:15px;
    transition:.3s;
}

.info-box i{
    color:#fd731e;
    margin-right:12px;
    font-size:18px;
}

.info-box p:hover{
    transform:translateX(6px);
}



/* ================= FORM ================= */

.contact-form{
    background:rgba(255,255,255,0.9);
    padding:40px;
    border-radius:15px;
    backdrop-filter:blur(8px);

    box-shadow:0 15px 40px rgba(0,0,0,0.08);

    animation:fadeRight 1s ease;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:15px;
    margin-bottom:18px;
    border:1px solid #ddd;
    border-radius:6px;
    outline:none;
    font-size:14px;
    transition:.4s;
    font-family: 'poppins',sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:#fd731e;
    box-shadow:0 0 8px rgba(255,107,0,0.3);
    transform:scale(1.02);
}


.contact-form textarea{
    height:160px;
    resize:none;
    font-family: 'poppins',sans-serif;
}

.contact-form button{
    background:#fd731e;
    color:#fff;
    border:none;
    padding:15px 35px;
    font-weight:600;
    border-radius:30px;
    cursor:pointer;
    transition:.4s;
    font-family: 'poppins',sans-serif;
}

.contact-form button:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(255,107,0,0.4);
}










/* ================= MAP ================= */

.map-section{
width:100%;
padding:60px 20px;
background:#f5f7fa;
text-align:center;
margin:40px 0;
}

.map-section h2{
font-size:32px;
color:#232F41;
margin-bottom:10px;
}

.map-section p{
color:#000;
margin-bottom:30px;
font-size:16px;
}


.map-container{
width:100%;
max-width:1200px;
margin:auto;
border-radius:12px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

.map-container iframe{
width:100%;
height:450px;
border:0;
display:block;
}

@media (max-width:1200px){
.map-section iframe{
height:420px;
}
}

@media (max-width:768px){
.map-section{
padding:40px 15px;
}

.map-section iframe{
height:320px;
}
}
@media (max-width:480px){
.map-section iframe{
height:250px;
}
}






/* ================= ANIMATIONS ================= */

@keyframes fadeLeft{
from{
opacity:0;
transform:translateX(-60px);
}
to{
opacity:1;
transform:translateX(0);
}
}

@keyframes fadeRight{
from{
opacity:0;
transform:translateX(60px);
}
to{
opacity:1;
transform:translateX(0);
}
}

@keyframes fadeUp{
from{
opacity:0;
transform:translateY(60px);
}
to{
opacity:1;
transform:translateY(0);
}
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

.contact-wrapper{
    grid-template-columns:1fr;
    gap:35px;
}

.contact-form{
    padding:30px;
}

}

@media(max-width:600px){

.contact-section{
    padding:60px 0;
}

.contact-info h2{
    font-size:24px;
    color: #fd731e;
}

.map-section iframe{
    height:320px;
}

}








/* ================= ABOUT ================= */

.about-section{
    padding:110px 0;
    background:#f4f8fb;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:70px;
    align-items:center;
}

/* IMAGE CARD */
.image-card{
    position:relative;
    overflow:hidden;
    border-radius:15px;
}

.image-card img{
    width:100%;
    border-radius:15px;
    transition:.6s;
}

.image-card:hover img{
    transform:scale(1.08);
}

/* EXPERIENCE BOX */
.experience{
    position:absolute;
    bottom:20px;
    left:20px;
    background:#fe741e;
    color:#fff;
    padding:20px;
    border-radius:10px;
}

.experience h3{
    font-size:28px;
}

/* RIGHT CONTENT */
.about-small{
    color:#fe741e;
    font-weight:600;
}

.about-right h2{
    font-size:36px;
    margin:15px 0;
    color:#0d2b3e;
}

.about-right h2 span{
    color:#fe741e;
    text-align: center;
}

.about-text{
    color:#555;
    line-height:1.8;
    margin-bottom:30px;
    text-align: justify;
}

/* FEATURES GRID */
.about-features{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-bottom:30px;
}

/* FEATURE CARD */
.feature-box{
    background:#fff;
    padding:20px;
    border-radius:10px;
    text-align:center;
    transition:.4s;
    box-shadow:0 8px 20px rgba(0,0,0,0.05);
}

.feature-box i{
    font-size:24px;
    color:#fe741e;
    margin-bottom:10px;
}

.feature-box:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 30px rgba(0,0,0,0.1);
}

/* BUTTON */
.about-btn{
    padding:14px 32px;
    background:#fe741e;
    color:#fff;
    text-decoration:none;
    border-radius:30px;
    transition:.4s;
}

.about-btn:hover{
    background:#0d2b3e;
    transform:translateY(-3px);
}


@media(max-width:992px){

.about-grid{
    grid-template-columns:1fr;
    gap:40px;
}

.about-right{
    text-align:center;
}

.about-features{
    grid-template-columns:1fr 1fr;
}

}

@media(max-width:600px){

.about-features{
    grid-template-columns:1fr;
}

.about-right h2{
    font-size:24px;
}

.experience{
    padding:12px;
}

}



/* ===============================
 ABOUT BANNER
=================================*/

.About-banner{
    position:relative;
    height:340px;
    background:url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c")
    center/cover no-repeat;

    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:#fff;
    padding-top:100px;
}

/* DARK OVERLAY */
.About banner-overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.55);
    top:0;
    left:0;
}

/* CONTENT */
.About banner-content{
    position:relative;
    z-index:2;
}

.About banner-content h1{
    font-size:60px;
    font-weight:700;
    margin-bottom:10px;
}

/* BREADCRUMB */
.breadcrumb{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:8px;
    font-size:16px;
}

.breadcrumb a{
    color:#fff;
    text-decoration:none;
    font-weight:500;
}

.breadcrumb p{
    color:#ddd;
}










/* ================= CTA SECTION ================= */

.cta-section{
    position:relative;
    height:420px;

   background:url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c")
center/cover no-repeat;

    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:#fff;
    overflow:hidden;
}

/* DARK OVERLAY */
.cta-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.55);
}

/* CONTENT */
.cta-content{
    position:relative;
    z-index:2;
    animation:fadeUp 1s ease;
}

.cta-content h2{
    font-size:42px;
    margin-bottom:15px;
    font-weight:600;
}

.cta-content p{
    max-width:600px;
    margin:auto;
    margin-bottom:25px;
    color:#ddd;
    line-height:1.6;
}

/* BUTTON */
.cta-btn{
    display:inline-block;
    padding:14px 32px;
    background:#fe741e;
    color:#fff;
    text-decoration:none;
    border-radius:30px;
    font-weight:600;
    transition:.4s;
}


.cta-btn:hover{
    background:#d4a330;
    transform:translateY(-4px);
    box-shadow:0 10px 25px rgba(0,0,0,0.3);
}

@keyframes fadeUp{
from{
opacity:0;
transform:translateY(60px);
}
to{
opacity:1;
transform:translateY(0);
}
}

@media(max-width:992px){

.cta-content h2{
font-size:32px;
}

}

@media(max-width:600px){

.cta-section{
height:320px;
padding:20px;
}

.cta-content h2{
font-size:24px;
}

.cta-content p{
font-size:14px;
}

}


@media(max-width:768px){

.cta-section{
    height:auto;
    padding:80px 20px;
}

.cta-content h2{
    font-size:24px;
    line-height:1.4;
}

.cta-btn{
    padding:12px 24px;
}

}












/* ================= SERVICES ================= */

.services-section{
    padding:100px 0;
    background:#f5f9fb;
    text-align:center;
}

/* TITLES */
.section-tag{
    color:#fe741e;
    font-weight:600;
    letter-spacing:2px;
}

.section-title{
    font-size:36px;
    margin-bottom:60px;
    color:#0d2b3e;
}

/* GRID */
.services-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
    max-width:1200px;
    margin:auto;
}

/* CARD */
.service-card{
    background:#0d2b3e;
    color:#fff;
    padding:40px;
    border-radius:12px;
    text-align:left;
    transition:.5s;
    position:relative;
    overflow:hidden;
}

/* ICON */
.service-card i{
    font-size:32px;
    color:#fe741e;
    margin-bottom:15px;
}

/* TITLE */
.service-card h3{
    margin-bottom:12px;
    color:#59b6b9;
}

/* TEXT */
.service-card p{
    line-height:1.7;
    color:#ddd;
    text-align: justify;
}

/* HOVER EFFECT */
.service-card:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 40px rgba(0,0,0,0.2);
}

/* LIGHT ANIMATION */
.service-card::before{
    content:"";
    position:absolute;
    width:120%;
    height:100%;
    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.15),
        transparent
    );
    top:0;
    left:-120%;
    transition:.6s;
}

.service-card:hover::before{
    left:120%;
}

.service-card{
opacity:0;
transform:translateY(60px);
transition:0.8s;
}

.service-card.show{
opacity:1;
transform:translateY(0);
}

@media(max-width:1199px){
.services-grid{
    grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:991px){

.services-section{
    padding:70px 20px;
}

.services-grid{
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.service-card{
    padding:30px 22px;
}

.section-title{
    font-size:30px;
}
}
@media(max-width:767px){

.services-grid{
    grid-template-columns:1fr;
}

.service-card{
    text-align:center;
}

.service-card i{
    margin:auto auto 15px;
}

}
@media(max-width:575px){

.services-section{
    padding:50px 15px;
}

.section-title{
    font-size:24px;
}

.service-card{
    padding:22px 16px;
}

.service-card h3{
    font-size:18px;
}

.service-card p{
    font-size:14px;
    line-height:1.6;
}
}







/* PROPERTY SECTION */
/* ================= PROPERTY ================= */
.property-section{
    position: relative;
    padding:100px 0;
    text-align:center;
    overflow: hidden;
    margin-bottom:10px;
     margin-top:10px;
}

/* BLUR BACKGROUND */
.property-section::before{
    content: "";
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
/* background: url("https://images.unsplash.com/photo-1500382017468-9049fed747ef"); */

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    filter: blur(8px);  
    transform: scale(1.1); 
    z-index:-1;
    
}

.property-title{
font-size:40px;
margin-bottom:60px;
color:#0d2b3e;
}

.property-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:35px;
}

.property-card{
position:relative;
transition:.4s;
overflow:visible;
height:100%;
display:flex;
flex-direction:column;
}

.property-img{
position:relative;
overflow:hidden;
border-radius:12px;
}

.property-img img{
width:100%;
height:400px;
object-fit:cover;
transition:.5s;
}

/* IMAGE ZOOM
.property-card:hover img{
transform:scale(1.08);
} */

/* STATUS TAG */
.status{
position:absolute;
top:15px;
left:15px;
background:#d98c1f;
color:#fff;
padding:6px 14px;
border-radius:4px;
font-size:14px;
}

/* TOP ICONS */
.top-icons{
position:absolute;
top:15px;
right:15px;
display:flex;
gap:10px;
}

.top-icons i{
background:#ffffffcc;
padding:8px;
border-radius:50%;
cursor:pointer;
transition:.3s;
}

.top-icons i:hover{
background:#fe741e;
color:#fff;
}

/* INFO BOX */
.property-info{
background:#fff;
padding:22px;
margin:-70px 20px 0;
border-radius:18px;
box-shadow:0 15px 35px rgba(0,0,0,.12);
text-align:left;
position:relative;
z-index:2;
flex:1;
display:flex;
flex-direction:column;
}

.property-info h3{
font-size:18px;
color:#0d2b3e;
margin-bottom:8px;
}
/* CARD HOVER LIFT */
/* .property-card:hover .property-info{
transform:translateY(-8px);
} */

/* TITLE */
.property-info h3{
margin-bottom:8px;
color:#0d2b3e;
}

/* LOCATION */
.location{
color:#777;
margin-bottom:15px;
}

/* FEATURES */
.features{
display:flex;
justify-content:space-between;
border-top:1px solid #eee;
border-bottom:1px solid #eee;
padding:12px 0;
margin:12px 0;
color:#555;
font-size:13px;
}

.features span{
display:flex;
align-items:center;
gap:4px;
font-family: 'poppins',sans-serif;
}

/* BOTTOM */
.bottom-info{
display:flex;
justify-content:center;
align-items:center;
margin-top:15px;
}

.bottom-info a{
text-decoration:none;
color:#fff;
background:#fe741e;
padding:12px 30px;
border-radius:25px;
font-weight:500;
font-size:14px;
transition:0.3s;
display:inline-block;
width:100%;
text-align:center;
font-family: 'poppins',sans-serif;
}

.bottom-info a:hover{
background:#0d2b3e;
transform:translateY(-2px);
}

.rating{
color:#ffa500;
}

/* PROPERTY HIGHLIGHTS */
.property-highlights{
background:#f8f9fb;
padding:15px;
border-radius:8px;
margin:15px 0;
border-left:3px solid #fe741e;
flex:1;
}

.property-highlights p{
font-size:12px;
color:#444;
margin:8px 0;
line-height:1.7;
display:flex;
align-items:flex-start;
gap:8px;
}

.property-highlights p i{
color:#fe741e;
font-size:14px;
margin-top:2px;
flex-shrink:0;
}

.property-highlights p:first-child{
margin-top:0;
}

.property-highlights p:last-child{
margin-bottom:0;
font-weight:600;
color:#fe741e;
font-size:14px;
margin-top:12px;
padding-top:10px;
border-top:1px solid #e0e0e0;
}

/* WHY LIST ICONS */
.why-list li{
display:flex;
align-items:center;
gap:10px;
}

.why-list li i{
color:#fe741e;
font-size:16px;
flex-shrink:0;
}
/* ===============================
   RESPONSIVE PROPERTY SECTION
=================================*/

/* ===== LAPTOP (1200px) ===== */
@media(max-width:1200px){

.property-grid{
grid-template-columns:repeat(2,1fr);
}

}


/* ===== TABLET (992px) ===== */
@media(max-width:992px){

.property-title{
font-size:32px;
}

.property-grid{
grid-template-columns:repeat(2,1fr);
gap:25px;
}

.property-img img{
height:240px;
}

.property-info{
margin:-60px 15px 0;
padding:22px;
}

.features{
font-size:14px;
}

}


/* ===== MOBILE (768px) ===== */
@media(max-width:768px){

.property-section{
padding:70px 15px;
}

.property-grid{
grid-template-columns:1fr;
}

.property-title{
font-size:26px;
margin-bottom:40px;
}

.property-img img{
height:220px;
}

.property-info{
margin:-55px 12px 0;
padding:20px;
border-radius:15px;
}

.features{
flex-wrap:wrap;
gap:8px;
justify-content:space-between;
}

.bottom-info{
flex-direction:column;
align-items:flex-start;
gap:8px;
}

}


/* ===== SMALL MOBILE (480px) ===== */
@media(max-width:480px){

.property-img img{
height:200px;
}

.status{
font-size:12px;
padding:5px 10px;
}

.top-icons i{
padding:6px;
font-size:12px;
}

.property-info h3{
font-size:18px;
}

.location{
font-size:14px;
}

.features{
font-size:13px;
}

.bottom-info a{
font-size:14px;
}

.rating{
font-size:14px;
}

}














/* why choose us */
/* ================= WHY SECTION ================= */

.why-section{
    padding:100px 20px;
    background:linear-gradient(135deg,#0d2b3e 0%,#1a4a6b 100%);
    margin-top:10px;
    margin-bottom:10px;
}

.why-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:80px;
}

.why-images{
    position:relative;
}

.img-main{
    width:100%;
    height:420px;
    object-fit:cover;
    border-radius:20px;
    margin-left:0;
    transition:.5s;
    box-shadow:0 20px 50px rgba(0,0,0,0.3);
}

.img-main:hover{
    transform:scale(1.02);
}

.property-box{
    position:absolute;
    bottom:-20px;
    right:-20px;
    background:#ff6b00;
    padding:18px 25px;
    border-radius:12px;
    color:#fff;
    font-weight:600;
    box-shadow:0 10px 20px rgba(0,0,0,.3);
}

/* CONTENT */
.why-content{
    color:#fff;
}

.why-content h2{
    font-size:36px;
    margin-bottom:15px;
    color:#fff;
    font-family:'poppins',sans-serif;
    line-height:1.3;
}

.why-content p{
    margin-bottom:30px;
    color:rgba(255,255,255,0.75);
    font-family:'poppins',sans-serif;
    font-size:15px;
    line-height:1.7;
    text-align: justify;
}

.learn-btn{
    padding:14px 32px;
    background:#ff6b00;
    color:#fff;
    border:none;
    border-radius:30px;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    transition:all 0.3s ease;
    font-family:'poppins',sans-serif;
}

.learn-btn:hover{
    background:#ff8c00;
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(255,107,0,0.4);
}

.learn-btn:active{
    transform:scale(0.96);
}

.why-list{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
    margin-bottom:35px;
    list-style:none;
    padding:0;
}

.why-list li{
    display:flex;
    align-items:center;
    gap:10px;
    color:#fff;
    font-family:'poppins',sans-serif;
    font-size:14px;
    background:rgba(255,255,255,0.08);
    padding:12px 16px;
    border-radius:8px;
    border:1px solid rgba(255,255,255,0.1);
}

.why-list li i{
    color:#ff6b00;
    font-size:16px;
    flex-shrink:0;
}

@media(max-width:992px){
    .why-container{
        grid-template-columns:1fr;
        gap:40px;
    }
    .img-main{
        height:320px;
    }
    .why-content h2{
        font-size:28px;
    }
}

@media(max-width:600px){
    .why-section{
        padding:70px 15px;
    }
    .why-list{
        grid-template-columns:1fr;
    }
    .img-main{
        height:250px;
    }
    .why-content h2{
        font-size:24px;
    }
}


@keyframes float{
0%,100%{transform:translateY(0);}
50%{transform:translateY(-15px);}
}

/* TEXT FLIP ANIMATION */
.flip-text{
opacity:0;
transform:rotateX(90deg);
animation:flipIn 1s forwards;
}

.flip-text.delay{
animation-delay:.5s;
}

@keyframes flipIn{
to{
opacity:1;
transform:rotateX(0);
}
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

.why-container{
flex-direction:column;
text-align:center;
}

.img-main{
margin-left:0;
}

.property-box{
left:50%;
transform:translateX(-50%);
}

.why-list{
grid-template-columns:1fr;
}
}

@media(max-width:576px){

.img-main{
width:100%;
}

.img-small{
width:130px;
top:-20px;
}

.why-content h2{
font-size:26px;
}

}



















 /*TESTIMONIAL SECTION  */

.premium-testimonial{
padding:120px 20px;
text-align:center;
position:relative;
overflow:hidden;
margin-bottom: 10px;
/* margin-top: 10px; */
}

.premium-testimonial::before{
content:"";
position:absolute;
width:700px;
height:700px;
filter:blur(220px);
animation:moveLight 10s infinite alternate;
top:-150px;
left:-150px;
z-index:0;
}

@keyframes moveLight{
0%{transform:translate(0,0);}
100%{transform:translate(400px,200px);}
}


.heading{
color:#fff;
font-size:42px;
margin-bottom:70px;
position:relative;
z-index:1;
}

.premium-container{
display:flex;
justify-content:center;
gap:40px;
flex-wrap:wrap;
position:relative;
z-index:1;
}

.premium-card{
width:320px;
padding:45px 30px;
border-radius:25px;
background:#232F41;

border:1px solid rgba(255,255,255,0.15);
color:#fd731e;
transition:.6s;
animation:float 4s ease-in-out infinite;
}

@keyframes float{
0%,100%{transform:translateY(0);}
50%{transform:translateY(-15px);}
}


.premium-card i{
font-size:45px;
color:#fd731e;
margin-bottom:20px;
}


.premium-card:hover{
transform:scale(1.05);
box-shadow:0 20px 60px rgba(255,107,0,.5);
}

.premium-card p{
color:#fff;
line-height:1.7;
}


@media(max-width:768px){
.premium-card{
width:90%;
}
}









/* ===============================
   TESTIMONIAL SECTION (NEW)
=================================*/

.testimonial-section{
    padding:100px 0;
    background:#f5f9fb;
    text-align:center;
    margin-bottom: 20px;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:50px;
}

.testimonial-card{
    background:#fff;
    padding:35px 30px;
    border-radius:16px;
    box-shadow:0 8px 30px rgba(0,0,0,0.07);
    text-align:left;
    transition:.4s;
    border-top:4px solid #ff6b00;
}

.testimonial-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 50px rgba(0,0,0,0.12);
}

.testimonial-stars{
    margin-bottom:15px;
}

.testimonial-stars i{
    color:#ff6b00;
    font-size:16px;
}

.testimonial-text{
    color:#555;
    line-height:1.8;
    font-size:14px;
    margin-bottom:25px;
    font-style:italic;
}

.testimonial-author{
    display:flex;
    align-items:center;
    gap:14px;
    border-top:1px solid #eee;
    padding-top:18px;
}

.author-avatar{
    width:48px;
    height:48px;
    border-radius:50%;
    background:#ff6b00;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    font-size:15px;
    flex-shrink:0;
}

.author-info h4{
    font-size:15px;
    color:#0d2b3e;
    margin-bottom:3px;
}

.author-info span{
    font-size:13px;
    color:#888;
}

@media(max-width:992px){
.testimonial-grid{
    grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:600px){
.testimonial-grid{
    grid-template-columns:1fr;
}
.testimonial-section{
    padding:70px 15px;
}
}

/* ===============================
FLATS BANNER
=================================*/

.flats-banner{
    position:relative;
    height:340px;
   background:url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c");
    center/cover no-repeat;

    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:#fff;
    padding-top:100px;
}

.flats banner-overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.55);
    top:0;
    left:0;
}

.flats banner-content{
    position:relative;
    z-index:2;
}

.flats banner-content h1{
    font-size:60px;
    font-weight:700;
    margin-bottom:10px;
}

.breadcrumb{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:8px;
    font-size:16px;
}

.breadcrumb a{
    color:#fff;
    text-decoration:none;
    font-weight:500;
}

.breadcrumb p{
    color:#ddd;
}









/* ===============================
   MAP MODAL
=================================*/

.map-modal{
display:none !important;
position:fixed;
z-index:9999;
left:0;
top:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.95);
overflow:auto;
animation:fadeIn 0.3s;
}

.map-modal.active{
display:flex !important;
align-items:center;
justify-content:center;
}

.map-modal-content{
position:relative;
background:transparent;
margin:auto;
padding:20px;
width:95%;
max-width:1400px;
max-height:95vh;
animation:zoomIn 0.4s;
display:flex;
align-items:center;
justify-content:center;
}

.map-close{
position:absolute;
right:10px;
top:10px;
font-size:45px;
font-weight:bold;
color:#fff;
cursor:pointer;
transition:0.3s;
z-index:10;
background:rgba(0,0,0,0.5);
width:50px;
height:50px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
line-height:1;
}

.map-close:hover{
color:#fe741e;
transform:rotate(90deg);
background:rgba(0,0,0,0.8);
}

.map-container{
text-align:center;
position:relative;
width:100%;
max-height:90vh;
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
overflow:auto;
}

#mapImage{
width:100%;
max-width:100%;
max-height:85vh;
height:auto;
border-radius:10px;
box-shadow:0 20px 60px rgba(0,0,0,0.5);
cursor:zoom-in;
transition:transform 0.3s ease;
background:#fff;
object-fit:contain;
}

#mapImage.zoomed{
transform:scale(1.5);
cursor:zoom-out;
max-height:none;
}

#plotImage{
width:100%;
max-width:100%;
max-height:85vh;
height:auto;
border-radius:10px;
box-shadow:0 20px 60px rgba(0,0,0,0.5);
cursor:zoom-in;
transition:transform 0.3s ease;
background:#fff;
object-fit:contain;
}

#plotImage.zoomed{
transform:scale(1.5);
cursor:zoom-out;
max-height:none;
}

.download-btn{
position:relative;
bottom:auto;
left:auto;
transform:none;
background:rgba(255,107,0,0.95);
color:#fff;
padding:12px 30px;
border-radius:25px;
text-decoration:none;
transition:0.3s;
font-weight:500;
box-shadow:0 5px 15px rgba(0,0,0,0.3);
margin-top:20px;
display:inline-block;
}

.download-btn:hover{
background:#fe741e;
transform:translateY(-3px);
box-shadow:0 8px 20px rgba(0,0,0,0.4);
}

.download-btn i{
margin-right:8px;
}

.map-btn{
background:#0d2b3e;
color:#fff;
border:none;
padding:12px 25px;
border-radius:25px;
cursor:pointer;
font-size:14px;
font-weight:500;
transition:0.3s;
margin-left:10px;
}

.map-btn:hover{
background:#fe741e;
transform:translateY(-2px);
}

/* BOTTOM INFO WITH MAP BUTTON */
.bottom-info{
display:flex;
justify-content:center;
align-items:center;
margin-top:15px;
gap:10px;
flex-wrap:wrap;
}

.bottom-info a{
flex:1;
min-width:140px;
}

@keyframes fadeIn{
from{opacity:0;}
to{opacity:1;}
}

@keyframes zoomIn{
from{
transform:scale(0.8);
opacity:0;
}
to{
transform:scale(1);
opacity:1;
}
}

/* RESPONSIVE */
@media(max-width:768px){

.map-modal-content{
width:98%;
padding:10px;
max-height:98vh;
}

.map-close{
font-size:35px;
width:40px;
height:40px;
right:5px;
top:5px;
}

#mapImage,
#plotImage{
border-radius:5px;
max-height:80vh;
}

.download-btn{
bottom:10px;
padding:10px 20px;
font-size:13px;
margin-top:15px;
}

.bottom-info{
flex-direction:column;
}

.bottom-info a,
.map-btn{
width:100%;
margin:5px 0;
}

}


/* ===============================
   IMAGE ONLY CARDS (PROJECTS)
=================================*/

.image-only-card{
overflow:hidden;
border-radius:15px;
position:relative;
height:400px;
}

.property-img-full{
position:relative;
width:100%;
height:100%;
overflow:hidden;
}

.property-img-full img{
width:100%;
height:100%;
object-fit:cover;
transition:transform 0.5s ease;
}

.image-only-card:hover .property-img-full img{
transform:scale(1.1);
}

.image-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.8));
display:flex;
flex-direction:column;
justify-content:space-between;
padding:20px;
opacity:0;
transition:opacity 0.4s ease;
}

.image-only-card:hover .image-overlay{
opacity:1;
}

.status-badge{
position:absolute;
top:15px;
left:15px;
background:rgba(255,107,0,0.95);
color:#fff;
padding:8px 16px;
border-radius:20px;
font-size:14px;
font-weight:600;
z-index:2;
}

.overlay-content{
margin-top:auto;
color:#fff;
}

.overlay-content h3{
font-size:24px;
margin-bottom:8px;
color:#fff;
}

.overlay-content .location{
font-size:14px;
margin-bottom:8px;
opacity:0.9;
}

.overlay-content .price{
font-size:18px;
font-weight:600;
color:#fe741e;
margin-bottom:15px;
}

.overlay-buttons{
display:flex;
gap:10px;
flex-wrap:wrap;
}

.overlay-btn{
background:rgba(255,255,255,0.2);
backdrop-filter:blur(10px);
color:#fff;
border:1px solid rgba(255,255,255,0.3);
padding:10px 20px;
border-radius:25px;
text-decoration:none;
font-size:14px;
font-weight:500;
transition:0.3s;
cursor:pointer;
}

.overlay-btn:hover{
background:#fe741e;
border-color:#fe741e;
transform:translateY(-2px);
}

/* RESPONSIVE */
@media(max-width:768px){

.image-only-card{
height:350px;
}

.overlay-content h3{
font-size:20px;
}

.overlay-content .price{
font-size:16px;
}

.overlay-buttons{
flex-direction:column;
}

.overlay-btn{
width:100%;
text-align:center;
}

}


/* ===============================
   PLOT IMAGES SECTION
=================================*/

.plot-images-section{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
margin-bottom:60px;
}

.plot-image-card{
position:relative;
height:300px;
border-radius:15px;
overflow:hidden;
cursor:pointer;
}

.plot-image-card img{
width:100%;
height:100%;
object-fit:cover;
transition:transform 0.5s ease;
}

.plot-image-card:hover img{
transform:scale(1.1);
}

.plot-image-overlay{
position:absolute;
bottom:0;
left:0;
right:0;
background:linear-gradient(to top, rgba(0,0,0,0.8), transparent);
padding:20px;
}

.plot-image-overlay h3{
color:#fff;
font-size:20px;
margin:0;
}

/* ===============================
   PLOT PRICING CARDS
=================================*/

.plot-pricing-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
margin-bottom:50px;
}

.plot-pricing-card{
background:#fff;
border-radius:15px;
padding:40px 30px;
text-align:center;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
transition:0.4s;
position:relative;
}

.plot-pricing-card.featured{
border:3px solid #fe741e;
transform:scale(1.05);
}

.featured-badge{
position:absolute;
top:-15px;
left:50%;
transform:translateX(-50%);
background:#fe741e;
color:#fff;
padding:8px 20px;
border-radius:20px;
font-size:14px;
font-weight:600;
}

.plot-pricing-card:hover{
transform:translateY(-10px);
box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

.plot-icon{
width:80px;
height:80px;
background:linear-gradient(135deg, #fe741e, #ff8c00);
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
margin:0 auto 25px;
}

.plot-icon i{
font-size:35px;
color:#fff;
}

.plot-pricing-card h3{
font-size:24px;
color:#0d2b3e;
margin-bottom:20px;
}

.plot-details{
text-align:left;
margin:25px 0;
}

.plot-details p{
font-size:14px;
color:#555;
margin:12px 0;
display:flex;
align-items:center;
gap:10px;
}

.plot-details i{
color:#fe741e;
font-size:16px;
}

.plot-price{
background:#f8f9fb;
padding:20px;
border-radius:10px;
margin:25px 0;
}

.price-label{
display:block;
font-size:14px;
color:#666;
margin-bottom:8px;
}

.price-value{
display:block;
font-size:28px;
font-weight:700;
color:#fe741e;
}

.plot-contact-btn{
display:block;
width:100%;
background:#fe741e;
color:#fff;
padding:15px;
border-radius:30px;
text-decoration:none;
font-weight:600;
transition:0.3s;
}

.plot-contact-btn:hover{
background:#0d2b3e;
transform:translateY(-2px);
}

.plot-contact-btn i{
margin-right:8px;
}

/* ===============================
   CORNER PLOT BANNER
=================================*/

.corner-plot-banner{
background:linear-gradient(135deg, #0d2b3e, #1a4d5e);
border-radius:15px;
padding:40px;
text-align:center;
color:#fff;
margin-top:50px;
}

.corner-plot-content i{
font-size:50px;
color:#fe741e;
margin-bottom:15px;
}

.corner-plot-content h3{
font-size:28px;
margin-bottom:10px;
}

.corner-plot-content p{
font-size:16px;
margin-bottom:25px;
opacity:0.9;
}

.corner-plot-btn{
display:inline-block;
background:#fe741e;
color:#fff;
padding:15px 40px;
border-radius:30px;
text-decoration:none;
font-weight:600;
transition:0.3s;
}

.corner-plot-btn:hover{
background:#fff;
color:#0d2b3e;
transform:translateY(-3px);
}

/* ===============================
   RESPONSIVE
=================================*/

@media(max-width:992px){

.plot-images-section{
grid-template-columns:repeat(2,1fr);
}

.plot-pricing-grid{
grid-template-columns:repeat(2,1fr);
}

.plot-pricing-card.featured{
transform:scale(1);
}

}

@media(max-width:768px){

.plot-images-section{
grid-template-columns:1fr;
}

.plot-pricing-grid{
grid-template-columns:1fr;
}

.plot-image-card{
height:250px;
}

.corner-plot-banner{
padding:30px 20px;
}

.corner-plot-content h3{
font-size:22px;
}

}


/* ===============================
   GLOBAL ANIMATIONS
=================================*/

/* Smooth Scroll */
html{
scroll-behavior:smooth;
}

/* Fade In Animation */
@keyframes fadeIn{
from{
opacity:0;
transform:translateY(30px);
}
to{
opacity:1;
transform:translateY(0);
}
}

/* Fade In Left */
@keyframes fadeInLeft{
from{
opacity:0;
transform:translateX(-50px);
}
to{
opacity:1;
transform:translateX(0);
}
}

/* Fade In Right */
@keyframes fadeInRight{
from{
opacity:0;
transform:translateX(50px);
}
to{
opacity:1;
transform:translateX(0);
}
}

/* Scale In */
@keyframes scaleIn{
from{
opacity:0;
transform:scale(0.8);
}
to{
opacity:1;
transform:scale(1);
}
}

/* Bounce In */
@keyframes bounceIn{
0%{
opacity:0;
transform:scale(0.3);
}
50%{
transform:scale(1.05);
}
100%{
opacity:1;
transform:scale(1);
}
}

/* Slide Up */
@keyframes slideUp{
from{
opacity:0;
transform:translateY(50px);
}
to{
opacity:1;
transform:translateY(0);
}
}

/* ===============================
   SCROLL ANIMATIONS
=================================*/

.animate-on-scroll{
opacity:0;
transform:translateY(50px);
transition:opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animated{
opacity:1;
transform:translateY(0);
}

/* Property Cards Animation */
.property-card{
animation:fadeIn 0.6s ease forwards;
}

.property-card:nth-child(1){animation-delay:0.1s;}
.property-card:nth-child(2){animation-delay:0.2s;}
.property-card:nth-child(3){animation-delay:0.3s;}
.property-card:nth-child(4){animation-delay:0.4s;}
.property-card:nth-child(5){animation-delay:0.5s;}
.property-card:nth-child(6){animation-delay:0.6s;}

/* Plot Pricing Cards */
.plot-pricing-card{
animation:scaleIn 0.6s ease forwards;
}

.plot-pricing-card:nth-child(1){animation-delay:0.2s;}
.plot-pricing-card:nth-child(2){animation-delay:0.4s;}
.plot-pricing-card:nth-child(3){animation-delay:0.6s;}

/* Plot Images */
.plot-image-card{
animation:fadeInLeft 0.8s ease forwards;
}

.plot-image-card:nth-child(1){animation-delay:0.1s;}
.plot-image-card:nth-child(2){animation-delay:0.3s;}
.plot-image-card:nth-child(3){animation-delay:0.5s;}

/* Section Titles */
.property-title,
.section-title{
animation:slideUp 0.8s ease forwards;
}

/* Hero Content */
.hero-content{
animation:fadeIn 1s ease forwards;
}

.hero-content .tag{
animation:bounceIn 0.8s ease forwards;
animation-delay:0.3s;
}

.hero-content h1{
animation:fadeIn 1s ease forwards;
animation-delay:0.5s;
}

.hero-content .subtitle{
animation:fadeIn 1s ease forwards;
animation-delay:0.7s;
}

.search-box{
animation:slideUp 0.8s ease forwards;
animation-delay:0.9s;
}

.property-types{
animation:fadeIn 0.8s ease forwards;
animation-delay:1.1s;
}

/* About Section */
.about-left{
animation:fadeInLeft 1s ease forwards;
}

.about-right{
animation:fadeInRight 1s ease forwards;
animation-delay:0.3s;
}

/* Services Cards */
.service-card{
animation:fadeIn 0.8s ease forwards;
}

.service-card:nth-child(1){animation-delay:0.2s;}
.service-card:nth-child(2){animation-delay:0.4s;}
.service-card:nth-child(3){animation-delay:0.6s;}
.service-card:nth-child(4){animation-delay:0.8s;}

/* Testimonial Cards */
.premium-card{
animation:scaleIn 0.8s ease forwards;
}

.premium-card:nth-child(1){animation-delay:0.2s;}
.premium-card:nth-child(2){animation-delay:0.4s;}
.premium-card:nth-child(3){animation-delay:0.6s;}

/* Footer Animation */
.footer-col{
animation:fadeIn 0.8s ease forwards;
}

.footer-col:nth-child(1){animation-delay:0.1s;}
.footer-col:nth-child(2){animation-delay:0.2s;}
.footer-col:nth-child(3){animation-delay:0.3s;}
.footer-col:nth-child(4){animation-delay:0.4s;}

/* ===============================
   HOVER ANIMATIONS
=================================*/

/* Button Hover */
.add-btn,
.cta-btn,
.about-btn,
.learn-btn,
.footer-btn,
.plot-contact-btn,
.corner-plot-btn{
position:relative;
overflow:hidden;
}

.add-btn::before,
.cta-btn::before,
.about-btn::before,
.learn-btn::before,
.footer-btn::before,
.plot-contact-btn::before,
.corner-plot-btn::before{
content:"";
position:absolute;
top:50%;
left:50%;
width:0;
height:0;
border-radius:50%;
background:rgba(255,255,255,0.3);
transform:translate(-50%, -50%);
transition:width 0.6s, height 0.6s;
}

.add-btn:hover::before,
.cta-btn:hover::before,
.about-btn:hover::before,
.learn-btn:hover::before,
.footer-btn:hover::before,
.plot-contact-btn:hover::before,
.corner-plot-btn:hover::before{
width:300px;
height:300px;
}

/* Card Hover Glow */
.property-card:hover,
.service-card:hover,
.premium-card:hover,
.plot-pricing-card:hover{
box-shadow:0 20px 60px rgba(255,107,0,0.3);
}

/* Image Zoom on Hover */
.property-img img,
.plot-image-card img{
transition:transform 0.5s ease;
}

.property-card:hover .property-img img,
.plot-image-card:hover img{
transform:scale(1.1);
}

/* Link Hover */
a{
transition:all 0.3s ease;
}

/* Icon Bounce */
@keyframes iconBounce{
0%, 100%{transform:translateY(0);}
50%{transform:translateY(-10px);}
}

.plot-icon{
animation:iconBounce 2s ease-in-out infinite;
}

.plot-pricing-card:hover .plot-icon{
animation:none;
transform:scale(1.1);
}

/* Navbar Animation */
.navbar{
animation:slideDown 0.5s ease forwards;
}

@keyframes slideDown{
from{
transform:translateY(-100%);
opacity:0;
}
to{
transform:translateY(0);
opacity:1;
}
}

/* Social Icons Hover */
.social-icons a{
transition:all 0.3s ease;
}

.social-icons a:hover{
animation:iconBounce 0.6s ease;
}

/* Loading Animation for Images */
img{
animation:fadeIn 0.5s ease forwards;
animation-delay:0.1s;
}

/* Pulse Animation */
@keyframes pulse{
0%{
box-shadow:0 0 0 0 rgba(255,107,0,0.7);
}
70%{
box-shadow:0 0 0 20px rgba(255,107,0,0);
}
100%{
box-shadow:0 0 0 0 rgba(255,107,0,0);
}
}

.featured-badge{
animation:pulse 2s infinite;
}

/* Text Shimmer Effect */
@keyframes shimmer{
0%{
background-position:-1000px 0;
}
100%{
background-position:1000px 0;
}
}

.property-title,
.section-title{
background:linear-gradient(90deg, #0d2b3e 0%, #fe741e 50%, #0d2b3e 100%);
background-size:200% auto;
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
animation:shimmer 3s linear infinite;
}

/* Floating Animation */
@keyframes floating{
0%, 100%{
transform:translateY(0);
}
50%{
transform:translateY(-20px);
}
}

.why-images img{
animation:floating 3s ease-in-out infinite;
}

/* Rotate on Hover */
.map-close:hover{
animation:rotate 0.5s ease;
}

@keyframes rotate{
from{transform:rotate(0deg);}
to{transform:rotate(360deg);}
}


/* ===============================
   RIPPLE EFFECT
=================================*/

.ripple{
position:absolute;
border-radius:50%;
background:rgba(255,255,255,0.6);
transform:scale(0);
animation:ripple-animation 0.6s ease-out;
pointer-events:none;
}

@keyframes ripple-animation{
to{
transform:scale(4);
opacity:0;
}
}

/* ===============================
   LOADING STATE
=================================*/

body{
transition:opacity 0.5s ease;
}

body.loaded{
opacity:1;
}

/* ===============================
   SCROLL PROGRESS BAR
=================================*/

.scroll-progress{
position:fixed;
top:0;
left:0;
height:3px;
background:linear-gradient(90deg, #fe741e, #ff8c00);
z-index:99999;
transition:width 0.1s ease;
}

/* ===============================
   CARD TILT EFFECT
=================================*/

.property-card,
.service-card,
.premium-card{
transition:transform 0.3s ease;
transform-style:preserve-3d;
}

/* ===============================
   STAGGER ANIMATION
=================================*/

.stagger-animation > *{
animation:fadeIn 0.6s ease forwards;
}

.stagger-animation > *:nth-child(1){animation-delay:0.1s;}
.stagger-animation > *:nth-child(2){animation-delay:0.2s;}
.stagger-animation > *:nth-child(3){animation-delay:0.3s;}
.stagger-animation > *:nth-child(4){animation-delay:0.4s;}
.stagger-animation > *:nth-child(5){animation-delay:0.5s;}
.stagger-animation > *:nth-child(6){animation-delay:0.6s;}

/* ===============================
   GLOW EFFECT
=================================*/

@keyframes glow{
0%, 100%{
box-shadow:0 0 20px rgba(255,107,0,0.5);
}
50%{
box-shadow:0 0 40px rgba(255,107,0,0.8);
}
}

.featured-badge,
.status-badge{
animation:glow 2s ease-in-out infinite;
}

/* ===============================
   ENTRANCE ANIMATIONS
=================================*/

.fade-in-up{
animation:fadeIn 0.8s ease forwards;
}

.fade-in-left{
animation:fadeInLeft 0.8s ease forwards;
}

.fade-in-right{
animation:fadeInRight 0.8s ease forwards;
}

.scale-in{
animation:scaleIn 0.8s ease forwards;
}

.bounce-in{
animation:bounceIn 0.8s ease forwards;
}


/* ===============================
   FARMHOUSE LAYOUT MAP
=================================*/

.farmhouse-map-section{
background:#fff;
border-radius:15px;
padding:30px;
margin-bottom:60px;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

.map-header{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:25px;
flex-wrap:wrap;
gap:15px;
}

.map-header h3{
font-size:24px;
color:#0d2b3e;
display:flex;
align-items:center;
gap:10px;
}

.map-header i{
color:#fe741e;
}

.view-full-map-btn{
background:#fe741e;
color:#fff;
border:none;
padding:12px 25px;
border-radius:25px;
cursor:pointer;
font-weight:600;
transition:0.3s;
display:flex;
align-items:center;
gap:8px;
}

.view-full-map-btn:hover{
background:#0d2b3e;
transform:translateY(-2px);
}

.map-image-container{
position:relative;
border-radius:10px;
overflow:hidden;
cursor:pointer;
max-width:600px;
margin:0 auto;
}

.map-image-container-static{
position:relative;
border-radius:10px;
overflow:hidden;
cursor:default;
}

.layout-map{
width:100%;
height:auto;
display:block;
transition:transform 0.3s ease;
}

.map-image-container:hover .layout-map{
transform:scale(1.05);
}

.map-image-container-static .layout-map{
transition:none;
}

.map-image-container-static:hover .layout-map{
transform:none;
}

.map-overlay-info{
position:absolute;
bottom:0;
left:0;
right:0;
background:linear-gradient(to top, rgba(0,0,0,0.8), transparent);
padding:20px;
text-align:center;
}

.map-overlay-info p{
color:#fff;
margin:0;
font-size:14px;
}

.map-overlay-info i{
color:#fe741e;
margin-right:8px;
}

/* ===============================
   AMENITIES SECTION
=================================*/

.amenities-section{
margin-top:60px;
padding:50px 0;
background:#f8f9fb;
border-radius:15px;
}

.amenities-title{
text-align:center;
font-size:32px;
color:#0d2b3e;
margin-bottom:40px;
}

.amenities-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
padding:0 30px;
}

.amenity-card{
background:#fff;
padding:30px 20px;
border-radius:12px;
text-align:center;
transition:0.4s;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.amenity-card:hover{
transform:translateY(-10px);
box-shadow:0 15px 30px rgba(0,0,0,0.15);
}

.amenity-card i{
font-size:40px;
color:#fe741e;
margin-bottom:15px;
}

.amenity-card h4{
font-size:18px;
color:#0d2b3e;
margin-bottom:8px;
}

.amenity-card p{
font-size:14px;
color:#666;
margin:0;
}

/* ===============================
   RESPONSIVE
=================================*/

@media(max-width:992px){

.amenities-grid{
grid-template-columns:repeat(3,1fr);
}

}

@media(max-width:768px){

.farmhouse-map-section{
padding:20px;
}

.map-header{
flex-direction:column;
align-items:flex-start;
}

.map-header h3{
font-size:20px;
}

.view-full-map-btn{
width:100%;
justify-content:center;
}

.amenities-grid{
grid-template-columns:repeat(2,1fr);
gap:15px;
padding:0 15px;
}

.amenities-title{
font-size:24px;
}

}

@media(max-width:480px){

.amenities-grid{
grid-template-columns:1fr;
}

}


/* ===============================
   VILLA GALLERY
=================================*/

.villa-gallery{
margin-bottom:50px;
animation:fadeIn 0.8s ease;
}

.gallery-main{
position:relative;
width:100%;
height:600px;
border-radius:15px;
overflow:hidden;
margin-bottom:20px;
box-shadow:0 10px 40px rgba(0,0,0,0.15);
cursor:pointer;
}

.gallery-main img{
width:100%;
height:100%;
object-fit:cover;
transition:transform 0.5s ease;
}

.gallery-main:hover img{
transform:scale(1.05);
}

.gallery-overlay{
position:absolute;
bottom:0;
left:0;
right:0;
background:linear-gradient(to top, rgba(0,0,0,0.8), transparent);
padding:30px;
display:flex;
justify-content:space-between;
align-items:center;
}

.gallery-nav{
background:rgba(255,255,255,0.2);
backdrop-filter:blur(10px);
border:2px solid rgba(255,255,255,0.3);
color:#fff;
width:50px;
height:50px;
border-radius:50%;
cursor:pointer;
transition:0.3s;
font-size:20px;
display:flex;
align-items:center;
justify-content:center;
}

.gallery-nav:hover{
background:#fe741e;
border-color:#fe741e;
transform:scale(1.1);
}

.image-counter{
background:rgba(0,0,0,0.6);
color:#fff;
padding:10px 20px;
border-radius:25px;
font-size:16px;
font-weight:600;
}

.gallery-thumbnails{
display:flex;
gap:10px;
overflow-x:auto;
padding:10px 0;
scroll-behavior:smooth;
}

.gallery-thumbnails::-webkit-scrollbar{
height:8px;
}

.gallery-thumbnails::-webkit-scrollbar-track{
background:#f1f1f1;
border-radius:10px;
}

.gallery-thumbnails::-webkit-scrollbar-thumb{
background:#fe741e;
border-radius:10px;
}

.gallery-thumb{
min-width:120px;
height:80px;
border-radius:8px;
overflow:hidden;
cursor:pointer;
border:3px solid transparent;
transition:0.3s;
}

.gallery-thumb.active{
border-color:#fe741e;
transform:scale(1.05);
}

.gallery-thumb:hover{
border-color:#0d2b3e;
}

.gallery-thumb img{
width:100%;
height:100%;
object-fit:cover;
}

/* ===============================
   VILLA QUICK INFO
=================================*/

.villa-quick-info{
display:grid;
grid-template-columns:repeat(6,1fr);
gap:20px;
margin:50px 0;
animation:fadeIn 0.8s ease 0.2s backwards;
}

.quick-info-card{
background:#fff;
padding:25px 15px;
border-radius:12px;
text-align:center;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
transition:0.4s;
}

.quick-info-card:hover{
transform:translateY(-10px);
box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

.quick-info-card i{
font-size:35px;
color:#fe741e;
margin-bottom:15px;
}

.quick-info-card h4{
font-size:16px;
color:#0d2b3e;
margin-bottom:5px;
}

.quick-info-card p{
font-size:13px;
color:#666;
margin:0;
}

/* ===============================
   PROPERTY CARD DETAIL
=================================*/

.property-card-detail{
background:#fff;
padding:40px;
border-radius:15px;
margin-bottom:30px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
animation:fadeIn 0.8s ease 0.4s backwards;
}

.property-card-detail h3{
font-size:24px;
color:#0d2b3e;
margin-bottom:25px;
display:flex;
align-items:center;
gap:10px;
}

.property-card-detail h3 i{
color:#fe741e;
}

/* ===============================
   LOCATION GRID
=================================*/

.location-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.location-item{
background:#f8f9fb;
padding:25px;
border-radius:12px;
text-align:center;
transition:0.3s;
border-left:4px solid #fe741e;
}

.location-item:hover{
transform:translateX(5px);
box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

.location-item i{
font-size:30px;
color:#fe741e;
margin-bottom:15px;
}

.location-item h4{
font-size:16px;
color:#0d2b3e;
margin-bottom:5px;
}

.location-item p{
font-size:14px;
color:#666;
margin:0;
}

/* ===============================
   VILLA CONTACT SECTION
=================================*/

.villa-contact-section{
margin-top:50px;
animation:fadeIn 0.8s ease 0.6s backwards;
}

.contact-box{
background:linear-gradient(135deg, #0d2b3e, #1a4d5e);
padding:50px;
border-radius:20px;
text-align:center;
color:#fff;
}

.contact-box h3{
font-size:32px;
margin-bottom:15px;
}

.contact-box h3 i{
color:#fe741e;
}

.contact-box p{
font-size:18px;
margin-bottom:30px;
opacity:0.9;
}

.contact-btn-large{
display:inline-block;
background:#fe741e;
color:#fff;
padding:18px 40px;
border-radius:30px;
text-decoration:none;
font-size:18px;
font-weight:600;
margin:10px;
transition:0.3s;
}

.contact-btn-large:hover{
background:#fff;
color:#0d2b3e;
transform:translateY(-3px);
box-shadow:0 10px 30px rgba(0,0,0,0.3);
}

.contact-btn-large.whatsapp{
background:#25D366;
}

.contact-btn-large.whatsapp:hover{
background:#128C7E;
color:#fff;
}

.contact-btn-large i{
margin-right:10px;
}

/* ===============================
   MODAL NAV BUTTONS
=================================*/

.modal-nav-buttons{
display:flex;
gap:15px;
margin-top:20px;
justify-content:center;
}

.modal-nav-btn{
background:rgba(255,107,0,0.95);
color:#fff;
border:none;
padding:12px 25px;
border-radius:25px;
cursor:pointer;
font-size:16px;
font-weight:600;
transition:0.3s;
}

.modal-nav-btn:hover{
background:#fe741e;
transform:translateY(-3px);
}

.modal-nav-btn i{
margin:0 5px;
}

/* ===============================
   RESPONSIVE
=================================*/

@media(max-width:1200px){

.villa-quick-info{
grid-template-columns:repeat(3,1fr);
}

}

@media(max-width:992px){

.gallery-main{
height:450px;
}

.villa-quick-info{
grid-template-columns:repeat(2,1fr);
}

.location-grid{
grid-template-columns:repeat(2,1fr);
}

.amenities-grid{
grid-template-columns:repeat(3,1fr);
}

}

@media(max-width:768px){

.gallery-main{
height:350px;
}

.villa-quick-info{
grid-template-columns:1fr;
}

.location-grid{
grid-template-columns:1fr;
}

.amenities-grid{
grid-template-columns:repeat(2,1fr);
}

.property-card-detail{
padding:25px;
}

.contact-box{
padding:30px 20px;
}

.contact-box h3{
font-size:24px;
}

.contact-btn-large{
display:block;
margin:10px 0;
}

.gallery-nav{
width:40px;
height:40px;
font-size:16px;
}

.modal-nav-buttons{
flex-direction:column;
}

.modal-nav-btn{
width:100%;
}

}

@media(max-width:480px){

.gallery-main{
height:250px;
}

.amenities-grid{
grid-template-columns:1fr;
}

.gallery-thumb{
min-width:80px;
height:60px;
}

}


/* ===============================
   ENHANCED RESPONSIVE - ALL SCREENS
=================================*/

/* Extra Large Screens (1400px+) */
@media(min-width:1400px){
.container{
max-width:1320px;
}
}

/* Large Desktop (1200px - 1399px) */
@media(max-width:1399px){
.hero h1{
font-size:44px;
}
.property-title{
font-size:36px;
}
}

/* Desktop (992px - 1199px) */
@media(max-width:1199px){
.hero h1{
font-size:40px;
}
.navbar{
padding:0 20px;
}
}

/* Tablet Landscape (768px - 991px) */
@media(max-width:991px){
.hero{
height:80vh;
}
.hero h1{
font-size:36px;
}
.hero-content{
padding:30px;
}
.search-box{
max-width:400px;
}
.property-types button{
font-size:14px;
padding:8px 15px;
}
}

/* Tablet Portrait (576px - 767px) */
@media(max-width:767px){
.hero{
height:70vh;
}
.hero h1{
font-size:28px;
}
.hero-content{
padding:25px;
}
.tag{
font-size:12px;
padding:5px 12px;
}
.subtitle{
font-size:14px;
}
.search-box{
flex-direction:column;
border-radius:10px;
}
.search-box input{
border-radius:10px 10px 0 0;
}
.search-box button{
border-radius:0 0 10px 10px;
width:100%;
}
.property-types{
flex-direction:column;
gap:8px;
}
.property-types button{
width:100%;
}
.page-banner,
.About-banner,
.flats-banner{
height:280px;
}
.banner-content h1{
font-size:32px;
}
.breadcrumb{
font-size:14px;
}
}

/* Mobile (480px - 575px) */
@media(max-width:575px){
.hero{
height:60vh;
}
.hero h1{
font-size:24px;
}
.hero-content{
padding:20px;
}
.page-banner,
.About-banner,
.flats-banner{
height:240px;
}
.banner-content h1{
font-size:26px;
}
}

/* Small Mobile (320px - 479px) */
@media(max-width:479px){
.container{
padding:0 15px;
}
.hero{
height:55vh;
}
.hero h1{
font-size:22px;
}
.hero-content{
padding:15px;
}
.navbar{
padding:0 15px;
height:60px;
}
.logo img{
height:45px;
}
.add-btn{
padding:8px 15px;
font-size:14px;
}
.page-banner,
.About-banner,
.flats-banner{
height:200px;
}
.banner-content h1{
font-size:22px;
}
.property-title,
.section-title{
font-size:24px;
}
.about-section,
.services-section,
.property-section{
padding:50px 0;
}
}

/* Extra Small Mobile (< 375px) */
@media(max-width:374px){
.hero h1{
font-size:20px;
}
.banner-content h1{
font-size:20px;
}
.property-title,
.section-title{
font-size:22px;
}
.navbar{
height:55px;
}
.logo img{
height:40px;
}
}

/* Landscape Mobile Orientation */
@media(max-height:500px) and (orientation:landscape){
.hero{
height:100vh;
}
.page-banner,
.About-banner,
.flats-banner{
height:100vh;
}
}

/* Print Styles */
@media print{
.navbar,
.footer,
.add-btn,
.cta-btn,
.contact-btn-large{
display:none;
}
.property-section,
.about-section{
page-break-inside:avoid;
}
}

/* High DPI Screens */
@media(-webkit-min-device-pixel-ratio:2), (min-resolution:192dpi){
.logo img,
.footer-logo{
image-rendering:-webkit-optimize-contrast;
}
}

/* Dark Mode Support (Optional) */
@media(prefers-color-scheme:dark){
/* Add dark mode styles if needed */
}

/* Reduced Motion */
@media(prefers-reduced-motion:reduce){
*{
animation-duration:0.01ms !important;
animation-iteration-count:1 !important;
transition-duration:0.01ms !important;
}
}


/* ===============================
   FAQ SECTION
=================================*/

.faq-section {
    padding: 100px 0;
    background: #f8f9fb;
    text-align: center;
}

.faq-section .section-title {
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #0d2b3e;
    animation: none;
    text-align: center;
    display: block;
}

.faq-section .section-tag {
    display: block;
    text-align: center;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.07);
    overflow: hidden;
    border-left: 4px solid #ff6b00;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    gap: 15px;
}

.faq-question span {
    font-size: 17px;
    font-weight: 600;
    color: #0d2b3e;
    line-height: 1.4;
}

.faq-question i {
    color: #ff6b00;
    font-size: 16px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

.faq-item.open .faq-question {
    border-bottom: 1px solid #f0f0f0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 25px;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 20px 25px;
}

.faq-answer p {
    color: #555;
    line-height: 1.8;
    font-size: 15px;
}

.faq-answer strong {
    color: #ff6b00;
}

@media(max-width: 768px) {
    .faq-section {
        padding: 70px 0;
    }
    .faq-question span {
        font-size: 15px;
    }
    .faq-question {
        padding: 18px 20px;
    }
    .faq-item.open .faq-answer {
        padding: 15px 20px;
    }
}

@media(max-width: 480px) {
    .faq-question span {
        font-size: 14px;
    }
}


/* ===============================
   GLOBAL RESPONSIVE FIXES
   All screen sizes
=================================*/

/* ---- Navbar ---- */
@media(max-width:480px){
    .navbar{
        height:60px;
        padding:0 12px;
        border-radius:0;
    }
    .logo img{ height:45px; }
    #menuToggle{ font-size:22px; }
    #navLinks{ top:65px; padding:20px 15px; gap:14px; }
}

/* ---- Banners (page-banner / flats-banner / About-banner) ---- */
@media(max-width:768px){
    .page-banner,
    .About-banner,
    .flats-banner{
        height:260px;
        padding-top:80px;
    }
    .banner-content h1,
    .flats.banner-content h1{
        font-size:32px;
    }
}
@media(max-width:480px){
    .page-banner,
    .About-banner,
    .flats-banner{
        height:220px;
        padding-top:70px;
    }
    .banner-content h1,
    .flats.banner-content h1{
        font-size:24px;
    }
    .breadcrumb{ font-size:13px; }
}

/* ---- About Section ---- */
@media(max-width:768px){
    .about-section{ padding:70px 15px; }
    .about-right h2{ font-size:26px; }
    .about-features{ grid-template-columns:1fr 1fr; }
}
@media(max-width:480px){
    .about-section{ padding:50px 12px; }
    .about-right h2{ font-size:22px; }
    .about-features{ grid-template-columns:1fr; }
    .about-btn{ display:block; text-align:center; }
}

/* ---- Services Section ---- */
@media(max-width:480px){
    .services-section{ padding:50px 12px; }
    .section-title{ font-size:22px; margin-bottom:35px; }
    .service-card{ padding:20px 15px; }
    .service-card h3{ font-size:17px; }
    .service-card p{ font-size:13px; }
}

/* ---- Property Cards ---- */
@media(max-width:400px){
    .property-grid{ grid-template-columns:1fr; gap:20px; }
    .property-img img{ height:180px; }
    .property-info{ margin:-50px 10px 0; padding:16px; }
    .property-info h3{ font-size:16px; }
    .features{ font-size:12px; flex-wrap:wrap; gap:6px; }
    .bottom-info a{ font-size:13px; padding:10px 20px; }
}

/* ---- CTA Section ---- */
@media(max-width:400px){
    .cta-content h2{ font-size:20px; }
    .cta-content p{ font-size:13px; }
    .cta-btn{ padding:11px 22px; font-size:14px; }
}

/* ---- Why Section ---- */
@media(max-width:400px){
    .why-section{ padding:50px 12px; }
    .why-content h2{ font-size:22px; }
    .why-list{ grid-template-columns:1fr; gap:10px; }
    .why-list li{ font-size:13px; padding:10px 14px; }
    .learn-btn{ width:100%; }
}

/* ---- Testimonial Section ---- */
@media(max-width:400px){
    .testimonial-section{ padding:50px 12px; }
    .testimonial-card{ padding:25px 18px; }
    .testimonial-text{ font-size:13px; }
    .author-avatar{ width:40px; height:40px; font-size:13px; }
    .author-info h4{ font-size:14px; }
}

/* ---- FAQ Section ---- */
@media(max-width:400px){
    .faq-section{ padding:50px 12px; }
    .faq-question span{ font-size:13px; }
    .faq-question{ padding:15px 14px; }
    .faq-answer p{ font-size:13px; }
}

/* ---- Contact Section ---- */
@media(max-width:480px){
    .contact-section{ padding:50px 12px; }
    .contact-form{ padding:25px 18px; }
    .contact-form input,
    .contact-form textarea{ padding:12px; font-size:13px; }
    .contact-form button{ width:100%; padding:13px; }
    .contact-info h2{ font-size:22px; }
}

/* ---- Map Section ---- */
@media(max-width:400px){
    .map-section{ padding:30px 12px; }
    .map-section h2{ font-size:22px; }
    .map-section iframe{ height:220px; }
}

/* ---- Footer ---- */
@media(max-width:400px){
    .footer-wrapper{ padding:0 12px; gap:18px; }
    .footer-col h4{ font-size:15px; }
    .footer-col p,
    .footer-col ul li a{ font-size:13px; }
    .footer-logo{ width:130px; }
    .footer-bottom{ font-size:12px; padding:10px 12px; }
    .design img{ width:90px; }
}

/* ---- Plot Pricing Cards ---- */
@media(max-width:768px){
    .plot-pricing-grid{ grid-template-columns:1fr; }
    .plot-pricing-card{ padding:30px 20px; }
}
@media(max-width:480px){
    .corner-plot-banner{ padding:30px 15px; }
    .corner-plot-content h3{ font-size:18px; }
}

/* ---- Amenities Grid ---- */
@media(max-width:480px){
    .amenities-grid{ grid-template-columns:repeat(2,1fr); gap:12px; }
    .amenity-card{ padding:18px 12px; }
    .amenity-card h4{ font-size:13px; }
    .amenity-card p{ font-size:12px; }
}
@media(max-width:360px){
    .amenities-grid{ grid-template-columns:1fr; }
}

/* ---- Villa Gallery ---- */
@media(max-width:480px){
    .villa-quick-info{ grid-template-columns:repeat(2,1fr); gap:12px; }
    .quick-info-card{ padding:15px 10px; }
    .quick-info-card h4{ font-size:13px; }
    .villa-contact-section .contact-box{ padding:25px 18px; }
    .contact-btn-large{ font-size:14px; padding:13px 20px; }
}

/* ---- General small screen overflow fix ---- */
@media(max-width:480px){
    .container{ padding:0 12px; }
    h2{ word-break:break-word; }
    img{ max-width:100%; }
}

/* ================= FLOATING BUTTONS ================= */
.floating-buttons { position:fixed; bottom:30px; left:20px; display:flex; flex-direction:column; gap:12px; z-index:9999; }
.float-call, .float-whatsapp { width:52px; height:52px; border-radius:50%; display:flex; align-items:center; justify-content:center; color:#fff; font-size:20px; box-shadow:0 4px 15px rgba(0,0,0,0.3); transition:transform 0.3s, box-shadow 0.3s; text-decoration:none; }
.float-call { background:#ff6b00; }
.float-whatsapp { background:#25D366; }
.float-call:hover, .float-whatsapp:hover { transform:scale(1.12); box-shadow:0 6px 20px rgba(0,0,0,0.35); color:#fff; }

@media (max-width: 768px) {
    .floating-buttons { bottom:20px; left:14px; gap:10px; }
    .float-call, .float-whatsapp { width:46px; height:46px; font-size:18px; }
}

@media (max-width: 480px) {
    .floating-buttons { bottom:16px; left:10px; gap:8px; }
    .float-call, .float-whatsapp { width:42px; height:42px; font-size:16px; }
}
