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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f5f7fa;
    color: #172033;
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
select,
input {
    font-family: inherit;
}

.container {
    width: 92%;
    max-width: 1200px;
    margin: auto;
}

/* =========================================================
           COLORS
        ========================================================= */

:root {
    --navy: #10192c;
    --navy2: #172337;
    --navy3: #1d2b42;
    --orange: #ffad00;
    --orange2: #ffbd32;
    --white: #ffffff;
    --muted: #7c8798;
    --border: #dfe4ea;
    --light: #f5f7fa;
    --green: #20b45a;
}

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

.main-header {
    position: relative;
    z-index: 2000;
    background: var(--navy);
    color: #fff;
    transition: transform .35s ease, opacity .35s ease;
}

    .main-header.hide-header {
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
    }

.navbar {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-icon {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111827;
    font-size: 22px;
    font-weight: 900;
}

.logo-text {
    font-size: 21px;
    font-weight: 900;
    letter-spacing: -.5px;
}

    .logo-text span {
        color: var(--orange);
    }

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 12px;
    font-weight: 700;
}

    .nav-links a {
        color: #dce2ec;
        transition: .2s;
    }

        .nav-links a:hover {
            color: var(--orange);
        }

.nav-search {
    height: 38px;
    display: flex;
    align-items: center;
    border: 1px solid #35445c;
    border-radius: 7px;
    overflow: hidden;
    background: #172337;
}

    .nav-search input {
        width: 160px;
        height: 100%;
        border: 0;
        outline: 0;
        padding: 0 10px;
        color: #fff;
        background: transparent;
        font-size: 11px;
    }

        .nav-search input::placeholder {
            color: #8591a4;
        }

    .nav-search button {
        width: 38px;
        height: 100%;
        border: 0;
        background: var(--orange);
        cursor: pointer;
    }

.nav-contact {
    background: var(--orange);
    color: #111827;
    border: 0;
    border-radius: 6px;
    height: 38px;
    padding: 0 14px;
    font-size: 11px;
    font-weight: 900;
    cursor: pointer;
}

/* MOBILE MENU BUTTON */

.menu-toggle {
    display: none;
    width: 40px;
    height: 38px;
    border: 1px solid #3b4a62;
    border-radius: 6px;
    background: #172337;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

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

.mobile-menu {
    display: none;
    background: #10192c;
    border-top: 1px solid #29364a;
    padding: 10px 4% 18px;
}

    .mobile-menu.active {
        display: block;
    }

    .mobile-menu a {
        display: block;
        padding: 12px 5px;
        color: #dce2ec;
        border-bottom: 1px solid #29364a;
        font-size: 12px;
        font-weight: 700;
    }

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

.hero {
    min-height: 430px;
    background: linear-gradient(rgba(10,18,33,.80),rgba(10,18,33,.86)), url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1800&q=85") center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content {
    width: 92%;
    max-width: 1200px;
    margin: auto;
    color: #fff;
    padding: 70px 0;
}

.hero-small {
    display: inline-block;
    color: var(--orange);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.hero h1 {
    font-size: 48px;
    line-height: 1.08;
    max-width: 700px;
    margin-bottom: 15px;
    letter-spacing: -1.5px;
}

    .hero h1 span {
        color: var(--orange);
    }

.hero p {
    max-width: 600px;
    color: #cbd4e2;
    font-size: 14px;
    margin-bottom: 25px;
}

/* HERO SEARCH */

.hero-search {
    width: 100%;
    max-width: 700px;
    height: 56px;
    display: flex;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0,0,0,.25);
}

    .hero-search input {
        flex: 1;
        min-width: 0;
        border: 0;
        outline: 0;
        padding: 0 18px;
        color: #172033;
        font-size: 13px;
    }

    .hero-search button {
        width: 110px;
        border: 0;
        background: var(--orange);
        color: #111827;
        font-size: 12px;
        font-weight: 900;
        cursor: pointer;
    }

.hero-stats {
    display: flex;
    gap: 35px;
    margin-top: 30px;
}

.hero-stat strong {
    display: block;
    font-size: 21px;
    color: #fff;
}

.hero-stat span {
    color: #9da9ba;
    font-size: 10px;
}

/* =========================================================
           STICKY FILTER BAR
           CITY = DROPDOWN
           CATEGORY = BUTTONS
        ========================================================= */

.filter-bar {
    height: 64px;
    background: #10192c;
    border-top: 1px solid #29364a;
    border-bottom: 1px solid #29364a;
    position: relative;
    z-index: 1500;
    transition: .35s ease;
}

    .filter-bar.sticky {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        box-shadow: 0 7px 22px rgba(0,0,0,.30);
    }

.filter-inner {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* CITY DROPDOWN */

.city-filter {
    display: flex;
    align-items: center;
    gap: 7px;
    flex-shrink: 0;
}

    .city-filter label {
        color: var(--orange);
        font-size: 9px;
        font-weight: 900;
        text-transform: uppercase;
        white-space: nowrap;
    }

    .city-filter select {
        height: 36px;
        min-width: 145px;
        padding: 0 28px 0 10px;
        border: 1px solid #3b4a62;
        border-radius: 7px;
        background: #1a273d;
        color: #fff;
        outline: none;
        font-size: 10px;
        font-weight: 700;
        cursor: pointer;
    }

        .city-filter select:hover,
        .city-filter select:focus {
            border-color: var(--orange);
        }

        .city-filter select option {
            background: #172337;
            color: #fff;
        }

/* =========================================================
           MOBILE CATEGORY SCROLL
        ========================================================= */

@media(max-width:700px) {

    .category-filter {
        position: relative;
        overflow-x: auto;
        overflow-y: hidden;
        flex: 1;
        min-width: 0;
        padding-right: 18px;
        scrollbar-width: none;
        /* Smooth horizontal scrolling */
        scroll-behavior: smooth;
        /* Scroll snap */
        scroll-snap-type: x proximity;
    }

        .category-filter::-webkit-scrollbar {
            display: none;
        }

    .category-btn {
        flex: 0 0 auto;
        scroll-snap-align: start;
        height: 38px;
        padding: 0 10px;
    }

    /*
               Right side fade:
               user ko indication milega ki
               aur categories aage hain.
            */

    .category-filter::after {
        content: "";
        position: absolute;
        right: 0;
        top: 0;
        width: 30px;
        height: 100%;
        pointer-events: none;
        background: linear-gradient( to right, rgba(16,25,44,0), rgba(16,25,44,.98) );
    }
}
/* CATEGORY */

.category-filter {
    display: flex;
    align-items: center;
    gap: 6px;
    overflow-x: auto;
    scrollbar-width: none;
}

    .category-filter::-webkit-scrollbar {
        display: none;
    }

.category-label {
    color: var(--orange);
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
    white-space: nowrap;
}

.category-btn {
    height: 34px;
    padding: 0 11px;
    border: 1px solid #3b4a62;
    border-radius: 6px;
    background: #172337;
    color: #bfc9d8;
    font-size: 9px;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
    transition: .2s;
}

    .category-btn:hover {
        border-color: var(--orange);
        color: var(--orange);
    }

    .category-btn.active {
        background: var(--orange);
        border-color: var(--orange);
        color: #111827;
    }

/* STICKY SEARCH */

.sticky-search {
    margin-left: auto;
    height: 36px;
    display: flex;
    border: 1px solid #3b4a62;
    border-radius: 7px;
    overflow: hidden;
    background: #172337;
    flex-shrink: 0;
}

    .sticky-search input {
        width: 170px;
        border: 0;
        outline: 0;
        background: transparent;
        color: #fff;
        padding: 0 10px;
        font-size: 10px;
    }

        .sticky-search input::placeholder {
            color: #7f8ba0;
        }

    .sticky-search button {
        width: 38px;
        border: 0;
        background: var(--orange);
        color: #111827;
        font-size: 13px;
        cursor: pointer;
    }

.reset-filter {
    height: 36px;
    padding: 0 10px;
    border: 1px solid #3b4a62;
    border-radius: 7px;
    background: transparent;
    color: #b9c3d2;
    font-size: 9px;
    cursor: pointer;
}

    .reset-filter:hover {
        border-color: var(--orange);
        color: var(--orange);
    }

/* =========================================================
           SECTION COMMON
        ========================================================= */

.section {
    padding: 65px 0;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    margin-bottom: 28px;
}

.section-title {
    font-size: 30px;
    line-height: 1.15;
    color: #172033;
}

    .section-title span {
        color: #f09b00;
    }

.section-subtitle {
    color: #7b8798;
    font-size: 12px;
    max-width: 540px;
    margin-top: 8px;
}

.view-all {
    font-size: 11px;
    color: #e89300;
    font-weight: 900;
    white-space: nowrap;
}

/* =========================================================
           PROPERTY GRID
        ========================================================= */

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

.property-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 9px;
    overflow: hidden;
    transition: .25s;
}

    .property-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 30px rgba(23,32,51,.10);
    }

.property-image {
    height: 190px;
    position: relative;
    overflow: hidden;
}

    .property-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .35s;
    }

.property-card:hover .property-image img {
    transform: scale(1.05);
}

.property-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--orange);
    color: #111827;
    font-size: 8px;
    font-weight: 900;
    padding: 5px 8px;
    border-radius: 4px;
}

.property-body {
    padding: 15px;
}

    .property-body h3 {
        font-size: 14px;
        margin-bottom: 6px;
        color: #172033;
    }

.property-location {
    color: #7d899a;
    font-size: 10px;
    margin-bottom: 12px;
}

.property-price {
    font-size: 16px;
    font-weight: 900;
    color: #172033;
}

.property-meta {
    display: flex;
    gap: 12px;
    border-top: 1px solid #edf0f3;
    margin-top: 12px;
    padding-top: 11px;
    color: #7c8798;
    font-size: 9px;
}

.property-actions {
    display: flex;
    gap: 7px;
    margin-top: 13px;
}

.btn-outline,
.btn-orange {
    height: 34px;
    border-radius: 5px;
    font-size: 9px;
    font-weight: 900;
    cursor: pointer;
    flex: 1;
}

.btn-outline {
    background: #fff;
    border: 1px solid #dce2e9;
    color: #172033;
}

.btn-orange {
    background: var(--orange);
    border: 1px solid var(--orange);
    color: #111827;
}

/* =========================================================
           HIDDEN CARD
        ========================================================= */

.property-card.hidden {
    display: none;
}

/* =========================================================
           RESPONSIVE
        ========================================================= */

@media(max-width:1000px) {

    .nav-links {
        gap: 14px;
    }

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

    .hero h1 {
        font-size: 40px;
    }

    .sticky-search input {
        width: 120px;
    }
}

@media(max-width:700px) {

    .navbar {
        min-height: 62px;
    }

    .nav-links,
    .nav-search,
    .nav-contact {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .logo-text {
        font-size: 18px;
    }

    .logo-icon {
        width: 37px;
        height: 37px;
        font-size: 19px;
    }

    .hero {
        min-height: 430px;
    }

    .hero-content {
        padding: 55px 0;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero p {
        font-size: 12px;
    }

    .hero-search {
        height: 50px;
    }

        .hero-search button {
            width: 85px;
        }

    .hero-stats {
        gap: 22px;
    }

    /* MOBILE STICKY BAR */

    .filter-bar {
        height: 62px;
    }

    .filter-inner {
        width: 94%;
        gap: 6px;
        overflow: visible;
    }

    .city-filter {
        display: block;
        flex: 0 0 112px;
    }

        .city-filter label {
            display: none;
        }

        .city-filter select {
            width: 112px;
            min-width: 0;
            height: 38px;
            font-size: 9px;
        }

    .category-filter {
        flex: 1;
        min-width: 0;
    }

    .category-label {
        display: none;
    }

    .category-btn {
        height: 38px;
        padding: 0 9px;
        font-size: 8px;
    }

    .sticky-search {
        width: 38px;
        margin-left: 0;
        border: 0;
        overflow: visible;
        background: transparent;
    }

        .sticky-search input {
            display: none;
        }

        .sticky-search button {
            width: 38px;
            height: 38px;
            border-radius: 7px;
        }

    .reset-filter {
        display: none;
    }

    .section {
        padding: 48px 0;
    }

    .section-title {
        font-size: 25px;
    }

    .section-head {
        margin-bottom: 20px;
    }

    .property-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .property-image {
        height: 210px;
    }
}

@media(max-width:420px) {

    .city-filter {
        flex: 0 0 105px;
    }

        .city-filter select {
            width: 105px;
        }

    .category-btn {
        padding: 0 8px;
    }

    .hero h1 {
        font-size: 30px;
    }
}


.footer-social h4 {
    color: var(--orange);
    font-size: 11px;
    margin-bottom: 12px;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.social-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #172337;
    border: 1px solid #2c3a50;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    transition: .25s;
}

    .social-icon:hover {
        transform: translateY(-3px);
        border-color: var(--orange);
        color: var(--orange);
    }

/* Call */

.call-icon {
    background: #17352a;
    color: #35d879;
}

/* WhatsApp */

.whatsapp-icon {
    background: #173c2b;
    color: #25d366;
}

/* Facebook */

.facebook-icon {
    color: #4d8cff;
}

/* Instagram */

.instagram-icon {
    color: #ff72a7;
}

/* YouTube */

.youtube-icon {
    color: #ff4b4b;
}

/* LinkedIn */

.linkedin-icon {
    color: #55aaff;
}

.footer-call-text {
    margin-top: 13px;
    color: #748095;
    font-size: 9px;
}

    .footer-call-text a {
        color: #dce2ec;
        font-weight: 700;
    }

        .footer-call-text a:hover {
            color: var(--orange);
        }

.construction-section {
    background: #10192c;
    color: #fff;
    padding: 75px 0;
}

.orange-small {
    display: block;
    color: var(--orange);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.5px;
    margin-bottom: 9px;
}

.construction-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 30px;
    margin-bottom: 30px;
}

    .construction-heading h2 {
        font-size: 34px;
        line-height: 1.15;
    }

        .construction-heading h2 span {
            color: var(--orange);
        }

    .construction-heading p {
        color: #aab5c6;
        max-width: 600px;
        font-size: 12px;
        margin-top: 10px;
    }

.construction-enquire {
    background: var(--orange);
    color: #111827;
    border: 0;
    border-radius: 6px;
    height: 40px;
    padding: 0 17px;
    font-size: 10px;
    font-weight: 900;
    cursor: pointer;
    white-space: nowrap;
}

.construction-tabs {
    display: flex;
    gap: 7px;
    border-bottom: 1px solid #2d3a50;
    margin-bottom: 30px;
}

.construction-tab {
    height: 38px;
    padding: 0 18px;
    border: 0;
    background: transparent;
    color: #8e9aac;
    font-size: 10px;
    font-weight: 800;
    cursor: pointer;
    border-bottom: 2px solid transparent;
}

    .construction-tab:hover {
        color: #fff;
    }

    .construction-tab.active {
        color: var(--orange);
        border-bottom-color: var(--orange);
    }

.construction-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 45px;
    align-items: center;
}

    .construction-grid.hidden-construction {
        display: none;
    }

.construction-image {
    height: 390px;
    border-radius: 10px;
    overflow: hidden;
}

    .construction-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.construction-content > span {
    color: var(--orange);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1px;
}

.construction-content h3 {
    font-size: 30px;
    line-height: 1.15;
    margin: 9px 0 13px;
}

.construction-content p {
    color: #aab5c6;
    font-size: 12px;
    max-width: 510px;
}

.service-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 24px 0;
}

    .service-list div {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px;
        background: #172337;
        border: 1px solid #29374d;
        border-radius: 6px;
    }

    .service-list b {
        color: var(--orange);
        font-size: 10px;
    }

    .service-list span {
        font-size: 10px;
        color: #d7deea;
    }

.large-btn {
    flex: none;
    padding: 0 18px;
}


/* =========================================================
           INTERIORS
        ========================================================= */

.interiors-section {
    background: #fff;
}

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

.interior-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 9px;
    overflow: hidden;
    transition: .25s;
}

    .interior-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 30px rgba(23,32,51,.10);
    }

.interior-card-image {
    height: 220px;
    overflow: hidden;
}

    .interior-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .35s;
    }

.interior-card:hover .interior-card-image img {
    transform: scale(1.05);
}

.interior-card-content {
    padding: 16px;
}

    .interior-card-content > span {
        color: var(--orange);
        font-size: 10px;
        font-weight: 900;
    }

    .interior-card-content h3 {
        font-size: 15px;
        margin: 5px 0;
    }

    .interior-card-content p {
        color: #7b8798;
        font-size: 10px;
        min-height: 30px;
    }

    .interior-card-content button {
        margin-top: 13px;
        border: 0;
        background: none;
        color: #df9000;
        font-size: 10px;
        font-weight: 900;
        cursor: pointer;
    }


/* =========================================================
           LOAN
        ========================================================= */

.loan-section {
    padding: 75px 0;
    background: #eef2f6;
}

.loan-container {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 70px;
    align-items: center;
}

.loan-content h2 {
    font-size: 36px;
    line-height: 1.15;
    color: #172033;
}

    .loan-content h2 span {
        color: #ed9700;
    }

.loan-content p {
    color: #748095;
    font-size: 12px;
    max-width: 560px;
    margin-top: 12px;
}

.loan-points {
    margin: 22px 0;
    display: grid;
    gap: 10px;
}

    .loan-points div {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .loan-points strong {
        width: 21px;
        height: 21px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #e9a000;
        color: #111827;
        border-radius: 50%;
        font-size: 10px;
    }

    .loan-points span {
        font-size: 11px;
        color: #566275;
    }

.loan-btn {
    width: auto;
    padding: 0 20px;
}

.loan-card {
    background: #fff;
    border-radius: 10px;
    padding: 24px;
    box-shadow: 0 15px 35px rgba(23,32,51,.10);
}

.loan-card-top {
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 20px;
}

.loan-input {
    margin-bottom: 14px;
}

    .loan-input label {
        display: block;
        color: #7a8597;
        font-size: 9px;
        font-weight: 700;
        margin-bottom: 5px;
    }

    .loan-input input {
        width: 100%;
        height: 38px;
        border: 1px solid #dce2e9;
        border-radius: 5px;
        outline: 0;
        padding: 0 10px;
        font-size: 11px;
    }

        .loan-input input:focus {
            border-color: var(--orange);
        }

.loan-result {
    margin-top: 20px;
    padding: 17px;
    background: #10192c;
    border-radius: 7px;
    color: #fff;
}

    .loan-result span {
        display: block;
        color: #9ca9bb;
        font-size: 9px;
    }

    .loan-result strong {
        display: block;
        color: var(--orange);
        font-size: 24px;
        margin-top: 3px;
    }


/* =========================================================
           WHY
        ========================================================= */

.why-section {
    background: #fff;
}

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

.why-card {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 22px;
}

.why-icon {
    width: 38px;
    height: 38px;
    border-radius: 7px;
    background: #fff3d6;
    color: #e59a00;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    margin-bottom: 14px;
}

.why-card h3 {
    font-size: 14px;
    margin-bottom: 7px;
}

.why-card p {
    color: #7b8798;
    font-size: 10px;
}


/* =========================================================
           CONTACT
        ========================================================= */

.contact-section {
    background: #10192c;
    color: #fff;
    padding: 75px 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 430px;
    gap: 70px;
    align-items: center;
}

.contact-content h2 {
    font-size: 35px;
    line-height: 1.15;
    max-width: 600px;
}

.contact-content p {
    color: #a7b2c3;
    font-size: 12px;
    max-width: 520px;
    margin: 12px 0 25px;
}

.contact-details {
    display: grid;
    gap: 12px;
}

    .contact-details div {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .contact-details strong {
        color: var(--orange);
        font-size: 9px;
    }

    .contact-details span {
        color: #d7deea;
        font-size: 11px;
    }

.contact-form {
    background: #fff;
    padding: 25px;
    border-radius: 9px;
    color: #172033;
}

    .contact-form h3 {
        font-size: 19px;
        margin-bottom: 17px;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        width: 100%;
        border: 1px solid #dce2e9;
        border-radius: 5px;
        outline: 0;
        margin-bottom: 10px;
        padding: 10px;
        font-size: 11px;
    }

    .contact-form input,
    .contact-form select {
        height: 40px;
    }

    .contact-form textarea {
        resize: vertical;
    }

        .contact-form input:focus,
        .contact-form select:focus,
        .contact-form textarea:focus {
            border-color: var(--orange);
        }

.contact-submit {
    width: 100%;
    height: 40px;
}


/* =========================================================
           FOOTER
        ========================================================= */

.footer {
    background: #0b1220;
    color: #fff;
    padding-top: 55px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 45px;
    padding-bottom: 45px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-brand p {
    color: #7e899a;
    font-size: 10px;
    max-width: 300px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

    .footer-column h4 {
        color: var(--orange);
        font-size: 11px;
        margin-bottom: 5px;
    }

    .footer-column a {
        color: #8e9aac;
        font-size: 10px;
    }

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

.footer-bottom {
    border-top: 1px solid #202c40;
    padding: 17px 0;
    color: #657185;
    font-size: 9px;
}


/* =========================================================
           WHATSAPP
        ========================================================= */

.whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #20b45a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0,0,0,.25);
    z-index: 2500;
    font-size: 25px;
}

    .whatsapp:hover {
        transform: scale(1.05);
    }


/* =========================================================
           MODAL
        ========================================================= */

.modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 5000;
}

    .modal.active {
        display: flex;
    }

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5,10,20,.72);
    backdrop-filter: blur(3px);
}

.modal-box {
    position: relative;
    width: 92%;
    max-width: 430px;
    background: #fff;
    border-radius: 10px;
    padding: 27px;
    z-index: 2;
    box-shadow: 0 20px 60px rgba(0,0,0,.3);
}

    .modal-box h2 {
        font-size: 25px;
        margin-bottom: 5px;
    }

    .modal-box p {
        color: #7b8798;
        font-size: 10px;
        margin-bottom: 18px;
    }

.modal-close {
    position: absolute;
    right: 13px;
    top: 10px;
    width: 32px;
    height: 32px;
    border: 0;
    background: #f1f3f6;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
}

.modal-box input,
.modal-box textarea {
    width: 100%;
    border: 1px solid #dce2e9;
    border-radius: 5px;
    outline: 0;
    padding: 11px;
    margin-bottom: 10px;
    font-size: 11px;
}

.modal-submit {
    width: 100%;
    height: 42px;
}


/* =========================================================
           RESPONSIVE PART 2
        ========================================================= */

@media(max-width:900px) {

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

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

    .loan-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }

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

@media(max-width:700px) {

    .construction-section {
        padding: 55px 0;
    }

    .construction-heading {
        display: block;
    }

    .construction-enquire {
        margin-top: 20px;
    }

    .construction-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .construction-image {
        height: 280px;
    }

    .construction-content h3 {
        font-size: 26px;
    }

    .service-list {
        grid-template-columns: 1fr;
    }

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

    .interior-card-image {
        height: 230px;
    }

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

    .loan-section {
        padding: 55px 0;
    }

    .loan-content h2 {
        font-size: 29px;
    }

    .contact-content h2 {
        font-size: 29px;
    }

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

    .footer-brand {
        grid-column: 1/-1;
    }

    .whatsapp {
        width: 46px;
        height: 46px;
        right: 15px;
        bottom: 15px;
    }
}

@media(max-width:420px) {

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

    .footer-brand {
        grid-column: auto;
    }
}

/*Details*/



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


.property-title-area h1 {
    color: var(--navy);
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 8px;
}

.property-location {
    color: var(--muted);
    font-size: 13px;
}

    .property-location strong {
        color: var(--navy);
    }

.property-price {
    min-width: 180px;
    text-align: right;
}

.price-label {
    display: block;
    color: var(--muted);
    font-size: 10px;
    margin-bottom: 3px;
}

.price-value {
    color: var(--orange);
    font-size: 23px;
    font-weight: 900;
}

.price-note {
    color: var(--muted);
    font-size: 9px;
}


/* =========================================================
   SLIDER
========================================================= */

.property-gallery {
    display: grid;
    grid-template-columns: 1fr 145px;
    gap: 12px;
}

.main-slider {
    position: relative;
    height: 510px;
    border-radius: 14px;
    overflow: hidden;
    background: #10192c;
}

.slide {
    display: none;
    width: 100%;
    height: 100%;
    position: relative;
}

    .slide.active {
        display: block;
    }

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(5,10,20,.55), transparent 45% );
}

.slide-caption {
    position: absolute;
    left: 25px;
    bottom: 22px;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
}


/* SLIDER BUTTONS */

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: rgba(16,25,44,.8);
    color: #fff;
    font-size: 20px;
    z-index: 5;
    transition: .2s;
}

    .slider-btn:hover {
        background: var(--orange);
    }

.prev-btn {
    left: 15px;
}

.next-btn {
    right: 15px;
}


/* COUNTER */

.slide-counter {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(16,25,44,.8);
    color: #fff;
    padding: 6px 10px;
    border-radius: 5px;
    font-size: 10px;
    font-weight: 700;
    z-index: 5;
}


/* THUMBNAILS */

.thumbnail-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: auto;
    max-height: 510px;
    padding-right: 3px;
}

.thumbnail {
    height: 92px;
    min-height: 92px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    opacity: .65;
    transition: .2s;
}

    .thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .thumbnail:hover,
    .thumbnail.active {
        opacity: 1;
        border-color: var(--orange);
    }


/* =========================================================
   HIGHLIGHTS
========================================================= */

.highlights {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-top: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(16,25,44,.04);
}

.highlight-item {
    padding: 18px;
    border-right: 1px solid var(--border);
}

    .highlight-item:last-child {
        border-right: 0;
    }

.highlight-icon {
    font-size: 19px;
    margin-bottom: 7px;
}

.highlight-label {
    color: var(--muted);
    font-size: 9px;
    text-transform: uppercase;
    font-weight: 700;
}

.highlight-value {
    color: var(--navy);
    font-size: 13px;
    font-weight: 900;
    margin-top: 2px;
}


/* =========================================================
   MAIN CONTENT
========================================================= */

.details-layout {
    display: grid;
    grid-template-columns: minmax(0,1fr) 350px;
    gap: 25px;
    align-items: start;
}


/* =========================================================
   CONTENT CARD
========================================================= */

.content-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(16,25,44,.035);
}

.section-label {
    color: var(--orange);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin-bottom: 7px;
}

.content-card h2 {
    color: var(--navy);
    font-size: 23px;
    margin-bottom: 14px;
}

.content-card p {
    color: #687386;
    font-size: 13px;
    line-height: 1.8;
}


/* =========================================================
   SPECIFICATIONS
========================================================= */

.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

    .spec-table tr {
        border-bottom: 1px solid #edf0f4;
    }

        .spec-table tr:last-child {
            border-bottom: 0;
        }

    .spec-table td {
        padding: 12px 5px;
        font-size: 12px;
    }

        .spec-table td:first-child {
            width: 45%;
            color: var(--muted);
        }

        .spec-table td:last-child {
            color: var(--navy);
            font-weight: 800;
        }


/* =========================================================
   AMENITIES
========================================================= */

.amenities {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 10px;
    margin-top: 15px;
}

.amenity {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f5f7fa;
    border: 1px solid #e7ebf0;
    padding: 11px;
    border-radius: 7px;
    color: #435066;
    font-size: 11px;
    font-weight: 700;
}


/* =========================================================
   GALLERY
========================================================= */

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 10px;
    margin-top: 15px;
}

    .photo-gallery img {
        width: 100%;
        height: 150px;
        object-fit: cover;
        border-radius: 8px;
        cursor: pointer;
        transition: .25s;
    }

        .photo-gallery img:hover {
            transform: scale(1.02);
            opacity: .9;
        }


/* =========================================================
   LOCATION
========================================================= */

.map-box {
    height: 300px;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid var(--border);
    margin-top: 15px;
    background: #e8edf2;
}

    .map-box iframe {
        width: 100%;
        height: 100%;
        border: 0;
    }


/* =========================================================
   SIDEBAR
========================================================= */

.sidebar {
    position: sticky;
    top: 90px;
}

.contact-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 22px;
    box-shadow: var(--shadow);
    margin-bottom: 18px;
}

    .contact-card h3 {
        color: var(--navy);
        font-size: 19px;
        margin-bottom: 5px;
    }

    .contact-card > p {
        color: var(--muted);
        font-size: 11px;
        margin-bottom: 18px;
    }


/* FORM */

.enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.form-group label {
    display: block;
    color: #5f6a7c;
    font-size: 10px;
    font-weight: 800;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    border: 1px solid #dce2ea;
    border-radius: 7px;
    padding: 11px;
    font-size: 12px;
    outline: none;
    color: var(--navy);
    background: #fff;
}

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
        border-color: var(--orange);
    }

.form-group textarea {
    height: 90px;
    resize: vertical;
}

.submit-btn {
    border: 0;
    border-radius: 7px;
    padding: 13px;
    background: var(--orange);
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    transition: .2s;
}

    .submit-btn:hover {
        background: #df6e11;
    }


/* DIRECT CONTACT */

.direct-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 10px;
}

    .direct-contact a {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 6px;
        padding: 11px 7px;
        border-radius: 7px;
        font-size: 10px;
        font-weight: 900;
    }

.call-btn {
    background: #edf3ff;
    color: #2864c7;
}

.whatsapp-btn {
    background: #e8f8f0;
    color: #16834d;
}


/* AGENT */

.agent-card {
    background: var(--navy);
    color: #fff;
    border-radius: 12px;
    padding: 20px;
}

    .agent-card h3 {
        color: #fff;
        font-size: 16px;
        margin-bottom: 4px;
    }

    .agent-card p {
        color: #9da9bb;
        font-size: 10px;
    }

.agent-phone {
    display: block;
    color: var(--orange);
    font-size: 15px;
    font-weight: 900;
    margin: 12px 0;
}

.agent-btn {
    display: block;
    background: var(--orange);
    color: #fff;
    text-align: center;
    padding: 11px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 900;
}


/* =========================================================
   CONTACT SECTION
========================================================= */

.contact-section {
    background: var(--navy);
    padding: 65px 0;
    margin-top: 20px;
}

.contact-section-inner {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact-section h2 {
    color: #fff;
    font-size: 30px;
    margin-bottom: 10px;
}

.contact-section p {
    color: #aab5c5;
    font-size: 13px;
    line-height: 1.7;
}

.contact-buttons {
    display: flex;
    gap: 10px;
}

.big-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 14px 20px;
    border-radius: 7px;
    font-size: 11px;
    font-weight: 900;
}

.big-call {
    background: #fff;
    color: var(--navy);
}

.big-whatsapp {
    background: #16834d;
    color: #fff;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    background: #0b1220;
    color: #8490a3;
    padding: 25px 0;
    text-align: center;
    font-size: 10px;
}


/* =========================================================
   MOBILE STICKY CONTACT
========================================================= */

.mobile-contact-bar {
    display: none;
}


/* =========================================================
   IMAGE LIGHTBOX
========================================================= */

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(4,8,16,.94);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

    .lightbox.active {
        display: flex;
    }

    .lightbox img {
        max-width: 95%;
        max-height: 90vh;
        object-fit: contain;
        border-radius: 8px;
    }

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 25px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: var(--navy);
    font-size: 22px;
    font-weight: 900;
}


/* =========================================================
   TOAST
========================================================= */

.toast {
    position: fixed;
    left: 50%;
    bottom: 25px;
    transform: translate(-50%,30px);
    background: var(--navy);
    color: #fff;
    padding: 12px 20px;
    border-radius: 7px;
    font-size: 11px;
    font-weight: 700;
    opacity: 0;
    pointer-events: none;
    transition: .3s;
    z-index: 4000;
}

    .toast.show {
        opacity: 1;
        transform: translate(-50%,0);
    }


/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:900px) {

    .nav-links {
        display: none;
    }

    .property-gallery {
        grid-template-columns: 1fr;
    }

    .main-slider {
        height: 450px;
    }

    .thumbnail-list {
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        max-height: none;
    }

    .thumbnail {
        min-width: 100px;
        height: 70px;
    }

    .highlights {
        grid-template-columns: repeat(3,1fr);
    }

    .highlight-item:nth-child(3) {
        border-right: 0;
    }

    .details-layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
    }
}


@media(max-width:600px) {

    body {
        padding-bottom: 65px;
    }

    .container {
        width: min(100% - 22px,1180px);
    }

    .main-header {
        height: 60px;
    }

    .header-inner {
        height: 60px;
    }

    .logo {
        font-size: 17px;
    }

    .logo-mark {
        width: 32px;
        height: 32px;
        font-size: 15px;
    }

    .header-contact a {
        width: 34px;
        height: 34px;
        padding: 0;
        justify-content: center;
        font-size: 16px;
    }

    .header-contact span {
        display: none;
    }

    .breadcrumb {
        min-height: 40px;
        font-size: 9px;
        white-space: nowrap;
        overflow: hidden;
    }

    .property-hero {
        padding: 20px 0 30px;
    }

    .property-title-row {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 18px;
    }

    .property-title-area h1 {
        font-size: 24px;
    }

    .property-location {
        font-size: 11px;
    }

    .property-price {
        text-align: left;
    }

    .price-value {
        font-size: 20px;
    }

    .main-slider {
        height: 280px;
        border-radius: 9px;
    }

    .slide-caption {
        left: 15px;
        bottom: 15px;
        font-size: 10px;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 17px;
    }

    .slide-counter {
        font-size: 9px;
    }

    .thumbnail {
        min-width: 82px;
        height: 58px;
    }

    .highlights {
        grid-template-columns: repeat(2,1fr);
        margin-top: 12px;
    }

    .highlight-item {
        padding: 13px;
    }

        .highlight-item:nth-child(2) {
            border-right: 0;
        }

        .highlight-item:nth-child(3) {
            border-right: 1px solid var(--border);
        }

    .highlight-icon {
        font-size: 16px;
    }

    .highlight-value {
        font-size: 11px;
    }

    .content-card {
        padding: 18px;
        margin-bottom: 14px;
    }

        .content-card h2 {
            font-size: 19px;
        }

        .content-card p {
            font-size: 11px;
        }

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

    .amenity {
        font-size: 9px;
        padding: 9px;
    }

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

        .photo-gallery img {
            height: 110px;
        }

    .map-box {
        height: 230px;
    }

    .contact-section {
        padding: 45px 0;
    }

    .contact-section-inner {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .contact-section h2 {
        font-size: 24px;
    }

    .contact-buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .mobile-contact-bar {
        position: fixed;
        display: grid;
        grid-template-columns: 1fr 1fr;
        bottom: 0;
        left: 0;
        right: 0;
        height: 62px;
        z-index: 2000;
        background: #fff;
        border-top: 1px solid var(--border);
        box-shadow: 0 -5px 20px rgba(0,0,0,.12);
    }

        .mobile-contact-bar a {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 7px;
            font-size: 11px;
            font-weight: 900;
        }

    .mobile-call {
        color: #2864c7;
        border-right: 1px solid var(--border);
    }

    .mobile-whatsapp {
        color: #16834d;
    }
}


/* VERY SMALL DEVICES */

@media(max-width:360px) {

    .property-title-area h1 {
        font-size: 21px;
    }

    .main-slider {
        height: 240px;
    }

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

    .highlight-value {
        font-size: 10px;
    }
}



