/* --- 1. VARIABLES --- */
:root {
    --primary-navy: #001F3F;
    --accent-gold: #C5A059;
    --text-charcoal: #333333;
    --bg-light: #F8F9FA;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

/* --- 2. RESET & BASE --- */
body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-charcoal);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, .company-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.text-gold { color: var(--accent-gold) !important; }
.color-navy { color: var(--primary-navy) !important; }
.tracking-wider { letter-spacing: 2px; }

/* --- 3. TOP BAR --- */
.top-bar {
    background: #00152b;
    color: var(--white);
    font-size: 13px;
}

/* --- 4. NAVBAR --- */
.navbar {
    background: var(--white);
    padding: 10px 0;
    border-bottom: 3px solid var(--primary-navy);
    transition: all 0.4s ease;
}

.company-name {
    color: var(--primary-navy);
    font-size: 1.4rem;
    line-height: 1.1;
}

.nav-link {
    color: var(--primary-navy) !important;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    padding: 10px 15px !important;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--accent-gold) !important;
}

.navbar-scrolled {
    padding: 5px 0 !important; /* Shorter navbar on scroll */
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
}

/* Back to Top Styling */
#btn-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    display: none; /* Controlled by JS */
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

/* Dropdown Menu */
.dropdown-menu {
    border: none;
    border-top: 3px solid var(--accent-gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 0;
}

.dropdown-item {
    font-weight: 600;
    font-size: 0.85rem;
    padding: 10px 20px;
    color: var(--primary-navy);
}

.dropdown-item:hover {
    background: var(--bg-light);
    color: var(--accent-gold);
}

/* User Icon Circle */
.user-circle {
    width: 38px;
    height: 38px;
    border: 2px solid var(--primary-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-navy);
    transition: var(--transition);
}

.user-circle:hover {
    background: var(--primary-navy);
    color: var(--white);
}

/* --- 5. HERO SECTION (Updated with Parallax & Search) --- */
/* --- HERO WRAPPER --- */
.hero-wrapper {
    position: relative;
    height: 85vh;
    overflow: hidden;
    background: var(--primary-navy);
}

/* Background Slider */
#heroSlider, .carousel-inner, .carousel-item {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.carousel-item {
    background-size: cover;
    background-position: center;
    transition: transform 4s ease-in-out, opacity 1s ease-in-out;
}

.carousel-item::after {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0,31,63,0.9), rgba(0,31,63,0.4), rgba(0,31,63,0.9));
}

/* Side Images (Inspired by image_1ff7d6.jpg) */
.side-img-left {
    position: absolute;
    left: -50px;
    top: 15%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    border: 10px solid rgba(255,255,255,0.1);
    z-index: 5;
}

.side-img-right {
    position: absolute;
    right: -30px;
    bottom: -30px;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    overflow: hidden;
    border: 15px solid rgba(255,255,255,0.1);
    z-index: 5;
}

.side-img-left img, .side-img-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- UPDATED HERO SEARCH BAR (4 Columns) --- */
.modern-search-bar {
    background: var(--white);
    border-radius: 50px; /* Pill shape like the reference */
    padding: 8px 12px 8px 30px; /* Adjusted padding for better fit */
    max-width: 1100px; /* Increased width to fit Location, Search, and Budget */
    margin: 40px auto 0;
    z-index: 10;
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
}

.search-input-group {
    text-align: left;
    padding: 10px 15px; /* Tightened padding for 4-column layout */
    border-right: 1px solid #eee;
}

.search-input-group:nth-last-child(2) {
    border-right: none; /* Removes border before the search button */
}

.search-input-group label {
    font-size: 10px;
    font-weight: 800;
    color: var(--primary-navy);
    display: block;
    margin-bottom: 2px;
}

.search-input-group .form-control {
    border: none;
    padding: 0;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: none;
    background: transparent;
}

.search-input-group .form-control::placeholder {
    color: #999;
    font-weight: 400;
    font-size: 0.85rem;
}

.search-btn-main {
    border-radius: 40px !important;
    font-weight: 800;
    padding: 14px 0; /* Consistent height for the button */
    letter-spacing: 1px;
}

.bg-gold-transparent {
    background: rgba(197, 160, 89, 0.2);
    border: 1px solid var(--accent-gold);
    letter-spacing: 2px;
    font-size: 12px;
}

/* --- Responsive Fixes --- */
@media (max-width: 991px) {
    .modern-search-bar {
        border-radius: 20px;
        padding: 20px;
        max-width: 95%; /* Better fit for tablets/phones */
    }
    .search-input-group {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding: 15px 10px;
    }
    .hero-wrapper { 
        height: auto; 
        padding: 100px 0; 
    }
    .search-btn-main {
        margin-top: 15px;
    }
}
/* --- FOOTER STYLES ------------------------------------------------------------------------- */
/* --- FIXED FOOTER STYLES --- */
footer {
    background-color: #00152b; 
    color: #ffffff; /* Default all text to white */
}

/* Titles */
footer h5 {
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Body Text & Descriptions */
footer p, 
.footer-contact span {
    color: rgba(255, 255, 255, 0.8) !important; /* Brighter off-white */
    line-height: 1.6;

}

/* Link Colors */
.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-gold) !important;
    transform: translateX(5px);
}

/* Contact Icons - Make them Bright Gold */
.footer-contact i {
    color: var(--accent-gold) !important;
    font-size: 1.1rem;
    text-shadow: 0 0 10px rgba(197, 160, 89, 0.3);
}

/* Copyright Bar */
.copyright-bar {
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.copyright-bar p {
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 0.85rem;
}

/* --- WHATSAPP FLOATING BUTTON --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366; /* Official WhatsApp Green */
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0px 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Pulse Animation Effect */
.whatsapp-float::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #25d366;
    border-radius: 50px;
    z-index: -1;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128c7e; /* Darker green on hover */
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0px 15px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-float i {
    transition: transform 0.3s ease;
}

.whatsapp-float:hover i {
    transform: scale(1.1) rotate(10deg);
}

/* Pulse Keyframes */
@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* Mobile Adjustment: Move it up slightly if the Back-to-Top button is present */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}

/* --- FOOTER STYLES END ------------------------------------------------------------------------- */


/* --- ABOUT SECTION ENHANCEMENTS --- */
.about-img-wrapper {
    position: relative;
    padding-right: 30px;
    padding-bottom: 30px;
}

.about-img-wrapper::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 80%;
    height: 80%;
    border: 10px solid var(--accent-gold);
    z-index: -1;
    border-radius: 8px;
}

.experience-badge {
    position: absolute;
    bottom: 50px;
    right: 0;
    background: var(--primary-navy);
    color: var(--white);
    padding: 20px 30px;
    border-left: 5px solid var(--accent-gold);
    box-shadow: 10px 10px 30px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 15px;
}

.experience-badge .number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-gold);
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.display-5 {
    line-height: 1.2;
}

.color-navy {
    color: var(--primary-navy);
}

/* --- ABOUT SECTION ENHANCEMENTS END --- */

/* --- SERVICE PARALLAX WRAPPER --- */
.services-parallax-wrapper {
    position: relative;
    background: #fdfdfd;
    overflow: hidden;
}

/* Layer 1: Blueprint Background Move */
.blueprint-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('../img/blueprint-pattern.png'); /* Light grey technical lines */
    background-size: 600px;
    opacity: 0.04;
    z-index: 1;
    animation: moveBackground 60s linear infinite;
}

@keyframes moveBackground {
    from { background-position: 0 0; }
    to { background-position: 600px 600px; }
}

/* Layer 2: Floating Cards */
.floating-service-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 15px;
    height: 100%;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 31, 63, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0,0,0,0.03);
    z-index: 5;
    margin-top: 20px;
}

/* The Gold Foundation Bar */
.floating-service-card::after {
    content: "";
    position: absolute;
    bottom: 0; left: 50%; width: 0; height: 4px;
    background: var(--accent-gold);
    transition: var(--transition);
    transform: translateX(-50%);
}

.floating-service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 31, 63, 0.12);
}

.floating-service-card:hover::after {
    width: 60%;
}

/* Featured Card (Middle One) */
.floating-service-card.featured {
    border-top: 5px solid var(--primary-navy);
    transform: scale(1.05);
    z-index: 10;
}

/* Layer 3: Floating Icons & Numbers */
.card-icon-float {
    width: 70px;
    height: 70px;
    background: var(--primary-navy);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 5px 5px 15px rgba(0, 31, 63, 0.2);
}

.card-number {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(0, 31, 63, 0.03);
    line-height: 1;
}

.floating-service-card h4 {
    color: var(--primary-navy);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.service-link {
    text-decoration: none;
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- SERVICE PARALLAX WRAPPER END --- */


/* --- ARCHITECTURAL CARD SYSTEM --- */
.property-showcase {
    background: #fcfcfc;
}

.arch-card {
    background: var(--white);
    position: relative;
    border-radius: 0; /* Sharp architectural edges */
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

/* Image Parallax Container */
.arch-card-img {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.arch-card-img img {
    width: 100%;
    height: 120%; /* Taller for parallax room */
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.arch-card:hover .arch-card-img img {
    transform: scale(1.1) translateY(-10px);
}

/* Tags & Labels */
.card-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    font-size: 10px;
    font-weight: 800;
    padding: 6px 15px;
    letter-spacing: 1px;
}

.gold-pill { background: var(--accent-gold); color: white; }
.navy-pill { background: var(--primary-navy); color: white; }

/* Card Body */
.arch-card-body {
    padding: 30px;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
    border-bottom: 5px solid var(--primary-navy);
}

.location-label {
    display: block;
    font-family: 'Courier New', monospace; /* Architectural Feel */
    font-size: 11px;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.arch-card-body h4 {
    color: var(--primary-navy);
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.price-box {
    margin-bottom: 20px;
}

.price-box small {
    display: block;
    font-size: 10px;
    color: #999;
}

.price-val {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-navy);
}

/* Button UI */
.arch-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: var(--primary-navy);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    border-top: 1px solid #eee;
    padding-top: 15px;
    transition: var(--transition);
}

.arch-btn:hover {
    color: var(--accent-gold);
}

/* Progress Overlay for Construction */
.progress-overlay {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    background: rgba(0, 31, 63, 0.8);
    color: white;
    font-size: 11px;
    padding: 5px 15px;
}

.btn-outline-navy {
    border: 2px solid var(--primary-navy);
    color: var(--primary-navy);
    font-weight: 700;
    transition: var(--transition);
}

.btn-outline-navy:hover {
    background: var(--primary-navy);
    color: white;
}

/* --- ARCHITECTURAL CARD SYSTEM END --- */


/* --- WHY CHOOSE US STYLES --- */
.bg-navy {
    background-color: #00152b;
}

.trust-image-container {
    position: relative;
    padding: 20px;
}

.quality-card {
    position: absolute;
    bottom: -20px;
    right: -10px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    width: 200px;
    z-index: 5;
}

.trust-item {
    display: flex;
    gap: 20px;
    transition: var(--transition);
    padding: 15px;
    border-radius: 10px;
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(10px);
}

.trust-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-gold);
    color: var(--primary-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.bg-shape {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.1) 0%, rgba(0,0,0,0) 70%);
    z-index: 1;
}

.bg-gold {
    background-color: var(--accent-gold) !important;
}

/* --- WHY CHOOSE US STYLES END --- */


/* -------------------- SERVICES PAGE PARALLAX & CARD STYLES -------------------- */

/* --- SERVICES PAGE HERO --- */
.services-hero-wrapper {
    background-color: var(--primary-navy);
    padding: 120px 0 80px;
    background-image: linear-gradient(rgba(0, 31, 63, 0.9), rgba(0, 31, 63, 0.9));
}

.blueprint-bg-hero {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('../img/blueprint-pattern.png');
    background-size: 500px;
    opacity: 0.1;
    z-index: 1;
}

.hero-divider {
    width: 100px;
    height: 4px;
    background: var(--accent-gold);
    border-radius: 2px;
}

.service-badge{
    background:#c8a463;
    color:#fff;
    padding:10px 22px;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
}

.service-image-wrapper img{
    border-radius:28px;
}

.service-highlight-box{
    background:#f8f9fa;
    padding:35px;
    border-radius:24px;
}

.service-list{
    list-style:none;
    padding:0;
    margin:0;
}

.service-list li{
    position:relative;
    padding-left:28px;
    margin-bottom:18px;
    color:#666;
}

.service-list li::before{
    content:"✓";
    position:absolute;
    left:0;
    color:#c8a463;
    font-weight:bold;
}

.service-meta-grid{
    display:flex;
    gap:20px;
}

.meta-box{
    background:#fff;
    padding:20px 26px;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,0.05);
    text-align:center;
}

.workflow-card{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.workflow-step{
    background:#fff;
    padding:24px;
    border-radius:18px;
    flex:1;
    min-width:150px;
    box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

.workflow-step span{
    display:inline-block;
    width:42px;
    height:42px;
    background:#c8a463;
    color:#fff;
    border-radius:50%;
    text-align:center;
    line-height:42px;
    font-weight:700;
    margin-bottom:16px;
}

.market-grid{
    display:flex;
    gap:20px;
}

.market-card{
    background:#f8f9fa;
    padding:24px;
    border-radius:18px;
    flex:1;
    text-align:center;
}

.market-card i{
    font-size:32px;
    color:#c8a463;
    margin-bottom:14px;
}

.btn-outline-gold{
    border:1px solid #c8a463;
    color:#c8a463;
}

.btn-outline-gold:hover{
    background:#c8a463;
    color:#fff;
}
/* -====================-- SERVICES PAGE PARALLAX & CARD STYLES END -===============================- */



/* --=============================- CONTACT PAGE SPECIFICS -===================================-- */



.contact-hero-wrapper {
    background-color: var(--primary-navy);
    padding: 100px 0 60px;
    background-image: linear-gradient(rgba(0, 31, 63, 0.85), rgba(0, 31, 63, 0.85));
}

.info-node {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.node-icon {
    width: 50px;
    height: 50px;
    background: #f8f9fa;
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.info-node:hover .node-icon {
    background: var(--accent-gold);
    color: white;
    transform: rotateY(180deg);
}

.node-text h6 {
    margin-bottom: 5px;
    color: var(--primary-navy);
    font-weight: 800;
}

.node-text p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Form Styling */
.contact-form-wrapper {
    background: #fff;
    padding: 45px;
    border-radius: 20px;
    border-top: 5px solid var(--accent-gold);
}

.custom-input {
    border: 1px solid #eee;
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.custom-input:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 0.25rem rgba(197, 160, 89, 0.1);
}

.social-circle {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-navy);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-circle:hover {
    background: var(--primary-navy);
    color: white;
    border-color: var(--primary-navy);
}

/* =======================Contact page hero -ends ========================= */


/* --=============================- CONTACT PAGE SPECIFICS END -===================================-- */



/* -==============================-- ABOUT PAGE SPECIFICS --============================================- */


.about-hero-wrapper {
    background-color: var(--primary-navy);
    padding: 120px 0 80px;
    background-image: linear-gradient(rgba(0, 31, 63, 0.9), rgba(0, 31, 63, 0.9));
}

.pillar-card {
    background: #fff;
    padding: 50px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    border-bottom: 5px solid transparent;
}

.pillar-card:hover, .pillar-card.active {
    transform: translateY(-15px);
    border-bottom: 5px solid var(--accent-gold);
}

.pillar-card.active {
    background: var(--primary-navy);
    color: white;
}

.pillar-icon {
    width: 70px;
    height: 70px;
    background: rgba(197, 160, 89, 0.1);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 25px;
    font-size: 2rem;
}

.pillar-card.active .pillar-icon {
    background: var(--accent-gold);
    color: white;
}

.pillar-card h4 {
    font-weight: 800;
    margin-bottom: 15px;
}

.pillar-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.pillar-card.active p {
    color: rgba(255, 255, 255, 0.8);
}

/* --- ABOUT PAGE HERO --- */

.stat-box h2 {
    font-family: 'Roboto Mono', monospace; /* Tech feel for numbers */
}

.future-icon-box {
    background: white;
    padding: 30px;
    border-radius: 12px;
    transition: var(--transition);
}

.future-icon-box i {
    font-size: 2.5rem;
}

.future-icon-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

/* ===============================About page specifics -ends ========================= */

/* ===============================Project page specifics -starts ========================= */
.project-card,
.plot-card{
    border-radius: 20px;
    transition: all 0.4s ease;
}

.project-card:hover,
.plot-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.project-image img{
    height: 260px;
    object-fit: cover;
}

.project-tag{
    position: absolute;
    top: 20px;
    left: 20px;
    background: #c8a463;
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.btn-gold{
    background: #c8a463;
    color: #fff;
    border: none;
}

.btn-gold:hover{
    background: #b89352;
    color: #fff;
}

.color-navy{
    color: #0c1b36;
}

.bg-navy{
    background: #0c1b36;
}

.text-gold{
    color: #c8a463;
}

.section-padding{
    padding: 100px 0;
}

.project-filter-wrapper button{
    min-width: 220px;
}

.active-filter{
    background: #c8a463;
    color: #fff;
}

.plot-card img{
    min-height: 100%;
}
/* ===============================Project page specifics -ends ========================= */
/* ===============================view details page -starts ========================= */
/* =========================================
GENERAL
========================================= */

.section-padding{
    padding:100px 0;
}

.color-navy{
    color:#0c1b36;
}

.text-gold{
    color:#c8a463;
}

.bg-navy{
    background:#0c1b36;
}

.section-subtitle{
    color:#c8a463;
    text-transform:uppercase;
    letter-spacing:2px;
    font-weight:600;
    margin-bottom:15px;
}

.section-title{
    font-size:48px;
    font-weight:800;
    color:#0c1b36;
    margin-bottom:25px;
}

.section-description{
    color:#6c757d;
    line-height:1.9;
    margin-bottom:20px;
}

/* =========================================
GALLERY
========================================= */

.main-gallery-image img{
    height:650px;
    object-fit:cover;
}

.gallery-thumb{
    width:100%;
    height:320px;
    object-fit:cover;
    border-radius:12px;
}

.gallery-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.6);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    font-weight:700;
    border-radius:12px;
}

/* =========================================
HEADER
========================================= */

.property-badge{
    background:#c8a463;
    color:#fff;
    padding:10px 24px;
    border-radius:50px;
    font-weight:600;
}

.property-location{
    color:#6c757d;
    font-size:18px;
}

.property-highlights{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.highlight-box{
    background:#f8f9fa;
    padding:25px 35px;
    border-radius:18px;
    min-width:160px;
}

.highlight-box h5{
    font-weight:800;
    margin-bottom:5px;
    color:#0c1b36;
}

.highlight-box span{
    color:#6c757d;
}

/* =========================================
CONTACT CARD
========================================= */

.contact-card{
    background:#fff;
    padding:35px;
    border-radius:24px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    top:100px;
    z-index: 1;
}

.price-text{
    font-size:42px;
    font-weight:800;
    color:#0c1b36;
}

.form-control{
    height:55px;
    border-radius:12px;
    border:1px solid #ddd;
}

.btn-gold{
    background:#c8a463;
    color:#fff;
    border:none;
    border-radius:12px;
    font-weight:600;
}

.btn-gold:hover{
    background:#b89352;
    color:#fff;
}

/* =========================================
FEATURES
========================================= */

.feature-card{
    background:#fff;
    padding:40px 30px;
    border-radius:24px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
    transition:0.4s;
    height:100%;
}

.feature-card:hover{
    transform:translateY(-8px);
}

.feature-card i{
    font-size:40px;
    color:#c8a463;
    margin-bottom:20px;
}

/* =========================================
AMENITIES
========================================= */

.amenities-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.amenity-box{
    background:#fff;
    padding:35px;
    border-radius:22px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.amenity-box i{
    font-size:38px;
    color:#c8a463;
    margin-bottom:18px;
}

/* =========================================
LOCATION
========================================= */

.location-list{
    list-style:none;
    padding:0;
}

.location-list li{
    margin-bottom:18px;
    font-size:18px;
    position:relative;
    padding-left:30px;
}

.location-list li::before{
    content:"✓";
    position:absolute;
    left:0;
    color:#c8a463;
    font-weight:700;
}

.map-frame{
    width:100%;
    height:450px;
    border:0;
    border-radius:24px;
    background:#ddd;
}

/* =========================================
APPROVALS
========================================= */

.approval-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.approval-card{
    background:#0c1b36;
    color:#fff;
    padding:30px;
    border-radius:18px;
    text-align:center;
    font-weight:600;
}

/* =========================================
FLOOR PLAN
========================================= */

.floor-plan-card{
    overflow:hidden;
    border-radius:24px;
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

/* =========================================
SPECIFICATIONS
========================================= */

.specs-tabs .nav-link{
    border-radius:50px;
    padding:12px 28px;
    color:#0c1b36;
    font-weight:600;
    margin:0 8px;
}

.specs-tabs .nav-link.active{
    background:#c8a463;
    color:#fff;
}

.spec-card{
    background:#fff;
    padding:40px;
    border-radius:24px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.spec-row{
    display:flex;
    justify-content:space-between;
    padding:18px 0;
    border-bottom:1px solid #eee;
}

.spec-row:last-child{
    border-bottom:none;
}

/* =========================================
CTA
========================================= */

.property-cta-section{
    background:#0c1b36;
    padding:100px 0;
    text-align:center;
}

.cta-wrapper h2{
    color:#fff;
    font-size:52px;
    font-weight:800;
    margin-bottom:20px;
}

.cta-wrapper p{
    color:rgba(255,255,255,0.7);
    max-width:700px;
    margin:auto;
    margin-bottom:40px;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.btn-outline-light{
    border-radius:12px;
    padding:14px 32px;
}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:991px){

    .main-gallery-image img{
        height:400px;
    }

    .gallery-thumb{
        height:180px;
    }

    .amenities-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .approval-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:767px){

    .section-title{
        font-size:34px;
    }

    .property-highlights{
        flex-direction:column;
    }

    .highlight-box{
        width:100%;
    }

    .amenities-grid{
        grid-template-columns:1fr;
    }

    .approval-grid{
        grid-template-columns:1fr;
    }

    .spec-row{
        flex-direction:column;
        gap:10px;
    }

}
/* ===============================view details page -ends ========================= */


