/* ================= Full homepage final polish ================= */
html {
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    display: block;
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
}

body {
    /* display: flex;
    flex-direction: column;
    height: auto;
    min-height: 100%; */
    /* min-height: 100vh; */

    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding-top: 84px;
    /* same as header height */
}

section {
    scroll-margin-top: 120px;
    /* fixed header fix */
}

.dashboard {
    flex: 1;
}


/* ================= SECTION SPACING ================= */
.hero-carousel {
    margin-bottom: 0;
}

.property-showcase,
.property-section-alt,
.contact-section,
.site-footer {
    position: relative;
    z-index: 1;
}


/* ================= REVEAL ANIMATION ================= */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all .9s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}



.btn-hero,
.btn-whatsapp,
.contact-btn,
.btn-submit {
    position: relative;
    overflow: hidden;
}

.btn-hero::after,
.btn-whatsapp::after,
.contact-btn::after,
.btn-submit::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(-100%);
    transition: .4s;
}

.btn-hero:hover::after,
.btn-whatsapp:hover::after,
.contact-btn:hover::after,
.btn-submit:hover::after {
    transform: translateX(0);
}


.nav-link.active {
    color: #2c5aa0 !important;
    background: rgba(44, 90, 160, 0.12);
}


@media(max-width:576px) {
    .hero-content {
        padding-top: 40px;
    }

    .floating-whatsapp {
        bottom: 18px;
        right: 18px;
    }

    .site-footer {
        text-align: center;
    }
}



/* ================= Main =================  */


* {
    font-family: 'DM Sans', sans-serif;
    box-sizing: border-box;
}


/* ================= HEADER ================= */

.trust-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    height: 84px;
    /* FIXED HEIGHT */
    padding: 0;
    /* ❌ no top-bottom padding */
    background: #ffffff;

    display: flex;
    align-items: center;

    z-index: 9999;
    backdrop-filter: blur(18px);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.08);

    transition: box-shadow .3s ease;
}

/* ONLY SHADOW CHANGE ON SCROLL (NO SIZE CHANGE) */
.trust-header.scrolled {
    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.18);
}

/* ================= HEADER CONTENT ================= */
.header-content {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* ================= LOGO SECTION ================= */
.logo-section {
    display: flex;
    align-items: center;
}

/* LOGO BADGE (LEFT STRIP) */
.logo-badge {
    height: 84px;
    /* SAME AS HEADER */
    display: flex;
    align-items: center;

    padding: 0 18px;

    /*background:*/
    /*    linear-gradient(to bottom,*/
    /*        rgba(13, 54, 110, 0.06),*/
    /*        rgba(13, 54, 110, 0.02));*/

    /*border-right: 1px solid rgba(0, 0, 0, 0.06);*/
}

/* ACTUAL LOGO IMAGE */
.site-logo {
    height: 72px;
    /* 🔥 BIG & CLEAR */
    width: auto;
    object-fit: contain;
    display: block;
}

/* ================= MOBILE ================= */
@media(max-width:768px) {
    .trust-header {
        height: 76px;
    }

    .logo-badge {
        height: 76px;
        padding: 0 14px;
    }

    .site-logo {
        height: 58px;
    }
}


/* HEADER INNER */
.header-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.logo-section {
    display: flex;
    align-items: center;
    gap: .6rem;
}

.logo-icon {
    width: 48px;
    height: 48px;
    /* background:linear-gradient(135deg,#2c5aa0,#1e3d72); */
    background: transparent;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1e3d72;
}

.site-logo {
    width: 98px;
    height: 100px;
    object-fit: contain;
}


/* NAV */
.nav-right {
    display: flex;
    gap: .5rem;
}

.main-nav {
    display: flex;
    list-style: none;
    gap: .25rem;
    margin: 0;
    padding: 0;


    position: absolute;
    left: 70%;
    transform: translateX(-50%);
}

.nav-link {
    padding: .75rem 1.25rem;
    border-radius: 10px;
    color: #4a5568 !important;
    text-decoration: none;
}

.nav-link:hover {
    background: rgba(44, 90, 160, .08);
}

/* BUTTON */
.contact-btn {
    background: linear-gradient(135deg, #2c5aa0, #1e3d72);
    color: #fff !important;
    padding: .75rem 1.7rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
}

/* TOGGLE */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
}

/* MOBILE MENU */
.mobile-menu {
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .35);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

/* ================= HERO SECTION ================= */
.hero-carousel {
    height: 85vh;
    min-height: 520px;
    position: relative;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(30, 61, 114, 0.8),
            rgba(30, 61, 114, 0.35));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1320px;
    margin: 0 auto;
    height: 100%;
    padding: 0 24px;
    display: flex;
    align-items: center;
}

.hero-text {
    max-width: 700px;
    color: #fff;
}

.hero-text h1 {
    font-size: 3.1rem;
    font-weight: 800;
}

.hero-text span {
    color: #ffdf6c;
}

.hero-subtext {
    font-size: 1.15rem;
    margin: 18px 0 32px;
}

/* BUTTONS */
.hero-btns {
    display: flex;
    gap: 18px;
}

.btn-hero {
    background: #fff;
    color: #1e3d72;
    padding: 14px 34px;
    border-radius: 14px;
    font-weight: 700;
    text-decoration: none;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    padding: 14px 30px;
    border-radius: 14px;
    font-weight: 700;
    text-decoration: none;
}

/* RESPONSIVE */
@media(max-width:768px) {
    body {
        padding-top: 76px;
    }

    .nav-right-desktop {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }
}


/* ================= PROPERTY CATEGORIES (SHOWCASE STYLE) ================= */
.property-showcase {
    padding: 110px 0;
    background: #0f172a;
    /* dark luxury background */
}

.showcase-header {
    text-align: center;
    margin-bottom: 80px;
}

.showcase-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
}

.showcase-header p {
    font-size: 1.1rem;
    color: #cbd5e1;
}

.showcase-grid {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* CARD */
.showcase-card {
    position: relative;
    height: 420px;
    border-radius: 26px;
    overflow: hidden;
    cursor: pointer;
    isolation: isolate;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.showcase-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s ease;
}

/* DIAGONAL GLASS OVERLAY */
.showcase-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg,
            rgba(0, 0, 0, 0.65) 40%,
            rgba(44, 90, 160, 0.75));
    clip-path: polygon(0 0, 100% 0, 100% 65%, 0 100%);
    transition: all .6s ease;
}

/* CONTENT */
.showcase-content {
    position: absolute;
    bottom: 28px;
    left: 28px;
    z-index: 2;
    color: #ffffff;
}

.showcase-content h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.showcase-content span {
    font-size: 1rem;
    opacity: 0.9;
}

/* HOVER MAGIC */
.showcase-card:hover img {
    transform: scale(1.15);
}

.showcase-card:hover .showcase-overlay {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    background:
        linear-gradient(135deg,
            rgba(44, 90, 160, 0.85),
            rgba(0, 0, 0, 0.75));
}

/* ================= RESPONSIVE ================= */
@media(max-width:992px) {
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:576px) {
    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .showcase-card {
        height: 360px;
    }

    .showcase-header h2 {
        font-size: 2.2rem;
    }
}


/* ================= CONTACT SECTION ================= */
.contact-section {
    padding: 110px 0;
    background: linear-gradient(to bottom,
            #ffffff,
            #f4f7fb);
}

.contact-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 70px;
    align-items: center;
}

/* LEFT INFO */
.contact-info h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1e3d72;
    margin-bottom: 18px;
}

.contact-info p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #5a6473;
    margin-bottom: 30px;
}

.contact-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-details li {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    font-size: 1rem;
    color: #334155;
}

.contact-details i {
    width: 42px;
    height: 42px;
    background: rgba(44, 90, 160, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c5aa0;
    font-size: 1.1rem;
}

/* FORM CARD */
.contact-form-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(18px);
    border-radius: 26px;
    padding: 45px 40px;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.12);
}

/* FORM */
.contact-form-card form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin: 15px 0;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 14px;
    border-radius: 12px;
    border: 1px solid #dbe2ea;
    font-size: 0.95rem;
    outline: none;
    transition: .3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #2c5aa0;
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.15);
}

/* SUBMIT BUTTON */
.btn-submit {
    margin-top: 10px;
    background: linear-gradient(135deg, #2c5aa0, #1e3d72);
    color: #ffffff;
    border: none;
    padding: 15px;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: .35s;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(44, 90, 160, 0.45);
}

/* ================= RESPONSIVE ================= */
@media(max-width:992px) {
    .contact-inner {
        grid-template-columns: 1fr;
    }

    .contact-info h2 {
        font-size: 2.3rem;
    }
}

@media(max-width:576px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}



/* ================= POPUPS ================= */
.thankyou-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 99999;
}

.thankyou-popup.active {
    opacity: 1;
    visibility: visible;
}

.thankyou-box {
    background: #ffffff;
    padding: 45px 40px;
    border-radius: 22px;
    text-align: center;
    max-width: 420px;
    width: 90%;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
    animation: scaleIn .4s ease;
}

.thankyou-box i {
    font-size: 3.2rem;
    margin-bottom: 14px;
}

.thankyou-popup .fa-circle-check {
    color: #22c55e;
}

.thankyou-popup.error .fa-circle-xmark {
    color: #ef4444;
}

.thankyou-box h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1e3d72;
    margin-bottom: 10px;
}

.thankyou-box p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 24px;
}

.thankyou-box button {
    background: linear-gradient(135deg, #2c5aa0, #1e3d72);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
}

@keyframes scaleIn {
    from {
        transform: scale(.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}



/* ================= ABOUT PAGE DESIGN ================= */

/* ==== HERO ==== */
.lux-about-hero {
    padding: 150px 24px 150px;
    background: #ffffff;
}

.lux-about-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 120px;
    align-items: center;
}

.lux-eyebrow {
    font-size: .75rem;
    letter-spacing: .22em;
    color: #c7b27a;
    margin-bottom: 22px;
    display: inline-block;
}

.lux-about-left h1 {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.05;
    color: #0b1c2d;
}

.lux-about-left h1 span {
    color: #c7b27a;
}

.lux-lead {
    margin-top: 30px;
    font-size: 1.08rem;
    line-height: 1.8;
    color: #475569;
    max-width: 540px;
}

/* LOGO SHOWCASE */
.lux-logo-frame {
    background: #ffffff;
    border-radius: 32px;
    padding: 70px 60px;
    border: 1px solid rgba(199, 178, 122, 0.35);
    box-shadow:
        0 40px 90px rgba(0, 0, 0, 0.14);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.lux-logo-frame img {
    width: 200px;
}

.lux-logo-caption {
    font-size: .75rem;
    letter-spacing: .14em;
    color: #6b7280;
    text-transform: uppercase;
}


/* ==== STATEMENT ==== */
.lux-statement {
    position: relative;
    padding: 70px 24px;
    background: #0b1c2d;
    overflow: hidden;
}

.lux-statement-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 9rem;
    font-weight: 900;
    letter-spacing: .15em;
    color: rgba(255, 255, 255, 0.04);
    white-space: nowrap;
    pointer-events: none;
}

.lux-statement-inner {
    max-width: 900px;
    margin: auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.lux-statement-inner p {
    font-size: 2.2rem;
    line-height: 1.5;
    color: #e5e7eb;
    font-weight: 500;
}

.lux-statement-inner span {
    color: #c7b27a;
    font-weight: 800;
}

.lux-statement-inner small {
    display: block;
    margin-top: 26px;
    font-size: .9rem;
    letter-spacing: .08em;
    color: #94a3b8;
}


/* ==== FOCUS ==== */
.lux-focus {
    padding: 100px 24px;
    background: #ffffff;
}

.lux-focus-inner {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 110px;
    align-items: center;
}

.lux-focus-left h2 {
    font-size: 2.8rem;
    color: #0b1c2d;
    font-weight: 800;
}

.lux-focus-left p {
    margin-top: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #475569;
    max-width: 520px;
}

.lux-focus-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.focus-card {
    padding: 26px;
    border-radius: 18px;
    border: 1px solid rgba(199, 178, 122, 0.4);
    font-size: 1rem;
    font-weight: 600;
    color: #0b1c2d;
    text-align: center;
    background: #ffffff;
}


/* ==== LUXURY VALUES ====*/

.lux-values {
    padding: 120px 24px;
    background: #f8fafc;
}

.lux-values-inner {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 60px;
}

/* SINGLE VALUE */
.lux-value {
    position: relative;
    padding: 60px 48px;
    background: #ffffff;
    border-radius: 28px;
    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.08);
    transition: .4s ease;
}

/* CENTER ONE — HERO */
.lux-value.highlight {
    background: #0b1c2d;
    transform: translateY(-40px);
}

.lux-value.highlight h3,
.lux-value.highlight p {
    color: #ffffff;
}

.lux-value.highlight .lux-tag {
    color: #c7b27a;
}

/* TAG */
.lux-tag {
    display: inline-block;
    font-size: .75rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 16px;
}

/* TITLE */
.lux-value h3 {
    font-size: 1.9rem;
    font-weight: 900;
    color: #0b1c2d;
    margin-bottom: 16px;
    line-height: 1.25;
}

/* TEXT */
.lux-value p {
    font-size: 1rem;
    line-height: 1.9;
    color: #475569;
}

/* HOVER */
.lux-value:hover {
    transform: translateY(-8px);
}

/* RESPONSIVE */
@media(max-width:992px) {
    .lux-values-inner {
        grid-template-columns: 1fr;
    }

    .lux-value.highlight {
        transform: none;
    }
}


/* ==== CLOSING ==== */
.lux-ending {
    padding: 100px 24px;
    background: #0b1c2d;
}

.lux-ending-inner {
    max-width: 800px;
    margin: auto;
    text-align: center;
}

.lux-ending-inner h2 {
    font-size: 3.4rem;
    font-weight: 900;
    line-height: 1.15;
    color: #ffffff;
}

.lux-ending-inner p {
    margin-top: 28px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #cbd5e1;
}

.lux-ending-inner span {
    display: block;
    margin-top: 40px;
    font-size: .85rem;
    letter-spacing: .18em;
    color: #c7b27a;
}

/* ==== RESPONSIVE ====*/
@media(max-width:992px) {

    .lux-about-inner,
    .lux-focus-inner {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .lux-values-inner {
        grid-template-columns: 1fr;
    }

    .lux-about-left h1 {
        font-size: 2.7rem;
    }
}



/* ================= Animated Map Pins Background - PREMIUM CONTACT PAGE ================= */

.map-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

/* Pin Base */
.map-bg .pin {
    position: absolute;
    width: 14px;
    height: 14px;
    background: #2c5aa0;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    opacity: .15;
    animation: pulse 2.8s infinite;
}

/* Inner dot */
.map-bg .pin::after {
    content: "";
    width: 6px;
    height: 6px;
    background: #ffffff;
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 50%;
}

/* Positions */
.map-bg .p1 {
    top: 18%;
    left: 12%;
    animation-delay: 0s;
}

.map-bg .p2 {
    top: 42%;
    left: 78%;
    animation-delay: .6s;
}

.map-bg .p3 {
    top: 68%;
    left: 22%;
    animation-delay: 1.2s;
}

.map-bg .p4 {
    top: 30%;
    left: 55%;
    animation-delay: 1.8s;
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        transform: rotate(-45deg) scale(1);
        opacity: .15;
        box-shadow: 0 0 0 0 rgba(44, 90, 160, .4);
    }

    70% {
        transform: rotate(-45deg) scale(1.4);
        opacity: .05;
        box-shadow: 0 0 0 30px rgba(44, 90, 160, 0);
    }

    100% {
        transform: rotate(-45deg) scale(1);
        opacity: .15;
    }
}

/* Make sure content stays above */
.contact-hero,
.contact-premium-wrap {
    position: relative;
    z-index: 1;
}

/* ================= PREMIUM CONTACT PAGE ================= */

.contact-page-premium {
    padding: 140px 0;
    background:
        radial-gradient(circle at top left, #e0ecff, transparent 40%),
        radial-gradient(circle at bottom right, #e7dfbf, transparent 45%),
        #f8fafc;
}

/* HERO */
.contact-hero {
    text-align: center;
    margin-bottom: 90px;
}

.contact-hero h1 {
    font-size: 3.4rem;
    font-weight: 900;
    color: #1e3d72;
}

.contact-hero p {
    font-size: 1.15rem;
    color: #475569;
    margin-top: 10px;
}

/* MAIN GRID */
.contact-premium-wrap {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 90px;
    align-items: flex-start;
}

/* LEFT */
.contact-premium-left {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.trust-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: rgba(255, 255, 255, 0.9);
    padding: 22px 26px;
    border-radius: 18px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.trust-card i {
    font-size: 1.6rem;
    color: #2c5aa0;
}

.trust-card strong {
    display: block;
    font-size: 1rem;
    color: #1e3d72;
}

.trust-card span {
    font-size: .95rem;
    color: #475569;
}

/* TRUST NOTE */
.trust-note {
    margin-top: 20px;
    background: linear-gradient(135deg, #2c5aa0, #1e3d72);
    color: #fff;
    padding: 30px;
    border-radius: 22px;
}

.trust-note h3 {
    font-size: 1.4rem;
    margin-bottom: 14px;
}

.trust-note ul {
    list-style: none;
    /* ❌ remove dot */
    padding-left: 0;
    margin: 0;
}

.trust-note li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

/* FORM */
.contact-premium-form {
    background: #ffffff;
    padding: 52px 46px;
    border-radius: 28px;
    box-shadow:
        0 0 0 3px rgba(44, 90, 160, 0.08),
        0 40px 90px rgba(0, 0, 0, 0.18);
}

/* RESPONSIVE */
@media(max-width:992px) {
    .contact-premium-wrap {
        grid-template-columns: 1fr;
    }

    .contact-hero h1 {
        font-size: 2.6rem;
    }
}

@media(max-width:576px) {
    .contact-premium-form {
        padding: 36px 28px;
    }
}


/* ================= FOOTER ================= */
footer {
    margin: 0;
    padding-bottom: 0;
    margin-top: auto;
}



@media (max-width: 768px) {

    .footer-col.brand-col {
        text-align: center;
    }

    .footer-logo {
        display: flex;
        flex-direction: column; 
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .footer-logo img {
        width: 60px;
        height: auto;
    }

    .footer-logo span {
        font-size: 20px;
        font-weight: 600;
    }
}



@media (max-width: 768px) {

    .footer-section,
    .footer-contact {
        text-align: center;
    }

    .footer-contact ul {
        padding-left: 0;
        list-style: none;
    }

    .footer-contact li {
        justify-content: center;
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 8px;
    }
}


@media (max-width: 768px) {

    .footer-container {
        text-align: center;
    }

    .footer-container h4,
    .footer-container h3 {
        margin-bottom: 15px;
    }

    .footer-links ul {
        padding-left: 0;
        list-style: none;
    }

    .footer-links li {
        margin-bottom: 8px;
    }
}


.site-footer {
    background: linear-gradient(to right,
            #0f172a,
            #020617);
    color: #cbd5e1;
    padding: 90px 0 0;
    position: relative;
}

/* TOP GLOW LINE */
/* .site-footer::before{
    content:"";
    position:absolute;
    top:0;left:0;right:0;
    height:2px;
    background:linear-gradient(
        to right,
        transparent,
        rgba(255,255,255,0.15),
        transparent
    );
} */

/* INNER */
.footer-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px 70px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 50px;
}

/* BRAND */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
}

.footer-logo img {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-col p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 22px;
    color: #94a3b8;
}

/* SOCIAL */
.footer-social {
    display: flex;
    gap: 14px;
    justify-content: center;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1rem;
    transition: .35s;
}

.footer-social a:hover {
    background: #2c5aa0;
    transform: translateY(-4px);
}

/* COLUMNS */
.footer-col h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 18px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: .3s;
}

.footer-col ul li a:hover {
    color: #ffffff;
    padding-left: 4px;
}

/* CONTACT LIST */
.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #94a3b8;
}

.footer-contact i {
    color: #38bdf8;
}

/* BOTTOM */
.footer-bottom {
    background: #020617;
    text-align: center;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: #94a3b8;
}

/* ================= RESPONSIVE ================= */
@media(max-width:992px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:576px) {
    .footer-inner {
        grid-template-columns: 1fr;
    }
}




/* ================= FLOATING WHATSAPP ================= */
.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 9999;

    background: linear-gradient(135deg, #25D366, #1ebe5d);
    color: #ffffff;
    padding: 14px 18px;
    border-radius: 50px;

    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;

    box-shadow:
        0 12px 30px rgba(37, 211, 102, 0.45);

    animation: whatsappPulse 2s infinite;
    transition: all .35s ease;
}

/* ICON */
.floating-whatsapp i {
    font-size: 1.4rem;
}

/* HOVER */
.floating-whatsapp:hover {
    transform: translateY(-4px);
    box-shadow:
        0 18px 45px rgba(37, 211, 102, 0.65);
}

/* PULSE ANIMATION */
@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55);
    }

    70% {
        box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* MOBILE OPTIMIZATION */
@media(max-width:576px) {
    .floating-whatsapp span {
        display: none;
        /* only icon on small screens */
    }

    .floating-whatsapp {
        padding: 14px;
        border-radius: 50%;
    }
}








.properties-grid {
    padding: 120px 24px;
    max-width: 1320px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.property-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .08);
    transition: .4s;
}

.property-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.property-info {
    padding: 24px;
}

.property-info h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #0b1c2d;
}

.property-info span {
    font-size: .9rem;
    color: #64748b;
}

.property-info strong {
    display: block;
    margin-top: 10px;
    color: #c7b27a;
    font-size: 1.1rem;
}

.property-card:hover {
    transform: translateY(-6px);
}



/* =========================
   PREMIUM MEGA DROPDOWN
========================= */

.custom-dropdown {
    position: relative;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}


/* Rotate icon */
.custom-dropdown.active .dropdown-icon,
.custom-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}


/* Desktop Dropdown */

.mega-dropdown {
    position: absolute;
    top: 120%;
    left: 0;
    min-width: 280px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.35s ease;
    z-index: 999;
}


/* Desktop hover */
@media (min-width: 992px) {
    .custom-dropdown:hover .mega-dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}


/* Mobile active state */
.custom-dropdown.active .mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown Items */

.mega-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px;
    border-radius: 12px;
    text-decoration: none;
    color: #111;
    transition: 0.3s ease;
}

.mega-item i {
    font-size: 20px;
    color: #1e3a8a;
}

.mega-item h6 {
    margin: 0;
    font-weight: 600;
    font-size: 15px;
}

.mega-item small {
    font-size: 12px;
    color: #6b7280;
}

.mega-item:hover {
    background: #f3f4f6;
    transform: translateX(4px);
}

/* Divider between dropdown items */

.mega-item:not(:last-child) {
    position: relative;
    margin-bottom: 6px;
    padding-bottom: 16px;
}

.mega-item:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 52px;
    /* icon ke baad se start hogi */
    width: calc(100% - 52px);
    height: 1px;
    background: linear-gradient(to right,
            rgba(30, 58, 138, 0.15),
            rgba(30, 58, 138, 0.05));
}


/* =========================
   MOBILE STYLE
========================= */

@media (max-width: 991px) {

    .mega-dropdown {
        position: static;
        width: 100%;
        box-shadow: none;
        border-radius: 12px;
        margin-top: 8px;
        padding: 8px;
        background: #f9fafb;
        transform: none;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transition: all 0.4s ease;
    }

    .custom-dropdown.active .mega-dropdown {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
    }

    .mega-item {
        padding: 10px;
    }
}


/* .dropdown-icon {
    font-size: 14px;
    margin-left: 6px;
    transition: all 0.35s ease;
    color: #1e3a8a;
} */

/* Hover animation */
.custom-dropdown:hover .dropdown-icon,
.custom-dropdown.active .dropdown-icon {
    transform: rotate(180deg) scale(1.1);
    color: #2563eb;
}

.dropdown-icon {
    font-size: 14px;
    margin-left: 6px;
    transition: 0.35s ease;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.glass-toggle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: 0.3s ease;
}

.glass-toggle i {
    color: #1e3a8a;
    font-size: 18px;
}

.glass-toggle:hover {
    transform: scale(1.05);
    background: rgba(30, 58, 138, 0.1);
}


/* =========================
   MOBILE MENU PREMIUM DIVIDER
========================= */

.mobile-nav li {
    position: relative;
}

/* Divider line between menu items */
.mobile-nav li:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 20px;
    width: calc(100% - 40px);
    height: 1px;
    background: linear-gradient(to right,
            rgba(30, 58, 138, 0.15),
            rgba(30, 58, 138, 0.05),
            rgba(30, 58, 138, 0.15));
}

/* Space adjust */
.mobile-nav .nav-link {
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 500;
    color: #1f2937;
    transition: 0.3s ease;
}

/* Hover effect */
.mobile-nav .nav-link:hover {
    background: rgba(30, 58, 138, 0.05);
    padding-left: 25px;
}


















/* ===== RIGHT CONTENT FULL WIDTH ===== */

.properties-content {
    flex: 1;
}


.properties-wrapper {
    display: flex;
    gap: 40px;
    /* align-items: flex-start; */

    align-items: stretch;
}

/* Sidebar */
.filter-sidebar {
    width: 260px;
    background: #ffffff;
    border-radius: 20px;
    padding: 28px 25px;
    border: 1px solid #eaeaea;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    height: fit-content;
    /* position: sticky;      
    top: 120px;   */
}

/* ===== DESKTOP ONLY STICKY ===== */
@media(min-width: 992px) {
    .filter-sidebar {
        position: sticky;
        top: 120px;
        /* header height ke according adjust kar sakte ho */
    }
}

/* ===== MOBILE SCROLL NORMAL ===== */
@media(max-width: 991px) {
    .filter-sidebar {
        position: relative;
        top: 0;
        width: 100%;
    }
}


.filter-sidebar h3 {
    margin-bottom: 20px;
}

.filter-item {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 12px 15px;
    margin-bottom: 12px;
    background: #f4f6f9;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.filter-item.active {
    background: #0d2b4d;
    color: #fff;
}

.filter-item:hover {
    background: #e9eef5;
}

/* Grid */
.property-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    /* margin-top: 20px; */
}

/* Card */
.property-card {
    /* background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #eaeaea;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: 0.3s; */

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.property-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.property-image {
    position: relative;
    height: 220px;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.property-card:hover .property-image img {
    transform: scale(1.08);
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #0d2b4d;
    color: #fff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
}

.price-tag {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: #0d2b4d;
    color: #fff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.property-content {
    padding: 20px;
}



.btn-group {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.btn-view,
.btn-enquiry {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    font-size: 10px;
    cursor: pointer;
    font-weight: 500;
    transition: 0.3s ease; 
    text-align: center; 
}

.btn-view {
    background: #081f3f;
    color: #fff;
    border: 1px solid #081f3f;
}

.btn-enquiry {
    background: transparent;
    border: 1px solid #081f3f;
    color: #081f3f;
}

.btn-view:hover,
.btn-enquiry:hover {
    box-shadow: 0 8px 20px rgba(8, 31, 63, 0.2);
    transform: translateY(-2px);
}
a {
    text-decoration: none;
}

/* Responsive */
@media(max-width: 992px) {
    .properties-wrapper {
        flex-direction: column;
    }

    .filter-sidebar {
        width: 100%;
    }

    .property-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 768px) {
    .property-grid {
        grid-template-columns: 1fr;
    }
}


/* ===== PAGINATION ===== */

.pagination-wrapper {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.pagination {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.page-link {
    padding: 8px 14px;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 14px;
}

.page-link:hover {
    background: #f2f2f2;
}

.page-link.active {
    background: #0d2b4d;
    color: #fff;
    border-color: #0d2b4d;
}

.prev-btn,
.next-btn {
    font-weight: 600;
}

.properties-section {
    padding-bottom: 40px;
    padding-top: 40px;
    /* ya adjust karo */
    margin-bottom: 0 !important;
}


















/* property-details */
/* ===== PAGE BACKGROUND ===== */

.details-section {
    padding: 60px 0;
    background: #f4f6f9;
}

.details-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: 600;
}


/* ===== SMALL IMAGE CARD STYLE ===== */

.slider-card {
    max-width: 450px;
    /* card width control */
    margin: 0 auto 40px auto;
    /* center align */
    background: #ffffff;
    border-radius: 12px;
    padding: 15px;
    border: 1px solid #eaeaea;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 350px;
    background: #f2f2f2;

    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Full image show */
    object-position: center;
    background: #ffffff;
    /* Clean background */
}


/* ===== NAVIGATION BUTTONS ===== */

.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    border: 1px solid #ddd;
    width: 38px;
    height: 38px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.prev:hover,
.next:hover {
    background: #f3f3f3;
}


/* ===== DETAILS CARD ===== */

.details-card {
    max-width: 900px;
    margin: auto;
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #eaeaea;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.details-grid div {
    background: #f9fafc;
    padding: 12px;
    border-radius: 6px;
    font-size: 13px;
}

.details-card h3 {
    margin-top: 15px;
}


/* ===== WHATSAPP BUTTON ===== */

/* ===== BUTTON GROUP ===== */

.details-btn-group {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

/* ===== COMMON BUTTON STYLE ===== */

.whatsapp-btn,
.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;              /* 👈 Same height */
    padding: 0 24px;           /* Horizontal padding */
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: 0.3s ease;
}

/* ===== WHATSAPP BUTTON ===== */

.whatsapp-btn {
    background: linear-gradient(135deg, #2c5aa0, #1e3d72);
    color: #fff;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
}

/* ===== SHARE BUTTON ===== */

.share-btn {
    background: #0f172a;
    color: #fff;
}

.share-btn:hover {
    background: #1e293b;
    transform: translateY(-2px);
}

/* ===== RESPONSIVE ===== */

@media(max-width: 992px) {
    .details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 768px) {

    .slider-container {
        height: 230px;
        /* smaller mobile */
    }

    .details-grid {
        grid-template-columns: 1fr;
    }
}



.no-property-message {
    text-align: center;
    padding: 60px 20px;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    color: #fff;
}

.no-property-message h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.no-property-message p {
    opacity: 0.7;
}








/* ================= TABLET FULL WIDTH FIX ================= */

@media (max-width: 1024px) {

    .header-inner,
    .hero-content,
    .showcase-grid,
    .contact-inner,
    .footer-inner,
    .contact-premium-wrap {
        max-width: 100%;
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    .properties-wrapper {
        padding-left: 20px;
        padding-right: 20px;
    }

}
















