/* Custom properties for the navbar theme */

:root {
    --color-gold: #b98616;
    --color-gold-hover: #9c6f0f;
    --color-grey-dark: #333333;
    --color-border: #e2e8f0;
    --header-height: 100px;
    --shadow-premium: 0 10px 30px rgba(0, 0, 0, 0.05);
}


/* Base resets */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', 'Inter', sans-serif;
    color: var(--color-grey-dark);
    background-color: #ffffff;
    overflow-x: hidden;
}


/* Container layout for content centering and side padding */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    /* Left and right padding on desktop */
}


/* ==========================================
   DESKTOP HEADER & LOGOS
   ========================================== */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: #ffffff;
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
    display: flex;
    align-items: center;
}

.nav-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 16px;
    grid-column: 1;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    display: block;
    object-fit: contain;
    width: auto;
}

.brand-logo-img {
    height: 48px;
}

.logo-separator {
    width: 1px;
    height: 40px;
    background-color: var(--color-border);
}

.partner-logo-vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
}

.partner-icon-img {
    height: 28px;
}

.partner-text-block {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.partner-txt-main {
    color: var(--color-grey-dark);
    font-weight: 700;
    font-size: 0.62rem;
    letter-spacing: 0.5px;
}

.partner-txt-sub {
    color: #666666;
    font-weight: 600;
    font-size: 0.52rem;
    letter-spacing: 0.5px;
}

.desktop-nav {
    grid-column: 2;
    display: flex;
    justify-content: center;
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 28px;
}

.desktop-nav ul li a {
    text-decoration: none;
    color: var(--color-grey-dark);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.desktop-nav ul li a:hover {
    color: var(--color-gold);
}

.desktop-nav ul li a.active {
    color: var(--color-gold);
}

.desktop-nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-gold);
    border-radius: 1px;
}

.hamburger-open {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--color-grey-dark);
    cursor: pointer;
    padding: 6px;
    grid-column: 3;
}


/* ==========================================
   MOBILE MENU DRAWER LAYOUT
   ========================================== */

.mobile-menu-drawer {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    max-width: 360px;
    height: 100vh;
    background-color: #ffffff;
    z-index: 1002;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.08);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-drawer.open {
    left: 0;
}

.mobile-drawer-header {
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f0f4f8;
}

.mobile-drawer-header .logo-group {
    gap: 12px;
}

.mobile-brand-img {
    height: 36px;
}

.mobile-partner-logo {
    gap: 2px;
}

.mobile-partner-icon-img {
    height: 20px;
}

.close-menu {
    width: 44px;
    height: 44px;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #4a5568;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.close-menu:hover {
    background-color: #f7fafc;
    color: var(--color-gold);
}

.mobile-drawer-body {
    flex: 1;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 30px;
}

.mobile-nav-link {
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 0;
    transition: all 0.3s ease;
}

.mobile-nav-link .nav-icon {
    font-size: 1.1rem;
    color: #4a5568;
    width: 24px;
    text-align: center;
}

.mobile-nav-link.active {
    color: var(--color-gold);
}

.mobile-nav-link.active .nav-icon {
    color: var(--color-gold);
}

.mobile-nav-link:hover {
    color: var(--color-gold);
}

.mobile-nav-link:hover .nav-icon {
    color: var(--color-gold);
}

.brochure-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 150px;
    padding: 11px 0;
    background-color: var(--color-gold);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(185, 134, 22, 0.2);
    transition: all 0.3s ease;
    margin-top: 10px;
}

.brochure-btn:hover {
    background-color: #9c6f0f;
    transform: translateY(-1px);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1001;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu-overlay.show {
    opacity: 1;
    pointer-events: auto;
}


/* ==========================================
   HERO BANNER SECTION (Single Image Banner)
   ========================================== */

.hero-section {
    position: relative;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    margin: 0 !important;
    background-color: #ffffff;
    overflow: hidden;
}

.hero-banner-box {
    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
    background: none !important;
}

.hero-full-img {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    display: block !important;
    object-fit: contain !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
}

/* Visibility & Responsive Rules */
@media screen and (min-width: 769px) {
    .hero-section {
        padding-top: 100px !important; /* Starts directly below fixed navbar */
        padding-bottom: 0 !important;
    }
    
    .desktop-only {
        display: block !important;
        width: 100% !important;
    }
    
    .mobile-only {
        display: none !important;
    }

    .hero-banner-box img,
    .hero-full-img {
        width: 100% !important;
        height: auto !important;
        display: block !important;
        object-fit: contain !important;
    }
}

@media screen and (max-width: 768px) {
    .hero-section {
        padding-top: 90px !important; /* Starts directly below mobile fixed navbar */
        padding-bottom: 0 !important;
    }
    
    .desktop-only {
        display: none !important;
    }
    
    .mobile-only {
        display: block !important;
        width: 100% !important;
    }

    .hero-banner-box img,
    .hero-full-img {
        width: 100% !important;
        height: auto !important;
        display: block !important;
        object-fit: contain !important;
    }
}


/* ==========================================
   FLOATING INTERACTIVE UTILITIES
   ========================================== */

.floating-enquire-tab {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: right bottom;
    background-color: var(--color-gold);
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 4px 4px 0 0;
    box-shadow: -4px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transition: all 0.3s ease;
}

.floating-enquire-tab:hover {
    background-color: var(--color-gold-hover);
}

.bottom-floating-actions {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 998;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.float-whatsapp {
    background-color: #25d366;
}

.float-phone {
    background-color: var(--color-gold);
}

.float-btn:hover {
    transform: scale(1.08);
}


/* ==========================================
   ENQUIRE POPUP FORM MODAL
   ========================================== */

.popupform-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.popupform-overlay.open {
    display: flex;
}

.popupform-modal {
    background-color: #ffffff;
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    position: relative;
    animation: modalScaleUp 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes modalScaleUp {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.popupform-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background-color: #f7f9fa;
    border: none;
    border-radius: 50%;
    font-size: 1.1rem;
    color: #555555;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.popupform-close:hover {
    background-color: #edf2f7;
    color: var(--color-gold);
}

.popupform-body {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
}

.popupform-logo-wrapper {
    margin: 0 auto 20px;
    text-align: center;
}

.popupform-logo {
    height: 48px;
    object-fit: contain;
}

.popupform-title {
    font-size: 2rem;
    color: var(--color-gold);
    text-align: center;
    font-weight: 700;
    margin-bottom: 28px;
}

.popupform-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.popupform-field-group {
    width: 100%;
}

.popupform-input-wrapper,
.popupform-phone-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    background-color: #f8fafc;
    padding: 4px 12px;
    transition: all 0.3s ease;
}

.popupform-field-error {
    border-color: #e53e3e !important;
    background-color: #fff5f5 !important;
}

.popupform-field-icon {
    color: var(--color-gold);
    font-size: 1.1rem;
    margin-right: 12px;
}

.popupform-input {
    width: 100%;
    border: none;
    background: transparent;
    outline: none;
    padding: 10px 0;
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--color-grey-dark);
}

.popupform-phone-wrapper {
    padding: 0 12px;
}

.popupform-phone-input {
    width: 100%;
    border: none;
    background: transparent;
    outline: none;
    padding: 14px 0;
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--color-grey-dark);
}

.iti {
    width: 100%;
}

.iti__country-list,
.iti--container {
    z-index: 99999 !important;
}

.popupform-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.76rem;
    color: #666666;
    line-height: 1.4;
    margin-top: 4px;
    cursor: pointer;
}

.popupform-consent input[type="checkbox"] {
    margin-top: 2px;
    accent-color: var(--color-gold);
    width: 16px;
    height: 16px;
}

.popupform-consent a {
    color: var(--color-gold);
    text-decoration: underline;
    font-weight: 600;
}

.popupform-submit-button {
    background-color: var(--color-gold);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 14px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.popupform-submit-button:hover {
    background-color: var(--color-gold-hover);
}

.popupform-submit-button:disabled {
    background-color: #cbd5e0;
    cursor: not-allowed;
}

.popupform-message {
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
    margin-top: 5px;
}

.popupform-error {
    color: #e53e3e;
}

.popupform-success {
    color: #38a169;
}


/* ==========================================
   SCROLL REVEAL ANIMATIONS
   ========================================== */

.reveal-up {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.15s;
}

.delay-2 {
    transition-delay: 0.3s;
}

.delay-3 {
    transition-delay: 0.45s;
}

.delay-4 {
    transition-delay: 0.6s;
}


/* ==========================================
   OVERVIEW SECTION
   ========================================== */

.overview-section {
    padding: 30px 0 10px 0 !important;
    margin-top: 0 !important;
    background-color: #ffffff;
}

.overview-section-title {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 1.85rem;
    color: var(--color-gold);
    text-align: center;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.overview-content-layout {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 20px;
}

.overview-image-side {
    width: 100%;
}

.overview-main-img {
    width: 440px;
    height: 490px;
    border-radius: 20px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    display: block;
}

.overview-text-side {
    display: flex;
    flex-direction: column;
}

.overview-welcome {
    font-size: 1.5rem;
    font-weight: 400;
    color: #333333;
    margin-bottom: 4px;
}

.overview-welcome strong {
    font-weight: 700;
}

.overview-location-sub {
    font-size: 1.25rem;
    font-weight: 400;
    color: #555555;
    margin-bottom: 10px;
}

.overview-description-box {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 10px;
}

.overview-p {
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.65;
}

.overview-p.extra-content {
    display: block;
}

.mobile-read-more-btn {
    display: none;
}

.overview-specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 30px;
    border-top: 1px solid var(--color-border);
    padding-top: 24px;
    margin-bottom: 30px;
}

.spec-cell {
    border-left: 2px solid var(--color-gold);
    padding-left: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.spec-label {
    font-size: 0.8rem;
    color: #888888;
    font-weight: 500;
}

.spec-value {
    font-size: 0.95rem;
    color: var(--color-gold);
    font-weight: 700;
}

.overview-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

.btn-download-brochure {
    background-color: var(--color-gold);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 14px 28px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(185, 134, 22, 0.2);
    transition: all 0.3s ease;
}

.btn-download-brochure:hover {
    background-color: var(--color-gold-hover);
    transform: translateY(-1px);
}

.mobile-br {
    display: none;
}

.virtual-tour-link-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    text-decoration: none;
}

.vt-icon-circle {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vt-svg {
    width: 100%;
    height: 100%;
}

.virtual-tour-btn-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
    justify-content: center;
}

.vt-label {
    font-size: 0.8rem;
    color: #333333;
    font-weight: 700;
    letter-spacing: 0.5px;
    white-space: nowrap;
    line-height: 1.1;
}

.vt-click-btn {
    font-size: 0.72rem;
    color: #ffffff;
    background-color: var(--color-gold);
    padding: 2px 6px;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    align-self: flex-start;
    margin-top: 0;
}


/* ==========================================
   DOWNLOADS SECTION
   ========================================== */

.downloads-section {
    padding: 10px 0;
    background-color: #ffffff;
}

.downloads-section-title {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 1.85rem;
    color: var(--color-gold);
    text-align: center;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.downloads-carousel-wrapper {
    width: 100%;
    margin-top: 20px;
    position: relative;
}

.downloads-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.download-card {
    position: relative;
    border: 1px solid var(--color-gold);
    background: #ffffff;
    padding: 45px 30px;
    text-align: center;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.download-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(185, 134, 22, 0.08);
}

.card-semicircle-pattern {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 50px;
    pointer-events: none;
}

.card-semicircle-pattern::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 0;
    width: 24px;
    height: 48px;
    border-radius: 0 24px 24px 0;
    border: 1px solid rgba(185, 134, 22, 0.18);
    border-left: none;
}

.card-semicircle-pattern::after {
    content: '';
    position: absolute;
    left: -18px;
    top: 9px;
    width: 24px;
    height: 30px;
    border-radius: 0 24px 24px 0;
    border: 1px solid rgba(185, 134, 22, 0.12);
    border-left: none;
}

.card-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon svg {
    width: 100%;
    height: 100%;
}

.download-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #000000;
    margin: 0;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.5px;
}

.btn-card-download {
    width: 100%;
    max-width: 180px;
    background-color: var(--color-gold);
    color: #ffffff;
    border: none;
    padding: 12px 0;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-card-download:hover {
    background-color: var(--color-gold-hover);
}

.carousel-dots-container {
    display: none;
}


/* ==========================================
   CONFIGURATIONS SECTION
   ========================================== */

.configurations-section {
    padding: 10px 0;
    background-color: #ffffff;
}

.configurations-section-title {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 1.85rem;
    color: var(--color-gold);
    text-align: center;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.configs-carousel-wrapper {
    overflow: hidden;
    width: 100%;
    margin-top: 20px;
    position: relative;
}

.configs-track {
    display: flex;
    width: 100%;
    margin: 0 -15px;
    transition: transform 0.4s ease-out;
}

.config-card-wrapper {
    flex: 0 0 33.333%;
    width: 33.333%;
    padding: 0 15px;
    box-sizing: border-box;
}

.config-card {
    position: relative;
    border: 1px solid var(--color-gold);
    background: #ffffff;
    padding: 45px 30px;
    text-align: center;
    border-radius: 6px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

.config-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(185, 134, 22, 0.08);
}

.config-type-title {
    font-size: 1.45rem;
    font-weight: 700;
    color: #000000;
    margin: 0 0 6px 0;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.5px;
}

.config-spec-line {
    font-size: 0.9rem;
    color: #555555;
    margin: 0;
}

.config-spec-line strong {
    color: #000000;
    font-weight: 700;
}

.config-price-line {
    font-size: 0.9rem;
    color: #555555;
    margin: 0 0 12px 0;
}

.config-price-line strong {
    color: #000000;
    font-weight: 700;
}

.btn-config-breakup {
    width: 100%;
    max-width: 180px;
    background-color: var(--color-gold);
    color: #ffffff;
    border: none;
    padding: 12px 0;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease;
}

.btn-config-breakup:hover {
    background-color: var(--color-gold-hover);
}

.configs-dots-container {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.config-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #cbd5e0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.config-dot.active {
    background-color: var(--color-gold);
}


/* ==========================================
   AMENITIES SECTION
   ========================================== */

.amenities-section {
    padding: 10px 0;
    background-color: #ffffff;
}

.amenities-section-title {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 1.85rem;
    color: var(--color-gold);
    text-align: center;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.amenities-subtitle {
    font-size: 1rem;
    text-align: center;
    color: #333333;
    margin-top: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-family: 'Outfit', sans-serif;
}

.amenities-carousel-wrapper {
    overflow: hidden;
    width: 100%;
    margin-top: 20px;
    position: relative;
    padding: 10px 0;
}

.amenities-track {
    display: flex;
    width: 100%;
    margin: 0 -15px;
    transition: transform 0.4s ease-out;
}

.amenity-card-wrapper {
    flex: 0 0 33.333%;
    width: 33.333%;
    padding: 0 15px;
    box-sizing: border-box;
}

.amenity-card {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.amenity-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 16 / 10;
    width: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.amenity-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.amenity-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(185, 134, 22, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.plus-icon {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 300;
}

.amenity-image-container:hover .amenity-hover-overlay {
    opacity: 1;
}

.amenity-image-container:hover .amenity-img {
    transform: scale(1.05);
}

.amenity-body {
    padding: 0 5px;
}

.amenity-description {
    font-size: 0.95rem;
    color: #444444;
    line-height: 1.6;
    text-align: left;
}

.amenity-description strong {
    color: #000000;
    font-weight: 700;
}

.amenities-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 0px;
}

.amenity-control-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--color-gold);
    background: #ffffff;
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.amenity-control-btn:hover {
    background-color: var(--color-gold);
    color: #ffffff;
}


/* ==========================================
   LIGHTBOX GALLERY MODAL
   ========================================== */

.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox-overlay.open {
    display: flex;
    animation: fadeIn 0.3s ease forwards;
}

.lightbox-content-wrapper {
    position: relative;
    max-width: 90%;
    max-height: 85%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image-box {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-main-img {
    max-width: 100%;
    max-height: 80vh;
    display: block;
    object-fit: contain;
}

.lightbox-close-btn {
    position: absolute;
    top: 0;
    right: 0;
    background: #ffffff;
    border: none;
    color: #333333;
    font-size: 1.5rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2020;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.2s ease, color 0.2s ease;
}

.lightbox-close-btn:hover {
    background-color: var(--color-gold);
    color: #ffffff;
}

.lightbox-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #ffffff;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 2010;
    transition: color 0.3s ease;
}

.lightbox-nav-btn:hover {
    color: var(--color-gold);
}

.lightbox-nav-btn.prev {
    left: -60px;
}

.lightbox-nav-btn.next {
    right: -60px;
}


/* ==========================================
   PLANS SECTION
   ========================================== */

.plans-section {
    padding: 10px 0;
    background-color: #ffffff;
}

.plans-section-title {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 1.85rem;
    color: var(--color-gold);
    text-align: center;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.plans-tabs {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.plan-tab-btn {
    background: none;
    border: none;
    padding: 12px 20px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #888888;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.5px;
}

.plan-tab-btn:hover {
    color: var(--color-gold);
}

.plan-tab-btn.active {
    color: var(--color-gold);
}

.plan-tab-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--color-gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.plan-tab-btn.active::after {
    transform: scaleX(1);
}

.plans-description {
    text-align: center;
    font-size: 1rem;
    color: #333333;
    max-width: 850px;
    margin: 0 auto 35px auto;
    line-height: 1.65;
    font-family: 'Outfit', sans-serif;
}

.plans-tab-content-wrapper {
    width: 100%;
    position: relative;
}

.plan-tab-pane {
    display: none;
}

.plan-tab-pane.active {
    display: block;
    animation: fadeIn 0.4s ease forwards;
}

.single-plan-layout {
    display: flex;
    justify-content: center;
    width: 33.333%;
    max-width: 33.333%;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.plan-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid var(--color-gold);
    width: 100%;
    background-color: #f7f9fa;
    aspect-ratio: 4 / 3;
}

.plan-img.blurred {
    filter: blur(8px);
    transform: scale(1.03);
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.plan-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.05);
}

.btn-plan-enquire {
    background-color: var(--color-gold);
    color: #ffffff;
    border: none;
    border-radius: 4px;
    padding: 14px 28px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(185, 134, 22, 0.25);
    transition: background-color 0.3s ease, transform 0.2s ease;
    letter-spacing: 0.5px;
}

.btn-plan-enquire:hover {
    background-color: var(--color-gold-hover);
    transform: scale(1.02);
}

.plans-carousel-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 10px 0;
}

.plans-track {
    display: flex;
    width: 100%;
    margin: 0 -15px;
    transition: transform 0.4s ease-out;
}

.plan-card-wrapper {
    flex: 0 0 33.333%;
    width: 33.333%;
    padding: 0 15px;
    box-sizing: border-box;
}

.plans-dots-container {
    display: none;
}


/* ==========================================
   CONNECTIVITY SECTION
   ========================================== */

.connectivity-section {
    padding: 10px 0;
    background-color: #ffffff !important;
    color: #333333;
    border-top: 1px solid var(--color-border);
}

.connectivity-layout-grid {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-top: 20px;
}

.connectivity-text-side {
    flex: 1.1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.connectivity-main-title {
    font-family: 'Georgia', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #111111;
    line-height: 1.35;
    margin: 0;
    text-align: left;
}

.connectivity-main-title em {
    font-style: italic;
}

.connectivity-highlights-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid #eeeeee;
    padding-bottom: 4px;
}

.highlight-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.highlight-icon-box {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.highlight-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    color: #555555;
    line-height: 1.5;
    margin: 0;
    text-align: left;
}

.highlight-gold {
    color: #f7a600;
    font-weight: 600;
}

.connectivity-map-side {
    flex: 1;
    min-width: 0;
}

.map-image-box {
    border: 8px solid #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    background: #ffffff;
}

.connectivity-map-img {
    width: 100%;
    height: 80%;
    display: block;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .connectivity-main-title {
        font-size: 15px;
    }
}


/* ==========================================
   GALLERY SECTION
   ========================================== */

.gallery-section {
    padding: 10px 0;
    background-color: #ffffff;
}

.gallery-section-title {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 1.85rem;
    color: var(--color-gold);
    text-align: center;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.gallery-carousel-wrapper {
    overflow: hidden;
    width: 100%;
    margin-top: 10px;
    position: relative;
    padding: 10px 0;
}

.gallery-track {
    display: flex;
    width: 100%;
    margin: 0 -15px;
    transition: transform 0.4s ease-out;
}

.gallery-item-wrapper {
    flex: 0 0 33.333%;
    width: 33.333%;
    padding: 0 15px;
    box-sizing: border-box;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 16 / 11;
    width: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.gallery-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(185, 134, 22, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover .gallery-hover-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.gallery-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.gallery-control-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--color-gold);
    background: #ffffff;
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.gallery-control-btn:hover {
    background-color: var(--color-gold);
    color: #ffffff;
}


/* ==========================================
   RESPONSIVE DESIGN (Media Queries)
   ========================================== */

.mobile-bottom-bar {
    display: none;
}

@media (max-width: 1024px) {
    body {
        padding-bottom: 50px;
    }
    .container {
        padding: 0 20px;
    }
    .nav-container {
        display: flex;
        justify-content: space-between;
    }
    .desktop-nav {
        display: none;
    }
    .hamburger-open {
        display: block;
    }
    .floating-enquire-tab {
        position: fixed;
        top: 50%;
        bottom: auto;
        right: 0;
        width: auto;
        transform: translateY(-50%) rotate(-90deg);
        transform-origin: right bottom;
        border-radius: 4px 4px 0 0;
        padding: 8px 16px;
        font-size: 0.8rem;
        z-index: 999;
    }
    .bottom-floating-actions {
        display: none;
    }
    .mobile-bottom-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 60px;
        z-index: 1000;
        box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.12);
    }
    .mobile-bottom-btn {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        text-decoration: none;
        color: #ffffff;
        font-weight: 600;
        font-size: 0.95rem;
        transition: background-color 0.3s ease;
    }
    .btn-whatsapp {
        background-color: #1ebd61;
    }
    .btn-whatsapp:hover {
        background-color: #1a9e52;
    }
    .btn-call {
        background-color: #ca8a04;
    }
    .btn-call:hover {
        background-color: #b07803;
    }
    .overview-content-layout {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 30px;
    }
    .overview-image-side {
        order: 2;
        width: 100%;
    }
    .overview-main-img {
        width: 100%;
        max-width: 100%;
        height: auto;
        border-radius: 16px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    }
    .overview-text-side {
        order: 1;
        padding: 0 8px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .overview-welcome {
        text-align: center;
        font-size: 1.1rem;
        white-space: nowrap;
        margin-bottom: 6px;
        width: 100%;
    }
    .overview-location-sub {
        text-align: center;
        font-size: 0.95rem;
        margin-bottom: 20px;
        width: 100%;
    }
    .overview-description-box {
        text-align: left;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    .overview-p {
        text-align: left;
    }
    .mobile-read-more-btn {
        align-self: flex-start;
    }
    .overview-specs-grid {
        text-align: left;
        width: 100%;
        padding-top: 15px !important;
        gap: 12px 20px !important;
        margin-bottom: 15px !important;
    }
    .overview-p.extra-content {
        display: none;
    }
    .overview-p.extra-content.show {
        display: block;
        animation: fadeIn 0.4s ease forwards;
    }
    .mobile-read-more-btn {
        display: inline-block;
        background: none;
        border: none;
        color: var(--color-gold);
        text-decoration: underline;
        font-weight: 600;
        font-size: 0.9rem;
        cursor: pointer;
        padding: 4px 0;
        align-self: flex-start;
    }
    .overview-actions {
        display: flex;
        align-items: center;
        gap: 15px;
        width: 100%;
    }
    .mobile-br {
        display: inline;
    }
    .btn-download-brochure {
        flex: 1.3;
        font-size: 0.72rem;
        padding: 8px 6px;
        border-radius: 4px;
        white-space: nowrap;
        text-align: center;
        line-height: 1.2;
        display: inline-flex;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
    }
    .virtual-tour-link-wrapper {
        flex: 0.7;
        gap: 6px;
        justify-content: flex-end;
    }
    .vt-icon-circle {
        width: 38px;
        height: 38px;
    }
    .downloads-carousel-wrapper {
        overflow: hidden;
        width: 100%;
        margin-top: 35px;
    }
    .downloads-track {
        display: flex;
        grid-template-columns: none;
        gap: 0;
        width: 100%;
    }
    .download-card {
        flex: 0 0 100%;
        width: 100%;
        margin: 0;
        padding: 40px 20px;
        box-sizing: border-box;
    }
    .carousel-dots-container {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 24px;
    }
    .carousel-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: #cbd5e0;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    .carousel-dot.active {
        background-color: var(--color-gold);
    }
    .configs-carousel-wrapper {
        overflow: hidden;
        width: 100%;
        margin-top: 30px;
    }
    .configs-track {
        margin: 0;
        gap: 0;
    }
    .config-card-wrapper {
        flex: 0 0 100%;
        width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }
    .config-card {
        padding: 40px 20px;
    }
    .configs-dots-container {
        margin-top: 24px;
    }
    .amenities-carousel-wrapper {
        overflow: hidden;
        width: 100%;
        margin-top: 15px;
    }
    .amenities-track {
        margin: 0;
        gap: 0;
    }
    .amenity-card-wrapper {
        flex: 0 0 100%;
        width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }
    .amenity-card {
        gap: 12px;
    }
    .amenities-controls {
        margin-top: 4px;
    }
    .lightbox-nav-btn.prev {
        left: 10px;
    }
    .lightbox-nav-btn.next {
        right: 10px;
    }
    .plans-tabs {
        gap: 20px;
        margin-top: 30px;
        margin-bottom: 15px;
    }
    .plan-tab-btn {
        padding: 10px 12px;
        font-size: 0.95rem;
    }
    .plans-description {
        margin-bottom: 25px;
        padding: 0 10px;
    }
    .plans-track {
        margin: 0;
        gap: 0;
    }
    .plan-card-wrapper {
        flex: 0 0 100%;
        width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }
    .plans-dots-container {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 24px;
    }
    .plan-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: #cbd5e0;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    .plan-dot.active {
        background-color: var(--color-gold);
    }
    .single-plan-layout {
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
    }
    .connectivity-layout-grid {
        flex-direction: column;
        gap: 35px;
        margin-top: 10px;
    }
    .connectivity-text-side {
        width: 100%;
    }
    .connectivity-map-side {
        width: 100%;
    }
    .gallery-carousel-wrapper {
        overflow: hidden;
        width: 100%;
        margin-top: 0px;
    }
    .gallery-track {
        margin: 0;
        gap: 0;
    }
    .gallery-item-wrapper {
        flex: 0 0 100%;
        width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }
    .gallery-controls {
        margin-top: 4px;
    }
}

@media (max-width: 768px) {
    .popupform-modal {
        max-width: 100%;
    }
    .popupform-body {
        padding: 30px 16px;
    }
}

@media (max-width: 480px) {
    :root {
        --header-height: 90px;
    }
    .brand-logo-img {
        height: 38px;
    }
    .partner-icon-img {
        height: 22px;
    }
    .partner-txt-main {
        font-size: 0.55rem;
    }
    .partner-txt-sub {
        font-size: 0.48rem;
    }
    .logo-separator {
        height: 30px;
    }
    .mobile-brand-img {
        height: 30px;
    }
    .mobile-partner-icon-img {
        height: 18px;
    }
}


/* ==========================================
   FOOTER SECTION STYLING
   ========================================== */

.authorised-sales-partner {
    margin: 8px 0 0;
    font-size: 13px;
    font-weight: 500;
}

.main-footer-section {
    background-color: #fcfbfa;
    padding: 10px 0 0 0;
    font-family: 'Poppins', 'Inter', sans-serif;
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 10px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.footer-logo {
    height: 48px;
    object-fit: contain;
    align-self: flex-start;
}

.footer-brand-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #111111;
    margin: 0;
    font-family: 'Outfit', sans-serif;
}

.footer-brand-desc {
    font-size: 0.88rem;
    color: #555555;
    line-height: 1.6;
    margin: 0;
}

.footer-social-links {
    display: none !important;
}

.social-box {
    width: 38px;
    height: 38px;
    border: 1px solid #dddddd;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555555;
    transition: all 0.3s ease;
}

.social-box:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    transform: translateY(-2px);
}

.footer-col-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #000000;
    margin: 0;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.5px;
    text-transform: capitalize;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-list a {
    color: #666666;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer-links-list a:hover {
    color: var(--color-gold);
}

.footer-about-text {
    font-size: 0.88rem;
    color: #555555;
    line-height: 1.6;
    margin: 0;
}

.footer-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: #444444;
}

.footer-checklist .check-icon {
    color: #b98616;
    font-size: 1.05rem;
}


/* ==========================================
   FOOTER CONTACT INFORMATION
   ========================================== */

.footer-contact-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    gap: 30px;
    padding: 30px 0;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
}

.contact-item {
    flex: 1;
    min-width: 0;
    text-align: center;
}

.contact-label {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
    margin: 0 0 8px 0;
}

.contact-value {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.5;
    color: #555555;
    text-decoration: none;
    margin: 0;
    word-break: normal;
}

.contact-value:hover {
    color: var(--color-gold);
}


/* ==========================================
   FOOTER RESPONSIVE
   ========================================== */

@media (max-width: 1024px) {
    .footer-contact-row {
        gap: 20px;
    }
    .contact-label {
        font-size: 0.95rem;
    }
    .contact-value {
        font-size: 0.82rem;
    }
}


/* ==========================================
   MOBILE FOOTER CONTACT
   ========================================== */

@media (max-width: 768px) {
    .footer-contact-row {
        display: flex;
        flex-direction: row !important;
        justify-content: space-between;
        align-items: flex-start;
        width: 100%;
        gap: 8px;
        padding: 20px 0;
        text-align: center;
    }
    .contact-item {
        flex: 1 1 33.333%;
        width: 33.333%;
        min-width: 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .contact-label {
        display: block;
        font-size: 0.85rem;
        font-weight: 600;
        margin: 0 0 6px 0;
        white-space: nowrap;
    }
    .contact-value {
        display: block;
        width: 100%;
        font-size: 0.68rem;
        line-height: 1.4;
        margin: 0;
        white-space: normal;
        word-break: normal;
        overflow-wrap: break-word;
    }
    .footer-contact-row br {
        display: none;
    }
}


/* ==========================================
   SMALL MOBILE DEVICES
   ========================================== */

@media (max-width: 480px) {
    .footer-contact-row {
        gap: 5px;
        padding: 18px 0;
    }
    .contact-item {
        flex: 1 1 33.333%;
        width: 33.333%;
    }
    .contact-label {
        font-size: 0.78rem;
        margin-bottom: 5px;
    }
    .contact-value {
        font-size: 0.62rem;
        line-height: 1.35;
    }
}

.text-muted {
    color: #666666 !important;
}


/* ==========================================
   RERA REGISTRATION ROW (Dashed Box Design)
   ========================================== */

.footer-rera-row {
    text-align: center;
    margin: 25px 0 20px 0;
    padding: 14px 20px;
    background-color: #ffffff;
    border-top: 1px dashed #cccccc;
    border-bottom: 1px dashed #cccccc;
    width: 100%;
}

.footer-rera-row p {
    font-family: 'Outfit', 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #111111;
    margin: 0;
    line-height: 1.5;
    letter-spacing: 0.2px;
}


/* Disclaimer row */

.footer-disclaimer-row {
    margin-bottom: 10px;
    padding: 0 10px;
}

.disclaimer-text {
    font-size: 0.76rem;
    color: #888888;
    line-height: 1.7;
    text-align: justify;
    margin: 0;
}

.disclaimer-text strong {
    color: #444444;
}


/* Policy links row */

.footer-policy-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.policy-link {
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.policy-link:hover {
    opacity: 0.8;
}

.footer-policy-row .separator {
    color: #888888;
    font-size: 0.9rem;
}


/* Blue link overrides for policy links */

a[href*="disclaimer"],
a[href*="privacy-policy"],
a[href*="terms-conditions"] {
    color: #0066cc !important;
    text-decoration: underline !important;
}

a[href*="disclaimer"]:hover,
a[href*="privacy-policy"]:hover,
a[href*="terms-conditions"]:hover {
    color: #004499 !important;
}


/* Copyright Bottom strip */

.footer-bottom-strip {
    background-color: #0a0a0a;
    padding: 15px 0;
    text-align: center;
}

.footer-bottom-strip p {
    color: #ffffff;
    font-size: 0.8rem;
    margin: 0;
    font-weight: 500;
}


/* Responsive Footer queries */

@media (max-width: 1024px) {
    .footer-top-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-top-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .brand-col {
        grid-column: 1 / -1;
        align-items: center;
    }
    .footer-logo {
        align-self: center;
    }
    .footer-social-links {
        justify-content: center;
    }
    .links-col {
        display: none !important;
    }
    .about-col {
        grid-column: 1 / -1;
        align-items: center;
        text-align: center;
    }
    .footer-checklist {
        display: none !important;
    }
    .footer-contact-row {
        display: flex;
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 20px 0;
    }
    .footer-contact-row br {
        display: none;
    }
    .contact-item {
        align-items: center;
    }
    .contact-label {
        font-size: 0.95rem;
    }
    .contact-value {
        font-size: 0.85rem;
    }
    .footer-policy-row {
        flex-wrap: nowrap !important;
        white-space: nowrap !important;
        justify-content: center;
        gap: 10px;
    }
    .footer-policy-row a,
    .footer-policy-row .separator {
        font-size: 0.72rem !important;
    }
    .footer-rera-row {
        padding: 10px 10px;
    }
    .footer-rera-row p {
        font-size: 0.78rem;
    }
}


/* ==========================================
   POLICY & LEGAL PAGES COMMON STYLING
   ========================================== */

.policy-page-layout,
.condition-container,
.privacy-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 130px 24px 60px !important;
    box-sizing: border-box;
}

.policy-page-layout {
    background: #fdfbf7 !important;
    color: #202020 !important;
    min-height: 80vh;
    font-family: Arial, sans-serif !important;
}

.privacy-container {
    color: #333;
    font-family: "Poppins", sans-serif;
    line-height: 2.6;
}

.privacy-title,
.condition-title {
    color: #000;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: block;
    margin-top: 30px;
    margin-bottom: 10px;
}

.privacy-subtitle,
.condition-subtitle {
    color: #000;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 0px;
    text-align: justify;
}

.privacy-container a,
.condition-container a {
    color: #007bff;
    text-decoration: underline;
}