/* Custom Sections Styling */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

.about-project-section {
    background-color:#ffffff;
    padding: 60px 0;
    font-family: 'Poppins', sans-serif;
}

.project-flex-wrapper {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.main-wrapper-flex {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-content-left {
    flex: 1;
    min-width: 0;
}

.sticky-sidebar-right {
    width: 330px;
    position: -webkit-sticky;
    position: sticky;
    top: calc(var(--headerheight) + 16px);
    flex-shrink: 0;
    align-self: flex-start;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

/* Enquiry form must not stick inside sidebar (was covering EMI calculator) */
.sticky-sidebar-right .quckEnqForm {
    position: relative;
    top: auto;
    overflow: visible;
    margin-bottom: 20px;
}

.sticky-sidebar-right #normalCaptchaId,
.sticky-sidebar-right #normalCaptchaId > div {
    max-width: 100%;
}

.sticky-sidebar-right #normalCaptchaId iframe {
    max-width: 100%;
}

/* EMI Calculator — sidebar layout fixes */
.sticky-sidebar-right .emi_calculator {
    width: 100%;
    box-sizing: border-box;
    margin-top: 0;
    padding: 20px 18px;
    display: block;
    visibility: visible;
    opacity: 1;
    text-align: center;
}

.sticky-sidebar-right .emi_calculator_sidebar_po {
    width: 100%;
    text-align: center;
}

.sticky-sidebar-right .emi_calculator_sidebar_po h3 {
    text-align: center !important;
}

.sticky-sidebar-right .emi_calculator .form-control {
    text-align: center;
}

.sticky-sidebar-right .emi_calculator .form-control::placeholder {
    text-align: center;
}

.sticky-sidebar-right .emi_calculator .form-group {
    margin-bottom: 14px;
    width: 100%;
}

.sticky-sidebar-right .emi_calculator .input-group {
    display: flex;
    align-items: stretch;
    width: 100%;
    min-height: 44px;
}

.sticky-sidebar-right .emi_calculator .input-group-addon {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    padding: 10px 12px;
    white-space: nowrap;
}

.sticky-sidebar-right .emi_calculator .form-control {
    flex: 1 1 auto;
    min-width: 0;
    width: auto;
    height: auto;
    border: none;
    border-bottom: none;
    padding: 12px 10px;
}

.sticky-sidebar-right .emi_calculator .btn-dark {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100%;
    min-height: 48px;
    height: auto;
    line-height: 1.25 !important;
    padding: 12px 20px !important;
    text-align: center;
    box-sizing: border-box;
    vertical-align: middle;
}

.sticky-sidebar-right .emi_calculator #results {
    display: none;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 2px dashed #e8e8e8;
    width: 100%;
    text-align: center;
}

.sticky-sidebar-right .emi_calculator #results.is-visible,
.sticky-sidebar-right .emi_calculator #results[style*="block"] {
    display: block !important;
}

.sticky-sidebar-right .emi_calculator #results h5 {
    margin-bottom: 12px;
    font-size: 15px;
    font-weight: 700;
    color: #333;
    text-align: center !important;
}

.sticky-sidebar-right .emi_calculator #results .input-group {
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px 12px;
    margin-bottom: 8px;
    background: #f8faff;
    border-radius: 6px;
    border: 1px solid #e8eef8;
    text-align: center;
}

.sticky-sidebar-right .emi_calculator #results .input-group-addon {
    min-width: 0;
    width: 100%;
    text-align: center !important;
    padding: 0;
    border: none;
    background: transparent;
    font-size: 12px;
    color: #666;
    font-weight: 600;
    line-height: 1.3;
    justify-content: center;
}

.sticky-sidebar-right .emi_calculator #results .form-control {
    width: 100%;
    text-align: center !important;
    font-size: 15px;
    font-weight: 700;
    color: #00257a;
    padding: 4px 0 0;
}

@media (min-width: 1025px) {
    /* Internal Scrollbar for Left Side (Requirement: "left side me scrollbar add kar do") */
    .main-content-left {
        max-height: 120vh;
        overflow-y: auto;
        padding-right: 20px;
        scrollbar-width: thin;
        scrollbar-color: #27ae60 #f1f1f1;
    }

    /* Custom Scrollbar Styling */
    .main-content-left::-webkit-scrollbar {
        width: 8px;
    }
    .main-content-left::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }
    .main-content-left::-webkit-scrollbar-thumb {
        background: #27ae60;
        border-radius: 10px;
        border: 2px solid #f1f1f1;
    }
    .main-content-left::-webkit-scrollbar-thumb:hover {
        background: #219150;
    }
}

@media (max-width: 1024px) {
    html.hero-scroll-snap {
        scroll-snap-type: none !important;
    }

    .hero-scroll-priority.banner.property-detail-banner,
    .hero-scroll-priority.property-detail-banner {
        scroll-snap-align: none !important;
        scroll-snap-stop: normal !important;
    }

    .hero-scroll-priority ~ .main-wrapper-flex {
        scroll-snap-align: none !important;
    }

    .main-wrapper-flex {
        flex-direction: column;
    }
    .main-content-left {
        max-height: none;
        overflow-y: visible;
        padding-right: 0;
    }
    .sticky-sidebar-right {
        width: 100%;
        position: relative;
        top: 0;
        margin-top: 30px;
        max-height: none;
        overflow: visible !important;
        overflow-x: hidden;
        overscroll-behavior: auto !important;
        -webkit-overflow-scrolling: auto !important;
        touch-action: pan-y;
    }

    .sticky-sidebar-right .quckEnqForm,
    .sticky-sidebar-right .emi_calculator,
    .sticky-sidebar-right .form {
        touch-action: pan-y;
    }
}

.project-content-left {
    flex: 1;
    text-align: center;
}

.item-right {
    width: 100%;
}


.about-project-section .section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 25px;
    letter-spacing: -0.3px;
    position: relative;
    display: inline-block;
    text-align: center;
}

/* Headline Underline */
.about-project-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #27ae60;
    border-radius: 2px;
}

.about-project-section .section-description {
    width: 100%;
    margin-bottom: 25px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    font-weight: 400;
    text-align: left;
    padding: 15px;
}

.about-project-section .highlight-link {
    color: #d62828;
    text-decoration: underline;
    font-weight: 600;
    cursor: pointer;
}

.about-project-section .button-row {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-prem {
    width: auto;
    padding: 10px 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    border: 2px solid #000;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    letter-spacing: 1px;
    border-radius: 3px;
}

.btn-dark {
    background-color: #000;
    color: #fff;
}

.btn-prem:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    background-color: #333;
    color: #fff;
}

/* Walkthrough Banner Styles (Keeping them here too) */
.walkthrough-banner-section {
    width: 100%;
    height: 450px;
    position: relative;
    overflow: hidden;
    background-color: #000;
    margin-top: 0;
}

.walkthrough-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-color: #001a4d;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.8s ease;
}

.walkthrough-banner-section:hover .walkthrough-bg {
    transform: scale(1.05);
}

.walkthrough-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    pointer-events: none;
}

.walkthrough-content {
    color: #fff;
    max-width: 750px;
    position: relative;
    z-index: 3;
    pointer-events: auto;
    width: 100%;
}

.walkthrough-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.walkthrough-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 35px;
    opacity: 0.9;
}

.walkthrough-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    z-index: 4;
}

.walkthrough-buttons .btn-wt.btn-wt-light,
.walkthrough-buttons button.btn-wt-light {
    background-color: #ffffff !important;
    color: #1a1a1a !important;
    -webkit-text-fill-color: #1a1a1a;
}

.walkthrough-buttons .btn-wt.btn-wt-dark,
.walkthrough-buttons a.btn-wt-dark {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff;
}

.btn-wt,
label.btn-wt,
a.btn-wt,
button.btn-wt {
    width: 220px;
    height: 55px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;
    margin: 0;
}

label.btn-wt,
a.btn-wt,
button.btn-wt {
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
    -webkit-appearance: none;
    appearance: none;
}

button.btn-wt {
    color: #1a1a1a;
}

.btn-wt-light,
button.btn-wt.btn-wt-light,
a.btn-wt.btn-wt-light,
label.btn-wt.btn-wt-light {
    background-color: #ffffff;
    color: #1a1a1a !important;
    border: 2px solid #ffffff;
}

.btn-wt-dark,
button.btn-wt.btn-wt-dark,
a.btn-wt.btn-wt-dark,
label.btn-wt.btn-wt-dark {
    background-color: rgba(255, 255, 255, 0.12);
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.55);
}

.btn-wt-light:hover,
button.btn-wt.btn-wt-light:hover,
a.btn-wt.btn-wt-light:hover {
    background-color: #f0f0f0;
    color: #000000 !important;
    border-color: #ffffff;
}

.btn-wt-dark:hover,
button.btn-wt.btn-wt-dark:hover,
a.btn-wt.btn-wt-dark:hover {
    background-color: rgba(255, 255, 255, 0.22);
    color: #ffffff !important;
}

.btn-wt:hover {
    transform: scale(1.05);
}

/* Right Sidebar Panel — theme aligned with property page */
.custom-sidebar-panel {
    --sidebar-accent: #27ae60;
    --sidebar-accent-dark: #219a52;
    --sidebar-text: #333333;
    --sidebar-muted: #5c5c5c;
    --sidebar-border: #e8ecef;
    --sidebar-bg: #ffffff;
    position: fixed;
    top: 0;
    right: 0;
    width: min(480px, 100vw);
    height: 100%;
    height: 100dvh;
    background: var(--sidebar-bg);
    z-index: 1000001;
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.14);
    transform: translateX(105%);
    transition: transform 0.72s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.72s ease;
    display: flex;
    flex-direction: column;
    font-family: 'Poppins', sans-serif;
    border-left: 4px solid var(--sidebar-accent);
    will-change: transform;
    backface-visibility: hidden;
}

.custom-sidebar-panel.active {
    right: 0;
}

.sidebar-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1000000;
    background: transparent;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    cursor: pointer;
    text-decoration: none;
}

body:has(#project-details-sidebar:target) .sidebar-backdrop,
body:has(#walkthrough-sidebar-panel:target) .sidebar-backdrop,
body:has(#enquire-pop:target) .sidebar-backdrop,
body:has(.enquire-pop.is-open) .sidebar-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background: transparent;
}

.sidebar-header {
    flex-shrink: 0;
    padding: 28px 28px 22px;
    border-bottom: 1px solid var(--sidebar-border);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    background: linear-gradient(180deg, #f8fbf9 0%, #ffffff 100%);
}

.sidebar-header-text {
    flex: 1;
    min-width: 0;
}

.sidebar-eyebrow {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--sidebar-accent);
    margin-bottom: 6px;
}

.sidebar-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.25;
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: 12px;
}

.sidebar-header h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 48px;
    height: 3px;
    background-color: var(--sidebar-accent);
    border-radius: 2px;
}

.close-sidebar {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--sidebar-border);
    background: #fff;
    color: #666;
    line-height: 0;
    transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease, transform 0.2s ease;
}

.close-sidebar:hover {
    color: #1a1a1a;
    border-color: #ccc;
    background: #f5f5f5;
    transform: scale(1.05);
}

.sidebar-content {
    padding: 28px 28px 20px;
    overflow-y: auto;
    flex: 1;
    -webkit-overflow-scrolling: touch;
    color: #555555;
}

.sidebar-content p,
.sidebar-content ul li {
    font-size: 0.98rem;
    line-height: 1.85;
    color: #555555;
    margin: 0 0 20px;
    font-weight: 400;
}

.sidebar-content strong {
    color: #444444;
    font-weight: 600;
}

.sidebar-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.sidebar-content ul li {
    margin-bottom: 10px;
    list-style-type: disc;
}

.sidebar-content p:last-child {
    margin-bottom: 0;
}

.sidebar-footer {
    flex-shrink: 0;
    padding: 20px 28px 28px;
    border-top: 1px solid var(--sidebar-border);
    background: #fafafa;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.04);
}

.btn-sidebar-interest {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 52px;
    padding: 14px 24px;
    background-color: var(--sidebar-accent);
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    box-shadow: 0 4px 14px rgba(39, 174, 96, 0.35);
    transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    box-sizing: border-box;
}

.btn-sidebar-interest:hover {
    background-color: var(--sidebar-accent-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(39, 174, 96, 0.4);
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999998;
    display: none;
}

.sidebar-overlay.active {
    display: block;
}

@media (max-width: 1024px) {
    .project-flex-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    .item-right {
        width: 100%;
        position: static;
    }
    .project-content-left {
        text-align: center;
    }
    .about-project-section .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .about-project-section .button-row {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .custom-sidebar-panel {
        left: 0;
        right: auto;
        width: 100vw;
        max-width: 100vw;
        transform: translateX(100%);
        transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
        border-left: none;
        border-top: 4px solid var(--sidebar-accent, #27ae60);
    }

    #project-details-sidebar:target,
    #walkthrough-sidebar-panel:target {
        left: 0 !important;
        right: auto !important;
        inset: 0 !important;
        width: 100vw !important;
        max-width: 100vw !important;
        transform: translateX(0) !important;
    }

    .walkthrough-sidebar-panel {
        border-top-color: #00257a;
    }

    .sidebar-header {
        padding: 22px 20px 18px;
    }

    .sidebar-content {
        padding: 22px 20px 16px;
    }

    .sidebar-footer {
        padding: 16px 20px 22px;
        padding-bottom: max(22px, env(safe-area-inset-bottom));
    }

    .sidebar-header h2 {
        font-size: 1.35rem;
    }

    .about-project-section .section-title { font-size: 2.2rem; }
}
/* Floor Plans Section */
.section-floorplan {
    background-color: #ffffff;
    padding: 50px 0;
    font-family: 'Poppins', sans-serif;
}

.section-floorplan .heading {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.section-floorplan h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #222;
    display: inline-block;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 15px;
}

.section-floorplan h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #27ae60;
    border-radius: 2px;
}

.section-floorplan p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 15px;
    text-align: center;
}

.section-floorplan .button {
    background-color: #000;
    color: #fff;
    padding: 10px 30px;
    border: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 3px;
}

.section-floorplan .button:hover {
    background-color: #333;
    transform: translateY(-2px);
}

.fpContainer {
    margin-top: 30px;
    position: relative;
}

.fp-scroll-wrap {
    position: relative;
}

.fp-scroll-btn {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 40px;
    height: 40px;
    border: 1px solid #dce8e0;
    border-radius: 50%;
    background: #fff;
    color: #27ae60;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.fp-scroll-btn:hover {
    background: #27ae60;
    color: #fff;
    border-color: #27ae60;
}

.fp-scroll-btn svg {
    width: 18px;
    height: 18px;
    display: block;
}

.fp-scroll-prev { left: -6px; }
.fp-scroll-next { right: -6px; }

.fpContainer .row.gap-row {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 24px;
    padding: 8px 4px 20px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.fpContainer .row.gap-row::-webkit-scrollbar {
    height: 6px;
}
.fpContainer .row.gap-row::-webkit-scrollbar-track {
    background: #eef2ef;
    border-radius: 10px;
}
.fpContainer .row.gap-row::-webkit-scrollbar-thumb {
    background: #27ae60;
    border-radius: 10px;
}

.fpBox {
    flex: 0 0 320px;
    max-width: 320px;
    margin-bottom: 0;
    scroll-snap-align: start;
}

.fpBox .inner.fp-card {
    background: #fff;
    border: 1px solid #e6ece8;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(15, 40, 24, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.fpBox .inner.fp-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(15, 40, 24, 0.12);
    border-color: #c5e6d0;
}

.fp-image-box {
    position: relative;
    width: 100%;
    height: 280px;
    min-height: 280px;
    background: #ffffff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 20px;
    box-sizing: border-box;
    border-bottom: 1px solid #eef0ee;
}

.fp-type-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    background: #27ae60;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 999px;
    line-height: 1;
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.35);
}

.floorplan-image {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 248px;
    object-fit: contain;
    object-position: center;
    margin: 0 auto;
    flex-shrink: 0;
    transition: transform 0.35s ease;
}

.fpBox .inner.fp-card:hover .floorplan-image {
    transform: scale(1.02);
}

.planBase {
    padding: 22px 22px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.fp-spec-list {
    flex: 1;
}

.fpDetails {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #eef2ef;
}

.fpDetails:last-of-type {
    border-bottom: none;
    padding-bottom: 6px;
}

.fp-icon-wrap {
    width: 42px;
    height: 42px;
    min-width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #e8f6ee;
    border-radius: 10px;
}

.fp-icon-wrap svg {
    width: 22px;
    height: 22px;
    stroke: #1e8449;
}

.fptypes small.fp-label {
    display: block;
    color: #7a8a82;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}

.fptypes h6 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a2e24;
    margin: 0;
    line-height: 1.35;
}

.fp-area-value {
    font-weight: 700;
    color: #2c3e36;
    font-size: 0.88rem;
    line-height: 1.5;
    display: block;
}

.fp-area-value + .fp-area-value {
    margin-top: 2px;
    color: #5c6f66;
    font-weight: 600;
    font-size: 0.82rem;
}

.planBase .readmore {
    margin-top: auto;
    padding-top: 16px;
}

.planBase .readmore .button.fp-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    border: 2px solid #27ae60;
    color: #1e8449;
    width: 100%;
    padding: 14px 18px;
    font-size: 0.88rem;
    font-weight: 700;
    border-radius: 8px;
    text-transform: none;
    letter-spacing: 0;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.planBase .readmore .button.fp-cta .fp-cta-arrow {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.planBase .readmore .button.fp-cta:hover {
    background: #27ae60;
    color: #fff;
    border-color: #27ae60;
}

.planBase .readmore .button.fp-cta:hover .fp-cta-arrow {
    transform: translateX(3px);
}

@media (max-width: 991px) {
    .fp-scroll-btn {
        display: flex;
    }

    .fp-scroll-wrap {
        padding: 0 36px;
    }
}

@media (max-width: 991px) {
    .fp-image-box {
        height: 250px;
        min-height: 250px;
        padding: 14px 16px;
    }

    .floorplan-image {
        max-height: 218px;
    }
}

@media (max-width: 768px) {
    .section-floorplan h2 { font-size: 2rem; }
    .fp-image-box {
        height: 220px;
        min-height: 220px;
        padding: 12px 14px;
    }

    .floorplan-image {
        max-height: 192px;
    }

    .fp-scroll-prev { left: 0; }
    .fp-scroll-next { right: 0; }
}

/* ── Specifications Section ── */
.prop-dtl-secB {
    padding: 50px 20px;
    background: #fff;
}

.prop-dtl-secB-bg .heading {
    text-align: center;
    margin-bottom: 30px;
}

.prop-dtl-secB-bg .heading h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #222;
    display: inline-block;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 0;
}

.prop-dtl-secB-bg .heading h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #27ae60;
    border-radius: 2px;
}

.prop-dtl-secB-bg .read-more {
    display: block;
    margin: 20px auto 0;
    padding: 10px 30px;
    background: #000;
    color: #fff;
    border: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 3px;
    transition: background 0.3s ease;
}

.prop-dtl-secB-bg .read-more:hover {
    background: #333;
}

/* ── Amenities Section ── */
.amenities {
    padding: 50px 20px;
    background: #f9f9f9;
}

.amenities .heading {
    text-align: center;
    margin-bottom: 35px;
}

.amenities .heading h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #222;
    display: inline-block;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 15px;
}

.amenities .heading h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #27ae60;
    border-radius: 2px;
}

.amenities .heading p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;

    margin: 0 auto 15px;
}

.amenities .heading .read-more {
    display: block;
    margin: 10px auto 0;
    padding: 10px 30px;
    background: #000;
    color: #fff;
    border: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 3px;
    transition: background 0.3s ease;
}

.amenities .heading .read-more:hover {
    background: #333;
}


/* ── Location Section ── */
.section-location {
    background: linear-gradient(180deg, #f8fbf9 0%, #ffffff 100%);
    padding: 60px 0;
    font-family: 'Poppins', sans-serif;
    width: 100%;
    clear: both;
}

.section-location .heading {
    text-align: center;
    margin-bottom: 40px;
    width: 100%;
}

.section-location .location-intro {
    text-align: left;
    padding: 22px 24px;
    background: #fff;
    border-radius: 14px;
    border-left: 4px solid #27ae60;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.section-location .location-intro p {
    font-size: 0.98rem;
    line-height: 1.75;
    color: #444;
    margin: 0 0 18px;
}

.section-location .location-read-btn {
    padding: 10px 28px;
    font-size: 0.82rem;
}

.section-location .heading h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #222;
    display: inline-block;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.section-location .heading h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background-color: #27ae60;
    border-radius: 2px;
}


/* Button Centering */
.section-location .readmore {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.section-location .button {
    background-color: #000;
    color: #fff;
    padding: 12px 40px;
    border: none;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 4px;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
}

.section-location .button:hover {
    background-color: #27ae60;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
}

.location-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: stretch;
    margin-top: 0;
}

.locationIconBox {
    margin-bottom: 0; /* Let grid gap handle spacing */
}

.locationIconBox .bg-gray-gradient-box {
    background: #ffffff !important;
    border: 1px solid #eaeaea !important;
    border-radius: 10px !important;
    padding: 14px 16px !important;
    transition: border-color 0.25s ease, box-shadow 0.25s ease !important;
    box-shadow: none !important;
    display: flex;
    align-items: center;
    height: 100%;
}

.locationIconBox .bg-gray-gradient-box:hover {
    transform: none;
    box-shadow: 0 6px 18px rgba(39, 174, 96, 0.1) !important;
    border-color: #27ae60 !important;
}

.locationIconBox .img-fluid {
    width: 42px;
    height: 42px;
    margin-right: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f7f3;
    border-radius: 8px;
    padding: 7px;
    flex-shrink: 0;
}

.locationIconBox .img-fluid img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.locationIconBox p {
    font-size: 0.88rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.35;
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}

.locationIconBox .badge {
    background-color: #e8f6ed !important;
    color: #27ae60 !important;
    font-weight: 600;
    font-size: 0.72rem;
    padding: 4px 10px;
    border-radius: 20px;
    margin-top: 0;
    width: fit-content;
    white-space: nowrap;
}

.addressContainer {
    background: #fff !important;
    border: 1px solid #e8ece9 !important;
    border-radius: 14px;
    padding: 20px 22px !important;
    margin-top: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.addressContainer .row {
    row-gap: 16px;
}

.addressContainer .iconBox p {
    font-size: 0.88rem;
    line-height: 1.5;
    color: #333;
    margin-bottom: 0;
}

.addressContainer .iconBox span {
    color: #666;
    font-weight: 500;
}

.addressContainer .text-primary {
    color: #27ae60 !important;
    font-weight: 600;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.location-info-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.location-map-col {
    display: flex;
    min-height: 100%;
}

.location-map-col .mapBox {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e5e5;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
}

.location-map-col .mapBox--embed .mapBox-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #fff;
    color: #222;
    font-size: 0.9rem;
    font-weight: 600;
    flex-shrink: 0;
    border-bottom: 1px solid #eee;
}

.location-map-col .map-pin {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #e8f6ed;
    border-radius: 50%;
    color: #27ae60;
    flex-shrink: 0;
}

.location-map-col .map-title {
    color: #222;
}

.location-map-col .map-embed-wrapper {
    flex: 1;
    min-height: 380px;
    position: relative;
    background: #eee;
}

.location-map-col .map-embed-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 380px;
}

.location-map-col .map-directions-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    background: #27ae60;
    color: #fff !important;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.2s ease;
    flex-shrink: 0;
}

.location-map-col .map-directions-link:hover {
    background: #219a52;
    color: #fff;
    transform: none;
    box-shadow: none;
}

.location-map-col .map-directions-link svg {
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .location-grid-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .location-map-col .map-embed-wrapper,
    .location-map-col .map-embed-wrapper iframe {
        min-height: 300px;
    }
}

/* ── FAQ Section (Professional Theme) ── */
.section-faqs {
    background: #f8f9fa;
    padding: 56px 0 64px;
    font-family: 'Poppins', sans-serif;
    width: 100%;
    clear: both;
    box-sizing: border-box;
}

/* About Developer — box fits content, no empty space below */
.main-wrapper-flex .prop-dtl-secy[data-section="developer"],
.prop-dtl-secy[data-section="developer"] {
    margin-bottom: 24px;
    padding: 22px 24px 18px;
    height: auto;
    min-height: 0;
    box-sizing: border-box;
}

.prop-dtl-secy[data-section="developer"] .heading {
    margin-bottom: 14px;
}

.prop-dtl-secy[data-section="developer"] .heading h2 {
    margin-bottom: 0;
}

.prop-dtl-secy[data-section="developer"] .flex {
    margin-bottom: 16px;
}

.prop-dtl-secy[data-section="developer"] .content {
    margin: 0 0 10px;
    padding: 0;
    min-height: 0 !important;
    max-height: none !important;
    height: auto !important;
    overflow: visible !important;
    display: block !important;
    -webkit-line-clamp: unset !important;
    -webkit-box-orient: unset !important;
}

.prop-dtl-secy[data-section="developer"] .content p {
    margin: 0 0 12px;
    line-height: 1.75;
    font-size: 1rem;
    color: #555;
}

.prop-dtl-secy[data-section="developer"] .content p:last-child {
    margin-bottom: 0;
}

.prop-dtl-secy[data-section="developer"] .content p:empty {
    display: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.prop-dtl-secy[data-section="developer"] .read-more {
    display: inline-block;
    margin: 4px 0 0;
    padding: 0;
    background: transparent;
    border: none;
    color: #27ae60;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    line-height: 1.4;
}

.prop-dtl-secy[data-section="developer"] .read-more:hover {
    color: #219a52;
    text-decoration: underline;
}

.prop-dtl-secy[data-section="developer"] > section,
.prop-dtl-secy[data-section="developer"] section > .empty,
.main-content-left > section:has(.prop-dtl-secy) {
    margin-bottom: 0;
    padding-bottom: 0;
}

.main-content-left > section:has(.prop-dtl-secy) > div {
    margin: 0;
    padding: 0;
}

/* Tighter gap: About Developer → FAQ */
.main-wrapper-flex .prop-dtl-secy[data-section="developer"] {
    margin-bottom: 10px;
}

.main-wrapper-flex + .section-faqs {
    padding-top: 23px;
}

.section-faqs .container-lg {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.section-faqs .faq-section-head {
    text-align: center;
    margin-bottom: 40px;
}

.section-faqs .faq-section-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #27ae60;
    margin-bottom: 10px;
}

.section-faqs .faq-section-head h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 10px;
    letter-spacing: -0.02em;
}

.section-faqs .faq-section-head p {
    font-size: 1rem;
    color: #6b7280;
    margin: 0;
    font-weight: 400;
}

.section-faqs .faq-layout {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0;
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.section-faqs .faq-intro-panel,
.section-faqs .faq-accordion-panel {
    min-width: 0;
    margin: 0;
    border: none;
}

.section-faqs .faq-intro-panel {
    flex: 0 0 32%;
    background: #1a1f2e;
    color: #fff;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
    border-right: 1px solid #2d3548;
}

.section-faqs .faq-intro-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #27ae60;
    z-index: 1;
}

.section-faqs .faq-intro-inner {
    padding: 40px 32px;
    position: relative;
    z-index: 2;
}

.section-faqs .faq-intro-panel h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
    letter-spacing: -0.01em;
}

.section-faqs .faq-intro-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.72);
    margin: 0 0 28px;
}

.section-faqs .faq-intro-points {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}

.section-faqs .faq-intro-points li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.92);
    padding: 11px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.section-faqs .faq-intro-points li:last-child {
    border-bottom: none;
}

.section-faqs .faq-check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(39, 174, 96, 0.2);
    color: #27ae60;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 50%;
}

.section-faqs .faq-cta-btn {
    width: 100%;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.35);
    padding: 14px 20px;
    font-size: 0.82rem;
    font-weight: 600;
    font-family: inherit;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.section-faqs .faq-cta-btn:hover {
    background: #27ae60;
    border-color: #27ae60;
    color: #fff;
    transform: none;
    box-shadow: none;
}

.section-faqs .faq-accordion-panel {
    flex: 1 1 0;
    background: #fff;
    padding: 16px 8px;
    box-sizing: border-box;
}

.section-faqs .faq-item {
    margin: 0 12px 8px;
    border: 1px solid #eef0f2;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.section-faqs .faq-item:last-child {
    margin-bottom: 0;
}

.section-faqs .faq-item:hover {
    border-color: #d1d5db;
}

.section-faqs .faq-item.active {
    border-color: #27ae60;
    box-shadow: 0 4px 16px rgba(39, 174, 96, 0.08);
    background: #fff;
}

.section-faqs .faq-question {
    width: 100%;
    padding: 18px 20px;
    box-sizing: border-box;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: #fff;
    border: none;
    text-align: left;
    font-family: inherit;
    user-select: none;
    transition: background 0.2s ease;
}

.section-faqs .faq-item.active .faq-question {
    background: #fafbfc;
}

.section-faqs .faq-question:hover .q-text {
    color: #27ae60;
}

.section-faqs .q-text {
    flex: 1;
    min-width: 0;
    font-weight: 600;
    color: #1f2937;
    font-size: 0.95rem;
    line-height: 1.5;
    transition: color 0.2s ease;
}

.section-faqs .faq-item.active .q-text {
    color: #27ae60;
}

.section-faqs .faq-icon-wrap {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9fafb;
    transition: all 0.25s ease;
}

.section-faqs .faq-icon-line {
    position: absolute;
    width: 12px;
    height: 2px;
    background: #6b7280;
    border-radius: 1px;
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.25s ease;
}

.section-faqs .faq-icon-line.vert {
    transform: rotate(90deg);
}

.section-faqs .faq-item.active .faq-icon-wrap {
    background: #27ae60;
    border-color: #27ae60;
}

.section-faqs .faq-item.active .faq-icon-line {
    background: #fff;
}

.section-faqs .faq-item.active .faq-icon-line.vert {
    transform: rotate(90deg) scaleX(0);
    opacity: 0;
}

.section-faqs .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fafbfc;
}

.section-faqs .faq-answer-inner {
    padding: 4px 20px 20px;
    margin: 0;
    border: none;
    box-sizing: border-box;
}

.section-faqs .faq-answer p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.7;
    color: #4b5563;
}

@media (max-width: 991px) {
    .section-faqs .container-lg {
        padding: 0 16px;
    }
    .section-faqs .faq-section-head h2 {
        font-size: 1.65rem;
    }
    .section-faqs .faq-layout {
        flex-direction: column;
    }
    .section-faqs .faq-intro-panel {
        flex: none;
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #2d3548;
    }
    .section-faqs .faq-intro-inner {
        padding: 32px 24px;
        text-align: center;
    }
    .section-faqs .faq-intro-points {
        text-align: left;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }
    .section-faqs .faq-accordion-panel {
        flex: none;
        width: 100%;
        padding: 16px 8px 12px;
    }
}

@media (max-width: 576px) {
    .section-faqs {
        padding: 44px 0 52px;
    }
    .section-faqs .faq-section-head {
        margin-bottom: 28px;
    }
    .section-faqs .faq-section-head h2 {
        font-size: 1.45rem;
    }
    .section-faqs .faq-item {
        margin: 0 6px 6px;
    }
    .section-faqs .faq-question {
        padding: 16px 14px;
    }
    .section-faqs .q-text {
        font-size: 0.88rem;
    }
    .section-faqs .faq-answer-inner {
        padding: 4px 14px 16px;
    }
}


/* ── Why Choose Us Section ── */
/* Section */
#why-choose-us-section{
    background: #ffffff;
    padding: 40px 0;
}

/* Outer Main Div Border */
#why-choose-us-section .landing_sec{
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 14px;
    padding: 35px 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}

 /* Subtitle */
.section-subtitle{
    max-width: 950px;
    margin: 0 auto 30px;
    font-size: 0.96rem;
    line-height: 1.8;
    color: #666;
    font-weight: 400;
}

/* Title */
.landing_sec h2.section-title{
    font-size: 2rem;
    font-weight: 700;
    color: #222;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

/* Underline */
.landing_sec h2.section-title::after{
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 55px;
    height: 3px;
    background: #27ae60;
    border-radius: 10px;
}

/* Grid */
.gradient-list{
    counter-reset: li-counter;
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px 25px;
}

/* Card */
.gradient-list li{
    counter-increment: li-counter;
    position: relative;
    background: #ffffff;
    border: 1px solid #ececec;
    border-radius: 10px;
    padding: 18px 20px 18px 70px;
    min-height: 80px;
    display: flex;
    align-items: center;
    font-size: 0.92rem;
    line-height: 1.5;
    color: #444;
    box-shadow: 0 3px 10px rgba(0,0,0,0.04);
    transition: 0.3s ease;
    overflow: hidden;
}

/* Hover */
.gradient-list li:hover{
    border-color: #27ae60;
    transform: translateY(-2px);
}

/* Number Circle INSIDE DIV */
.gradient-list li::before{
    content: counter(li-counter);
    position: absolute;
    left: 15px; /* ab andar rahega */
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    background: #27ae60;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 700;
}

/* Mobile */
@media (max-width: 991px){

    #why-choose-us-section{
        padding: 30px 0;
    }

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

/* ── Hero Image Slider Styles ── */
.hero-slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-swiper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-swiper .swiper-wrapper {
    height: 100%;
}

.hero-swiper .swiper-slide {
    position: relative;
    width: 100% !important;
    height: 100%;
    min-height: 100%;
    flex-shrink: 0;
    overflow: hidden;
}

.hero-swiper .swiper-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
}

.property-detail-banner {
    position: relative;
    overflow: hidden;
}

.property-detail-banner .banner-wrapper {
    position: relative;
    z-index: 2;
    pointer-events: none;
}

.property-detail-banner .banner-wrapper .container,
.property-detail-banner .banner-wrapper .flex,
.property-detail-banner .banner-wrapper .content {
    pointer-events: auto;
}

/* Decrease Hero Image Height on Project Detail Pages */
.property-detail-banner:not(.hero-scroll-priority) .bg {
    height: 32vh !important;
}

@media only screen and (max-width: 1152px) {
    .property-detail-banner:not(.hero-scroll-priority) .bg {
        height: 28vh !important;
    }
}

@media only screen and (max-width: 675px) {
    .property-detail-banner:not(.hero-scroll-priority) .bg {
        height: 24vh !important;
    }
}


/* ── Hero Section & Property Detail Bar Fixes ── */

/* Position title and sector at the bottom left of the banner */
.property-detail-banner .banner-wrapper {
    bottom: 30px !important;
    top: auto !important;
    transform: none !important;
    translate: none !important;
    text-align: left !important;
}

.property-detail-banner .banner-wrapper .container {
    max-width: 1400px;
}

.property-detail-banner h1 {
    font-size: 3rem !important;
    font-weight: 700 !important;
    color: #fff !important;
    margin-bottom: 5px !important;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.property-detail-banner p {
    font-size: 1.2rem !important;
    color: #fff !important;
    opacity: 0.9;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

/* Property detail bar (nav-strip2) */
.nav-strip2 {
    background: #D51C39 !important;
    padding: 0 !important;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.nav-strip2 .nav-strip-wrap {
    padding: 15px 0 !important;
    display: flex;
    justify-content: space-between;
    align-items: center !important;
    background: transparent !important;
}

/* Configuration Details in Blue Bar */
.config-dtl {
    display: flex !important;
    gap: 40px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.config-dtl li {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.config-dtl li .ico {
    border: none !important; /* Remove circle border */
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
}

.config-dtl li .ico svg {
    width: 24px !important;
    height: 24px !important;
}

.config-dtl li .ico svg path {
    fill: #fff !important; /* Ensure icons are white */
}

.config-dtl li .inf {
    padding-left: 0 !important;
}

.config-dtl li span {
    display: block !important;
    font-size: 10px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    color: rgba(255,255,255,0.7) !important;
    margin-bottom: 2px !important;
}

.config-dtl li p {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #fff !important;
    margin: 0 !important;
}

/* Action Buttons in Blue Bar */
.nav-strip-wrap .card {
    margin: 0 !important;
    background: transparent !important;
    border: none !important;
}

.nav-strip-wrap .btn-wrap {
    display: flex !important;
    gap: 12px !important;
    align-items: center !important;
}

.nav-strip-wrap .btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 10px 22px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    border-radius: 4px !important;
    transition: all 0.3s ease !important;
}

/* Gallery Button - White Border */
.nav-strip-wrap .glr-btn {
    background: transparent !important;
    border: 1px solid #fff !important;
    color: #fff !important;
}

.nav-strip-wrap .glr-btn:hover {
    background: #fff !important;
    color: #00257a !important;
}

.nav-strip-wrap .glr-btn svg path {
    fill: currentColor !important;
}

/* Brochure Button - Solid White */
.nav-strip-wrap .brochure-btn {
    background: #fff !important;
    color: #00257a !important;
    border: 1px solid #fff !important;
}

.nav-strip-wrap .brochure-btn:hover {
    background: transparent !important;
    color: #fff !important;
}

.nav-strip-wrap .brochure-btn svg path,
.nav-strip-wrap .brochure-btn svg circle,
.nav-strip-wrap .brochure-btn svg rect {
    stroke: #00257a !important;
}

.nav-strip-wrap .brochure-btn:hover svg path,
.nav-strip-wrap .brochure-btn:hover svg circle,
.nav-strip-wrap .brochure-btn:hover svg rect {
    stroke: #fff !important;
}

/* Whatsapp Button - Green */
.nav-strip-wrap .wtsp-btn {
    background: #25d366 !important;
    color: #fff !important;
    border: 1px solid #25d366 !important;
}

.nav-strip-wrap .wtsp-btn:hover {
    background: #1ebb58 !important;
    border-color: #1ebb58 !important;
}

/* Mobile — override desktop !important nav rules */
@media (max-width: 991px) {
    .property-detail-banner .banner-wrapper h1 {
        font-size: 1.75rem !important;
    }

    .nav-strip2 .nav-strip-wrap {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 16px !important;
        padding: 16px 0 !important;
    }

    .config-dtl {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px 16px !important;
        width: 100% !important;
    }

    .nav-strip-wrap .btn-wrap {
        flex-direction: column !important;
        width: 100% !important;
    }

    .nav-strip-wrap .btn {
        width: 100% !important;
        justify-content: center !important;
    }
}

@media (max-width: 540px) {
    .property-detail-banner .banner-wrapper {
        bottom: 12px !important;
    }

    .property-detail-banner .banner-wrapper h1 {
        display: none !important;
    }
}

/* Legacy class — same as .btn-sidebar-interest */
.btn-sidebar-interest-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 52px;
    padding: 14px 24px;
    background-color: #27ae60;
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    box-shadow: 0 4px 14px rgba(39, 174, 96, 0.35);
    transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    box-sizing: border-box;
}

.btn-sidebar-interest-bottom:hover {
    background-color: #219a52;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(39, 174, 96, 0.4);
}

/* ── HTML/CSS-only panels (:target — no JavaScript) ── */
.sidebar-dismiss-anchor {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

/* No dark overlay — page stays visible behind panel */
.panel-target-backdrop {
    display: none !important;
    pointer-events: none !important;
}

#project-details-sidebar:target,
#walkthrough-sidebar-panel:target {
    transform: translateX(0) !important;
    background-color: #ffffff !important;
    box-shadow: -16px 0 48px rgba(0, 0, 0, 0.16) !important;
    pointer-events: auto;
}

@media (max-width: 768px) {
    .custom-sidebar-panel {
        width: 100vw !important;
        max-width: 100vw !important;
        transform: translateX(105%);
    }

    #project-details-sidebar:target,
    #walkthrough-sidebar-panel:target {
        left: 0 !important;
        right: 0 !important;
        inset: 0 !important;
        width: 100vw !important;
        max-width: 100vw !important;
        transform: translateX(0) !important;
        box-shadow: none !important;
        border-left: none !important;
        border-top: 4px solid #27ae60;
    }

    .walkthrough-sidebar-panel:target {
        border-top-color: #00257a !important;
    }
}

#project-details-sidebar:target .sidebar-header h2,
#walkthrough-sidebar-panel:target .sidebar-header h2 {
    color: #1a1a1a !important;
}

#project-details-sidebar:target .sidebar-content p,
#walkthrough-sidebar-panel:target .sidebar-content p {
    color: #5c5c5c !important;
}

.walkthrough-sidebar-panel .sidebar-header {
    background: linear-gradient(180deg, #f5f8fc 0%, #ffffff 100%);
}

.walkthrough-sidebar-panel {
    border-left-color: #00257a;
}

.walkthrough-sidebar-panel .sidebar-eyebrow {
    color: #00257a;
}

.walkthrough-sidebar-panel .sidebar-header h2::after {
    background-color: #00257a;
}

/* ── Enquire Now panel (same behaviour as hamburger / READ MORE) ── */
.enquire-pop.enquire-pop--sheet {
    z-index: 1000001 !important;
    transform: translateX(105%) !important;
    transition: transform 0.72s cubic-bezier(0.22, 1, 0.36, 1) !important;
    will-change: transform;
}

.enquire-pop.enquire-pop--sheet.is-open,
#enquire-pop.enquire-pop--sheet:target {
    transform: translateX(0) !important;
    z-index: 1000001 !important;
}

.enquire-pop--sheet .enquire-pop-close {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: none;
    background: transparent;
    cursor: pointer;
    color: #1a1a1a;
}

.enquire-pop--sheet .enquire-pop-back-text {
    display: none;
}

.enquire-pop.is-open,
#enquire-pop:target {
    z-index: 1000001 !important;
}

.enquire-pop.is-open .model-body,
.enquire-pop.is-open .form,
.enquire-pop.is-open .form-group,
.enquire-pop.is-open .form-control,
.enquire-pop.is-open textarea,
.enquire-pop.is-open button,
.enquire-pop.is-open label,
.enquire-pop.is-open #quickCaptchaId,
.enquire-pop.is-open #quickCaptchaId * {
    pointer-events: auto !important;
    touch-action: manipulation;
}

.enquire-pop.is-open .form-group input,
.enquire-pop.is-open .form-group textarea {
    -webkit-user-select: text !important;
    user-select: text !important;
}

body:has(.enquire-pop.is-open) .overlay.is-open:not(.overlay--menu),
body:has(#enquire-pop:target) .overlay.is-open:not(.overlay--menu) {
    display: block !important;
    z-index: 1000000 !important;
    opacity: 1 !important;
    background: rgba(0, 0, 0, 0.4) !important;
    pointer-events: auto !important;
    transform: none !important;
}

@media (max-width: 768px) {
    .enquire-pop.enquire-pop--sheet {
        left: 0 !important;
        right: 0 !important;
        width: 100vw !important;
        max-width: 100vw !important;
        height: 100dvh !important;
    }

    .enquire-pop.enquire-pop--sheet.is-open,
    #enquire-pop.enquire-pop--sheet:target {
        inset: 0 !important;
        transform: translateX(0) !important;
    }

    .enquire-pop--sheet .enquire-pop-close {
        position: absolute !important;
        top: max(10px, env(safe-area-inset-top, 10px)) !important;
        left: 14px !important;
        right: auto !important;
        z-index: 5;
        min-height: 44px;
        padding: 8px 14px !important;
        border-radius: 8px;
        background: #f5f5f5 !important;
        border: 1px solid #e5e7eb !important;
    }

    .enquire-pop--sheet .enquire-pop-back-text {
        display: inline;
        font-family: 'Poppins', sans-serif;
        font-size: 0.95rem;
        font-weight: 600;
    }

    .enquire-pop--sheet .model-body {
        flex: 1 1 auto;
        min-height: 0;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
        padding: 58px 18px max(24px, env(safe-area-inset-bottom, 24px)) !important;
    }

    .enquire-pop--sheet .form-group input,
    .enquire-pop--sheet .form-group textarea {
        font-size: 16px !important;
    }
}

#project-details-sidebar:target,
#walkthrough-sidebar-panel:target,
#enquire-pop:target {
    scroll-margin-top: 0;
}

/* Lock page scroll — no jump when side panel opens */
html {
    scrollbar-gutter: stable;
}

html.is-scroll-locked,
html:has(#project-details-sidebar:target),
html:has(#walkthrough-sidebar-panel:target),
html:has(#enquire-pop:target) {
    overflow: hidden !important;
    overscroll-behavior: none;
}

body.is-scroll-locked,
body:has(#project-details-sidebar:target),
body:has(#walkthrough-sidebar-panel:target),
body:has(#enquire-pop:target) {
    overflow: hidden !important;
    overscroll-behavior: none;
    margin-right: 0 !important;
    /* padding-right set by JS = scrollbar width — stops sideways shift */
}

body.ham-menu-open {
    touch-action: none;
}

body.is-scroll-locked header,
body.ham-menu-open header,
body:has(#project-details-sidebar:target) header,
body:has(#walkthrough-sidebar-panel:target) header {
    width: 100% !important;
    max-width: 100% !important;
    margin-right: 0 !important;
}

/* Never use header.css overflow-hidden shift on property pages */
body.is-scroll-locked.overflow-hidden,
body.ham-menu-open.overflow-hidden {
    margin-right: 0 !important;
    position: static !important;
    top: auto !important;
    width: auto !important;
}

body.is-scroll-locked #main,
body.is-scroll-locked .main-wrapper-flex,
body.ham-menu-open #main,
body:has(#project-details-sidebar:target) #main,
body:has(#walkthrough-sidebar-panel:target) #main {
    transform: none !important;
    transition: none !important;
    pointer-events: none;
    touch-action: none;
}

body:has(#project-details-sidebar:target) .custom-sidebar-panel,
body:has(#walkthrough-sidebar-panel:target) .custom-sidebar-panel,
body.is-scroll-locked .custom-sidebar-panel {
    pointer-events: auto;
    touch-action: auto;
}

a.close-sidebar,
a.close {
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

a.btn-prem {
    cursor: pointer;
    display: inline-flex;
    touch-action: manipulation;
    text-decoration: none;
}

a.btn-wt.btn-wt-light,
button.btn-wt.btn-wt-light {
    color: #1a1a1a !important;
}

a.btn-wt.btn-wt-dark,
button.btn-wt.btn-wt-dark {
    color: #ffffff !important;
}

/* Hero — remove empty gap below image on mobile */
@media (max-width: 991px) {
    .banner.property-detail-banner:not(.hero-scroll-priority),
    .property-detail-banner:not(.hero-scroll-priority) {
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        padding: 0 !important;
        margin-bottom: 0 !important;
    }

    .property-detail-banner:not(.hero-scroll-priority) .bg,
    .banner.property-detail-banner:not(.hero-scroll-priority) .bg {
        position: relative !important;
        height: 38vh !important;
        min-height: 240px !important;
        max-height: 320px !important;
    }

    .hero-scroll-priority.banner.property-detail-banner,
    .hero-scroll-priority.property-detail-banner {
        height: 48vh !important;
        min-height: 300px !important;
        max-height: none !important;
    }

    .property-detail-banner .hero-slider-container,
    .property-detail-banner .hero-swiper {
        height: 100% !important;
        min-height: inherit !important;
    }
}

@media (max-width: 540px) {
    .banner.property-detail-banner:not(.hero-scroll-priority),
    .property-detail-banner:not(.hero-scroll-priority) {
        height: 38vh !important;
        min-height: 220px !important;
        max-height: 300px !important;
        overflow: hidden !important;
    }

    .property-detail-banner:not(.hero-scroll-priority) .bg,
    .banner.property-detail-banner:not(.hero-scroll-priority) .bg {
        position: absolute !important;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        height: 100% !important;
        min-height: 100% !important;
        max-height: none !important;
    }

    .hero-scroll-priority.banner.property-detail-banner,
    .hero-scroll-priority.property-detail-banner {
        height: 42vh !important;
        min-height: 260px !important;
        max-height: none !important;
    }

    .property-detail-banner:not(.hero-scroll-priority) .banner-wrapper {
        display: none !important;
    }
}

/* Hero scroll-first: full viewport, then page content */
html.hero-scroll-snap {
    scroll-snap-type: y mandatory;
}

.hero-scroll-priority.banner.property-detail-banner,
.hero-scroll-priority.property-detail-banner {
    --hero-scroll-height: 65vh;
    min-height: var(--hero-scroll-height) !important;
    height: var(--hero-scroll-height) !important;
    max-height: var(--hero-scroll-height) !important;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    overflow: hidden !important;
}

@media only screen and (max-width: 1152px) {
    .hero-scroll-priority.banner.property-detail-banner,
    .hero-scroll-priority.property-detail-banner {
        --hero-scroll-height: 48vh;
    }
}

@media only screen and (max-width: 675px) {
    .hero-scroll-priority.banner.property-detail-banner,
    .hero-scroll-priority.property-detail-banner {
        --hero-scroll-height: 42vh;
        min-height: 280px !important;
    }
}

.hero-scroll-priority .bg,
.hero-scroll-priority.banner.property-detail-banner .bg {
    position: absolute !important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    max-height: none !important;
    overflow: hidden !important;
}

/* Hero image — fill container, no stretch / overflow / gap */
.hero-scroll-priority.banner.property-detail-banner,
.hero-scroll-priority.property-detail-banner {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
}

.hero-scroll-priority .hero-slider-container,
.hero-scroll-priority .hero-swiper,
.hero-scroll-priority .hero-swiper.swiper,
.hero-scroll-priority .hero-swiper .swiper-wrapper {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.hero-scroll-priority .hero-swiper .swiper-slide {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    overflow: hidden !important;
    flex-shrink: 0 !important;
}

.hero-scroll-priority .hero-swiper .swiper-slide img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    object-fit: cover !important;
    object-position: center center !important;
}

.hero-scroll-priority ~ .main-wrapper-flex {
    scroll-snap-align: start;
}

/* Walkthrough — mobile layout */
@media (max-width: 991px) {
    .walkthrough-banner-section {
        height: auto !important;
        min-height: 360px;
        display: block;
        overflow: visible;
    }

    .walkthrough-bg {
        min-height: 360px;
    }

    .walkthrough-overlay {
        position: absolute;
        min-height: 100%;
        padding: 32px 16px;
    }

    .walkthrough-title {
        font-size: 1.75rem !important;
        line-height: 1.25;
    }

    .walkthrough-text {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }

    .walkthrough-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
    }

    label.btn-wt,
    a.btn-wt,
    button.btn-wt,
    .btn-wt {
        width: 100%;
        max-width: 280px;
        min-height: 48px;
        height: auto;
        padding: 14px 20px;
        font-size: 0.95rem;
        letter-spacing: 0.08em;
    }

    button.btn-wt.btn-wt-light {
        color: #1a1a1a !important;
        background-color: #ffffff !important;
    }

    button.btn-wt.btn-wt-dark,
    a.btn-wt.btn-wt-dark {
        color: #ffffff !important;
    }
}

@media (max-width: 480px) {
    .walkthrough-banner-section,
    .walkthrough-bg {
        min-height: 320px;
    }

    .walkthrough-title {
        font-size: 1.5rem !important;
    }
}

/* ── Main navbar links (Home, About Us, Projects, Contact Us) ── */
header .header-wrapper .colB > ul > li:not(.hasdropdown) {
    position: relative;
}

header .header-wrapper .colB > ul > li:not(.hasdropdown)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background: var(--primary);
    transition: width 0.5s ease;
}

header .header-wrapper .colB > ul > li:not(.hasdropdown):hover::after,
header .header-wrapper .colB > ul > li:not(.hasdropdown).is-active::after {
    width: 100%;
}

header .header-wrapper .colB > ul > li:not(.hasdropdown):hover > a,
header .header-wrapper .colB > ul > li:not(.hasdropdown).is-active > a {
    color: var(--primary);
}

/* ── Professional hamburger button (property pages) ── */
header .header-wrapper .colC ul li .ham-btn.ham-btn--pro {
    box-sizing: border-box !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    min-height: 46px !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 1px solid rgba(0, 37, 122, 0.12) !important;
    border-radius: 12px !important;
    background: #ffffff !important;
    background-image: none !important;
    box-shadow:
        0 1px 2px rgba(15, 23, 42, 0.05),
        0 4px 14px rgba(0, 37, 122, 0.1) !important;
    cursor: pointer;
    position: relative !important;
    overflow: hidden;
    vertical-align: middle;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    transition:
        transform 0.2s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease,
        background-color 0.25s ease;
}

/* 3 lines — single centered bar + box-shadow (no misaligned pseudo overlap) */
header .header-wrapper .colC ul li .ham-btn.ham-btn--pro::before {
    content: "" !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    right: auto !important;
    bottom: auto !important;
    width: 18px !important;
    height: 2.5px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    border-radius: 3px !important;
    background: #00257a !important;
    pointer-events: none;
    -webkit-user-select: none;
    user-select: none;
    translate: none !important;
    transform: translate(-50%, -50%) !important;
    box-shadow: 0 -7px 0 #00257a, 0 7px 0 #00257a !important;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

header .header-wrapper .colC ul li .ham-btn.ham-btn--pro::after {
    content: "" !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    right: auto !important;
    bottom: auto !important;
    width: 18px !important;
    height: 2.5px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    border-radius: 3px !important;
    background: transparent !important;
    pointer-events: none;
    opacity: 0;
    translate: none !important;
    transform: translate(-50%, -50%) rotate(0deg) !important;
    box-shadow: none !important;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s ease;
}

header .header-wrapper .colC ul li .ham-btn.ham-btn--pro:hover {
    border-color: rgba(39, 174, 96, 0.45) !important;
    background-color: #f6fbf8 !important;
    box-shadow:
        0 2px 4px rgba(39, 174, 96, 0.08),
        0 8px 20px rgba(39, 174, 96, 0.18) !important;
    transform: translateY(-1px);
}

header .header-wrapper .colC ul li .ham-btn.ham-btn--pro:hover::before {
    background: #27ae60 !important;
    box-shadow: 0 -7px 0 #27ae60, 0 7px 0 #27ae60 !important;
}

header .header-wrapper .colC ul li .ham-btn.ham-btn--pro:active {
    transform: translateY(0) scale(0.96);
    box-shadow: 0 2px 8px rgba(0, 37, 122, 0.12) !important;
}

header .header-wrapper .colC ul li .ham-btn.ham-btn--pro:focus-visible {
    outline: 2px solid #27ae60;
    outline-offset: 3px;
}

@media (max-width: 520px) {
    header .header-wrapper .colC ul li .ham-btn.ham-btn--pro {
        width: 42px !important;
        height: 42px !important;
        min-width: 42px !important;
        min-height: 42px !important;
        border-radius: 10px !important;
    }

    header .header-wrapper .colC ul li .ham-btn.ham-btn--pro::before {
        width: 16px !important;
        height: 2px !important;
        box-shadow: 0 -6px 0 #00257a, 0 6px 0 #00257a !important;
    }

    header .header-wrapper .colC ul li .ham-btn.ham-btn--pro:hover::before {
        box-shadow: 0 -6px 0 #27ae60, 0 6px 0 #27ae60 !important;
    }
}

.ham-pop.ham-pop--modern {
    max-width: 420px !important;
    z-index: 1000001 !important;
    background: #ffffff !important;
    border-left: 4px solid #27ae60;
    box-shadow: -16px 0 48px rgba(0, 0, 0, 0.14) !important;
    display: flex;
    flex-direction: column;
    overflow: hidden !important;
    transform: translateX(105%) !important;
    transition:
        transform 0.72s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.72s ease !important;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.ham-pop.ham-pop--modern .model-body {
    overflow-y: hidden !important;
    overflow-x: hidden !important;
}

.ham-pop--modern.is-open {
    transform: translateX(0%) !important;
    box-shadow: -20px 0 56px rgba(0, 0, 0, 0.18) !important;
}

/* Menu content — aram se fade in after panel slides */
.ham-pop--modern .ham-pop-top,
.ham-pop--modern .ham-pop-eyebrow,
.ham-pop--modern .ham-nav-list > li,
.ham-pop--modern .ham-pop-actions {
    opacity: 0;
    transform: translateX(20px);
    transition:
        opacity 0.45s ease,
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.ham-pop--modern:not(.is-open) .ham-pop-top,
.ham-pop--modern:not(.is-open) .ham-pop-eyebrow,
.ham-pop--modern:not(.is-open) .ham-nav-list > li,
.ham-pop--modern:not(.is-open) .ham-pop-actions {
    transition-duration: 0.2s;
    transition-delay: 0s !important;
}

.ham-pop--modern.is-open .ham-pop-top {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.18s;
}

.ham-pop--modern.is-open .ham-pop-eyebrow {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.26s;
}

.ham-pop--modern.is-open .ham-nav-list > li:nth-child(1) { opacity: 1; transform: translateX(0); transition-delay: 0.32s; }
.ham-pop--modern.is-open .ham-nav-list > li:nth-child(2) { opacity: 1; transform: translateX(0); transition-delay: 0.38s; }
.ham-pop--modern.is-open .ham-nav-list > li:nth-child(3) { opacity: 1; transform: translateX(0); transition-delay: 0.44s; }
.ham-pop--modern.is-open .ham-nav-list > li:nth-child(4) { opacity: 1; transform: translateX(0); transition-delay: 0.5s; }
.ham-pop--modern.is-open .ham-nav-list > li:nth-child(5) { opacity: 1; transform: translateX(0); transition-delay: 0.56s; }
.ham-pop--modern.is-open .ham-nav-list > li:nth-child(6) { opacity: 1; transform: translateX(0); transition-delay: 0.62s; }

.ham-pop--modern.is-open .ham-pop-actions {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.68s;
}

/* Overlay — smooth fade when menu opens */
.overlay.overlay--menu {
    transition: opacity 0.55s ease !important;
}

.overlay.is-open.overlay--menu {
    transition: opacity 0.55s ease !important;
}

/* Hamburger → X when menu open */
body.ham-menu-open header .header-wrapper .colC ul li .ham-btn.ham-btn--pro {
    background: #f6fbf8 !important;
    background-image: none !important;
    border-color: rgba(39, 174, 96, 0.35) !important;
}

body.ham-menu-open header .header-wrapper .colC ul li .ham-btn.ham-btn--pro::before {
    top: 50% !important;
    left: 50% !important;
    background: #27ae60 !important;
    box-shadow: none !important;
    transform: translate(-50%, -50%) rotate(45deg) !important;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), background 0.25s ease, box-shadow 0.25s ease;
}

body.ham-menu-open header .header-wrapper .colC ul li .ham-btn.ham-btn--pro::after {
    opacity: 1 !important;
    top: 50% !important;
    left: 50% !important;
    background: #27ae60 !important;
    transform: translate(-50%, -50%) rotate(-45deg) !important;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), background 0.25s ease, opacity 0.2s ease;
}

@media (prefers-reduced-motion: reduce) {
    .ham-pop.ham-pop--modern,
    .ham-pop--modern .ham-pop-top,
    .ham-pop--modern .ham-pop-eyebrow,
    .ham-pop--modern .ham-nav-list > li,
    .ham-pop--modern .ham-pop-actions,
    header .header-wrapper .colC ul li .ham-btn.ham-btn--pro::before,
    header .header-wrapper .colC ul li .ham-btn.ham-btn--pro::after {
        transition-duration: 0.01ms !important;
        transition-delay: 0s !important;
    }
}

.ham-pop--modern .ham-pop-top {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 19px 24px;
    border-bottom: 1px solid #eef1f3;
    background: linear-gradient(180deg, #f8fbf9 0%, #ffffff 100%);
}

.ham-pop--modern .ham-pop-logo {
    display: block;
    line-height: 0;
    max-width: 150px;
}

.ham-pop--modern .ham-pop-logo img {
    width: 100%;
    height: auto;
    display: block;
}

.ham-pop--modern .ham-pop-close {
    position: static !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    background: #fff;
    color: #555;
    flex-shrink: 0;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.ham-pop--modern .ham-pop-close:hover {
    background: #f5f5f5;
    color: #1a1a1a;
    border-color: #ccc;
}

.ham-pop--modern .model-body {
    padding: 17px 20px 23px !important;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    overflow: hidden !important;
    height: auto;
}

.ham-pop--modern .ham-pop-eyebrow {
    margin: 0 4px 11px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #27ae60;
}

.ham-pop--modern .ham-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ham-pop--modern .ham-nav-list > li {
    margin-bottom: 7px !important;
}

.ham-pop--modern .ham-nav-list > li:last-child {
    margin-bottom: 0 !important;
}

.ham-pop--modern .ham-nav-list > li > a {
    display: flex !important;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 11px 14px !important;
    font-size: inherit !important;
    font-weight: inherit !important;
    color: inherit !important;
    text-decoration: none;
    background: #fafbfc;
    border: 1px solid #eef1f3;
    border-radius: 10px;
    transition: background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, transform 0.2s ease;
    box-sizing: border-box;
}

.ham-pop--modern .ham-nav-list > li > a:hover {
    background: #fff;
    border-color: #27ae60;
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.12);
    transform: translateX(4px);
    color: inherit !important;
}

.ham-pop--modern .ham-nav-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #e8ecef;
    color: #00257a;
}

.ham-pop--modern .ham-nav-text {
    flex: 1;
    min-width: 0;
    text-align: left;
}

.ham-pop--modern .ham-nav-text strong {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 2px;
}

.ham-pop--modern .ham-nav-text small {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    font-weight: 400;
    color: #777;
    line-height: 1.35;
}

.ham-pop--modern .ham-nav-arrow {
    flex-shrink: 0;
    font-size: 1.35rem;
    line-height: 1;
    color: #27ae60;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.ham-pop--modern .ham-nav-list > li > a:hover .ham-nav-arrow {
    opacity: 1;
    transform: translateX(0);
}

.ham-pop--modern .ham-pop-actions {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid #eef1f3;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
}

.ham-pop--modern .ham-pop-phone {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 11px 14px;
    background: #f0f4ff;
    border: 1px solid #d8e2ff;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.ham-pop--modern .ham-pop-phone:hover {
    background: #e8eeff;
    border-color: #00257a;
}

.ham-pop--modern .ham-pop-phone-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #00257a;
}

.ham-pop--modern .ham-pop-phone strong {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 0.02em;
}

.ham-pop--modern .ham-pop-enquire-btn {
    width: 100%;
    min-height: 46px;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    background:#000;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(39, 174, 96, 0.35);
    transition: background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.ham-pop--modern .ham-pop-enquire-btn:hover {
    background: #219a52;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(39, 174, 96, 0.4);
}

.ham-pop--modern .bottom-list {
    display: none !important;
}

/* Hamburger menu: keep main content visible — no dark dim */
.overlay.is-open.overlay--menu {
    display: block !important;
    z-index: 99998 !important;
    opacity: 1 !important;
    background: transparent !important;
    pointer-events: auto;
}

@media (max-width: 675px) {
    .overlay.is-open.overlay--menu {
        display: block !important;
        background: transparent !important;
        opacity: 1 !important;
    }

    /* Other modals (enquire etc.) keep dim on mobile */
    .overlay.is-open:not(.overlay--menu) {
        z-index: 99998 !important;
        opacity: 0.45 !important;
        background: rgba(0, 0, 0, 0.55) !important;
    }
}

@media (max-width: 480px) {
    .ham-pop--modern {
        max-width: 100% !important;
        border-left: none;
        border-top: 4px solid #27ae60;
    }

    .ham-pop--modern .ham-pop-top {
        padding: 18px 16px;
    }

    .ham-pop--modern .model-body {
        padding: 14px 16px 19px !important;
        padding-bottom: max(19px, env(safe-area-inset-bottom)) !important;
        overflow: hidden !important;
    }

    .ham-pop--modern .ham-nav-text strong {
        font-size: 0.95rem;
    }
}




/* =========================================
   Eldeco Highlights Section Design
========================================= */

body{
    background: linear-gradient(to bottom, #f4f8f2, #edf4ea);
    font-family: Arial, sans-serif;
    color: #222;
  }

  /* Main Left Content */

  .left-content{
    background: #ffffff;
    padding: 45px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
  }

  /* Heading */

  .left-content h2{
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 35px;
    color: #173624;
    font-weight: 700;
    position: relative;
    padding-bottom: 14px;
  }

  /* Underline */

  .left-content h2::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 90px;
    height: 3px;
    background: #d62828;
  }

  /* Highlight Text Color */

  .left-content h2 span{
    color: #d62828;
  }

  /* Paragraph */

  .left-content p{
    font-size: 17px;
    line-height: 1.9;
    color: #5c5c5c;
    margin-bottom: 35px;
  }

  /* List */

  .highlight-list{
    list-style: none;
    padding: 0;
    margin: 0;
  }

  /* List Items */

  .highlight-list li{
    background: #f9fcf8;
    margin-bottom: 18px;
    padding: 10px;
    border-radius: 18px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    border: 1px solid #e4eee1;
    transition: all 0.35s ease;
    position: relative;
  }

  /* Hover Effect */

  .highlight-list li:hover{
    transform: translateY(-5px);
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }

  /* Point Symbol */

  .icon{
    min-width: 10px;
    width: 10px;
    height: 10px;
    background: #d62828;
    border-radius: 50%;
    margin-top: 10px;
    flex-shrink: 0;
    box-shadow: 0 0 0 6px rgba(214,40,40,0.10);
  }

  /* Text */

  .highlight-text{
    font-size: 16px;
    line-height: 1.7;
    color: #2f2f2f;
    font-weight: 500;
  }

  /* Responsive */

  @media(max-width: 991px){

    .left-content{
      padding: 35px;
    }

    .left-content h2{
      font-size: 34px;
    }

  }

  @media(max-width: 768px){

    .left-content{
      padding: 28px 22px;
    }

    .left-content h2{
      font-size: 28px;
    }

    .left-content p{
      font-size: 15px;
      line-height: 1.8;
    }

    .highlight-list li{
      padding: 16px;
      border-radius: 16px;
      gap: 14px;
    }

    .highlight-text{
      font-size: 15px;
    }

    .icon{
      min-width: 8px;
      width: 8px;
      height: 8px;
      margin-top: 8px;
    }

  }
