/* =========================
   CITIHOMEZ - COMPLETE CSS
========================= */

/* =========================
   GLOBAL STYLES
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    font-family:'Poppins', Arial, sans-serif;
    background:#ffffff;
    color:#333333;
}

section{
    scroll-margin-top:90px;
}

img{
    display:block;
    max-width:100%;
}

a{
    transition:0.3s ease;
}


/* =========================
   NAVIGATION BAR
========================= */

.navbar{
    position:sticky;
    top:0;
    left:0;

    width:100%;
    height:90px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:15px 40px;

    background:rgba(4,18,34,0.95);
    backdrop-filter:blur(10px);

    box-shadow:0 5px 15px rgba(0,0,0,0.15);
    z-index:999;
}

.logo,
.logo a{
    color:#D4AF37;
    font-size:32px;
    font-weight:700;
    letter-spacing:2px;
    text-decoration:none;
}
/* ==========================================
   WEBSITE LOGO
========================================== */

.logo{

    display:flex;

    align-items:center;

}

.logo img{

    width:220px;

    height:auto;

    display:block;

    transition:0.3s ease;

}

.logo img:hover{

    transform:scale(1.03);

}

@media(max-width:768px){

    .logo img{

        width:170px;

    }

}

.nav-links{
    list-style:none;
    display:flex;
    align-items:center;
    gap:30px;
}

.nav-links a{
    color:#ffffff;
    text-decoration:none;
    font-size:18px;
}

.nav-links a:hover{
    color:#B8860B;
}

.menu-toggle{
    display:none;
    background:none;
    border:none;
    color:#B8860B;
    font-size:30px;
    cursor:pointer;
}


/* =========================
   PREMIUM HERO SECTION
========================= */

.hero{
    position:relative;
    width:100%;
    height:calc(100vh - 90px);
    min-height:600px;
    overflow:hidden;

    display:flex;
    align-items:center;
}

.slider{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
}

.slide{
    position:absolute;
    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;

    opacity:0;
    transform:scale(1.04);

    transition:
        opacity 1.5s ease,
        transform 7s ease;
}

.slide.active{
    opacity:1;
    transform:scale(1);
}

.hero-overlay{
    position:absolute;
    inset:0;

    background:linear-gradient(
        90deg,
        rgba(4,18,34,0.90) 0%,
        rgba(4,18,34,0.72) 45%,
        rgba(4,18,34,0.30) 100%
    );

    z-index:1;
}

.hero-content{
    position:relative;
    z-index:2;

    width:90%;
    max-width:1200px;
    margin:auto;
}

.hero-small-title{
    color:#B8860B;
    font-size:15px;
    font-weight:600;
    letter-spacing:4px;
    margin-bottom:18px;
}

.hero h1{
    color:#ffffff;
    font-size:68px;
    font-weight:600;
    line-height:1.08;
    margin-bottom:22px;
}

.hero-tagline{
    color:#B8860B;
    font-size:21px;
    font-weight:500;
    margin-bottom:16px;
}

.hero-description{
    color:#ffffff;
    max-width:650px;
    font-size:17px;
    line-height:1.8;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:18px;
}

.hero-btn{
    display:inline-block;
    padding:14px 30px;

    border-radius:4px;
    text-decoration:none;

    font-size:15px;
    font-weight:600;
}

.gold-btn{
    background:#B8860B;
    color:#041222;
    border:2px solid #B8860B;
}

.gold-btn:hover{
    background:#D4AF37;
    border-color:#D4AF37;
    transform:translateY(-3px);
}

.outline-btn{
    background:transparent;
    color:#ffffff;
    border:2px solid #ffffff;
}

.outline-btn:hover{
    background:#ffffff;
    color:#041222;
    transform:translateY(-3px);
}


/* =========================
   ABOUT SECTION
========================= */
/* ABOUT SECTION */

.about-section{
    background:#ffffff;
    padding:90px 20px;
    text-align:center;
}

.about-container{
    max-width:1050px;
    margin:0 auto;
}

.about-section h2{
    font-family:'Playfair Display', serif;
    font-size:38px;
    color:#041222;
    margin-bottom:12px;
}

.section-line{
    width:70px;
    height:3px;
    background:#B8860B;
    margin:0 auto 30px;
}

.about-section p{
    font-family:'Poppins', sans-serif;
    font-size:16px;
    line-height:1.9;
    color:#555555;
    margin-bottom:18px;
}

.about-button-wrapper{
    margin-top:32px;
}

.about-button{
    display:inline-block;
    padding:13px 28px;
    background:#B8860B;
    color:#ffffff;
    text-decoration:none;
    font-family:'Poppins', sans-serif;
    font-size:15px;
    font-weight:600;
    border-radius:4px;
    transition:all 0.3s ease;
}

.about-button:hover{
    background:#041222;
    transform:translateY(-3px);
    box-shadow:0 8px 20px rgba(0,0,0,0.18);
}

/* MOBILE */

@media(max-width:768px){

    .about-section{
        padding:65px 18px;
    }

    .about-section h2{
        font-size:31px;
    }

    .about-section p{
        font-size:15px;
        line-height:1.8;
    }

    .about-button{
        padding:12px 23px;
    }
}

.about{
    background:#ffffff;
    padding:100px 30px;
}

.about-content{
    max-width:950px;
    margin:auto;
    text-align:center;
}

.about h2{
    color:#041222;
    font-size:42px;
    margin-bottom:20px;
}

.about h2::after{
    content:"";
    display:block;
    width:70px;
    height:3px;
    background:#B8860B;
    margin:15px auto 30px;
}

.about p{
    color:#555555;
    font-size:18px;
    line-height:1.9;
    margin-bottom:18px;
}


/* =========================
   SERVICES SECTION
========================= */

.services{
    background:#041222;
    padding:100px 30px;
    text-align:center;
}

.services h2{
    color:#ffffff;
    font-size:42px;
    margin-bottom:15px;
}

.services h2::after{
    content:"";
    display:block;
    width:70px;
    height:3px;
    background:#B8860B;
    margin:15px auto 50px;
}

.service-container{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:30px;

    max-width:1200px;
    margin:auto;
}

.service-card{
    width:250px;
    background:#ffffff;
    padding:35px 25px;

    border-radius:8px;
    border-top:4px solid #B8860B;

    box-shadow:0 10px 30px rgba(0,0,0,0.15);
    transition:0.3s ease;
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 16px 35px rgba(0,0,0,0.25);
}

.service-card h3{
    color:#041222;
    font-size:22px;
    margin-bottom:15px;
}

.service-card p{
    color:#555555;
    line-height:1.7;
    font-size:16px;
}


/* =========================
   FEATURED PROPERTIES
========================= */

.properties{
    background:#ffffff;
    padding:100px 30px;
    text-align:center;
}

.properties h2{
    color:#041222;
    font-size:42px;
    margin-bottom:15px;
}

.properties h2::after{
    content:"";
    display:block;
    width:70px;
    height:3px;
    background:#B8860B;
    margin:15px auto 50px;
}

.property-container{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:30px;

    max-width:1200px;
    margin:auto;
}

.property-card{
    width:340px;
    background:#041222;

    border-radius:10px;
    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,0.15);
    transition:0.3s ease;
}

.property-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,0.25);
}

.property-card img{
    width:100%;
    height:230px;
    object-fit:cover;
    transition:0.5s ease;
}

.property-card:hover img{
    transform:scale(1.05);
}

.property-info{
    padding:28px 24px 30px;
}

.property-info h3{
    color:#B8860B;
    font-size:24px;
    margin-bottom:14px;
}

.property-info p{
    color:#ffffff;
    line-height:1.7;
    margin-bottom:22px;
}

.property-info a{
    display:inline-block;
    background:#B8860B;
    color:#041222;

    padding:11px 24px;

    text-decoration:none;
    border-radius:4px;
    font-weight:600;
}

.property-info a:hover{
    background:#D4AF37;
    transform:translateY(-2px);
}


/* =========================
   FEATURED PROJECTS
========================= */

.projects{
    background:#ffffff;
    padding:100px 30px;
    text-align:center;
}

.projects h2{
    color:#041222;
    font-size:42px;
    margin-bottom:15px;
}

.projects h2::after{
    content:"";
    display:block;
    width:70px;
    height:3px;
    background:#B8860B;
    margin:15px auto 50px;
}

.project-container{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:30px;

    max-width:1200px;
    margin:auto;
}

.project-card{
    width:350px;
    background:#041222;

    border-radius:10px;
    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,0.15);
    transition:0.3s ease;
}

.project-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,0.25);
}

.project-card img{
    width:100%;
    height:240px;
    object-fit:cover;
    transition:0.5s ease;
}

.project-card:hover img{
    transform:scale(1.05);
}

.project-info{
    padding:28px 24px 32px;
}

.project-info h3{
    color:#B8860B;
    font-size:24px;
    margin-bottom:14px;
}

.project-info p{
    color:#ffffff;
    line-height:1.7;
    margin-bottom:22px;
}

.project-info a{
    display:inline-block;
    background:#B8860B;
    color:#041222;

    padding:11px 24px;

    text-decoration:none;
    border-radius:4px;
    font-weight:600;
}

.project-info a:hover{
    background:#D4AF37;
    transform:translateY(-2px);
}


/* =========================
   WHY CHOOSE CITIHOMEZ
========================= */

.why-us{
    background:#041222;
    padding:100px 30px;
    text-align:center;
}

.why-us h2{
    color:#ffffff;
    font-size:42px;
    margin-bottom:15px;
}

.why-us h2::after{
    content:"";
    display:block;
    width:70px;
    height:3px;
    background:#B8860B;
    margin:15px auto 50px;
}

.why-container{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:25px;

    max-width:1200px;
    margin:auto;
}

.why-card{
    width:270px;
    padding:35px 25px;

    background:rgba(255,255,255,0.05);

    border:1px solid rgba(184,134,11,0.45);
    border-radius:8px;

    transition:0.3s ease;
}

.why-card:hover{
    transform:translateY(-6px);
    border-color:#B8860B;
    background:rgba(255,255,255,0.08);
}

.why-card h3{
    color:#B8860B;
    font-size:21px;
    margin-bottom:15px;
}

.why-card p{
    color:#E5E5E5;
    font-size:15px;
    line-height:1.8;
}


/* =========================
   CONTACT SECTION
========================= */

.contact{
    background:#041222;
    padding:100px 30px;
    text-align:center;
}

.contact h2{
    color:#ffffff;
    font-size:42px;
    margin-bottom:15px;
}

.contact h2::after{
    content:"";
    display:block;
    width:70px;
    height:3px;
    background:#B8860B;
    margin:15px auto 25px;
}

.contact p{
    color:#E5E5E5;
    font-size:17px;
    line-height:1.7;

    max-width:650px;
    margin:0 auto 40px;
}

.contact form{
    max-width:700px;
    margin:auto;
}

.contact input,
.contact select,
.contact textarea{
    width:100%;
    padding:16px 18px;
    margin-bottom:15px;

    border:1px solid rgba(255,255,255,0.20);
    border-radius:5px;

    background:#ffffff;
    color:#333333;

    font-family:'Poppins', Arial, sans-serif;
    font-size:15px;
    outline:none;
}

.contact input:focus,
.contact select:focus,
.contact textarea:focus{
    border-color:#B8860B;
}

.contact textarea{
    height:130px;
    resize:vertical;
}

.contact button{
    background:#B8860B;
    color:#041222;

    padding:15px 40px;

    border:none;
    border-radius:4px;

    font-family:'Poppins', Arial, sans-serif;
    font-size:15px;
    font-weight:600;

    cursor:pointer;
}

.contact button:hover{
    background:#D4AF37;
    transform:translateY(-3px);
}


/* =========================
   FOOTER
========================= */

footer{
    background:#020A12;
    padding:70px 30px 25px;
    color:#ffffff;
}

.footer-container{
    max-width:1200px;
    margin:auto;

    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:40px;
}

.footer-box{
    width:300px;
}

.footer-box h3{
    color:#B8860B;
    font-size:22px;
    margin-bottom:18px;
}

.footer-box p{
    color:#D8D8D8;
    line-height:1.8;
    font-size:15px;
}

.footer-box ul{
    list-style:none;
}

.footer-box ul li{
    margin-bottom:10px;
}

.footer-box ul li a{
    color:#ffffff;
    text-decoration:none;
}

.footer-box ul li a:hover{
    color:#B8860B;
}

.copyright{
    text-align:center;
    margin-top:50px;
    border-top:1px solid rgba(255,255,255,0.12);
    padding-top:22px;
}

.copyright p{
    color:#AAAAAA;
    font-size:14px;
}

.social-links{
    background:#020A12;
    text-align:center;
    padding-bottom:30px;
}

.social-links a{
    color:#ffffff;
    text-decoration:none;
    margin:0 12px;
    font-size:14px;
}

.social-links a:hover{
    color:#B8860B;
}


/* =========================
   FLOATING WHATSAPP BUTTON
========================= */

.whatsapp{
    position:fixed;
    right:25px;
    bottom:25px;

    background:#25D366;
    color:#ffffff;

    padding:14px 22px;
    border-radius:50px;

    text-decoration:none;
    font-weight:600;
    font-size:14px;

    box-shadow:0 8px 20px rgba(0,0,0,0.25);

    z-index:999;
}

.whatsapp:hover{
    transform:translateY(-4px);
}


/* =========================
   PROPERTY LISTING PAGE
========================= */

.property-page{
    background:#f7f7f7;
    padding:80px 8%;
    min-height:100vh;
}

.property-page-heading{
    max-width:800px;
    margin:0 auto 40px;
    text-align:center;
}

.property-page-heading span{
    color:#B8860B;
    font-size:13px;
    font-weight:600;
    letter-spacing:2px;
}

.property-page-heading h1{
    color:#041222;
    font-size:42px;
    margin:10px 0 15px;
}

.property-page-heading p{
    color:#666666;
    font-size:16px;
    line-height:1.7;
}

.property-filters{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:45px;
}

.filter-btn{
    background:#ffffff;
    color:#041222;

    border:1px solid #D4AF37;
    border-radius:30px;

    padding:11px 24px;

    font-family:'Poppins', Arial, sans-serif;
    font-size:14px;
    font-weight:500;

    cursor:pointer;
}

.filter-btn:hover,
.filter-btn.active{
    background:#B8860B;
    color:#ffffff;
    border-color:#B8860B;
    transform:translateY(-2px);
}

.property-list{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:30px;

    max-width:1300px;
    margin:auto;
}

.listing-card{
    min-width:0;
    background:#ffffff;

    border-radius:14px;
    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,0.09);
    transition:0.35s ease;
}

.listing-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,0.15);
}

.listing-image{
    position:relative;
    height:240px;
    overflow:hidden;
}

.listing-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s ease;
}

.listing-card:hover .listing-image img{
    transform:scale(1.07);
}

.property-badge{
    position:absolute;
    top:15px;
    left:15px;

    background:#B8860B;
    color:#ffffff;

    padding:7px 13px;
    border-radius:20px;

    font-size:12px;
    font-weight:600;
}

.listing-info{
    padding:25px;
    text-align:left;
}

.property-category{
    color:#B8860B;
    font-size:12px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
}

.listing-info h2{
    color:#041222;
    font-size:22px;
    margin:8px 0 16px;
}

.listing-info p{
    color:#666666;
    font-size:14px;
    margin:8px 0;
    line-height:1.5;
}

.listing-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:22px;
}

.property-button{
    display:inline-block;

    background:#041222;
    color:#ffffff;

    padding:11px 17px;
    border-radius:6px;

    text-decoration:none;
    font-size:13px;
    font-weight:500;
}

.property-button:hover{
    background:#B8860B;
}

.secondary-button{
    background:#ffffff;
    color:#041222;
    border:1px solid #041222;
}

.secondary-button:hover{
    color:#ffffff;
    border-color:#B8860B;
}


/* =========================
   PROJECT DETAILS PAGE
========================= */

.project-detail{
    padding:80px 60px;
    text-align:center;
}

.project-main-image{
    width:80%;
    max-width:900px;
    height:450px;

    margin:auto;
    object-fit:cover;
    border-radius:10px;
}

.project-detail h1{
    color:#B8860B;
    font-size:45px;
    margin:30px 0 10px;
}

.project-detail h3{
    color:#041222;
    font-size:22px;
}

.project-detail p{
    max-width:800px;
    margin:30px auto;

    font-size:18px;
    line-height:1.8;
}

.highlights{
    background:#041222;
    color:#ffffff;

    padding:40px;

    max-width:700px;
    margin:40px auto;

    border-radius:10px;
}

.highlights h2{
    color:#B8860B;
}

.highlights ul{
    padding-left:20px;
}

.highlights li{
    margin:15px;
    text-align:left;
}


/* =========================
   TABLET RESPONSIVE
========================= */

@media(max-width:992px){

    .navbar{
        padding:0 35px;
    }

    .nav-links{
        gap:20px;
    }

    .nav-links a{
        font-size:16px;
    }

    .hero h1{
        font-size:54px;
    }

    .property-list{
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }

    .project-main-image{
        width:100%;
    }
}


/* =========================
   MOBILE RESPONSIVE
========================= */

@media(max-width:768px){

    section{
        scroll-margin-top:70px;
    }

    .navbar{
        min-height:70px;
        height:70px;
        padding:0 20px;
    }

    .logo,
    .logo a{
        font-size:21px;
    }

    .menu-toggle{
        display:block;
    }

    .nav-links{
        display:none;

        position:absolute;
        top:70px;
        left:0;

        width:100%;

        background:#041222;

        flex-direction:column;
        align-items:center;
        gap:0;

        padding:20px 0;

        box-shadow:0 10px 20px rgba(0,0,0,0.25);
    }

    .nav-links.active{
        display:flex;
    }

    .nav-links li{
        width:100%;
        text-align:center;
    }

    .nav-links a{
        display:block;
        width:100%;
        padding:12px;
        font-size:15px;
    }

    .hero{
        height:calc(100vh - 70px);
        min-height:550px;

        padding:40px 25px;

        text-align:center;
        justify-content:center;
    }

    .hero-content{
        width:100%;
    }

    .hero-small-title{
        font-size:11px;
        letter-spacing:2px;
        margin-bottom:15px;
    }

    .hero h1{
        font-size:38px;
        line-height:1.15;
    }

    .hero-tagline{
        font-size:15px;
        line-height:1.6;
    }

    .hero-description{
        font-size:14px;
        line-height:1.7;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:center;
        gap:12px;
    }

    .hero-btn{
        width:220px;
        text-align:center;
    }

    .hero-overlay{
        background:rgba(4,18,34,0.70);
    }

    .about,
    .services,
    .properties,
    .projects,
    .why-us,
    .contact{
        padding:55px 20px;
    }

    .about h2,
    .services h2,
    .properties h2,
    .projects h2,
    .why-us h2,
    .contact h2{
        font-size:32px;
    }

    .about p{
        font-size:16px;
    }

    .service-card,
    .property-card,
    .project-card,
    .why-card{
        width:100%;
    }

    footer{
        padding:40px 25px 25px;
    }

    .footer-box{
        width:100%;
    }

    .whatsapp{
        right:15px;
        bottom:15px;

        padding:11px 16px;

        font-size:12px;
        border-radius:30px;
    }

    .property-page{
        padding:55px 20px;
    }

    .property-page-heading h1{
        font-size:32px;
    }

    .property-page-heading p{
        font-size:14px;
    }

    .property-list{
        grid-template-columns:1fr;
    }

    .listing-image{
        height:220px;
    }

    .filter-btn{
        padding:10px 17px;
        font-size:12px;
    }

    .project-detail{
        padding:55px 20px;
    }

    .project-main-image{
        width:100%;
        height:280px;
    }

    .project-detail h1{
        font-size:34px;
    }

    .project-detail p{
        font-size:16px;
    }

    .highlights{
        padding:25px;
    }
}
/* Property Image Gallery */

.property-gallery{
    max-width:1200px;
    margin:10px auto 15px;
}

.project-main-image{
    width:100%;
    height:520px;
    object-fit:cover;
    border-radius:16px;
    display:block;
}

.gallery-thumbnails{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:10px;
    margin-top:10px;
}

.gallery-thumbnails img{
    width:100%;
    height:80px;
    object-fit:cover;
    border-radius:10px;
    cursor:pointer;
    border:3px solid transparent;
    transition:0.3s ease;
}
.gallery-thumbnails img:hover{
    transform:translateY(-3px);
    border-color:#D4AF37;
}

.gallery-thumbnails img.active-thumbnail{
    border-color:#D4AF37;
}

@media(max-width:768px){

    .project-main-image{
        height:300px;
    }

    .gallery-thumbnails{
        grid-template-columns:repeat(3, 1fr);
    }

    .gallery-thumbnails img{
        height:85px;
    }

}

@media(max-width:480px){

    .project-main-image{
        height:240px;
        border-radius:10px;
    }

    .gallery-thumbnails{
        grid-template-columns:repeat(2, 1fr);
    }

}
/* PROPERTY INFORMATION SECTION */

.property-info-section{
    max-width:1200px;
    margin:40px auto;
    padding:0 20px;
}

.property-info-card{
    background:#ffffff;
    border-radius:18px;
    padding:40px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.property-title{
    text-align:center;
    margin-bottom:35px;
}

.property-title h1{
    color:#041222;
    font-size:40px;
    margin-bottom:10px;
}

.property-title p{
    color:#777;
    font-size:18px;
}

.property-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
}

.info-box{
    background:#fafafa;
    border-radius:15px;
    padding:25px;
    text-align:center;
    transition:.3s;
    border:1px solid #eee;
}

.info-box:hover{
    transform:translateY(-6px);
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.info-box span{
    font-size:34px;
    display:block;
    margin-bottom:15px;
}

.info-box h3{
    color:#B8860B;
    margin-bottom:8px;
}

.info-box p{
    color:#555;
    font-size:16px;
}

.property-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    margin-top:40px;
    flex-wrap:wrap;
}

.call-btn,
.whatsapp-btn{
    padding:15px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.call-btn{
    background:#041222;
    color:white;
}

.call-btn:hover{
    background:#0b2340;
}

.whatsapp-btn{
    background:#25D366;
    color:white;
}

.whatsapp-btn:hover{
    transform:scale(1.05);
}
.property-header{
    max-width:900px;
    margin:60px auto;
    text-align:center;
}

.property-location{
    font-size:20px;
    color:#555;
    margin:10px 0;
    font-weight:500;
}

.property-description{
    max-width:800px;
    margin:20px auto;
    font-size:18px;
    line-height:1.8;
    color:#666;
}
/* PROPERTY INFO GRID */

.property-info-grid{
    max-width:1000px;
    margin:40px auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.info-card{
    background:#ffffff;
    border:1px solid #e8e8e8;
    border-radius:18px;
    padding:25px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    transition:0.3s;
}

.info-card:hover{
    transform:translateY(-5px);
}

.info-card h4{
    color:#B8860B;
    margin-bottom:10px;
    font-size:18px;
}

.info-card p{
    color:#041222;
    margin:0;
    font-size:17px;
    font-weight:600;
}

@media(max-width:768px){

.property-info-grid{

grid-template-columns:1fr;

}

}
/* AMENITIES SECTION */

.amenities-section{
    max-width:1000px;
    margin:70px auto 120px;
    text-align:center;
}

.amenities-section h2{
    color:#B8860B;
    font-size:42px;
    margin-bottom:18px;
}

.amenities-intro{
    max-width:760px;
    margin:0 auto 55px;
    color:#666666;
    font-size:17px;
    line-height:1.8;
}

.amenities-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.amenity-card{
    background:#041222;
    color:#ffffff;
    padding:25px 15px;
    border-radius:15px;
    transition:0.3s;
}

.amenity-card:hover{
    transform:translateY(-5px);
    box-shadow:0 8px 20px rgba(0,0,0,0.18);
}

.amenity-card span{
    display:block;
    font-size:34px;
    margin-bottom:12px;
}

.amenity-card p{
    margin:0;
    font-size:16px;
    line-height:1.4;
}

@media(max-width:768px){

    .amenities-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:480px){

    .amenities-grid{
        grid-template-columns:1fr;
    }

}
/* LOCATION SECTION */

.location-section{
    max-width:1200px;
    margin:70px auto;
    padding:0 20px;
}

.location-section h2{
    text-align:center;
    color:#B8860B;
    margin-bottom:35px;
    font-size:34px;
}

.location-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
    align-items:stretch;
}

.location-card{
    background:#041222;
    color:#fff;
    padding:35px;
    border-radius:18px;
}

.location-card h3{
    color:#D4AF37;
    margin-bottom:20px;
}

.location-card ul{
    list-style:none;
    padding:0;
    margin:0;
}

.location-card li{
    margin:18px 0;
    font-size:17px;
}

.map-card{
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.map-card iframe{
    width:100%;
    height:100%;
    min-height:380px;
    border:0;
}

@media(max-width:768px){

.location-grid{
grid-template-columns:1fr;
}

}
/* CTA SECTION */

.cta-section{
    max-width:1100px;
    margin:80px auto;
    padding:60px 40px;
    text-align:center;
    background:linear-gradient(135deg,#041222,#0b2440);
    border-radius:20px;
    color:#fff;
}

.cta-section h2{
    color:#D4AF37;
    margin-bottom:20px;
    font-size:38px;
}

.cta-section p{
    max-width:700px;
    margin:0 auto 35px;
    line-height:1.8;
    font-size:18px;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.call-btn,
.whatsapp-btn,
.visit-btn{

    text-decoration:none;
    padding:15px 30px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.call-btn{
    background:#D4AF37;
    color:#041222;
}

.whatsapp-btn{
    background:#25D366;
    color:#fff;
}

.visit-btn{
    border:2px solid #D4AF37;
    color:#fff;
}

.call-btn:hover,
.whatsapp-btn:hover,
.visit-btn:hover{

    transform:translateY(-4px);
}
/* ENQUIRY SECTION */

.enquiry-section{

    max-width:1200px;
    margin:80px auto;
    padding:0 20px;

}

.enquiry-section h2{

    text-align:center;
    color:#B8860B;
    margin-bottom:40px;

}

.enquiry-container{

    display:grid;
    grid-template-columns:2fr 1fr;
    gap:35px;

}

.enquiry-form{

    background:#fff;
    padding:35px;
    border-radius:18px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);

}

.enquiry-form form{

    display:flex;
    flex-direction:column;
    gap:18px;

}

.enquiry-form input,
.enquiry-form textarea{

    padding:15px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:16px;

}

.enquiry-form input:focus,
.enquiry-form textarea:focus{

    outline:none;
    border-color:#B8860B;

}

.enquiry-form button{

    width:220px;
    margin:auto;
    padding:16px 25px;
    background:#B8860B;
    color:#fff;
    border:none;
    border-radius:50px;
    font-size:17px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;

}

.enquiry-form button:hover{

    background:#D4AF37;
    color:#041222;

}

.contact-card{

    background:#041222;
    color:#fff;
    padding:35px;
    border-radius:18px;

}

.contact-card h3{

    color:#D4AF37;
    margin-bottom:20px;

}

.contact-card{

    background:#041222;
    color:#fff;
    padding:35px;
    border-radius:18px;
    box-shadow:0 8px 25px rgba(0,0,0,.15);

}

.contact-card h3{

    color:#D4AF37;
    margin-bottom:25px;
    font-size:28px;
    line-height:1.4;

}

.contact-card p{

    margin:18px 0;
    line-height:1.8;
    word-break:break-word;
    display:flex;
    align-items:flex-start;
    gap:10px;

}

.contact-card hr{

    margin:30px 0;
    border:none;
    border-top:1px solid rgba(255,255,255,.2);

}

.contact-card ul{

    list-style:none;
    padding:0;
    margin:0;

}

.contact-card li{

    margin:15px 0;
    line-height:1.6;

}

@media (max-width:768px){

    .enquiry-container{

        grid-template-columns:1fr;
        gap:25px;

    }

    .enquiry-form,
    .contact-card{

        padding:25px;

    }

    .contact-card{

        text-align:left;

    }

    .contact-card h3{

        font-size:24px;

    }

    .contact-card p{

        font-size:15px;

    }

    .contact-card li{

        font-size:15px;

    }

    .enquiry-form input,
    .enquiry-form textarea{

        font-size:16px;

    }

    .enquiry-form button{

        width:100%;

    }

}
/* SIMILAR PROPERTIES */

.similar-properties{

    max-width:1200px;
    margin:80px auto;
    padding:0 20px;

}

.similar-properties h2{

    text-align:center;
    color:#B8860B;
    margin-bottom:40px;

}

.similar-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:30px;
}

.similar-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:0.3s ease;
}

.similar-card img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
}

.similar-content{
    padding:20px;
    text-align:center;
}

.similar-content a{
    display:inline-block;
    margin-top:15px;
    padding:10px 22px;
    background:#B8860B;
    color:#fff;
    text-decoration:none;
    border-radius:30px;
    transition:.3s;
}

.similar-content a:hover{
    background:#041222;
}

@media (max-width:992px){
    .similar-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media (max-width:768px){
    .similar-grid{
        grid-template-columns:1fr;
    }
}
/* =================================
   ABOUT PAGE
================================= */

.about-hero{
    min-height:70vh;
    background:
    linear-gradient(rgba(4,18,34,.72), rgba(4,18,34,.72)),
    url("images/about-hero.jpg") center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:120px 20px 70px;
}

.about-overlay{
    max-width:850px;
    color:#fff;
}

.about-overlay h1{
    font-size:52px;
    line-height:1.2;
    color:#D4AF37;
    margin-bottom:22px;
}

.about-overlay p{
    font-size:18px;
    line-height:1.8;
}

/* Our Story */

.our-story{
    padding:90px 8%;
    background:#fff;
}

.our-story .container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:60px;
}

.story-text h2{
    font-size:40px;
    color:#041222;
    margin-bottom:25px;
}

.story-text p{
    font-size:16px;
    line-height:1.9;
    color:#555;
    margin-bottom:18px;
}

.story-image img{
    width:100%;
    height:450px;
    object-fit:cover;
    display:block;
    border-radius:20px;
    box-shadow:0 12px 35px rgba(0,0,0,.15);
}

/* Vision */

.vision{
    padding:85px 20px;
    background:#041222;
    color:#fff;
    text-align:center;
}

.vision h2{
    color:#D4AF37;
    font-size:40px;
    margin-bottom:22px;
}

.vision p{
    max-width:900px;
    margin:auto;
    font-size:18px;
    line-height:1.8;
}

/* Why Choose Us */

.why-about{
    padding:90px 8%;
    background:#f7f7f7;
    text-align:center;
}

.why-about h2{
    font-size:40px;
    color:#041222;
    margin-bottom:45px;
}

.why-grid{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.why-box{
    background:#fff;
    padding:35px 25px;
    border-radius:16px;
    box-shadow:0 8px 24px rgba(0,0,0,.08);
    transition:.3s ease;
}

.why-box:hover{
    transform:translateY(-7px);
}

.why-box h3{
    color:#B8860B;
    font-size:19px;
    margin-bottom:14px;
}

.why-box p{
    color:#555;
    line-height:1.7;
}

/* Active Navigation Link */

.nav-links a.active{
    color:#D4AF37;
}

/* Responsive */

@media(max-width:992px){

    .about-overlay h1{
        font-size:42px;
    }

    .our-story .container{
        grid-template-columns:1fr;
    }

    .why-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .about-hero{
        min-height:60vh;
        padding-top:110px;
    }

    .about-overlay h1{
        font-size:34px;
    }

    .about-overlay p{
        font-size:16px;
    }

    .our-story{
        padding:65px 6%;
    }

    .story-text h2,
    .vision h2,
    .why-about h2{
        font-size:32px;
    }

    .story-image img{
        height:320px;
    }

    .why-grid{
        grid-template-columns:1fr;
    }

}
/* ==========================================
   CONTACT PAGE
========================================== */

.contact-hero{
    background:linear-gradient(rgba(4,18,34,.75),rgba(4,18,34,.75)),
    url("images/contact-hero.jpg") center/cover no-repeat;
    min-height:60vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:120px 20px 80px;
}

.contact-hero-content{
    max-width:850px;
    color:#fff;
}

.contact-hero-content h1{
    font-size:52px;
    color:#D4AF37;
    margin-bottom:20px;
}

.contact-hero-content p{
    font-size:18px;
    line-height:1.8;
}

/* Contact Cards */

.contact-info-section{
    padding:80px 8%;
    background:#fff;
}

.contact-info-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.contact-info-card{
    background:#fff;
    padding:35px 25px;
    text-align:center;
    border-radius:18px;
    box-shadow:0 8px 24px rgba(0,0,0,.08);
    transition:.3s;
}

.contact-info-card:hover{
    transform:translateY(-6px);
}

.contact-icon{
    font-size:42px;
    margin-bottom:15px;
}

.contact-info-card h3{
    color:#041222;
    margin-bottom:10px;
}

.contact-info-card p,
.contact-info-card a{
    color:#555;
    text-decoration:none;
}

/* Contact Form */

.contact-form-section{
    padding:90px 8%;
    background:#f8f8f8;
}

.contact-form-container{
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:50px;
    max-width:1200px;
    margin:auto;
}

.section-label{
    color:#B8860B;
    font-weight:600;
    letter-spacing:1px;
}

.contact-form-intro h2{
    font-size:42px;
    color:#041222;
    margin:15px 0;
}

.contact-form-intro p{
    color:#555;
    line-height:1.8;
    margin-bottom:30px;
}

.quick-contact-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.contact-whatsapp-btn,
.contact-call-btn{
    background:#B8860B;
    color:#fff;
    text-decoration:none;
    padding:14px 28px;
    border-radius:30px;
    transition:.3s;
}

.contact-whatsapp-btn:hover,
.contact-call-btn:hover{
    background:#041222;
}

/* Form */

.contact-enquiry-form{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.form-group{
    margin-bottom:20px;
}

.form-group label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
}

.form-group input,
.form-group select,
.form-group textarea{
    width:100%;
    padding:14px;
    border:1px solid #ddd;
    border-radius:10px;
    font-family:Poppins,sans-serif;
}

.contact-submit-btn{
    width:100%;
    padding:16px;
    background:#B8860B;
    color:#fff;
    border:none;
    border-radius:30px;
    font-size:17px;
    cursor:pointer;
    transition:.3s;
}

.contact-submit-btn:hover{
    background:#041222;
}

/* Map */

.contact-map-section{
    padding:80px 8%;
    background:#fff;
}

.contact-map-heading{
    text-align:center;
    margin-bottom:40px;
}

.contact-map-heading h2{
    color:#041222;
    font-size:40px;
    margin:15px 0;
}

.contact-map{
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 12px 30px rgba(0,0,0,.12);
}

/* Responsive */

@media(max-width:992px){

.contact-info-grid{
grid-template-columns:repeat(2,1fr);
}

.contact-form-container{
grid-template-columns:1fr;
}

}

@media(max-width:768px){

.contact-info-grid{
grid-template-columns:1fr;
}

.form-row{
grid-template-columns:1fr;
}

.contact-hero-content h1{
font-size:36px;
}

.contact-form-intro h2,
.contact-map-heading h2{
font-size:32px;
}

}
/* FOOTER */

.site-footer{
    background:#020A12;
    color:#ffffff;
    padding:70px 20px 0;
    font-family:'Poppins', sans-serif;
}

.footer-container{
max-width:1200px;
margin:0 auto;
display:grid;
grid-template-columns:2fr 1fr 1fr 1.2fr;
gap:60px;
align-items:flex-start;

}

.footer-column h3{
    color:#D4AF37;
    font-size:20px;
    margin-bottom:20px;
}

.footer-brand h3{
    margin-top:15px;
}

.footer-logo{
    width:150px;
    height:auto;
    display:block;
}

.footer-tagline{
    color:#D4AF37;
    font-weight:600;
    margin-bottom:15px;
}

.footer-column p,
.footer-column li{
    color:#d5d5d5;
    font-size:14px;
    line-height:1.8;
}

.footer-column ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-column li{
    margin-bottom:8px;
}

.footer-column a{
    color:#d5d5d5;
    text-decoration:none;
    transition:0.3s ease;
}

.footer-column a:hover{
    color:#D4AF37;
}

.footer-whatsapp{
    display:inline-block;
    margin-top:12px;
    padding:11px 20px;
    background:#B8860B;
    color:#ffffff !important;
    border-radius:4px;
    font-weight:600;
}

.footer-whatsapp:hover{
    background:#D4AF37;
    transform:translateY(-2px);
}

.footer-bottom{
    max-width:1200px;
    margin:50px auto 0;
    padding:22px 0;
    border-top:1px solid rgba(255,255,255,0.15);
    display:flex;
    justify-content:space-between;
    gap:20px;
}

.footer-bottom p{
    margin:0;
    color:#bdbdbd;
    font-size:13px;
}

@media(max-width:992px){

    .footer-container{
        grid-template-columns:repeat(2, 1fr);
    }

}

@media(max-width:600px){

    .site-footer{
        padding-top:55px;
        text-align:center;
    }

    .footer-container{
        grid-template-columns:1fr;
        text-align:center;
    }

    .footer-column,
    .footer-brand{
        text-align:center;
    }

    .footer-logo{
        margin:0 auto;
    }

    .footer-bottom{
        flex-direction:column;
        text-align:center;
    }
}

/* FORCE CONSISTENT FOOTER ALIGNMENT */

.site-footer{
    text-align:left;
}

.footer-container{
    text-align:left;
}

.footer-column,
.footer-brand{
    text-align:left;
}

.footer-logo{
    margin:0;
}
/* BUILDERS & CONSTRUCTION DIVISION */

.construction-division{
    background:#f7f7f7;
    padding:85px 20px;
    text-align:center;
}

.construction-division .container{
    max-width:1200px;
    margin:auto;
}

.construction-division h2{
    color:#041222;
    font-size:36px;
    margin-bottom:15px;
}

.construction-intro{
    max-width:900px;
    margin:0 auto 40px;
    color:#555555;
    font-size:16px;
    line-height:1.8;
}

.construction-grid{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:28px;
}

.construction-card{
    background:#ffffff;
    padding:32px 28px;
    border-radius:8px;
    border-top:4px solid #B8860B;
    box-shadow:0 10px 28px rgba(0,0,0,0.10);
    text-align:left;
    transition:0.3s ease;
}

.construction-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,0,0,0.16);
}

.construction-card h3{
    color:#B8860B;
    font-size:20px;
    margin-bottom:14px;
}

.construction-card p{
    color:#555555;
    font-size:15px;
    line-height:1.8;
    margin:0;
}

@media(max-width:768px){

    .construction-division{
        padding:65px 18px;
    }

    .construction-division h2{
        font-size:30px;
    }

    .construction-grid{
        grid-template-columns:1fr;
    }

    .construction-card{
        text-align:center;
    }
}
/* LEADERSHIP TEAM SECTION */

.leadership{
    padding:85px 20px;
    background:#041222;
    text-align:center;
}

.leadership .container{
    max-width:1200px;
    margin:0 auto;
}

.leadership h2{
    color:#ffffff;
    font-size:42px;
    margin:0 0 8px;
}

.leadership-subtitle{
    color:#D4AF37;
    font-size:19px;
    margin:0 0 45px;
}

.leadership-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:28px;
    align-items:stretch;
}

.leader-card{
    background:#ffffff;
    border-radius:10px;
    padding:35px 30px;
    border-top:5px solid #B8860B;
    box-shadow:0 12px 30px rgba(0,0,0,0.25);
    text-align:center;
    transition:transform 0.3s ease;

    display:flex;
    flex-direction:column;
    align-items:center;
}

.leader-card:hover{
    transform:translateY(-6px);
}

.leader-image{
    width:200px;
    height:200px;
    border-radius:50%;
    border:4px solid #D4AF37;
    overflow:hidden;
    margin-bottom:22px;
    flex-shrink:0;
}

.leader-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center top;
    display:block;
}

.leader-image img.coo-photo{
    transform:scale(1.08);
    object-position:center 12%;
}

.leader-card h3{
    color:#041222;
    font-size:30px;
    margin:0 0 6px;
}

.leader-card h4{
    color:#B8860B;
    font-size:19px;
    font-weight:600;
    margin:0 0 20px;
}

.leader-card p{
    color:#555555;
    font-size:17px;
    line-height:1.8;
    margin:0;
}

.leadership-quote{
    max-width:900px;
    margin:45px auto 0;
    padding:25px 30px;
    border-left:4px solid #D4AF37;
    background:rgba(255,255,255,0.06);
}

.leadership-quote p{
    color:#ffffff;
    font-size:20px;
    font-style:italic;
    line-height:1.8;
    margin:0;
}

@media(max-width:850px){

    .leadership-grid{
        grid-template-columns:1fr;
    }

    .leadership h2{
        font-size:31px;
    }

    .leader-card{
        padding:30px 22px;
    }

    .leader-image{
        width:180px;
        height:180px;
    }
}

/* INDIA & UAE PRESENCE */

.global-presence{
    padding:90px 20px;
    background:#f7f7f7;
    text-align:center;
}

.global-presence .container{
    max-width:1200px;
    margin:0 auto;
}

.global-presence h2{
    color:#041222;
    font-size:38px;
    margin-bottom:12px;
}

.presence-intro{
    max-width:850px;
    margin:0 auto 50px;
    color:#555555;
    font-size:16px;
    line-height:1.8;
}

.presence-grid{
    display:grid;
    grid-template-columns:1fr 220px 1fr;
    gap:30px;
    align-items:center;
}

.presence-card{
    background:#ffffff;
    border-radius:10px;
    padding:38px 30px;
    border-top:5px solid #B8860B;
    box-shadow:0 12px 30px rgba(0,0,0,0.10);
    text-align:left;
    transition:0.3s ease;
}

.presence-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 38px rgba(0,0,0,0.16);
}

.presence-icon{
    font-size:46px;
    text-align:center;
    margin-bottom:15px;
}

.presence-card h3{
    color:#041222;
    font-size:26px;
    text-align:center;
    margin-bottom:5px;
}

.presence-card h4{
    color:#B8860B;
    text-align:center;
    font-size:17px;
    margin-bottom:22px;
}

.presence-card ul{
    list-style:none;
    padding:0;
    margin:0;
}

.presence-card li{
    color:#555555;
    font-size:15px;
    line-height:1.7;
    padding:9px 0 9px 24px;
    border-bottom:1px solid #eeeeee;
    position:relative;
}

.presence-card li:last-child{
    border-bottom:none;
}

.presence-card li::before{
    content:"✓";
    position:absolute;
    left:0;
    color:#B8860B;
    font-weight:700;
}

.presence-bridge{
    text-align:center;
}

.presence-bridge span{
    color:#041222;
    font-size:15px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:2px;
}

.bridge-line{
    width:100%;
    height:3px;
    background:#D4AF37;
    margin:18px 0;
    position:relative;
}

.bridge-line::before,
.bridge-line::after{
    content:"";
    width:12px;
    height:12px;
    background:#D4AF37;
    border-radius:50%;
    position:absolute;
    top:50%;
    transform:translateY(-50%);
}

.bridge-line::before{
    left:0;
}

.bridge-line::after{
    right:0;
}

.presence-bridge p{
    color:#B8860B;
    font-size:22px;
    font-weight:600;
    margin:0;
}

.presence-closing{
    max-width:900px;
    margin:45px auto 0;
    color:#555555;
    font-size:16px;
    line-height:1.8;
}

@media(max-width:900px){

    .presence-grid{
        grid-template-columns:1fr;
    }

    .presence-bridge{
        max-width:300px;
        width:100%;
        margin:0 auto;
    }

    .global-presence h2{
        font-size:31px;
    }
}

@media(max-width:600px){

    .global-presence{
        padding:65px 18px;
    }

    .presence-card{
        padding:30px 22px;
    }
}
/* OUR JOURNEY */

.journey{
    background:#041222;
    padding:90px 20px;
}

.journey .container{
    max-width:1100px;
    margin:auto;
}

.journey h2{
    text-align:center;
    color:#ffffff;
    font-size:38px;
    margin-bottom:12px;
}

.journey-intro{
    max-width:850px;
    margin:0 auto 60px;
    text-align:center;
    color:#d8d8d8;
    line-height:1.8;
}

.timeline{
    position:relative;
    margin:0 auto;
    padding-left:40px;
    border-left:4px solid #D4AF37;
}

.timeline-item{
    position:relative;
    margin-bottom:50px;
}

.timeline-item:last-child{
    margin-bottom:0;
}

.timeline-year{
    position:absolute;
    left:-88px;
    top:0;
    width:70px;
    height:70px;
    background:#B8860B;
    color:#ffffff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-weight:700;
    text-align:center;
}

.timeline-content{
    background:#ffffff;
    border-radius:8px;
    padding:28px;
    box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

.timeline-content h3{
    color:#041222;
    margin-bottom:10px;
}

.timeline-content p{
    color:#555555;
    line-height:1.8;
}

@media(max-width:768px){

.timeline{
    padding-left:25px;
}

.timeline-year{

    position:relative;
    left:0;
    margin-bottom:20px;
}

.timeline-item{
    margin-bottom:35px;
}

}
/* ABOUT CTA */

.about-cta{

    background:#B8860B;
    padding:90px 20px;
    text-align:center;

}

.about-cta h2{

    color:#ffffff;
    font-size:42px;
    margin-bottom:18px;

}

.about-cta p{

    max-width:820px;
    margin:0 auto 35px;
    color:#ffffff;
    line-height:1.8;
    font-size:17px;

}

.about-cta .cta-buttons{

    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;

}
/* PROPERTY REQUIREMENT */

.property-requirement{

    padding:90px 20px;

    background:#041222;

    text-align:center;

}

.property-requirement .container{

    max-width:1200px;

    margin:auto;

}

.property-requirement h2{

    color:#ffffff;

    font-size:40px;

    margin-bottom:15px;

}

.requirement-intro{

    max-width:820px;

    margin:0 auto 45px;

    color:#dddddd;

    line-height:1.8;

    font-size:17px;

}

.requirement-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;

    margin-bottom:45px;

}

.requirement-item{

    background:#ffffff;

    padding:22px;

    border-radius:8px;

    color:#041222;

    font-weight:600;

    box-shadow:0 10px 25px rgba(0,0,0,0.12);

    transition:.3s;

}

.requirement-item:hover{

    transform:translateY(-5px);

    border-top:4px solid #B8860B;

}

.requirement-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

@media(max-width:900px){

.requirement-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:600px){

.requirement-grid{

grid-template-columns:1fr;

}

}
/* WHY CHOOSE CITIHOMEZ */

.property-why{
    padding:90px 20px;
    background:#f8f8f8;
    text-align:center;
}

.property-why .container{
    max-width:1200px;
    margin:auto;
}

.property-why h2{
    color:#041222;
    font-size:40px;
    margin-bottom:15px;
}

.why-intro{
    max-width:800px;
    margin:0 auto 50px;
    color:#666;
    font-size:17px;
    line-height:1.8;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.why-card{
    background:#fff;
    padding:30px;
    border-radius:10px;
    box-shadow:0 20px 50px rgba(0,0,0,.18);
    border-top:4px solid #B8860B;
    transition:.3s;
}

.why-card:hover{
    transform:translateY(-6px);
}

.why-card h3{
    color:#041222;
    margin-bottom:15px;
    font-size:20px;
}

.why-card p{
    color:#666;
    line-height:1.8;
}

@media(max-width:900px){

    .why-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:600px){

    .why-grid{
        grid-template-columns:1fr;
    }

}
/* =========================================
   PRADOS HERO SECTION
========================================= */

.prados-hero{
    height:85vh;
    background:url("images/prados.jpg") center center/cover no-repeat;
    position:relative;
}

.prados-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;

    background:rgba(4,18,34,0.70);

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;
    padding:20px;
}

.project-label{
    color:#D4AF37;
    font-size:16px;
    letter-spacing:3px;
    margin-bottom:20px;
    font-weight:600;
}

.prados-overlay h1{
    color:#ffffff;
    font-size:82px;
    margin-bottom:10px;
}

.prados-overlay h2{
    color:#D4AF37;
    font-size:36px;
    margin-bottom:25px;
}

.prados-overlay p{
    max-width:800px;
    color:#ffffff;
    font-size:22px;
    line-height:1.8;
    margin-bottom:40px;
}

/* HERO BUTTONS */

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.gold-btn{
    background:#D4AF37;
    color:#041222;
    padding:16px 36px;
    border-radius:6px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.gold-btn:hover{
    background:#B8860B;
    color:#ffffff;
}

.outline-btn{
    background:transparent;
    color:#ffffff;
    border:2px solid #ffffff;
    padding:16px 36px;
    border-radius:6px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.outline-btn:hover{
    background:#ffffff;
    color:#041222;
}

@media(max-width:768px){

.prados-overlay h1{
font-size:48px;
}

.prados-overlay h2{
font-size:26px;
}

.prados-overlay p{
font-size:18px;
}

}

/* PROJECT AT A GLANCE */

.project-glance{
    padding:90px 20px;
    background:#041222;
    text-align:center;
}

.project-glance .container{
    max-width:1200px;
    margin:auto;
}

.project-glance h2{
    color:#ffffff;
    font-size:42px;
    margin-bottom:15px;
}

.glance-intro{
    max-width:780px;
    margin:0 auto 50px;
    color:#dddddd;
    font-size:17px;
    line-height:1.8;
}

.glance-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:25px;
}

.glance-card{
    background:#ffffff;
    border-radius:12px;
    padding:38px 20px;
    box-shadow:0 16px 35px rgba(0,0,0,0.16);
    border-top:4px solid #D4AF37;
    transition:0.3s ease;
}

.glance-card:hover{
    transform:translateY(-7px);
}

.glance-icon{
    display:block;
    font-size:42px;
    margin-bottom:15px;
}

.glance-card h3{
    color:#B8860B;
    font-size:34px;
    margin:0 0 8px;
}

.glance-card p{
    color:#041222;
    font-size:17px;
    font-weight:600;
    margin:0;
}

@media(max-width:900px){

    .glance-grid{
        grid-template-columns:repeat(2, 1fr);
    }

}

@media(max-width:600px){

    .project-glance{
        padding:65px 18px;
    }

    .project-glance h2{
        font-size:32px;
    }

    .glance-grid{
        grid-template-columns:1fr;
    }

}

/* LOCATION ADVANTAGES */

.location-advantages{

    padding:90px 20px;

    background:#f8f8f8;

    text-align:center;

}

.location-advantages .container{

    max-width:1200px;

    margin:auto;

}

.location-advantages h2{

    color:#041222;

    font-size:42px;

    margin-bottom:15px;

}

.location-intro{

    max-width:850px;

    margin:0 auto 50px;

    color:#666;

    font-size:17px;

    line-height:1.8;

}

.location-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

}

.location-card{

    background:#ffffff;

    padding:35px 25px;

    border-radius:10px;

    border-top:4px solid #D4AF37;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.3s;

}

.location-card:hover{

    transform:translateY(-8px);

}

.location-card h3{

    color:#041222;

    font-size:20px;

    margin-bottom:15px;

}

.location-card p{

    color:#666;

    line-height:1.7;

}

@media(max-width:900px){

.location-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:600px){

.location-grid{

grid-template-columns:1fr;

}

}

/* LOCATION SECTION */

.location-section{

    padding:100px 20px;

    background:#ffffff;

    text-align:center;

}

.location-section .container{

    max-width:1200px;

    margin:auto;

}

.location-section h2{

    color:#041222;

    font-size:42px;

    margin-bottom:18px;

}

.location-intro{

    max-width:800px;

    margin:0 auto 60px;

    color:#666;

    font-size:17px;

    line-height:1.8;

}

.location-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

}

.location-card{

    background:#fff;

    border-top:4px solid #D4AF37;

    border-radius:12px;

    padding:35px 25px;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

    transition:.3s;

}

.location-card:hover{

    transform:translateY(-8px);

}

.location-card span{

    font-size:40px;

}

.location-card h3{

    margin:18px 0 12px;

    color:#041222;

    font-size:20px;

}

.location-card p{

    color:#666;

    line-height:1.7;

}

@media(max-width:900px){

.location-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:600px){

.location-grid{

grid-template-columns:1fr;

}

}

/* WHY INVEST */

.why-invest{
    padding:100px 20px;
    background:#041222;
    text-align:center;
}

.why-invest .container{
    max-width:1200px;
    margin:auto;
}

.why-invest h2{
    color:#ffffff;
    font-size:42px;
    margin-bottom:18px;
}

.invest-intro{
    max-width:820px;
    margin:0 auto 60px;
    color:#dddddd;
    font-size:17px;
    line-height:1.8;
}

.invest-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.invest-card{
    background:#ffffff;
    padding:35px;
    border-radius:12px;
    border-top:4px solid #D4AF37;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
    text-align:left;
    transition:.3s ease;
}

.invest-card:hover{
    transform:translateY(-6px);
}

.invest-card h3{
    color:#041222;
    margin-bottom:15px;
    font-size:22px;
}

.invest-card p{
    color:#666666;
    line-height:1.8;
}

@media(max-width:768px){
    .invest-grid{
        grid-template-columns:1fr;
    }
}

/* SITE VISIT */

.site-visit{

    padding:100px 20px;

    background:#041222;

}

.site-visit .container{

    max-width:1200px;

    margin:auto;

}

.site-visit h2{

    color:#ffffff;

    text-align:center;

    font-size:42px;

    margin-bottom:18px;

}

.visit-intro{

    color:#dddddd;

    text-align:center;

    max-width:820px;

    margin:0 auto 60px;

    line-height:1.8;

    font-size:17px;

}

.visit-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:50px;

    align-items:start;

}

.visit-benefits{

    color:#ffffff;

}

.visit-benefits h3{

    color:#D4AF37;

    margin-bottom:25px;

    font-size:28px;

}

.visit-benefits ul{

    list-style:none;

    padding:0;

}

.visit-benefits li{

    margin-bottom:18px;

    font-size:18px;

}

.visit-form{

    background:#ffffff;

    padding:35px;

    border-radius:12px;

    box-shadow:0 18px 40px rgba(0,0,0,.20);

}

.visit-form input,
.visit-form select,
.visit-form textarea{

    width:100%;

    padding:15px;

    margin-bottom:18px;

    border:1px solid #dddddd;

    border-radius:6px;

    font-family:Poppins,sans-serif;

}

.visit-form button{

    width:100%;

    padding:16px;

    background:#D4AF37;

    color:#041222;

    border:none;

    border-radius:6px;

    font-size:17px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}

.visit-form button:hover{

    background:#B8860B;

    color:#ffffff;

}

@media(max-width:900px){

.visit-container{

grid-template-columns:1fr;

}

}

/* PROJECT GALLERY */

.gallery-section{

    padding:100px 20px;

    background:#ffffff;

    text-align:center;

}

.gallery-section .container{

    max-width:1200px;

    margin:auto;

}

.gallery-section h2{

    color:#041222;

    font-size:42px;

    margin-bottom:18px;

}

.gallery-intro{

    max-width:820px;

    margin:0 auto 60px;

    color:#666666;

    line-height:1.8;

    font-size:17px;

}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:20px;

}

.gallery-grid img{

    width:100%;

    height:260px;

    object-fit:cover;

    border-radius:12px;

    box-shadow:0 15px 35px rgba(0,0,0,.10);

    transition:.35s ease;

}

.gallery-grid img:hover{

    transform:scale(1.03);

}

@media(max-width:900px){

.gallery-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:600px){

.gallery-grid{

grid-template-columns:1fr;

}

}

/* FINAL CTA */

.final-cta{

    padding:100px 20px;

    background:linear-gradient(rgba(4,18,34,.90),
                               rgba(4,18,34,.90)),
               url("images/prados.jpeg");

    background-size:cover;

    background-position:center;

    text-align:center;

}

.final-cta h2{

    color:#ffffff;

    font-size:48px;

    margin-bottom:20px;

}

.final-cta p{

    color:#dddddd;

    max-width:800px;

    margin:0 auto 40px;

    font-size:18px;

    line-height:1.9;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

/* SITE VISIT */

.site-visit-section{

    padding:110px 20px;

    background:#041222;

    scroll-margin-top:100px;

}

.site-visit-section .container{

    max-width:1200px;

    margin:auto;

}

.site-visit-section h2{

    color:#ffffff;

    font-size:42px;

    text-align:center;

    margin-bottom:15px;

}

.site-visit-description{

    max-width:760px;

    margin:0 auto 60px;

    color:#d5d5d5;

    text-align:center;

    line-height:1.8;

    font-size:17px;

}

.site-visit-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:50px;

}

.visit-information{

    color:#ffffff;

}

.visit-information h3{

    color:#D4AF37;

    margin-bottom:25px;

    font-size:28px;

}

.visit-information ul{

    list-style:none;

    padding:0;

}

.visit-information li{

    margin-bottom:18px;

    font-size:18px;

}

.site-visit-form{

    background:#ffffff;

    padding:35px;

    border-radius:12px;

    box-shadow:0 15px 35px rgba(0,0,0,.20);

}

.site-visit-form input,
.site-visit-form textarea{

    width:100%;

    padding:15px;

    margin-bottom:18px;

    border:1px solid #ddd;

    border-radius:6px;

    font-family:'Poppins',sans-serif;

}

.site-visit-form button{

    width:100%;

    padding:16px;

    background:#D4AF37;

    color:#041222;

    border:none;

    border-radius:6px;

    font-size:17px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}

.site-visit-form button:hover{

    background:#B8860B;

    color:#ffffff;

}

@media(max-width:900px){

.site-visit-grid{

grid-template-columns:1fr;

}

}
.footer-bottom{
    padding-right:170px;
}

@media(max-width:600px){

    .footer-bottom{
        padding-right:0;
    }

}
/* MOBILE WHATSAPP POSITION FIX */

@media(max-width:600px){

    .whatsapp,
    .whatsapp-float{
        position:fixed;
        right:16px;
        bottom:18px;
        z-index:9999;
    }

    .social-links{
        padding-bottom:100px;
        flex-wrap:wrap;
        gap:22px;
    }

    .footer-bottom{
        padding-bottom:90px;
    }
}
/* LOCATION MOBILE TEXT FIX */

.location-section,
.location-advantages{
    background:#ffffff;
}

.location-section h2,
.location-advantages h2{
    color:#041222 !important;
}

.location-intro,
.location-section p,
.location-advantages p{
    color:#555555 !important;
}

@media(max-width:600px){

    .location-section,
    .location-advantages{
        padding:65px 20px;
    }

    .location-section h2,
    .location-advantages h2{
        font-size:32px;
        line-height:1.3;
    }
}
@media(max-width:768px){

    .nav-links{
        position:absolute;
        top:70px;
        left:0;
        width:100%;
        background:#041222;
        flex-direction:column;
        align-items:center;
        justify-content:center;
        gap:0;
        padding:20px 0;
        display:none;
        z-index:10000;
    }

    .nav-links.active{
        display:flex;
    }

    .nav-links li{
        width:100%;
        text-align:center;
        margin:0;
    }

    .nav-links li a{
        display:block;
        width:100%;
        padding:16px 20px;
        text-align:center;
    }
}
/* FINAL MOBILE MENU ALIGNMENT FIX */

@media(max-width:768px){

    .nav-links{
        position:absolute;
        top:70px;
        left:0;
        width:100%;
        background:#041222;
        display:none;
        flex-direction:column;
        align-items:stretch;
        justify-content:flex-start;
        padding:20px 0;
        margin:0;
        z-index:10000;
    }

    .nav-links.active{
        display:flex;
    }

    .nav-links li{
        width:100%;
        margin:0;
        padding:0;
        list-style:none;
        text-align:center;
    }

    .nav-links li a{
        display:block;
        width:100%;
        padding:16px 0;
        margin:0;
        text-align:center;
        box-sizing:border-box;
    }

    .nav-links li:last-child,
    .nav-links li:last-child a{
        text-align:center;
        margin:0;
    }
}/* =========================================
   WHY CHOOSE CITIHOMEZ - FINAL DESIGN
========================================= */

.why-us{
    padding:90px 20px;
    background:#f8f9fb;
    text-align:center;
}

.why-us > h2{
    color:#041222;
    font-size:42px;
    margin:0 0 15px;
}

.why-us .section-label{
    display:block;
    color:#B8860B;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
    margin-bottom:12px;
}

.why-subtitle{
    max-width:800px;
    margin:0 auto 50px;
    color:#666666;
    font-size:17px;
    line-height:1.8;
}

.why-container{
    max-width:1100px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:30px;
    align-items:stretch;
}

.why-card{
    width:auto;
    min-height:250px;
    background:#ffffff;
    padding:32px 26px;
    border-radius:10px;
    border-top:5px solid #D4AF37;
    box-shadow:0 12px 30px rgba(0,0,0,0.08);
    text-align:left;
    transition:0.3s ease;
    box-sizing:border-box;
}

.why-card:hover{
    transform:translateY(-7px);
    box-shadow:0 18px 38px rgba(0,0,0,0.14);
}

.why-card h3{
    color:#041222;
    font-size:20px;
    margin:0 0 15px;
    line-height:1.4;
}

.why-card p{
    color:#666666;
    font-size:15px;
    line-height:1.8;
    margin:0;
}

@media(max-width:992px){

    .why-container{
        grid-template-columns:repeat(2, 1fr);
    }
}

@media(max-width:600px){

    .why-us{
        padding:65px 18px;
    }

    .why-us > h2{
        font-size:32px;
        line-height:1.3;
    }

    .why-subtitle{
        font-size:15px;
        margin-bottom:35px;
    }

    .why-container{
        grid-template-columns:1fr;
        gap:22px;
    }

    .why-card{
        min-height:auto;
        padding:28px 22px;
    }
}
/* WHY CHOOSE CITIHOMEZ */

.why-choose{
    padding:90px 20px;
    background:#f8f9fb;
    text-align:center;
}

.why-choose .container{
    max-width:1200px;
    margin:auto;
}

.section-label{
    display:block;
    color:#B8860B;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
    margin-bottom:10px;
}

.why-choose h2{
    color:#041222;
    font-size:42px;
    margin-bottom:20px;
}

.why-intro{
    max-width:760px;
    margin:0 auto 55px;
    color:#666;
    line-height:1.8;
    font-size:17px;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.why-card{
    background:#fff;
    border-top:5px solid #D4AF37;
    border-radius:12px;
    padding:35px 28px;
    text-align:left;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.why-card:hover{
    transform:translateY(-8px);
}

.why-icon{
    font-size:30px;
    margin-bottom:15px;
}

.why-card h3{
    color:#041222;
    margin-bottom:15px;
}

.why-card p{
    color:#666;
    line-height:1.8;
}

@media(max-width:992px){

    .why-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .why-grid{
        grid-template-columns:1fr;
    }

}
/* WHY CHOOSE PROFESSIONAL ICONS */

.why-icon{
    width:58px;
    height:58px;
    margin-bottom:20px;
    border-radius:50%;
    background:rgba(212,175,55,0.12);
    display:flex;
    justify-content:center;
    align-items:center;
}

.why-icon i{
    color:#B8860B;
    font-size:25px;
}

.why-card:hover .why-icon{
    background:#B8860B;
}

.why-card:hover .why-icon i{
    color:#ffffff;
}
/* SERVICES PAGE */

.services-page-hero{
    min-height:70vh;
    background:
        linear-gradient(rgba(4,18,34,0.78), rgba(4,18,34,0.78)),
        url("images/residential.jpeg") center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:100px 20px 60px;
}

.services-page-overlay{
    max-width:900px;
}

.services-page-overlay h1{
    color:#ffffff;
    font-size:54px;
    line-height:1.2;
    margin:15px 0 22px;
}

.services-page-overlay p{
    color:#eeeeee;
    max-width:820px;
    margin:0 auto 35px;
    font-size:18px;
    line-height:1.8;
}

.services-overview{
    padding:90px 20px;
    background:#f8f9fb;
    text-align:center;
}

.services-overview .container{
    max-width:1200px;
    margin:auto;
}

.services-overview h2{
    color:#041222;
    font-size:42px;
    margin-bottom:15px;
}

.services-overview-intro{
    max-width:820px;
    margin:0 auto 55px;
    color:#666666;
    font-size:17px;
    line-height:1.8;
}

.services-page-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:25px;
}

.service-detail-card{
    background:#ffffff;
    padding:32px 25px;
    border-radius:12px;
    border-top:5px solid #D4AF37;
    box-shadow:0 12px 30px rgba(0,0,0,0.08);
    text-align:left;
    transition:0.3s ease;
}

.service-detail-card:hover{
    transform:translateY(-7px);
    box-shadow:0 18px 38px rgba(0,0,0,0.14);
}

.service-detail-card h3{
    color:#041222;
    font-size:21px;
    margin-bottom:15px;
}

.service-detail-card p{
    color:#666666;
    font-size:15px;
    line-height:1.8;
    margin-bottom:22px;
}

.service-detail-card a{
    color:#B8860B;
    font-weight:600;
    text-decoration:none;
}

.service-detail-card a:hover{
    color:#041222;
}

@media(max-width:1050px){

    .services-page-grid{
        grid-template-columns:repeat(2, 1fr);
    }

}

@media(max-width:650px){

    .services-page-hero{
        min-height:60vh;
        padding-top:110px;
    }

    .services-page-overlay h1{
        font-size:36px;
    }

    .services-page-overlay p{
        font-size:16px;
    }

    .services-overview{
        padding:65px 18px;
    }

    .services-overview h2{
        font-size:32px;
    }

    .services-page-grid{
        grid-template-columns:1fr;
    }

}
/* =======================================
PROJECTS HERO
======================================= */

.projects-hero{

min-height:80vh;

background:
linear-gradient(rgba(4,18,34,.75),
rgba(4,18,34,.75)),
url("images/projects-banner.jpg")
center/cover no-repeat;

display:flex;

align-items:center;

justify-content:center;

text-align:center;

padding:100px 20px;

}

.projects-overlay{

max-width:900px;

}

.projects-overlay h1{

font-size:62px;

color:#ffffff;

margin:20px 0;

line-height:1.15;

}

.projects-overlay p{

font-size:18px;

line-height:1.9;

color:#ededed;

margin-bottom:40px;

}

@media(max-width:768px){

.projects-hero{

min-height:65vh;

padding-top:120px;

}

.projects-overlay h1{

font-size:38px;

}

.projects-overlay p{

font-size:16px;

}

}
/* FEATURED PROJECTS */

.featured-projects{
    padding:90px 20px;
    background:#f8f9fb;
    text-align:center;
}
.projects-intro{
    max-width:800px;
    margin:20px auto 55px;
    text-align:center;
    color:#666;
    line-height:1.8;
}

.projects-grid{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

.project-showcase{
    background:#ffffff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.35s;
}

.project-showcase:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.14);
}

.project-showcase img{
    width:100%;
    height:300px;
    object-fit:cover;
}

.project-content{
    padding:35px;
}

.project-content h3{
    font-size:26px;
    font-weight:700;
    color:#041222;
    margin-bottom:15px;
}

.project-status{

    display:inline-block;

    padding:8px 18px;

    border-radius:25px;

    font-size:12px;

    font-weight:700;

    letter-spacing:1px;

    margin:15px 0 20px;

}

.completed{
    background:#D4AF37;
    color:#041222;
}

.upcoming{
    background:#041222;
    color:#ffffff;
}

.project-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:25px;
}

@media(max-width:768px){

    .projects-grid{
        grid-template-columns:1fr;
    }

}
/* ==========================================
   FEATURED PROJECTS HEADING
========================================== */

.featured-projects{

    padding:100px 20px;

    background:#f8f9fb;

    text-align:center;

}

.featured-projects .container{

    max-width:1200px;

    margin:auto;

}

.featured-projects .section-label{

    display:block;

    color:#B8860B;

    font-size:15px;

    font-weight:700;

    letter-spacing:3px;

    margin-bottom:15px;

}

.featured-projects h2{

    font-size:46px;

    font-weight:700;

    color:#041222;

    margin-bottom:25px;

}

.projects-intro{

    max-width:850px;

    margin:0 auto 60px;

    font-size:19px;

    font-weight:500;

    color:#555;

    line-height:1.8;

}
/* ==========================================
   PROJECT LAYOUT
========================================== */

.project-featured{

    grid-column:span 2;

}

.project-featured img{

    height:380px;

}

.project-wide{

    grid-column:span 2;

}

@media(max-width:768px){

    .project-featured,
    .project-wide{

        grid-column:span 1;

    }

    .project-featured img{

        height:260px;

    }

}
.flagship{
    display:inline-block;
    background:linear-gradient(135deg,#D4AF37,#B8860B);
    color:#041222;
    font-weight:700;
    padding:8px 18px;
    border-radius:30px;
    letter-spacing:1px;
    font-size:12px;
    text-transform:uppercase;
}
/* FINAL PROJECTS GRID FIX */

.projects-grid{
    max-width:1100px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:30px;
    align-items:stretch;
}

.project-showcase,
.project-featured,
.project-wide{
    grid-column:auto !important;
    width:100%;
    min-width:0;
}

.project-showcase{
    display:flex;
    flex-direction:column;
    background:#ffffff;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 12px 30px rgba(0,0,0,0.10);
}

.project-showcase img,
.project-featured img{
    width:100%;
    height:260px;
    object-fit:cover;
    display:block;
}

.project-content{
    flex:1;
    padding:28px;
}

@media(max-width:768px){

    .projects-grid{
        grid-template-columns:1fr;
    }

    .project-showcase img,
    .project-featured img{
        height:230px;
    }
}
/* 404 PAGE */

.error-page{
    min-height:100vh;
    background:#041222;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:30px 20px;
}

.error-content{
    max-width:700px;
}

.error-content span{
    display:block;
    color:#D4AF37;
    font-size:110px;
    font-weight:700;
    line-height:1;
    margin-bottom:20px;
}

.error-content h1{
    color:#ffffff;
    font-size:46px;
    margin-bottom:18px;
}

.error-content p{
    color:#dddddd;
    font-size:17px;
    line-height:1.8;
    margin-bottom:35px;
}

.error-buttons{
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
}

@media(max-width:600px){

    .error-content span{
        font-size:82px;
    }

    .error-content h1{
        font-size:34px;
    }
}
/* FINAL NAVBAR LOGO ADJUSTMENT */

.navbar{
    min-height:90px;
    padding:8px 32px;
}

/* ==========================================
   CITIHOMEZ WEBSITE LOGO
========================================== */

.logo{

    display:flex;
    align-items:center;

}

.logo a{

    display:flex;
    align-items:center;

}

.logo img{

    width:250px;

    height:auto;

    display:block;

    transition:0.3s ease;

}

.logo img:hover{

    transform:scale(1.02);

}

@media(max-width:768px){

.logo img{

    width:175px;

}

}
/* MOBILE CONTACT CARDS ALIGNMENT */

@media(max-width:768px){

    .contact-info-section{
        padding:50px 12px;
        overflow:hidden;
    }

    .contact-info-grid{
        width:100%;
        max-width:100%;
        margin:0;
        padding:0;
        grid-template-columns:1fr;
        gap:22px;
        box-sizing:border-box;
    }

    .contact-info-card{
        width:100%;
        max-width:100%;
        margin:0;
        padding:32px 18px;
        box-sizing:border-box;
    }
}