/* Contact page specific styles — extracted from contact.php */
        /* Prevent horizontal scroll on small screens */
        html,
        body {
            overflow-x: hidden;
        }

        /* ---------- Inner Banner ---------- */
        @media (max-width: 767px) {
            .inner-banner .inner-title h2 {
                font-size: 26px;
                line-height: 1.4;
            }

            .inner-banner .inner-title span {
                font-size: 13px;
            }
        }

        @media (max-width: 575px) {
            .inner-banner .inner-title h2 {
                font-size: 22px;
            }
        }

        /* ---------- Contact Intro Area ---------- */
        .contact-intro-area {
            position: relative;
            padding-top: 50px;
            padding-bottom: 40px;
            background-color: #ffffff;
            overflow: hidden;
        }

        /* faint gold corner motif â€” the one ornamental flourish for this section */
        .contact-intro-area::before {
            content: "";
            position: absolute;
            top: -60px;
            right: -60px;
            width: 260px;
            height: 260px;
            border: 1px solid rgba(171, 132, 42, 0.25);
            border-radius: 50%;
            pointer-events: none;
        }

        .contact-intro-content .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-family: 'Poppins', sans-serif;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: #ab842a;
            margin-bottom: 18px;
        }

        .contact-intro-content .eyebrow::before {
            content: "";
            width: 34px;
            height: 1px;
            background-color: #ab842a;
            display: inline-block;
        }

        .contact-intro-content h2 {
            font-family: 'Cormorant', serif;
            font-weight: 600;
            font-size: 40px;
            line-height: 1.25;
            color: #1c2e46;
            margin-bottom: 22px;
        }

        .contact-intro-content h2 span {
            color: #ab842a;
        }

        .contact-intro-content p {
            font-family: 'Poppins', sans-serif;
            font-size: 15.5px;
            line-height: 1.9;
            color: #5c5c5c;
            margin-bottom: 18px;
        }

        .contact-intro-features {
            list-style: none;
            margin: 32px 0 38px;
            padding: 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 22px 20px;
        }

        .contact-intro-features li {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding-left: 16px;
            border-left: 2px solid rgba(171, 132, 42, 0.3);
            transition: border-color 0.3s ease;
        }

        @media (hover: hover) and (pointer: fine) {
            .contact-intro-features li:hover {
                border-left-color: #ab842a;
            }
        }

        .contact-intro-features .feature-icon {
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 2px;
        }

        .contact-intro-features .feature-icon i {
            font-size: 24px;
            color: #ab842a;
        }

        .contact-intro-features h4 {
            font-family: 'Cormorant', serif;
            font-size: 18px;
            font-weight: 700;
            color: #1c2e46;
            margin: 0 0 4px;
        }

        .contact-intro-features p {
            font-family: 'Poppins', sans-serif;
            font-size: 13.5px;
            line-height: 1.6;
            color: #777;
            margin: 0;
        }

        .contact-intro-features p a {
            color: #ab842a;
            font-weight: 600;
            text-decoration: none;
            transition: color 0.25s ease;
            word-break: break-all;
        }

        .contact-intro-features p a:hover {
            color: #8a6320;
            text-decoration: underline;
        }

        .contact-intro-features .feature-link {
            display: block;
            font-family: 'Cormorant', serif;
            font-size: 18px;
            font-weight: 700;
            color: #ab842a;
            text-decoration: none;
            letter-spacing: 0.3px;
            line-height: 1.45;
            margin-top: 4px;
            transition: color 0.25s ease, transform 0.25s ease;
            word-break: break-all;
        }

        .contact-intro-features .feature-link:first-of-type {
            margin-top: 6px;
        }

        .contact-intro-features .feature-link:hover {
            color: #8a6320;
            text-decoration: underline;
        }

        .contact-intro-features .feature-link + .feature-link {
            margin-top: 2px;
        }

        .contact-intro-content .default-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        /* ---------- Image column ---------- */
        /* ---------- Image column ---------- */
        .contact-intro-area .row.align-items-center {
            align-items: stretch !important;
            /* dono columns equal height ke liye */
        }

        .contact-intro-content {
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .contact-intro-image {
            position: relative;
            padding: 14px;
            height: 100%;
        }

        .contact-intro-image .image-frame {
            position: relative;
            height: 100%;
            min-height: 420px;
            /* fallback, content chhota ho tab bhi image bahut chhoti na ho */
            border-radius: 16px;
            overflow: hidden;
            border: 2px solid #ab842a;
            box-shadow: 0 25px 55px rgba(28, 46, 70, 0.18);
            background-color: #1c2e46;
        }

        /* Mobile par columns stack ho jate hain, tab wapas fixed aspect-ratio use karo */
        @media (max-width: 991px) {
            .contact-intro-content {
                height: auto;
            }

            .contact-intro-image {
                height: auto;
            }

            .contact-intro-image .image-frame {
                height: auto;
                aspect-ratio: 4 / 5;
                min-height: 0;
            }
        }

        .contact-intro-image .image-frame img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
            border-radius: 14px;
            transition: transform 0.6s ease;
        }

        @media (hover: hover) and (pointer: fine) {
            .contact-intro-image .image-frame:hover img {
                transform: scale(1.06);
            }
        }

        /* gold offset frame behind the image â€” the section's signature detail */
        .contact-intro-image::after {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            width: 88%;
            height: 92%;
            border: 1px solid rgba(171, 132, 42, 0.55);
            border-radius: 16px;
            z-index: -1;
        }

        @media (max-width: 991px) {
            .contact-intro-area {
                padding-top: 40px;
                padding-bottom: 30px;
            }

            .contact-intro-content {
                margin-bottom: 25px;
                text-align: left;
            }

            .contact-intro-content h2 {
                font-size: 32px;
            }
        }

        @media (max-width: 575px) {
            .contact-intro-content h2 {
                font-size: 26px;
            }

            .contact-intro-features {
                grid-template-columns: 1fr;
            }
        }

        /* ---------- BHK Configurations Area ---------- */
        .bhk-config-area {
            position: relative;
            padding-top: 5px;
            padding-bottom: 40px;
            background-color: #ffffff;
            overflow: hidden;
        }

        /* ---------- Brochure Download Area ---------- */
        .brochure-area {
            position: relative;
            padding-top: 50px;
            padding-bottom: 40px;
            background-color: #fbf3e9;
            overflow: hidden;
        }

        /* Content column */
        .brochure-content .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-family: 'Poppins', sans-serif;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: #ab842a;
            margin-bottom: 18px;
        }

        .brochure-content .eyebrow::before {
            content: "";
            width: 34px;
            height: 1px;
            background-color: #ab842a;
            display: inline-block;
        }

        .brochure-content h2 {
            font-family: 'Cormorant', serif;
            font-weight: 700;
            font-size: 42px;
            line-height: 1.22;
            color: #1c2e46;
            margin-bottom: 16px;
        }

        .brochure-content h2 span {
            background: linear-gradient(90deg, #ab842a, #d8ab4f);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .brochure-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 24px;
        }

        .brochure-stats span {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            font-family: 'Poppins', sans-serif;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.4px;
            color: #ab842a;
            background-color: #ffffff;
            border: 1px solid #e8e0d4;
            border-radius: 20px;
            padding: 7px 15px;
            box-shadow: 0 4px 12px rgba(28, 46, 70, 0.05);
        }

        .brochure-stats span i {
            font-size: 15px;
        }

        .brochure-content>p {
            font-family: 'Poppins', sans-serif;
            font-size: 15.5px;
            line-height: 1.9;
            color: #5c5c5c;
            margin-bottom: 26px;
        }

        .brochure-sub-label {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: 'Poppins', sans-serif;
            font-size: 12.5px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: #1c2e46;
            margin-bottom: 18px;
        }

        .brochure-sub-label::after {
            content: "";
            flex: 1;
            height: 1px;
            background: linear-gradient(90deg, rgba(171, 132, 42, 0.4), transparent);
        }

        .brochure-grid {
            list-style: none;
            margin: 0 0 30px;
            padding: 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px 16px;
        }

        .brochure-grid li {
            position: relative;
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Poppins', sans-serif;
            font-size: 14px;
            font-weight: 500;
            line-height: 1.4;
            color: #333;
            background-color: #ffffff;
            border: 1px solid #eee1cc;
            border-left: 3px solid #e8e0d4;
            border-radius: 10px;
            padding: 13px 14px;
            transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
        }

        @media (hover: hover) and (pointer: fine) {
            .brochure-grid li:hover {
                border-left-color: #ab842a;
                background-color: #fffdf7;
                transform: translateY(-3px);
                box-shadow: 0 12px 26px rgba(28, 46, 70, 0.1);
            }
        }

        .brochure-grid li .num {
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: linear-gradient(145deg, #fbf3e9, #f3e3c8);
            color: #ab842a;
            font-family: 'Cormorant', serif;
            font-weight: 700;
            font-size: 15px;
        }

        .brochure-disclaimer {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding-top: 22px;
            margin-bottom: 30px;
            border-top: 1px solid rgba(171, 132, 42, 0.25);
        }

        .brochure-disclaimer .note-icon {
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 26px;
            height: 26px;
            border-radius: 50%;
            border: 1px solid #ab842a;
            color: #ab842a;
            font-size: 15px;
            margin-top: 2px;
        }

        .brochure-disclaimer p {
            font-family: 'Poppins', sans-serif;
            font-size: 13px;
            line-height: 1.7;
            color: #777;
            margin: 0;
        }

        .brochure-content .default-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        /* Visual column â€” glowing stacked cover */
        .brochure-visual {
            position: relative;
            padding: 24px 24px 24px 44px;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .brochure-stack {
            position: relative;
            width: 100%;
            max-width: 380px;
            min-height: 500px;
            margin: 0 auto;
        }

        .brochure-stack .glow {
            position: absolute;
            inset: -30px;
            background: radial-gradient(circle, rgba(171, 132, 42, 0.35) 0%, rgba(171, 132, 42, 0) 65%);
            z-index: -2;
            filter: blur(4px);
        }

        .brochure-stack .sheet-back-2,
        .brochure-stack .sheet-back-1 {
            position: absolute;
            inset: 0;
            border-radius: 18px;
            background-color: #ffffff;
            border: 1px solid #e8e0d4;
            box-shadow: 0 20px 40px rgba(28, 46, 70, 0.1);
        }

        .brochure-stack .sheet-back-2 {
            transform: rotate(8deg) translate(10px, 6px);
            background-color: #f3e6cf;
            border-color: #e3d2ac;
            z-index: 0;
        }

        .brochure-stack .sheet-back-1 {
            transform: rotate(-5deg) translate(-6px, 4px);
            z-index: 1;
        }

        .brochure-cover {
            position: relative;
            z-index: 2;
            width: 100%;
            min-height: 500px;
            border-radius: 18px;
            overflow: hidden;
            background: linear-gradient(160deg, #1c2e46 0%, #101b2c 100%);
            border: 2px solid #ab842a;
            box-shadow: 0 35px 65px rgba(28, 46, 70, 0.35);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 54px 34px;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }

        @media (hover: hover) and (pointer: fine) {
            .brochure-visual:hover .brochure-cover {
                transform: translateY(-6px) rotate(1deg);
                box-shadow: 0 45px 75px rgba(28, 46, 70, 0.4);
            }
        }

        .brochure-cover::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at 15% 10%, rgba(171, 132, 42, 0.3), transparent 45%),
                radial-gradient(circle at 90% 90%, rgba(171, 132, 42, 0.18), transparent 40%);
            pointer-events: none;
        }

        .brochure-cover::after {
            content: "";
            position: absolute;
            inset: 14px;
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: 12px;
            pointer-events: none;
        }

        /* shimmer sweep */
        .brochure-cover .shine {
            position: absolute;
            top: 0;
            left: -60%;
            width: 40%;
            height: 100%;
            background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.12), transparent);
            transform: skewX(-20deg);
            animation: shineSweep 5s ease-in-out infinite;
            pointer-events: none;
        }

        @keyframes shineSweep {
            0% {
                left: -60%;
            }

            45% {
                left: 120%;
            }

            100% {
                left: 120%;
            }
        }

        .brochure-cover .cover-ribbon {
            position: absolute;
            top: 24px;
            left: -36px;
            width: 160px;
            transform: rotate(-45deg);
            background: linear-gradient(90deg, #ab842a, #c79a3d);
            color: #ffffff;
            font-family: 'Poppins', sans-serif;
            font-size: 10.5px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            text-align: center;
            padding: 6px 0;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
            z-index: 3;
        }

        .brochure-cover .cover-icon {
            position: relative;
            width: 92px;
            height: 92px;
            border-radius: 50%;
            border: 1px solid rgba(171, 132, 42, 0.6);
            background: rgba(171, 132, 42, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 28px;
            z-index: 3;
        }

        .brochure-cover .cover-icon i {
            font-size: 42px;
            color: #ab842a;
        }

        .brochure-cover .cover-tag {
            position: relative;
            font-family: 'Poppins', sans-serif;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: #ab842a;
            margin-bottom: 14px;
            z-index: 3;
        }

        .brochure-cover h3 {
            position: relative;
            font-family: 'Cormorant', serif;
            font-weight: 700;
            font-size: 32px;
            line-height: 1.3;
            color: #ffffff;
            margin-bottom: 10px;
            z-index: 3;
        }

        .brochure-cover p {
            position: relative;
            font-family: 'Poppins', sans-serif;
            font-size: 13.5px;
            color: rgba(255, 255, 255, 0.65);
            margin-bottom: 30px;
            z-index: 3;
        }

        .brochure-cover .cover-meta {
            position: relative;
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: 'Poppins', sans-serif;
            font-size: 11.5px;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.5);
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            padding-top: 20px;
            width: 100%;
            justify-content: center;
            z-index: 3;
        }

        /* floating file chip */
        .brochure-stack .file-chip {
            position: absolute;
            bottom: -22px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 4;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(180deg, #ffffff 0%, #fbf3e9 100%);
            border: 1px solid rgba(171, 132, 42, 0.45);
            border-radius: 30px;
            padding: 9px 14px 9px 12px;
            font-family: 'Poppins', sans-serif;
            font-size: 12px;
            font-weight: 600;
            color: #1c2e46;
            text-decoration: none;
            box-shadow:
                0 14px 30px rgba(28, 46, 70, 0.22),
                0 0 0 0 rgba(171, 132, 42, 0.45);
            white-space: nowrap;
            cursor: pointer;
            animation: fileChipPulse 2.8s ease-in-out infinite;
            transition:
                transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.35s ease,
                background 0.35s ease,
                color 0.35s ease;
        }

        @keyframes fileChipPulse {
            0% { box-shadow: 0 14px 30px rgba(28, 46, 70, 0.22), 0 0 0 0 rgba(171, 132, 42, 0.5); }
            60% { box-shadow: 0 14px 30px rgba(28, 46, 70, 0.22), 0 0 0 12px rgba(171, 132, 42, 0); }
            100% { box-shadow: 0 14px 30px rgba(28, 46, 70, 0.22), 0 0 0 0 rgba(171, 132, 42, 0); }
        }

        .brochure-stack .file-chip:hover,
        .brochure-stack .file-chip:focus-visible {
            transform: translateX(-50%) translateY(-4px);
            background: linear-gradient(135deg, #d3a256 0%, #ab842a 100%);
            border-color: #ab842a;
            color: #ffffff;
            box-shadow: 0 22px 40px rgba(171, 132, 42, 0.45);
            outline: none;
            text-decoration: none;
            animation: none;
        }

        .brochure-stack .file-chip:hover .file-chip-icon,
        .brochure-stack .file-chip:hover .file-chip-arrow,
        .brochure-stack .file-chip:focus-visible .file-chip-icon,
        .brochure-stack .file-chip:focus-visible .file-chip-arrow {
            background-color: rgba(255, 255, 255, 0.18);
            color: #ffffff;
        }

        .brochure-stack .file-chip:hover .file-chip-text em,
        .brochure-stack .file-chip:focus-visible .file-chip-text em {
            color: rgba(255, 255, 255, 0.85);
        }

        /* Icon medallion (PDF) */
        .brochure-stack .file-chip-icon {
            flex-shrink: 0;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background-color: rgba(171, 132, 42, 0.12);
            color: #ab842a;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.35s ease, color 0.35s ease;
        }

        .brochure-stack .file-chip-icon i {
            font-size: 17px;
            line-height: 1;
        }

        /* Text block (label + sub-label) */
        .brochure-stack .file-chip-text {
            display: flex;
            flex-direction: column;
            line-height: 1.15;
            text-align: left;
        }

        .brochure-stack .file-chip-text strong {
            font-size: 12.5px;
            font-weight: 700;
            color: inherit;
            letter-spacing: 0.2px;
        }

        .brochure-stack .file-chip-text em {
            font-style: normal;
            font-size: 10px;
            font-weight: 500;
            color: #8a6320;
            letter-spacing: 0.6px;
            text-transform: uppercase;
            margin-top: 1px;
            transition: color 0.35s ease;
        }

        /* Arrow medallion (download cue) */
        .brochure-stack .file-chip-arrow {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background-color: #ab842a;
            color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 2px;
            transition: background-color 0.35s ease, color 0.35s ease, transform 0.35s ease;
        }

        .brochure-stack .file-chip-arrow i {
            font-size: 16px;
            line-height: 1;
            color: #ffffff;
        }

        .brochure-stack .file-chip:hover .file-chip-arrow,
        .brochure-stack .file-chip:focus-visible .file-chip-arrow {
            transform: translateY(2px);
        }

        @media (max-width: 991px) {
            .brochure-area {
                padding-top: 40px;
                padding-bottom: 30px;
            }

            .brochure-content {
                margin-bottom: 70px;
            }

            .brochure-content h2 {
                font-size: 30px;
            }

            .brochure-visual {
                padding: 10px;
                margin-top: 20px;
            }

            .brochure-stack {
                max-width: 320px;
                min-height: 340px;
            }

            .brochure-cover {
                min-height: 340px;
                padding: 40px 26px;
            }

            .brochure-stack .sheet-back-1,
            .brochure-stack .sheet-back-2 {
                display: none;
            }
        }

        @media (max-width: 575px) {
            .brochure-content h2 {
                font-size: 24px;
            }

            .brochure-grid {
                grid-template-columns: 1fr;
            }

            .brochure-content .default-btn {
                width: 100%;
                text-align: center;
                justify-content: center;
            }

            .brochure-cover .cover-ribbon {
                top: 18px;
                left: -38px;
                width: 140px;
                font-size: 9.5px;
            }
        }

        .bhk-card {
            position: relative;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            background-color: #fbf3e9;
            border: 1px solid #e8e0d4;
            border-radius: 14px;
            padding: 22px 36px 36px;
            box-shadow: 0 15px 40px rgba(28, 46, 70, 0.06);
            margin-bottom: 30px;
        }

        .bhk-card .default-btn {
            margin-top: auto;
            align-self: flex-start;
        }

        .bhk-badge {
            display: inline-block;
            font-family: 'Poppins', sans-serif;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: #ffffff;
            background-color: #ab842a;
            padding: 6px 16px;
            border-radius: 20px;
            margin-bottom: 20px;
        }

        .bhk-card h3 {
            font-family: 'Cormorant', serif;
            font-weight: 600;
            font-size: 24px;
            line-height: 1.3;
            color: #1c2e46;
            margin-bottom: 14px;
        }

        .bhk-card>p {
            font-family: 'Poppins', sans-serif;
            font-size: 14.5px;
            line-height: 1.8;
            color: #666;
            margin-bottom: 24px;
        }

        .bhk-sub-label {
            display: block;
            font-family: 'Poppins', sans-serif;
            font-size: 12.5px;
            font-weight: 600;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            color: #ab842a;
            margin-bottom: 16px;
        }

        .bhk-list {
            list-style: none;
            margin: 0 0 26px;
            padding: 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px 18px;
            flex-grow: 1;
            align-content: flex-start;
        }

        .bhk-list li {
            display: flex;
            align-items: flex-start;
            gap: 8px;
            font-family: 'Poppins', sans-serif;
            font-size: 14px;
            line-height: 1.5;
            color: #444;
        }

        .bhk-list li i {
            color: #ab842a;
            font-size: 17px;
            margin-top: 1px;
            flex-shrink: 0;
        }

        .bhk-price-box {
            background-color: #fbf3e9;
            border: 1px solid rgba(0, 0, 0, 0.6);
            border-radius: 10px;
            padding: 18px 20px;
            margin-bottom: 26px;
        }

        .bhk-price {
            display: block;
            font-family: 'Cormorant', serif;
            font-weight: 700;
            font-size: 22px;
            color: #1c2e46;
            margin-bottom: 6px;
        }

        .bhk-price-box p {
            font-family: 'Poppins', sans-serif;
            font-size: 12.5px;
            line-height: 1.6;
            color: #777;
            margin: 0;
        }

        .bhk-card .default-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        @media (max-width: 991px) {
            .bhk-config-area {
                padding-top: 40px;
                padding-bottom: 30px;
            }

            .bhk-config-area .row {
                background-color: #ffffff;
            }

            .bhk-card {
                padding: 32px 26px 28px;
                margin-bottom: 0;
                margin-top: 0;
            }

            .bhk-config-area .col-lg-6 {
                margin-bottom: 55px;
            }

            .bhk-config-area .col-lg-6:last-child {
                margin-bottom: 0;
            }
        }

        @media (max-width: 575px) {
            .bhk-config-area .col-lg-6 {
                margin-bottom: 45px;
            }

            .bhk-card h3 {
                font-size: 21px;
            }

            .bhk-list {
                grid-template-columns: 1fr;
            }

            .bhk-card .default-btn {
                width: 100%;
                text-align: center;
                justify-content: center;
            }
        }

        /* ---------- Service Area Four (info cards) ---------- */
        @media (max-width: 991px) {
            .service-area-four .service-card {
                margin-bottom: 25px;
                text-align: center;
            }
        }

        @media (max-width: 575px) {
            .service-area-four {
                padding-top: 50px;
                padding-bottom: 20px;
            }

            .service-area-four .service-card {
                padding: 25px 15px;
            }

            .service-area-four .service-card h3 {
                font-size: 18px;
                word-break: break-word;
            }

            .service-area-four .service-card p {
                font-size: 14px;
            }
        }

        /* ---------- Map + Contact Form: Unified Card Layout ---------- */
        .map-area-two {
            position: relative;
            background-color: #fbf3e9;
            padding: 50px 0 60px;
            overflow: hidden;
        }

        /* faint gold corner motif, echoes other sections */
        .map-area-two::before {
            content: "";
            position: absolute;
            bottom: -70px;
            left: -70px;
            width: 260px;
            height: 260px;
            border: 1px solid rgba(171, 132, 42, 0.2);
            border-radius: 50%;
            pointer-events: none;
        }

        .map-area-two .enquiry-heading {
            position: relative;
            text-align: center;
            max-width: 640px;
            margin: 0 auto 28px;
        }

        .map-area-two .enquiry-heading .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-family: 'Poppins', sans-serif;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: #ab842a;
            margin-bottom: 14px;
        }

        .map-area-two .enquiry-heading .eyebrow::before,
        .map-area-two .enquiry-heading .eyebrow::after {
            content: "";
            width: 26px;
            height: 1px;
            background-color: #ab842a;
            display: inline-block;
        }

        .map-area-two .enquiry-heading h2 {
            font-family: 'Cormorant', serif;
            font-weight: 600;
            font-size: 36px;
            line-height: 1.3;
            color: #1c2e46;
            margin: 0;
        }

        .map-area-two .enquiry-heading h2 span {
            color: #ab842a;
        }

        /* Unified card housing form + map, single rounded shape */
        .contact-map-card {
            position: relative;
            display: flex;
            align-items: stretch;
            max-width: 1180px;
            margin: 0 auto;
            background-color: #ffffff;
            border-radius: 22px;
            border: 1px solid #ecdfc2;
            box-shadow: 0 35px 70px rgba(28, 46, 70, 0.12);
            overflow: hidden;
        }

        /* Left column: form */
        .map-area-two .contact-wrap {
            order: 1;
            position: relative !important;
            float: none !important;
            width: 48% !important;
            max-width: 48% !important;
            height: auto !important;
            min-height: 0 !important;
            top: auto !important;
            left: auto !important;
            right: auto !important;
            bottom: auto !important;
            transform: none !important;
            margin: 0 !important;
            background-color: #ffffff;
            display: flex;
            align-items: center;
            padding: 22px 40px;
            box-sizing: border-box;
            z-index: 2;
        }

        /* thin gold accent edge where the form meets the map */
        .map-area-two .contact-wrap::after {
            content: "";
            position: absolute;
            top: 12%;
            right: 0;
            width: 1px;
            height: 76%;
            background: linear-gradient(180deg, transparent, #ab842a 35%, #ab842a 65%, transparent);
            opacity: 0.5;
        }

        .map-area-two .contact-form {
            width: 100%;
            position: relative;
            background-color: transparent;
        }

        .map-area-two .contact-form>span {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-family: 'Poppins', sans-serif;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: #ab842a;
            margin-bottom: 2px;
        }

        .map-area-two .contact-form>span::before {
            content: "";
            width: 26px;
            height: 1px;
            background-color: #ab842a;
            display: inline-block;
        }

        .map-area-two .contact-form h2 {
            font-family: 'Cormorant', serif;
            font-weight: 700;
            font-size: 20px;
            line-height: 1.2;
            color: #1c2e46;
            margin-bottom: 10px;
        }

        .map-area-two .contact-form h2 span {
            color: #ab842a;
        }

        .map-area-two .contact-form .form-control::placeholder {
            color: #a3a3a3;
        }

        /* Right column: map */
        .map-area-two .map-responsive {
            order: 2;
            position: relative;
            float: none;
            width: 52%;
            height: auto;
            min-height: 0;
            padding-bottom: 0;
            overflow: hidden;
            align-self: stretch;
            background-color: #1c2e46;
        }

        .map-area-two .map-responsive::after {
            content: "";
            position: absolute;
            inset: 0;
            box-shadow: inset 0 0 60px rgba(28, 46, 70, 0.15);
            pointer-events: none;
        }

        .map-area-two .map-responsive iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
            filter: saturate(0.92) contrast(1.02);
        }

        /* small gold location chip floating over the map */
        .map-area-two .map-chip {
            position: absolute;
            left: 20px;
            bottom: 20px;
            z-index: 3;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background-color: rgba(255, 255, 255, 0.95);
            border: 1px solid #e8e0d4;
            border-radius: 30px;
            padding: 9px 16px;
            font-family: 'Poppins', sans-serif;
            font-size: 12px;
            font-weight: 600;
            color: #1c2e46;
            box-shadow: 0 10px 24px rgba(28, 46, 70, 0.2);
        }

        .map-area-two .map-chip i {
            color: #ab842a;
            font-size: 16px;
        }

        /* ---- Enquiry form: single source of truth for sizing, spacing & alignment ---- */
        .map-area-two .contact-form .row.justify-content-center {
            row-gap: 0;
        }

        .map-area-two .contact-form .form-group {
            position: relative;
            margin-bottom: 10px;
        }

        .map-area-two .contact-form .form-group>i {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 15px;
            color: #ab842a;
            z-index: 2;
            line-height: 1;
            pointer-events: none;
            display: flex;
            align-items: center;
        }


        /* Textarea icon sits at the top instead of centering against the full height */
        .map-area-two .contact-form .form-group.textarea-group>i {
            top: 14px;
            transform: none;
        }

        .map-area-two .contact-form .form-control,
        .map-area-two .contact-form select.form-control {
            width: 100%;
            height: 38px;
            padding: 0 16px 0 42px;
            border: 1px solid #e8e0d4;
            border-radius: 8px;
            background-color: #fbf9f5;
            box-shadow: none;
            font-family: 'Poppins', sans-serif !important;
            font-size: 12.5px !important;
            font-weight: 400 !important;
            line-height: 36px;
            color: #333 !important;
            text-transform: none !important;
            letter-spacing: normal !important;
            box-sizing: border-box;
            transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
        }

        .map-area-two .contact-form select.form-control option {
            font-family: 'Poppins', sans-serif;
            font-size: 12.5px;
            font-weight: 400;
            text-transform: none;
            color: #333;
        }

        .map-area-two .contact-form .form-control:hover,
        .map-area-two .contact-form select.form-control:hover {
            border-color: rgba(171, 132, 42, 0.5);
        }

        .map-area-two .contact-form select.form-control {
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23ab842a' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 18px center;
            padding-right: 40px;
            cursor: pointer;
        }

        .map-area-two .contact-form textarea.form-control {
            height: 56px;
            padding-top: 8px;
            padding-left: 42px;
            line-height: 1.45;
            resize: none;
            overflow-y: auto;
        }

        .map-area-two .contact-form .form-control:focus,
        .map-area-two .contact-form select.form-control:focus {
            outline: none;
            border-color: #ab842a;
            background-color: #ffffff;
            box-shadow: 0 0 0 3px rgba(171, 132, 42, 0.14);
        }

        /* Dynamic site-visit sub-fields keep the same vertical rhythm as the main grid */
        #siteVisitDetailsSection .form-group {
            margin-bottom: 0;
        }

        #siteVisitDetailsSection .row {
            row-gap: 12px;
        }

        /* Consent row â€” card-style, matches the theme instead of a bare browser checkbox */
        .map-area-two .contact-form .consent-row {
            display: flex;
            flex-wrap: wrap;
            align-items: flex-start;
            gap: 10px;
            padding: 8px 14px;
            background-color: #fbf3e9;
            border: 1px solid #e8e0d4;
            border-radius: 8px;
            text-align: left;
        }

        .map-area-two .contact-form .form-check-input {
            flex-shrink: 0;
            width: 18px;
            height: 18px;
            margin: 2px 0 0;
            accent-color: #ab842a;
            border: 1px solid #ab842a;
            cursor: pointer;
        }

        .map-area-two .contact-form .form-check-label {
            flex: 1;
            font-size: 12.5px !important;
            color: #555;
            line-height: 1.6;
            cursor: pointer;
            margin: 0;
            text-align: left;
        }

        .map-area-two .contact-form .form-check-label a {
            color: #ab842a;
            font-weight: 600;
            text-decoration: none;
        }

        .map-area-two .contact-form .form-check-label a:hover {
            text-decoration: underline;
        }

        .map-area-two .contact-form .consent-row .help-block {
            flex-basis: 100%;
            font-size: 12px;
            margin-top: 4px;
        }

        /* Submit button */
        .map-area-two .contact-form .default-btn {
            width: 100%;
            justify-content: center;
            margin-top: 4px;
            padding: 10px 30px;
            font-size: 14px;
            letter-spacing: 0.4px;
            border-radius: 8px;
            box-shadow: 0 14px 28px rgba(28, 46, 70, 0.16);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .map-area-two .contact-form .default-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 18px 34px rgba(28, 46, 70, 0.22);
        }

        /* Stack on tablets/mobile: form first, map below */
        @media (max-width: 991px) {
            .map-area-two {
                padding: 50px 0 60px;
            }

            .map-area-two .enquiry-heading {
                margin-bottom: 32px;
            }

            .map-area-two .enquiry-heading h2 {
                font-size: 28px;
            }

            .contact-map-card {
                flex-direction: column;
                margin: 0 20px;
                border-radius: 20px;
            }

            .map-area-two .contact-wrap,
            .map-area-two .map-responsive {
                width: 100% !important;
                max-width: 100% !important;
            }

            .map-area-two .contact-wrap {
                padding: 34px 30px;
            }

            .map-area-two .contact-wrap::after {
                display: none;
            }

            .map-area-two .map-responsive {
                height: auto !important;
                min-height: 0;
                padding-bottom: 45%;
            }
        }

        @media (max-width: 575px) {
            .contact-map-card {
                margin: 0 14px;
            }

            .map-area-two .contact-wrap {
                padding: 28px 20px;
            }

            .map-area-two .contact-form h2 {
                font-size: 21px;
            }

            .map-area-two .map-responsive {
                padding-bottom: 55%;
            }

            #siteVisitDetailsSection .row>div {
                margin-bottom: 12px;
            }
        }


        /* ---------- Plan Your Visit Buttons ---------- */
        .plan-visit-area {
            padding-top: 50px;
            padding-bottom: 40px;
        }

        @media (max-width: 991px) {
            .plan-visit-area {
                padding-top: 40px;
                padding-bottom: 30px;
            }
        }

        @media (max-width: 575px) {
            .plan-visit-area {
                padding-top: 40px;
                padding-bottom: 30px;
            }

            .plan-visit-buttons {
                display: flex;
                flex-direction: column;
                gap: 12px;
            }

            .plan-visit-buttons .default-btn {
                width: 100%;
                margin: 0 !important;
                text-align: center;
                justify-content: center;
            }
        }

        /* =====================================================
   FAQ Section (Golden Theme, native accordion, 2-column)
   ===================================================== */
        .faq-section {
            background-color: #ffffff;
            padding-top: 50px !important;
            padding-bottom: 40px;
            margin-top: 0;
        }

        .faq-section .section-title-two {
            margin-bottom: 26px;
        }

        /* Heading â€” matched to other section heading sizes (30-32px, not theme default) */
        .faq-section h2.margin-auto {
            font-size: 32px !important;
            color: #2b2620;
            font-weight: 600;
            line-height: 1.3;
            margin: 0 auto;
            max-width: 700px;
        }

        .faq-section h2.margin-auto b.section-color2 {
            color: #b8862e !important;
            font-style: italic;
            font-weight: 500;
        }

        @media (max-width: 767px) {
            .faq-section h2.margin-auto {
                font-size: 24px !important;
                padding: 0 15px;
            }
        }

        .faq-accordion {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px 20px;
            align-items: start;
        }

        .faq-item {
            background: #fff;
            border: 1px solid rgba(201, 151, 63, 0.3) !important;
            border-radius: 12px;
            box-shadow: 0 8px 22px rgba(120, 90, 40, 0.07);
            overflow: hidden;
            outline: none;
        }

        .faq-item[open] {
            box-shadow: 0 18px 40px rgba(120, 90, 40, 0.13);
        }

        .faq-question {
            list-style: none;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            padding: 16px 20px;
            cursor: pointer;
            border-left: 4px solid transparent;
            outline: none;
            transition: border-color 0.3s ease, background 0.3s ease;
        }

        .faq-question::-webkit-details-marker {
            display: none;
        }

        .faq-question:focus,
        .faq-item:focus {
            outline: none;
        }

        .faq-item[open] .faq-question {
            border-left-color: #b8862e;
            background: linear-gradient(90deg, #faf1de 0%, #fff 60%);
        }

        .faq-question h3 {
            margin: 0;
            font-size: 15px;
            font-weight: 700;
            color: #2b2620;
            line-height: 1.4;
            flex: 1;
        }

        .faq-icon {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            border: 1px solid rgba(201, 151, 63, 0.4);
            color: #b8862e;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 15px;
            transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
        }

        .faq-item[open] .faq-icon {
            transform: rotate(180deg);
            background: linear-gradient(135deg, #d3a256, #b8862e);
            color: #fff;
            border-color: transparent;
        }

        .faq-answer {
            padding: 0 20px 16px 20px;
            border-top: 1px solid rgba(201, 151, 63, 0.18);
            margin-top: 2px;
            animation: faqFade 0.35s ease;
        }

        .faq-answer p {
            margin: 0;
            color: #6b6155;
            font-size: 13.5px;
            line-height: 1.65;
            text-align: justify;
            text-align-last: left;
        }

        @keyframes faqFade {
            from {
                opacity: 0;
                transform: translateY(-6px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 767px) {
            .faq-accordion {
                grid-template-columns: 1fr;
                gap: 10px;
            }
        }

        p {
            text-align: justify;
            text-align-last: left;
        }

        /* ---------- Newsletter Area ---------- */
        .newsletter-area {
            padding-top: 50px;
            padding-bottom: 40px;
        }

        @media (max-width: 991px) {
            .newsletter-area {
                padding-top: 40px;
                padding-bottom: 30px;
            }

            .newsletter-area .newsletter-content {
                text-align: center;
                margin-bottom: 20px;
            }
        }

        @media (max-width: 575px) {
            .newsletter-area {
                padding-top: 40px;
                padding-bottom: 30px;
            }

            .newsletter-content h2 {
                font-size: 20px;
            }

            .newsletter-form-area .newsletter-form {
                display: flex;
                flex-direction: column;
                gap: 10px;
            }

            .newsletter-form-area .newsletter-form .default-btn {
                width: 100%;
                text-align: center;
                justify-content: center;
                margin: 0 !important;
            }
        }

        /* ---------- Justify long body paragraphs ---------- */
        .contact-intro-content>p,
        .brochure-content>p,
        .bhk-card>p,
        .faq-area .accordion-body {
            text-align: justify;
            text-justify: inter-word;
            hyphens: auto;
        }

        /* ============================================================
   Map + Contact Form â€” Compact Horizontal Layout (no scroll)
   ============================================================ */
        .map-area-two {
            padding: 50px 0 40px;
            background-color: #fbf3e9;
        }

        .map-area-two .container-fluid {
            display: flex;
            flex-direction: row;
            align-items: stretch;
            position: relative;
            overflow: hidden;
            max-width: 1360px;
            min-height: 560px;
            height: auto;
            margin: 0 auto !important;
            padding: 0 !important;
            border-radius: 20px;
            box-shadow: 0 25px 55px rgba(28, 46, 70, 0.14);
            border: 1px solid rgba(171, 132, 42, 0.3);
        }

        /* ---------- Left column: form ---------- */
        .map-area-two .contact-wrap {
            order: 1;
            position: relative;
            float: none !important;
            width: 50% !important;
            max-width: 50% !important;
            min-height: 560px;
            height: auto !important;
            top: auto !important;
            left: auto !important;
            right: auto !important;
            bottom: auto !important;
            transform: none !important;
            margin: 0 !important;
            background: linear-gradient(165deg, #fdf8ee 0%, #f8ecd4 100%);
            display: flex;
            align-items: center;
            padding: 22px 36px;
            box-sizing: border-box;
            overflow: visible;
            z-index: 2;
        }

        .map-area-two .contact-wrap::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #ab842a, #d8ab4f, #ab842a);
        }

        .map-area-two .contact-form {
            width: 100%;
            position: relative;
            background-color: transparent;
        }

        .map-area-two .contact-form>span {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-family: 'Poppins', sans-serif;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: #ab842a;
            margin-bottom: 4px;
        }

        .map-area-two .contact-form>span::before {
            content: "";
            width: 22px;
            height: 1px;
            background-color: #ab842a;
            display: inline-block;
        }

        .map-area-two .contact-form h2 {
            position: relative;
            font-family: 'Cormorant', serif;
            font-weight: 700;
            font-size: 20px;
            line-height: 1.2;
            color: #1c2e46;
            margin-bottom: 10px;
            padding-bottom: 6px;
        }

        .map-area-two .contact-form h2::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 38px;
            height: 2px;
            background: linear-gradient(90deg, #ab842a, transparent);
        }

        .map-area-two .contact-form .row.justify-content-center {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px 12px;
            margin: 0;
        }

        .map-area-two .contact-form .row.justify-content-center>div {
            padding: 0;
            width: auto;
            max-width: none;
        }

        .map-area-two .contact-form .row.justify-content-center>.col-lg-12 {
            grid-column: 1 / -1;
        }

        .map-area-two .contact-form .form-group {
            position: relative;
            margin-bottom: 0;
        }

        .map-area-two .contact-form .form-group>i {
            position: absolute;
            left: 8px;
            top: 50%;
            transform: translateY(-50%);
            width: 22px;
            height: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #ffffff;
            border: 1px solid rgba(171, 132, 42, 0.25);
            border-radius: 50%;
            color: #ab842a;
            font-size: 11px;
            z-index: 2;
            transition: background-color 0.3s ease, color 0.3s ease;
            pointer-events: none;
        }

        .map-area-two .contact-form .form-group:focus-within>i {
            background-color: #ab842a;
            border-color: #ab842a;
            color: #ffffff;
        }

        .map-area-two .contact-form .form-control,
        .map-area-two .contact-form select.form-control {
            width: 100%;
            height: 36px;
            padding-left: 40px;
            padding-right: 10px;
            border: 1px solid #e9dcc0;
            border-radius: 8px;
            background-color: #ffffff;
            box-shadow: 0 2px 6px rgba(28, 46, 70, 0.04);
            font-family: 'Poppins', sans-serif;
            font-size: 12px;
            color: #333;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .map-area-two .contact-form textarea.form-control {
            height: auto;
            min-height: 42px;
            padding-top: 8px;
            padding-left: 40px;
            resize: none;
        }

        .map-area-two .contact-form .form-group:has(textarea)>i {
            top: 16px;
            transform: none;
        }

        .map-area-two .contact-form .form-control:focus {
            outline: none;
            border-color: #ab842a;
            background-color: #ffffff;
            box-shadow: 0 6px 16px rgba(171, 132, 42, 0.14), 0 0 0 3px rgba(171, 132, 42, 0.14);
        }

        .map-area-two .contact-form .form-control::placeholder {
            color: #9a9086;
        }

        .map-area-two .contact-form .form-check {
            background-color: rgba(255, 255, 255, 0.6);
            border: 1px solid #eee0c4;
            border-radius: 8px;
            padding: 6px 12px 6px 34px !important;
            margin-bottom: 8px !important;
        }

        .map-area-two .contact-form .form-check label {
            font-size: 10.5px !important;
            line-height: 1.35 !important;
        }

        .map-area-two .contact-form #siteVisitDetailsSection .row {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 6px;
            margin: 0;
        }

        .map-area-two .contact-form #siteVisitDetailsSection .row>div {
            padding: 0;
            width: auto;
            max-width: none;
        }

        .map-area-two .contact-form .default-btn {
            position: relative;
            overflow: hidden;
            margin-top: 0;
            padding: 9px 26px;
            border-radius: 8px;
            font-size: 12.5px;
            box-shadow: 0 10px 22px rgba(28, 46, 70, 0.15);
        }

        .map-area-two .contact-form .default-btn::before {
            content: "";
            position: absolute;
            top: 0;
            left: -60%;
            width: 40%;
            height: 100%;
            background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.35), transparent);
            transform: skewX(-20deg);
            animation: mapBtnShine 4.5s ease-in-out infinite;
        }

        @keyframes mapBtnShine {
            0% {
                left: -60%;
            }

            50% {
                left: 130%;
            }

            100% {
                left: 130%;
            }
        }

        /* ---------- Right column: map ---------- */
        .map-area-two .map-responsive {
            order: 2;
            position: relative;
            float: none;
            width: 50%;
            min-height: 560px;
            height: auto;
            padding-bottom: 0;
            overflow: hidden;
        }

        .map-area-two .map-responsive iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }

        .map-area-two .map-responsive::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 50px;
            height: 100%;
            background: linear-gradient(90deg, rgba(28, 46, 70, 0.12), transparent);
            z-index: 4;
            pointer-events: none;
        }

        .map-area-two .map-responsive::after {
            content: "";
            position: absolute;
            inset: 14px;
            border: 2px solid rgba(171, 132, 42, 0.55);
            border-radius: 12px;
            pointer-events: none;
            z-index: 5;
        }

        .map-locator-chip {
            position: absolute;
            left: 26px;
            bottom: 26px;
            z-index: 6;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background-color: #ffffff;
            border-radius: 26px;
            padding: 9px 16px;
            font-family: 'Poppins', sans-serif;
            font-size: 12px;
            font-weight: 600;
            color: #1c2e46;
            box-shadow: 0 14px 28px rgba(28, 46, 70, 0.25);
        }

        .map-locator-chip i {
            color: #ab842a;
            font-size: 16px;
        }

        /* Only stack on real mobile â€” stays side-by-side on tablets/desktop */
        @media (max-width: 767px) {
            .map-area-two .container-fluid {
                flex-direction: column;
                height: auto;
                border-radius: 0;
                box-shadow: none;
                border: none;
                max-width: 100%;
            }

            .map-area-two .contact-wrap,
            .map-area-two .map-responsive {
                width: 100% !important;
                max-width: 100% !important;
                height: auto !important;
            }

            .map-area-two .contact-wrap {
                padding: 30px 22px;
                overflow: visible;
                box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
            }

            .map-area-two .contact-form .row.justify-content-center,
            .map-area-two .contact-form #siteVisitDetailsSection .row {
                grid-template-columns: 1fr;
            }

            .map-area-two .map-responsive {
                min-height: 260px;
                padding-bottom: 55%;
            }

            .map-area-two .map-responsive::after {
                inset: 10px;
            }

            .map-locator-chip {
                left: 16px;
                bottom: 16px;
                font-size: 11px;
                padding: 8px 14px;
            }

            .plan-visit-area {
                position: relative;
                z-index: 1;
                margin-top: 0 !important;
            }
        }
        .inner-banner::before,
.inner-banner::after {
    display: none !important;
}

        /* =====================================================
           Form validation — prevent overflow / layout shift
           when help-block messages appear under each field
           ===================================================== */
        .map-area-two .contact-form .form-group {
            /* reserve stable vertical space so validation messages
               do not push surrounding grid cells out of place */
            display: flex;
            flex-direction: column;
            min-height: 60px;
        }

        .map-area-two .contact-form .form-group > .form-control,
        .map-area-two .contact-form .form-group > select.form-control {
            flex-shrink: 0;
        }

        .map-area-two .contact-form .help-block.with-errors {
            display: block;
            min-height: 14px;
            max-height: 32px;
            overflow: hidden;
            font-family: 'Poppins', sans-serif;
            font-size: 10.5px;
            line-height: 1.3;
            color: #c0392b;
            margin-top: 4px;
            padding: 0 2px;
            text-align: left;
            overflow-wrap: anywhere;
            word-break: break-word;
            transition: max-height 0.3s ease;
        }

        .map-area-two .contact-form .help-block.with-errors:empty {
            display: block;
        }

        .map-area-two .contact-form .form-group.has-error .form-control,
        .map-area-two .contact-form .form-group.has-error select.form-control {
            border-color: #c0392b;
            box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.12);
        }

        .map-area-two .contact-form .form-group.has-error > i {
            background-color: #c0392b;
            border-color: #c0392b;
            color: #ffffff;
        }

        /* Reduce message vertical footprint on the map card */
        .map-area-two .contact-form .form-check .help-block.with-errors {
            min-height: 12px;
            max-height: 24px;
            margin-top: 2px;
        }

        /* =====================================================
           House Details Area — Premium Tabs (configurations)
           ===================================================== */
        .house-details-area {
            background: #ffffff;
            padding: 70px 0 80px;
        }

        .hd-heading {
            text-align: center;
            max-width: 820px;
            margin: 0 auto 36px;
        }

        .hd-title {
            margin: 0 0 14px;
            color: #1f1a14;
            font-family: 'Cormorant', serif;
            font-size: 38px;
            font-weight: 600;
            letter-spacing: -0.5px;
            line-height: 1.22;
        }

        .hd-title em {
            font-style: italic;
            font-weight: 500;
            color: #b8862e;
        }

        .ht-tabs {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin: 0 0 22px;
        }

        .ht-tab {
            appearance: none;
            -webkit-appearance: none;
            background: #ffffff;
            border: 1px solid rgba(201, 151, 63, 0.3);
            border-radius: 16px;
            box-shadow: 0 10px 26px rgba(120, 90, 40, 0.08);
            padding: 20px 26px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 18px;
            text-align: left;
            font: inherit;
            color: inherit;
            border-left: 4px solid transparent;
            transition:
                box-shadow 0.45s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.45s cubic-bezier(0.4, 0, 0.2, 1),
                background 0.45s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .ht-tab:hover {
            transform: translateY(-2px);
            border-color: rgba(184, 134, 46, 0.55);
            box-shadow: 0 18px 36px rgba(120, 90, 40, 0.14);
        }

        .ht-tab.is-active {
            border-left-color: #b8862e;
            background: linear-gradient(90deg, #faf1de 0%, #ffffff 60%);
            box-shadow: 0 22px 48px rgba(120, 90, 40, 0.16);
        }

        .ht-tab:focus-visible {
            outline: 2px solid #b8862e;
            outline-offset: 3px;
        }

        .ht-tab-icon {
            flex-shrink: 0;
            width: 52px;
            height: 52px;
            border-radius: 14px;
            background: linear-gradient(135deg, #fdf2da, #f5e0b6);
            color: #b8862e;
            font-size: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
            transition: background 0.4s ease, color 0.4s ease;
        }

        .ht-tab.is-active .ht-tab-icon {
            background: linear-gradient(135deg, #d3a256, #b8862e);
            color: #fff;
        }

        .ht-tab-text {
            flex: 1;
            min-width: 0;
        }

        .ht-tab-text strong {
            display: block;
            font-family: 'Poppins', sans-serif;
            font-size: 13px;
            font-weight: 700;
            color: #b8862e;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 4px;
        }

        .ht-tab-text em {
            display: block;
            font-style: normal;
            font-family: 'Poppins', sans-serif;
            font-size: 17px;
            font-weight: 600;
            color: #2b2620;
            line-height: 1.35;
        }

        .ht-tab-area {
            flex-shrink: 0;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: #faf1de;
            color: #b8862e;
            font-family: 'Poppins', sans-serif;
            font-size: 13px;
            font-weight: 700;
            padding: 7px 16px;
            border-radius: 30px;
            white-space: nowrap;
            transition: background 0.4s ease, color 0.4s ease;
        }

        .ht-tab-area small {
            font-size: 11px;
            font-weight: 600;
            color: #8b8275;
            transition: color 0.4s ease;
        }

        .ht-tab.is-active .ht-tab-area {
            background: linear-gradient(135deg, #d3a256, #b8862e);
            color: #fff;
        }

        .ht-tab.is-active .ht-tab-area small {
            color: rgba(255, 255, 255, 0.85);
        }

        .ht-panels {
            position: relative;
            background: #ffffff;
            border: 1px solid rgba(201, 151, 63, 0.3);
            border-radius: 16px;
            box-shadow: 0 14px 36px rgba(120, 90, 40, 0.10);
            overflow: hidden;
        }

        .ht-panel {
            position: absolute;
            inset: 0;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transform: translateY(8px);
            transition:
                opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0s linear 0.45s;
        }

        .ht-panel.is-active {
            position: relative;
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: translateY(0);
            transition:
                opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.55s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0s linear 0s;
        }

        .ht-panel-inner {
            display: flex;
            gap: 36px;
            align-items: flex-start;
            padding: 22px 26px 30px;
        }

        .hd-gallery {
            position: relative;
            flex: 0 0 45%;
            max-width: 45%;
            border-radius: 18px;
            margin-top: 4px;
            margin-left: 22px;
            margin-right: 22px;
            box-shadow: 0 14px 32px rgba(43, 38, 32, 0.18);
            align-self: flex-start;
            overflow: visible;
        }

        .hd-gallery .owl-carousel,
        .hd-gallery .owl-stage-outer {
            border-radius: 18px;
            overflow: hidden;
        }

        .hd-gallery .owl-stage-outer,
        .hd-gallery .owl-stage,
        .hd-gallery .owl-item {
            height: 360px;
        }

        .hd-gallery .hd-slide {
            height: 360px;
            border-radius: 18px;
            overflow: hidden;
        }

        .hd-gallery .hd-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            border-radius: 18px;
        }

        .hd-gallery .owl-nav {
            display: none !important;
        }

        .hd-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
            width: 46px;
            height: 46px;
            min-width: 46px;
            border-radius: 50%;
            background: linear-gradient(135deg, #d3a256, #b8862e);
            color: #fff;
            border: 2px solid rgba(255, 255, 255, 0.85);
            padding: 0;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font: inherit;
            box-shadow:
                0 10px 24px rgba(43, 38, 32, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
            transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
        }

        .hd-arrow-prev {
            left: -18px;
        }

        .hd-arrow-next {
            right: -18px;
        }

        .hd-arrow:hover {
            background: linear-gradient(135deg, #2b2620, #3a3128);
            border-color: #d3a256;
            transform: translateY(-50%) scale(1.08);
            box-shadow:
                0 14px 30px rgba(43, 38, 32, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
        }

        .hd-arrow:focus-visible {
            outline: 2px solid #d3a256;
            outline-offset: 3px;
        }

        .hd-arrow i {
            font-size: 18px;
            line-height: 1;
            color: #fff;
        }

        .hd-content {
            flex: 1 1 55%;
            margin-top: 4px;
        }

        .hd-content h3 {
            margin: 0 0 14px;
            color: #1f1a14;
            font-family: 'Cormorant', serif;
            font-size: 24px;
            font-weight: 600;
            line-height: 1.28;
            letter-spacing: -0.3px;
        }

        .hd-lead {
            margin: 0 0 12px;
            color: #4a4239;
            font-family: 'Poppins', sans-serif;
            font-size: 14px;
            line-height: 1.7;
        }

        .hd-features-title {
            margin: 18px 0 12px;
            color: #b8862e;
            font-family: 'Poppins', sans-serif;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 2.5px;
            text-transform: uppercase;
        }

        .hd-features {
            list-style: none;
            margin: 0 0 22px;
            padding: 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px 12px;
        }

        .hd-features li {
            position: relative;
            padding-left: 24px;
            font-family: 'Poppins', sans-serif;
            font-size: 13.5px;
            line-height: 1.5;
            color: #2b2620;
        }

        .hd-features li::before {
            content: "\2713";
            position: absolute;
            left: 0;
            top: 1px;
            color: #b8862e;
            font-weight: 700;
            font-size: 13px;
        }

        .hd-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 24px;
            background: linear-gradient(135deg, #d3a256, #b8862e);
            color: #fff !important;
            font-family: 'Poppins', sans-serif;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.6px;
            text-transform: uppercase;
            text-decoration: none;
            border-radius: 50px;
            box-shadow: 0 10px 24px rgba(184, 134, 46, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .hd-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 14px 30px rgba(184, 134, 46, 0.42);
            color: #fff !important;
        }

        .hd-btn i {
            transition: transform 0.3s ease;
        }

        .hd-btn:hover i {
            transform: translateX(4px);
        }

        @media (max-width: 991px) {
            .ht-tabs {
                gap: 12px;
            }

            .ht-tab {
                padding: 16px 18px;
                gap: 12px;
            }

            .ht-tab-text em {
                font-size: 14px;
            }

            .ht-panel-inner {
                flex-direction: column;
                gap: 22px;
            }

            .hd-gallery,
            .hd-content {
                flex: 1 1 100%;
                max-width: 100%;
                margin-left: 0;
                margin-right: 0;
            }

            .hd-gallery .owl-carousel,
            .hd-gallery .owl-stage-outer,
            .hd-gallery .owl-stage,
            .hd-gallery .owl-item,
            .hd-gallery .hd-slide {
                height: 280px;
            }

            .hd-gallery,
            .hd-gallery .owl-carousel,
            .hd-gallery .owl-stage-outer,
            .hd-gallery .hd-slide,
            .hd-gallery .hd-slide img {
                border-radius: 14px;
            }

            .hd-arrow {
                width: 40px;
                height: 40px;
                min-width: 40px;
            }

            .hd-arrow i {
                font-size: 15px;
            }

            .hd-arrow-prev {
                left: -14px;
            }

            .hd-arrow-next {
                right: -14px;
            }
        }

        @media (max-width: 575px) {
            .hd-title {
                font-size: 26px;
            }

            .ht-tabs {
                grid-template-columns: 1fr;
            }

            .ht-tab {
                padding: 14px 16px;
                gap: 12px;
            }

            .ht-tab-icon {
                width: 42px;
                height: 42px;
                font-size: 19px;
                border-radius: 11px;
            }

            .ht-tab-text strong {
                font-size: 11px;
                letter-spacing: 1.5px;
            }

            .ht-tab-text em {
                font-size: 14px;
            }

            .ht-tab-area {
                display: none;
            }

            .ht-panel-inner {
                padding: 16px 16px 22px;
            }

            .hd-features {
                grid-template-columns: 1fr;
            }

            .hd-content h3 {
                font-size: 20px;
            }
        }
        .inner-banner::before,
.inner-banner::after {
    display: none !important;
}

/* Contact-page-only: navbar styling is now global in nav.css. These rules
   are kept only for the banner's outer spacing so it aligns with the navbar. */
.msb-contact-page .inner-banner {
    margin-top: 0;
    margin: 24px;
}

/* Responsive: banner adjusts to viewport on small screens */
@media (max-width: 767px) {
    .msb-contact-page .inner-banner {
        border-radius: 12px;
        margin: 12px;
    }
}
@media (min-width: 768px) and (max-width: 1199px) {
    .msb-contact-page .inner-banner {
        border-radius: 16px;
        margin: 16px;
    }
}
@media (min-width: 1200px) {
    .msb-contact-page .inner-banner {
        margin: 24px;
    }
}

/* ===== Inline-style conversions (formerly style="..." in contact.php) ===== */

/* Banner with dynamic background image (was style="background-image: url(...)") */
.contact-inner-banner {
    background-image: url('../img/banner/2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Form anchor scroll-margin (was style="scroll-margin-top: 80px;") */
.contact-form-anchor {
    scroll-margin-top: 80px;
}

/* Google Maps iframe (was style="border:0;") */
.contact-map-iframe {
    border: 0;
}

/* Site-visit conditional section (was style="display: none; margin-bottom: 8px;")
   Default is hidden. JS adds .is-visible to show it. */
.contact-site-visit-details {
    display: none;
    margin-bottom: 8px;
}
.contact-site-visit-details.is-visible {
    display: block;
}

/* Consent form-check wrapper (was style="text-align: left; padding-left: 30px;") */
.contact-consent-check {
    text-align: left;
    padding-left: 30px;
}

/* Consent checkbox input (was style="width: 16px; height: 16px; margin-left: -30px; margin-top: 2px; cursor: pointer;") */
.contact-consent-input {
    width: 16px;
    height: 16px;
    margin-left: -30px;
    margin-top: 2px;
    cursor: pointer;
}

/* Consent label (was style="cursor: pointer; display: block; padding-left: 5px;") */
.contact-consent-label {
    cursor: pointer;
    display: block;
    padding-left: 5px;
}

/* Help-block with-errors message (was style="font-size: 11px; margin-top: 4px;") */
.contact-consent-help {
    font-size: 11px;
    margin-top: 4px;
}
