@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

/* Global Variables & Reset */
:root {
    --primary: #E5A040;
    --primary-hover: #d17b00;
    --primary-light: rgba(237, 156, 6, 0.1);
    --dark: #1a1a1a;
    --text-muted: #666666;
    --light-bg: #fbf9f6;
    --white: #ffffff;
    --border: #eae6e0;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 10px 30px rgba(237, 156, 6, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--light-bg);
    color: var(--dark);
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
}

/* Containers & Layouts */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 90px 0 60px 0;
}

/* Header & Sticky Nav */
header {
    background-color: var(--white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header-container {
    max-width: 1450px;
    margin: 0 auto;
    padding: 8px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    height: 60px;
}

.header-ctas {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-call-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: var(--white);
    color: var(--dark);
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid var(--border);
    cursor: pointer;
    line-height: normal;
    white-space: nowrap;
}

.btn-call-nav svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
}

.btn-call-nav:hover {
    background-color: var(--primary-light);
    border-color: var(--primary);
    color: var(--primary);
}

@media (max-width: 768px) {
    .btn-call-nav {
        padding: 10px;
        border-radius: 50%;
    }

    .btn-call-nav .call-text {
        display: none;
    }
}

.logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 34px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
    letter-spacing: -0.5px;
}

.logo-sub {
    font-size: 0.5rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-top: 1px;
}

nav a {
    color: #4a4a4a;
    text-decoration: none;
    margin: 0 6px;
    font-weight: 500;
    font-size: 0.85rem;
    position: relative;
    padding: 4px 0;
    transition: var(--transition);
    white-space: nowrap;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

nav a:hover,
nav a.active {
    color: var(--primary);
}

.btn-cta-nav {
    background-color: var(--dark);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid var(--dark);
    white-space: nowrap;
}

.btn-cta-nav:hover {
    background-color: transparent;
    color: var(--dark);
}

/* Hero Section */
#hero {
    position: relative;
    min-height: 85vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
}

.hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px;
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 40px;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Register Interest Card */
.register-card {
    background-color: var(--white);
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    color: var(--dark);
    display: flex;
    flex-direction: column;
    align-self: start;
    z-index: 5;
    text-shadow: none;
    width: 95%;
    max-width: 420px;
    margin-top: -28%;
}

.register-card-header {
    background-color: #E5A040;
    color: var(--white);
    padding: 16px 28px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-align: left;
}

.register-card-body {
    padding: 26px 28px;
    text-align: left;
}

.register-card-body h1 {
    font-size: 1.65rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 8px 0;
    color: var(--dark);
    text-shadow: none;
    letter-spacing: normal;
    text-align: left;
}

.register-card-body .brand-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 18px;
    text-align: left;
}

.register-card-body .brand-text span {
    font-weight: 600;
    color: var(--dark);
    margin-left: 5px;
}

.quick-specs {
    display: grid;
    grid-template-columns: 125px 1fr;
    gap: 10px;
    background-color: var(--light-bg);
    padding: 16px 18px;
    border-radius: 8px;
    font-size: 0.92rem;
    margin-bottom: 18px;
    text-align: left;
}

.quick-specs dt {
    color: var(--text-muted);
}

.quick-specs dd {
    font-weight: 600;
    color: var(--dark);
}

.rera-badge {
    color: var(--primary) !important;
}

/* Star rating row in register card */
.card-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
}

.rating-badge {
    width: 34px;
    height: 34px;
    background-color: #E5A040;
    color: var(--white);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.92rem;
    font-weight: 700;
    flex-shrink: 0;
}

.stars {
    color: #E5A040;
    font-size: 1.15rem;
    letter-spacing: 1px;
}

.rating-text {
    font-size: 0.88rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Footer text below config button */
.card-footer-text {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.card-footer-text strong {
    color: var(--dark);
}

.btn-cta-card {
    width: 100%;
    background-color: var(--dark);
    color: var(--white);
    padding: 6px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    border: 1px solid var(--dark);
    cursor: pointer;
    transition: var(--transition);
    margin-top: 5px;
    margin-bottom: 8px;
    font-family: inherit;
}

.btn-cta-card:hover {
    background-color: transparent;
    color: var(--dark);
}

.card-rera-text {
    text-align: center;
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 4px;
    font-weight: 500;
}

.plan-price-btn {
    width: 100%;
    background-color: #E5A040;
    color: var(--white);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 16px 20px;
    text-align: left;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 12px;
}

.plan-price-btn span {
    display: block;
}

.register-text {
    text-align: center;
    margin-bottom: 16px;
}

.register-text .specs-summary {
    font-size: 0.85rem;
    color: var(--dark);
    margin-bottom: 4px;
}

.register-text .specs-summary span {
    font-weight: 700;
}

.register-text .cta-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
}

.register-text .sub-cta {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-top: 2px;
}

.btn-brochure {
    width: 100%;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.btn-brochure:hover {
    background-color: var(--primary-hover);
}

.shake-cta {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
    }
}

/* Enquiry Modal - styles defined at bottom */

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.65) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 24px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 15px;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-content p {
    font-size: 1.6rem;
    font-weight: 300;
    margin-bottom: 30px;
    opacity: 0.95;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

.btn-explore {
    display: inline-block;
    padding: 14px 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(237, 156, 6, 0.35);
    transition: var(--transition);
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.btn-explore:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(237, 156, 6, 0.5);
}

/* Section Header styling */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header .subtitle {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    position: relative;
    padding-bottom: 12px;
    display: inline-block;
}

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

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.about-text p {
    font-size: 1.15rem;
    color: #4a4a4a;
    margin-bottom: 20px;
    text-align: left;
}

.about-highlights .highlight-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.highlight-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--dark);
    border-bottom: 2px solid var(--light-bg);
    padding-bottom: 10px;
    text-align: left;
}

.highlight-card ul {
    list-style: none;
}

.highlight-card li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 1rem;
    border-bottom: 1px solid #f4f2ee;
}

.highlight-card li:last-child {
    border-bottom: none;
}

/* Amenities Section */
.amenities-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.amenity-card {
    flex: 1 1 250px;
    max-width: 320px;
    min-height: 300px;
    padding: 35px 24px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.amenity-card.pool {
    background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.8)), url("swimming-pool.avif") center/cover no-repeat;
}

.amenity-card.gym {
    background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.8)), url("gym.png") center/cover no-repeat;
}

.amenity-card.play-area {
    background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.8)), url("play-area.jpg") center/cover no-repeat;
}

.amenity-card.sports-court {
    background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.8)), url("sports-court.jpg") center/cover no-repeat;
}

.amenity-card.spa {
    background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.8)), url("spa.jpg") center/cover no-repeat;
}

.amenity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--primary);
}

.amenity-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    transition: var(--transition);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.amenity-card:hover .amenity-icon {
    background-color: var(--primary);
    color: var(--white);
    transform: scale(1.05);
}

.amenity-icon svg {
    width: 32px;
    height: 32px;
}

.amenity-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--white);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.amenity-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.gallery-item {
    height: 450px;
    width: 530px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: var(--transition);
}

.gallery-info {
    position: absolute;
    bottom: -40px;
    left: 20px;
    right: 20px;
    color: var(--white);
    transition: var(--transition);
}

.gallery-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover .gallery-info {
    bottom: 20px;
}

/* Floor Plans Section */
.tabs-container {
    background-color: var(--white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.tabs-header {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 15px;
}

.tab-btn {
    padding: 10px 24px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary);
    transition: var(--transition);
}

.tab-btn.active {
    color: var(--primary);
}

.tab-btn.active::after {
    width: 100%;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.plan-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.plan-details {
    text-align: left;
}

.plan-details h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.plan-details p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.spec-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.spec-list li {
    font-size: 0.95rem;
    padding: 8px 12px;
    background-color: var(--light-bg);
    border-left: 3px solid var(--primary);
    border-radius: 0 8px 8px 0;
}

.plan-map {
    background-color: var(--light-bg);
    border: 2px dashed var(--border);
    border-radius: 12px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.plan-map::after {
    content: "Click to Unlock Plan";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #E5A040;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    pointer-events: none;
    transition: var(--transition);
    white-space: nowrap;
    z-index: 2;
}

.plan-map:hover::after {
    background-color: var(--primary-hover);
    transform: translate(-50%, -50%) scale(1.05);
}

.plan-map img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    padding: 10px;
    filter: blur(8px) grayscale(20%);
    transition: filter 0.3s ease;
}

.plan-map:hover img {
    filter: blur(4px) grayscale(10%);
}

.plan-images-container {
    display: flex;
    gap: 16px;
    width: 100%;
}

.plan-images-container .plan-map {
    flex: 1;
}

.map-mockup {
    width: 80%;
    height: 80%;
    position: relative;
    border-radius: 8px;
}

/* Master Map Visual CSS mockup */
.master-map-visual .map-mockup {
    background: #e8f5e9;
    border: 2px solid #a5d6a7;
}

.mock-tower {
    position: absolute;
    background-color: var(--white);
    border: 1.5px solid var(--primary);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tower-a {
    width: 60px;
    height: 60px;
    top: 20px;
    left: 20px;
}

.tower-b {
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
}

.mock-park {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: #81c784;
    border-radius: 50%;
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 0.85rem;
}

.mock-clubhouse {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 80px;
    height: 40px;
    background: #E5A040;
    border: 1px dashed #E5A040;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Floor layout styling mockup */
.floor-2bhk {
    display: grid;
    grid-template-areas:
        "living kitchen"
        "bed1 bed2";
    gap: 8px;
    background: var(--white);
}

.floor-3bhk {
    display: grid;
    grid-template-areas:
        "living kitchen bed3"
        "bed1 bed2 bed2";
    gap: 8px;
    background: var(--white);
}

.mock-room {
    border: 1px solid var(--border);
    background-color: var(--light-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    border-radius: 4px;
}

.living {
    grid-area: living;
    background-color: var(--primary-light);
    color: var(--primary);
}

.kitchen {
    grid-area: kitchen;
}

.bed1 {
    grid-area: bed1;
}

.bed2 {
    grid-area: bed2;
}

.bed3 {
    grid-area: bed3;
}

/* EMI Calculator */
.emi-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: start;
}

.emi-controls {
    background-color: var(--white);
    padding: 35px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 30px;
    height: 485px;
}

.emi-controls-title {
    color: #E5A040;
    font-size: larger;
    text-align: center;
}

.control-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.label-row label {
    font-weight: 600;
    font-size: 1.05rem;
}

.label-row input {
    width: 130px;
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    text-align: right;
    color: var(--primary);
    background-color: var(--light-bg);
}

/* Custom range slider styling */
input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: var(--border);
    border-radius: 5px;
    outline: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    transition: var(--transition);
}

input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.range-limits {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* EMI Results layout */
.results-card {
    background-color: var(--dark);
    color: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.results-card h3 {
    font-size: 1.15rem;
    font-weight: 500;
    opacity: 0.8;
    margin-bottom: 10px;
}

.monthly-emi-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 25px;
}

.results-card hr {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 25px;
}

.results-breakdown {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.breakdown-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
}

.breakdown-row span:first-child {
    opacity: 0.7;
}

.breakdown-row span:last-child {
    font-weight: 600;
}

.total-row {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-top: 5px;
}

.sub-hr {
    border-top: 1px dashed rgba(255, 255, 255, 0.08) !important;
    margin: 5px 0 !important;
}

/* Ratio Bar chart visualization */
.ratio-bar-container {
    text-align: left;
}

.ratio-label {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-bottom: 8px;
}

.ratio-bar {
    height: 8px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
}

.ratio-principal {
    background-color: var(--primary);
}

.ratio-interest {
    background-color: rgba(255, 255, 255, 0.2);
}

.ratio-legend {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 0.85rem;
}

.legend-p::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    margin-right: 6px;
}

.legend-i::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    margin-right: 6px;
}

/* Neighbourhood Section */
.neighbourhood-marquee-container {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 10px 0;
    mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.neighbourhood-marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 45s linear infinite;
}

.neighbourhood-marquee-track:hover {
    animation-play-state: paused;
}

.marquee-group {
    display: flex;
    gap: 24px;
    padding-right: 24px;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.neighbourhood-card {
    background-color: #1c233e;
    width: 365px;
    flex-shrink: 0;
    padding: 24px 20px 20px 20px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--white);
    text-shadow: none;
}

/* Background image overrides with transparent linear-gradient dark layer overlay */
.neighbourhood-card.tech-parks {
    background: linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.88)), url("hero3.webp") center/cover no-repeat;
}

.neighbourhood-card.education {
    background: linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.88)), url("hero5.jpg") center/cover no-repeat;
}

.neighbourhood-card.healthcare {
    background: linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.88)), url("hero1.webp") center/cover no-repeat;
}

.neighbourhood-card.retail {
    background: linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.88)), url("interiors.jpg") center/cover no-repeat;
}

.neighbourhood-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.neighbourhood-card-header h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--white);
    text-align: center;
    margin-bottom: 5px;
}

.circular-layout-container {
    position: relative;
    width: 100%;
    height: 380px;
    margin-top: 15px;
}

.central-circle {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.central-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
}

.circle-overlay {
    position: absolute;
    inset: 0;
    background: rgba(62, 31, 28, 0.25);
    pointer-events: none;
}

.dashed-circle-border {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    border: 2px dashed rgba(255, 255, 255, 0.2);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

.circular-item {
    --radius: 118px;
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(var(--angle)) translate(var(--radius)) rotate(calc(-1 * var(--angle)));
    z-index: 3;
    pointer-events: auto;
    transition: transform 0.3s ease;
}

.circular-item:hover {
    transform: translate(-50%, -50%) rotate(var(--angle)) translate(var(--radius)) rotate(calc(-1 * var(--angle))) scale(1.08);
}

.item-category {
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.item-value {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Angles for 5-item layout (72deg spacing starting from top) */
.angle-1 {
    --angle: -90deg;
    text-align: center;
    align-items: center;
}

.angle-2 {
    --angle: -18deg;
    text-align: left;
    align-items: flex-start;
}

.angle-3 {
    --angle: 54deg;
    text-align: left;
    align-items: flex-start;
}

.angle-4 {
    --angle: 126deg;
    text-align: right;
    align-items: flex-end;
}

.angle-5 {
    --angle: 198deg;
    text-align: right;
    align-items: flex-end;
}

/* Angles for 3-item layout (120deg spacing starting from top) */
.tri-angle-1 {
    --angle: -90deg;
    text-align: center;
    align-items: center;
}

.tri-angle-2 {
    --angle: 30deg;
    text-align: left;
    align-items: flex-start;
}

.tri-angle-3 {
    --angle: 150deg;
    text-align: right;
    align-items: flex-end;
}

/* Contact Section */
.contact-section {
    background-color: var(--white);
    border-radius: 24px;
    padding: 60px 40px;
    margin: 40px 0;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.contact-card {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.input-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.input-field label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
}

.input-field input,
.input-field select {
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.input-field input:focus,
.input-field select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.btn-submit {
    display: block;
    width: 100%;
    padding: 14px;
    background: var(--dark);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background-color: var(--primary);
}

/* Video Walkthrough & Virtual Tour Section */
#virtual-tour {
    padding: 60px 0;
}

.video-tour-container {
    max-width: 800px;
    margin: 0 auto;
    cursor: pointer;
}

.video-tour-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    background-color: var(--dark);
    transition: var(--transition);
}

.video-tour-wrapper:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(8px) brightness(0.8) grayscale(10%);
    transition: filter 0.3s ease, transform 0.5s ease;
}

.video-tour-wrapper:hover .video-thumbnail {
    filter: blur(4px) brightness(0.95) grayscale(0%);
    transform: scale(1.03);
}

.play-btn-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    z-index: 2;
}

.play-btn {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background-color: rgba(229, 160, 64, 0.95);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    animation: pulsePlay 2s infinite;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.play-btn svg {
    width: 32px;
    height: 32px;
    margin-left: 4px;
}

.video-tour-wrapper:hover .play-btn {
    background-color: var(--primary);
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(229, 160, 64, 0.5);
}

.play-btn-text {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.video-tour-wrapper:hover .play-btn-text {
    transform: translateY(2px);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
}

@keyframes pulsePlay {
    0% {
        box-shadow: 0 0 0 0 rgba(229, 160, 64, 0.6);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(229, 160, 64, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(229, 160, 64, 0);
    }
}

/* FAQ Section */
#faq {
    padding: 60px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 8px 25px rgba(229, 160, 64, 0.08);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark);
    text-align: left;
    transition: var(--transition);
}

.faq-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
}

.faq-icon svg {
    width: 100%;
    height: 100%;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--primary);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease-out;
    overflow: hidden;
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer-inner {
    min-height: 0;
}

.faq-answer-inner p {
    padding: 0 24px 20px 24px;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}



/* Footer Section */
footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 60px 0 30px 0;
    margin-top: 40px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-info-list {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.92rem;
    line-height: 1.8;
}

.footer-info-list li::marker {
    color: var(--primary);
}

.footer-disclaimer {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    margin-bottom: 24px;
    text-align: left;
}

.footer-divider {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 20px;
}

.footer-bottom-centered {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-centered a {
    color: var(--primary);
    text-decoration: none;
    margin: 0 6px;
    transition: var(--transition);
}

.footer-bottom-centered a:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-info-list {
        font-size: 0.85rem;
        margin-bottom: 18px;
        padding-left: 16px;
    }

    .footer-disclaimer {
        font-size: 0.78rem;
        margin-bottom: 20px;
    }

    .footer-bottom-centered {
        font-size: 0.82rem;
    }
}

/* Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ===== Page Layout: Main Content + Sidebar ===== */
.page-wrapper {
    display: flex;
    align-items: flex-start;
    width: 100%;
    margin: 0;
}

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

/* Enquiry Sidebar */
.enquiry-box {
    position: sticky;
    top: 70px;
    width: 330px;
    flex-shrink: 0;
    height: calc(100vh - 70px);
    padding: 14px 14px;
    background: white;
    border-left: 1px solid var(--border);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.06);
    z-index: 10;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 7px;
    align-self: flex-start;
    overflow: hidden;
}

/* Compact rules for desktop enquiry box to fit all viewports at once */
.enquiry-box.desktop-only .whatsapp-btn {
    padding: 8px 12px;
    font-size: 0.85rem;
}

.enquiry-box.desktop-only .eb-heading p {
    font-size: 0.95rem;
}

.enquiry-box.desktop-only .eb-input {
    padding: 8px 10px;
    font-size: 0.85rem;
}

.enquiry-box.desktop-only .eb-privacy {
    font-size: 0.65rem;
    line-height: 1.35;
}

.enquiry-box.desktop-only .eb-submit-btn {
    padding: 10px;
    font-size: 0.85rem;
}


.mobile-only {
    display: none !important;
}

/* WhatsApp Header Link (hidden on desktop by default) */
.btn-whatsapp-nav {
    display: none !important;
}

/* Sticky Bottom Bar (hidden on desktop by default) */
.sticky-bottom-bar {
    display: none !important;
}

@media (max-width: 992px) {

    /* Global helper to prevent accidental horizontal overflows on small viewports */
    html,
    body {
        overflow-x: hidden;
        width: 100%;
    }

    /* Add bottom padding to body on small viewports to prevent content clipping */
    body {
        padding-bottom: 60px !important;
    }

    /* Show the mobile static enquiry box and style it to be responsive */
    .enquiry-box.mobile-only {
        display: flex !important;
        position: static !important;
        width: calc(100% - 48px) !important;
        max-width: 480px !important;
        height: auto !important;
        margin: 30px auto !important;
        border: 1px solid var(--border) !important;
        border-radius: 16px !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
        padding: 24px 20px !important;
        gap: 12px !important;
        align-self: center !important;
    }

    /* Hide desktop enquiry box on tablet/mobile */
    .desktop-only {
        display: none !important;
    }

    /* Show and style the sticky bottom CTA bar */
    .sticky-bottom-bar {
        display: flex !important;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: 60px;
        background-color: var(--white);
        box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
        z-index: 1500;
        align-items: stretch;
    }

    .sticky-bar-item {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        font-weight: 700;
        font-size: 0.95rem;
        transition: var(--transition);
        border: none;
        cursor: pointer;
        font-family: inherit;
    }

    .sticky-bar-item.call-item {
        background-color: #1a1a1a;
        color: var(--white);
    }

    .sticky-bar-item.call-item:hover {
        background-color: #333;
    }

    .sticky-bar-item.whatsapp-item {
        background-color: #25d366;
        color: var(--white);
    }

    .sticky-bar-item.whatsapp-item:hover {
        background-color: #20ba5a;
    }

    .sticky-bar-item.enquire-item {
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
        color: var(--white);
        margin-left: 10px;
    }

    .sticky-bar-item.enquire-item:hover {
        opacity: 0.95;
    }

    .sticky-bar-item svg {
        width: 16px;
        height: 16px;
    }

    /* Show Call and WhatsApp links in header */
    .btn-whatsapp-nav {
        display: flex !important;
        align-items: center;
        justify-content: center;
        background-color: #25d366;
        color: var(--white);
        width: 42px;
        height: 42px;
        border-radius: 50%;
        transition: var(--transition);
        flex-shrink: 0;
        border: none;
        text-decoration: none;
    }

    .btn-whatsapp-nav .whatsapp-text {
        display: none;
    }

    .btn-call-nav {
        display: flex !important;
        align-items: center;
        justify-content: center;
        background-color: #1a1a1a;
        color: var(--white);
        width: 42px;
        height: 42px;
        border-radius: 50%;
        padding: 0 !important;
        border: none !important;
    }

    .btn-call-nav .call-text {
        display: none !important;
    }

    .btn-call-nav svg {
        color: var(--white) !important;
    }

    /* Hide the normal text Enquire button from header on mobile/tablet to make room */
    .btn-cta-nav {
        display: none !important;
    }

    /* Header & Navigation dropdown */
    .header-container {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        gap: 0 !important;
        position: relative;
        padding: 12px 20px !important;
    }

    .header-ctas {
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
    }

    nav#nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        border-top: 1px solid var(--border);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        padding: 20px;
        gap: 0;
        z-index: 1000;
    }

    nav#nav-menu.nav-open {
        display: flex;
    }

    nav#nav-menu a {
        display: block;
        padding: 12px 0;
        margin: 0;
        font-size: 1rem;
        border-bottom: 1px solid var(--border);
        text-align: left;
    }

    nav#nav-menu a:last-child {
        border-bottom: none;
    }

    /* Hamburger Menu Button */
    .hamburger-btn {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        border-radius: 8px;
        transition: var(--transition);
        flex-shrink: 0;
    }

    .hamburger-btn:hover {
        background-color: var(--light-bg);
    }

    .hamburger-line {
        display: block;
        width: 22px;
        height: 2px;
        background-color: var(--dark);
        border-radius: 2px;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .hamburger-btn.is-active .hamburger-line:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger-btn.is-active .hamburger-line:nth-child(2) {
        opacity: 0;
    }

    .hamburger-btn.is-active .hamburger-line:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* Hero layout */
    .hero-container {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        gap: 30px !important;
        padding: 40px 16px !important;
    }

    .register-card {
        margin: 0 auto !important;
        margin-top: 0 !important;
        width: 100% !important;
        max-width: 420px !important;
        align-self: center !important;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15) !important;
    }

    #hero {
        min-height: auto !important;
        height: auto !important;
        padding: 50px 0 !important;
    }

    .hero-content {
        max-width: 100% !important;
        padding: 0 !important;
        text-align: center !important;
    }

    .hero-content h1 {
        font-size: 2.8rem !important;
    }

    .hero-content p {
        font-size: 1.3rem !important;
    }

    /* Grid structures layout stacking */
    .about-grid,
    .plan-wrapper,
    .emi-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    /* Gallery responsiveness */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
    }

    .gallery-item {
        width: 100% !important;
        max-width: 100% !important;
        height: 320px !important;
    }

    /* Page wrapper stacking */
    .page-wrapper {
        flex-direction: column !important;
        align-items: stretch !important;
        overflow-x: hidden !important;
        width: 100% !important;
    }

    .main-content {
        width: 100% !important;
        max-width: 100% !important;
    }

    /* EMI calculator improvements */
    .emi-controls {
        height: auto !important;
        padding: 24px 20px !important;
        gap: 20px !important;
    }
}

/* Tablet range (769px – 992px) - wide whatsapp header button styling */
@media (min-width: 769px) and (max-width: 992px) {
    .btn-whatsapp-nav {
        width: auto !important;
        border-radius: 30px !important;
        padding: 10px 20px !important;
        gap: 8px !important;
    }

    .btn-whatsapp-nav .whatsapp-text {
        display: inline !important;
        font-weight: 600;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .plan-images-container {
        flex-direction: column !important;
        gap: 16px !important;
    }

    .plan-map {
        height: 260px !important;
    }

    .hero-content h1 {
        font-size: 2.2rem !important;
    }

    .hero-content p {
        font-size: 1.1rem !important;
    }

    .section-header h2 {
        font-size: 1.8rem !important;
    }

    section {
        padding: 60px 0 40px 0 !important;
    }

    .form-row {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }

    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
        padding: 0 16px 30px 16px !important;
    }

    .footer-bottom {
        flex-direction: column !important;
        gap: 15px !important;
        text-align: center !important;
    }

    .footer-disclaimer-text {
        text-align: center !important;
    }

    /* Smaller spacing for tabs */
    .tabs-container {
        padding: 20px 16px !important;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr !important;
    }

    .gallery-item {
        height: 240px !important;
    }

    .label-row {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 6px !important;
    }

    .label-row input {
        width: 100% !important;
        text-align: left !important;
    }

    .btn-call-nav {
        padding: 10px !important;
        border-radius: 50% !important;
    }

    .btn-call-nav .call-text {
        display: none !important;
    }
}

@media (max-width: 520px) {
    .enquiry-modal-box {
        border-radius: 16px !important;
    }

    .modal-header {
        padding: 18px 20px 8px 20px !important;
    }

    .modal-form {
        padding: 16px 20px 0 20px !important;
    }

    .modal-subtitle,
    .modal-privacy {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

@media (max-width: 480px) {
    .tab-btn {
        padding: 8px 12px !important;
        font-size: 0.9rem !important;
    }

    /* Keep circular layout in Neighbourhood within screen limits */
    .neighbourhood-card {
        width: 290px !important;
        padding: 16px 12px 12px 12px !important;
    }

    .circular-layout-container {
        width: 260px !important;
        height: 260px !important;
    }

    .dashed-circle-border {
        width: 180px !important;
        height: 180px !important;
    }

    .central-circle {
        width: 110px !important;
        height: 110px !important;
    }

    .circular-item {
        --radius: 85px !important;
    }

    .item-value {
        font-size: 0.8rem !important;
    }

    .item-category {
        font-size: 0.6rem !important;
    }

    .btn-cta-nav {
        padding: 8px 12px !important;
        font-size: 0.8rem !important;
    }

    .spec-list {
        grid-template-columns: 1fr !important;
        gap: 8px !important;
    }
}

@media (max-width: 360px) {
    .header-container {
        padding: 10px 12px !important;
    }

    .btn-cta-nav {
        padding: 6px 10px !important;
        font-size: 0.75rem !important;
    }

    .logo-main {
        font-size: 1.25rem !important;
    }

    .logo-img {
        height: 36px !important;
    }
}

/* WhatsApp button */
.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #fff;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 700;
    padding: 12px 16px;
    border-radius: 8px;
    transition: var(--transition);
    letter-spacing: 0.2px;
}

.whatsapp-btn:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

.whatsapp-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Pre-Register heading */
.eb-heading {
    text-align: center;
}

.eb-heading p {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.35;
}

.eb-highlight {
    color: var(--primary);
    font-weight: 700;
}

/* Inputs */
.eb-input {
    width: 100%;
    padding: 10px 14px;
    border-radius: 6px;
    border: 1px solid #d8d8d8;
    font-family: inherit;
    font-size: 0.88rem;
    color: var(--dark);
    background: #fff;
    outline: none;
    transition: var(--transition);
}

.eb-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

/* Phone row with flag */
.eb-phone-row {
    display: flex;
    align-items: stretch;
    gap: 0;
    border: 1px solid #d8d8d8;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
}

.eb-flag-select {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 10px;
    background: #f5f5f5;
    border-right: 1px solid #d8d8d8;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--dark);
    white-space: nowrap;
    flex-shrink: 0;
}

.eb-flag-img {
    width: 20px;
    height: auto;
    border-radius: 2px;
}

.eb-phone-input {
    border: none !important;
    border-radius: 0 !important;
    flex: 1;
    min-width: 0;
}

.eb-phone-input:focus {
    box-shadow: none !important;
}

/* Privacy disclaimer */
.eb-privacy {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
    text-align: left;
}

.eb-check {
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: var(--primary);
    width: 14px;
    height: 14px;
}

.eb-privacy span {
    font-size: 0.73rem;
    color: #666;
    line-height: 1.4;
}

.eb-link {
    color: #c0392b;
    text-decoration: none;
    font-weight: 500;
}

.eb-link:hover {
    text-decoration: underline;
}

/* Express Your Interest button */
.eb-submit-btn {
    width: 100%;
    padding: 13px;
    background-color: #E5A040;
    color: #fff;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 700;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    letter-spacing: 0.3px;
    transition: var(--transition);
}

.eb-submit-btn:hover {
    background-color: #E5A040;
}

/* Project image with caption overlay */
.eb-image-wrap {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.enquiry-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

.eb-image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 20px 10px 8px;
    text-align: left;
    line-height: 1.4;
}

.eb-image-caption em {
    font-style: italic;
    font-weight: 400;
}

/* Service icons 2x2 grid */
.eb-icons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.eb-icon-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 11px 7px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.5rem;
    font-weight: 600;
    color: var(--dark);
    transition: var(--transition);
    line-height: 1.3;
    text-align: center;
}

.eb-icon-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(237, 156, 6, 0.12);
}

.eb-icon-btn svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

/* ===== Premium Enquiry Modal ===== */
.enquiry-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 12, 10, 0.72);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    padding: 16px;
}

.enquiry-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.enquiry-modal-box {
    background: var(--white);
    border-radius: 20px;
    width: 100%;
    max-width: 480px;
    position: relative;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3), 0 8px 20px rgba(237, 156, 6, 0.12);
    overflow: hidden;
    transform: translateY(30px) scale(0.96);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
    opacity: 0;
}

.enquiry-modal-overlay.active .enquiry-modal-box {
    transform: translateY(0) scale(1);
    opacity: 1;
}

/* Golden accent bar at top */
.modal-accent-bar {
    height: 5px;
    background: linear-gradient(90deg, var(--primary) 0%, #E5A040 60%, var(--primary-hover) 100%);
}

/* Close button */
.modal-close-btn {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: var(--light-bg);
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}

.modal-close-btn:hover {
    background: var(--border);
    color: var(--dark);
}

.modal-close-btn svg {
    width: 16px;
    height: 16px;
}

/* Modal header row */
.modal-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 28px 10px 28px;
}

.modal-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.modal-icon svg {
    width: 26px;
    height: 26px;
}

.modal-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    margin-bottom: 2px;
}

.modal-title {
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin: 0;
}

.modal-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    padding: 0 28px 18px 28px;
    border-bottom: 1px solid var(--border);
}

/* Form layout */
.modal-form {
    padding: 20px 28px 0 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.modal-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.modal-field label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
}

.req {
    color: var(--primary);
    margin-left: 2px;
}

.modal-field input,
.modal-field select {
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--dark);
    background: var(--light-bg);
    outline: none;
    transition: var(--transition);
}

.modal-field input:focus,
.modal-field select:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.modal-field input::placeholder {
    color: #bbb;
    font-weight: 400;
}

/* Submit button */
.modal-submit-btn {
    margin-top: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.3px;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(237, 156, 6, 0.35);
}

.modal-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(237, 156, 6, 0.45);
}

.modal-submit-btn svg {
    width: 18px;
    height: 18px;
    stroke: var(--white);
    transition: transform 0.25s ease;
}

.modal-submit-btn:hover svg {
    transform: translateX(4px);
}

/* Privacy note */
.modal-privacy {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: center;
    padding: 14px 28px 22px 28px;
    line-height: 1.5;
}

@media (max-width: 520px) {
    .enquiry-modal-box {
        border-radius: 16px;
    }

    .modal-header {
        padding: 18px 20px 8px 20px;
    }

    .modal-form {
        padding: 16px 20px 0 20px;
    }

    .modal-subtitle,
    .modal-privacy {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 480px) {
    .tab-btn {
        padding: 8px 12px;
        font-size: 0.9rem;
    }

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

/* Location Map Styles */
.location-map-section {
    position: relative;
    width: 100%;
}

.map-container-new {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    cursor: pointer;
    background-color: var(--light-bg);
}

.map-image-new {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: var(--transition);
}

.map-container-new:hover .map-image-new {
    transform: scale(1.02);
}

.map-overlay-new {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 2;
}

.map-container-new:hover .map-overlay-new {
    background: rgba(0, 0, 0, 0.35);
}

.map-overlay-btn {
    background-color: var(--primary);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(229, 160, 64, 0.4);
    transition: var(--transition);
}

.map-container-new:hover .map-overlay-btn {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(229, 160, 64, 0.5);
}

.map-overlay-icon {
    width: 22px;
    height: 22px;
}

@media (max-width: 768px) {
    .map-overlay-btn {
        padding: 12px 24px;
        font-size: 0.92rem;
    }

    .map-overlay-icon {
        width: 18px;
        height: 18px;
    }
}