/* Mobile header (matches critical.css — hamburger + slide-down nav) */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .nav-container {
        min-height: 44px;
    }
}

/* Icons (sprite: icons.svg + js/icons.js) */
.icon {
    width: 1em;
    height: 1em;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.luxury-cat__icon .icon,
.amenities-chip .icon,
.loc__kicker .icon,
.loc-col__title .icon,
.loc-card__icon .icon,
.loc-chip .icon,
.ditto-card__icon .icon,
.footer-contact .icon,
.social-links .icon,
.enquiry-modal__close .icon {
    width: 1em;
    height: 1em;
}

/* Small overview strip below banner */
.banner-overview {
    margin-top: -8px;
    padding: 0 0 clamp(15px, 2vw, 20px);
    background:
        radial-gradient(1200px 480px at 50% -20%, rgba(197, 160, 89, 0.18), transparent 56%),
        linear-gradient(180deg, #1a2230 0%, #0f1724 55%, #0b111b 100%);
}

.banner-overview::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.banner-overview:hover::after {
    opacity: 1;
}

.banner-overview__card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(16px, 2.8vw, 28px);
    align-items: center;
    padding: clamp(14px, 2vw, 22px);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(197, 160, 89, 0.2);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    z-index: 0;
}

.banner-overview__card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.25), rgba(255, 255, 255, 0.1));
    pointer-events: none;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.banner-overview__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.banner-overview__card:hover::before {
    opacity: 0.9;
}

.banner-overview__imageWrap {
    position: relative;
    z-index: 1;
    border-radius: 16px;
    overflow: hidden;
    min-height: 230px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.35);
}

.banner-overview__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.05);
    filter: saturate(1.08) contrast(1.04);
}

.banner-overview__imageTag {
    position: absolute;
    left: 12px;
    bottom: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(3, 7, 18, 0.76);
    border: 1px solid rgba(197, 160, 89, 0.40);
    color: #fff;
    font: 600 11px/1 "Montserrat", sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.banner-overview__imageTag i {
    width: 14px;
    height: 14px;
    color: var(--primary-light);
}

.banner-overview__content {
    position: relative;
    z-index: 1;
}

.banner-overview__kicker {
    margin: 0 0 8px;
    font: 700 12px/1.2 "Montserrat", sans-serif;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    transition: color 0.3s ease;
}

.banner-overview__card:hover .banner-overview__kicker {
    color: var(--primary-light);
}

.banner-overview__title {
    margin: 0 0 10px;
    color: var(--primary);
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.08;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.banner-overview__card:hover .banner-overview__title {
    transform: translateY(-2px);
}

.banner-overview__text {
    margin: 0;
    color: rgba(229, 231, 235, 0.78);
    font: 400 14px/1.75 "Montserrat", sans-serif;
}

.banner-overview__stats {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.bo-stat {
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(197, 160, 89, 0.22);
    min-width: 140px;
    transition: all 0.3s ease;
}

.bo-stat:hover {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.bo-stat__value {
    display: block;
    color: rgba(255, 255, 255, 0.92);
    font: 700 13px/1.2 "Montserrat", sans-serif;
    letter-spacing: 0.2px;
}

.bo-stat__label {
    display: block;
    margin-top: 4px;
    color: rgba(209, 213, 219, 0.72);
    font: 500 11px/1.2 "Montserrat", sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 900px) {
    .banner-overview__card {
        grid-template-columns: 1fr;
    }

    .banner-overview__imageWrap {
        min-height: 190px;
    }
}

/* ==========================================
   PROJECT OVERVIEW – Creative Typographic Strip
   ========================================== */
/* ==========================================
   PROJECT OVERVIEW – Cinematic Dark Style
   ========================================== */
.ov2 {
    position: relative;
    background: #050a14;
    overflow: hidden;
    padding: clamp(64px, 10vw, 46px) 0;
    color: #fff;
}

.ov2__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.ov2__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.38;
    filter: saturate(0.35) contrast(1.05) brightness(0.55);
    animation: slowZoom 40s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.08);
    }
}

.ov2__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 55% at 50% 40%, rgba(197, 160, 89, 0.12) 0%, transparent 55%),
        radial-gradient(circle at center, transparent 0%, #050a14 88%);
}

.ov2__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero .container.hero__inner {
    width: 100%;
    max-width: 1480px;
    padding-left: clamp(16px, 5.5vw, 48px);
    padding-right: clamp(16px, 3.5vw, 32px);
}

.ov2__badge {
    display: inline-block;
    font: 700 10px "Montserrat", sans-serif;
    letter-spacing: 4px;
    color: var(--primary);
    margin-bottom: 20px;
    padding: 8px 16px;
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 999px;
}

.ov2__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(42px, 6vw, 84px);
    font-weight: 500;
    line-height: 1.1;
    max-width: 1000px;
    margin: 0 auto 30px;
    color: #fff;
}

.text-gold {
    color: var(--primary);
}

.ov2__desc {
    font-size: clamp(16px, 1.2vw, 20px);
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.ov2__stats {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: clamp(20px, 4vw, 48px);
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: clamp(36px, 5vw, 52px) clamp(28px, 5vw, 56px);
    background: rgba(8, 12, 18, 0.55);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(197, 160, 89, 0.28);
    border-radius: 20px;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.04) inset,
        0 28px 80px rgba(0, 0, 0, 0.45),
        0 0 60px rgba(197, 160, 89, 0.08);
    position: relative;
    overflow: hidden;
}

.ov2__stats::before {
    content: "";
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.85;
}

.ov2__stats::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="n"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="3"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23n)" opacity="0.04"/%3E%3C/svg%3E');
    pointer-events: none;
    mix-blend-mode: overlay;
}

.ov2-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
    padding: clamp(20px, 3vw, 28px) clamp(12px, 2vw, 20px);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(197, 160, 89, 0.12);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease;
    position: relative;
    z-index: 1;
}

.ov2-stat:hover {
    transform: translateY(-6px);
    border-color: rgba(197, 160, 89, 0.45);
    background: rgba(197, 160, 89, 0.07);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.ov2-stat__num {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(34px, 4.2vw, 62px);
    font-weight: 600;
    line-height: 1;
    background: linear-gradient(160deg, #f5e6c8 0%, #e5c17b 35%, #c5a059 70%, #a68045 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 4px 20px rgba(197, 160, 89, 0.35));
}

.ov2-stat__label {
    font: 700 10px "Montserrat", sans-serif;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

.ov2-stat__sep {
    width: 1px;
    align-self: center;
    flex-shrink: 0;
    height: clamp(56px, 8vw, 88px);
    background: linear-gradient(180deg,
            transparent 0%,
            rgba(197, 160, 89, 0.15) 15%,
            rgba(197, 160, 89, 0.55) 50%,
            rgba(197, 160, 89, 0.15) 85%,
            transparent 100%);
}

/* Tag row */
.ov2__tags {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(12px, 2vw, 24px);
}

.ov2-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font: 600 11px/1 "Montserrat", sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: rgba(31, 20, 8, 0.65);
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(197, 160, 89, 0.15);
    border-radius: 6px;
}

.ov2-tag i {
    width: 13px;
    height: 13px;
    color: var(--primary);
}

/* Responsive fixes */
@media (max-width: 768px) {
    .ov2 {
        padding: 48px 0;
    }

    .ov2__stats {
        flex-wrap: wrap;
        gap: 16px;
        padding: 28px 20px;
    }

    .ov2-stat__sep {
        display: none;
    }

    .ov2-stat {
        flex: 1 1 calc(50% - 8px);
        min-width: 130px;
    }

    .ov2-stat:last-child {
        flex: 1 1 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .ov2-stat__num {
        font-size: clamp(30px, 8vw, 44px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .ov2__bg-img {
        animation: none;
    }

    .ov2-stat:hover {
        transform: none;
    }
}


/* ==========================================
   PHASE 1 — Premium Towers (editorial showcase)
   ========================================== */
.phase-towers {
    position: relative;
    padding: clamp(40px, 5vw, 56px) 0 clamp(36px, 4vw, 48px);
    background:
        radial-gradient(ellipse 70% 50% at 50% 0%, rgba(197, 160, 89, 0.07), transparent 55%),
        #faf8f4;
    overflow: hidden;
}

.phase-towers::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(197, 160, 89, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(197, 160, 89, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 75%);
}

.phase-towers__container {
    position: relative;
    z-index: 1;
    width: min(1140px, calc(100% - 40px));
    margin: 0 auto;
}

.phase-towers__head {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: clamp(20px, 4vw, 48px);
    margin-bottom: clamp(20px, 3vw, 28px);
}

.phase-towers__count {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(88px, 14vw, 160px);
    font-weight: 400;
    line-height: 0.85;
    letter-spacing: -6px;
    background: linear-gradient(180deg, rgba(197, 160, 89, 0.35) 0%, rgba(197, 160, 89, 0.08) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    user-select: none;
}

.phase-towers__head-copy {
    max-width: 640px;
}

.phase-towers__kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font: 700 10px/1 "Montserrat", sans-serif;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary-dark);
}

.phase-towers__kicker-line {
    width: 28px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(197, 160, 89, 0.7));
}

.phase-towers__kicker-line:last-child {
    background: linear-gradient(270deg, transparent, rgba(197, 160, 89, 0.7));
}

.phase-towers__title {
    margin: 0 0 10px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(24px, 3.4vw, 40px);
    font-weight: 500;
    line-height: 1.22;
    color: #1e2a45;
    letter-spacing: -0.3px;
}

.phase-towers__title em {
    font-style: italic;
    background: linear-gradient(135deg, #a68045, #c5a059, #e5c17b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.phase-towers__sub {
    margin: 0;
    font: 400 13px/1.6 "Montserrat", sans-serif;
    color: #7a8494;
}

.phase-towers__panel {
    padding: clamp(14px, 2vw, 18px);
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(197, 160, 89, 0.16);
    box-shadow: 0 12px 40px rgba(30, 42, 69, 0.07);
}

.phase-towers__showcase {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(12px, 1.8vw, 16px);
}

.phase-towers__tower-card {
    display: flex;
    flex-direction: column;
    border-radius: 14px;
    overflow: hidden;
    background: #faf8f4;
    border: 1px solid rgba(197, 160, 89, 0.12);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.phase-towers__tower-card:hover {
    border-color: rgba(197, 160, 89, 0.35);
    box-shadow: 0 8px 24px rgba(30, 42, 69, 0.08);
}

.phase-towers__visual {
    position: relative;
    height: clamp(110px, 23vw, 300px);
    overflow: hidden;
    background: #f0ebe3;
}

.phase-towers__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s ease;
}

.phase-towers__tower-card:hover .phase-towers__img {
    transform: scale(1.03);
}

.phase-towers__ribbon {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    padding: 5px 10px;
    border-radius: 999px;
    font: 700 9px/1 "Montserrat", sans-serif;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #1a1208;
    background: linear-gradient(135deg, #e5c17b, #c5a059);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.phase-towers__ribbon--alt {
    color: #fff;
    background: linear-gradient(135deg, #3d6b5c, #1f4037);
}

.phase-towers__body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 12px 14px 14px;
}

.phase-towers__tower-head {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.phase-towers__tower-num {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.2), rgba(197, 160, 89, 0.08));
    border: 1px solid rgba(197, 160, 89, 0.3);
    font: 600 11px/1 "Montserrat", sans-serif;
    color: var(--primary-dark);
}

.phase-towers__tower-card--b .phase-towers__tower-num {
    background: linear-gradient(135deg, rgba(45, 82, 72, 0.15), rgba(45, 82, 72, 0.06));
    border-color: rgba(45, 82, 72, 0.25);
    color: #2d5248;
}

.phase-towers__tower-name {
    margin: 0 0 2px;
    font: 700 11px/1.3 "Montserrat", sans-serif;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #1e2a45;
}

.phase-towers__tagline {
    margin: 0;
    font: italic 500 12px/1.35 Georgia, 'Times New Roman', serif;
    color: #6b7280;
}

.phase-towers__facts {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 10px;
}

.phase-towers__facts li {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 6px 8px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid rgba(197, 160, 89, 0.1);
}

.phase-towers__facts li span {
    font: 600 9px/1 "Montserrat", sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #9ca3af;
}

.phase-towers__facts li strong {
    font: 700 12px/1.2 "Montserrat", sans-serif;
    color: #1e2a45;
}

.phase-towers__explore {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 2px;
    padding: 9px 14px;
    border: 1px solid rgba(30, 42, 69, 0.12);
    border-radius: 999px;
    background: #1e2a45;
    font: 700 10px/1 "Montserrat", sans-serif;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.phase-towers__explore i,
.phase-towers__explore .icon {
    width: 15px;
    height: 15px;
}

.phase-towers__explore:hover {
    background: #2a3a5c;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(30, 42, 69, 0.2);
}

.phase-towers__explore--alt {
    background: linear-gradient(135deg, #2d5248, #1f4037);
    border-color: transparent;
}

.phase-towers__explore--alt:hover {
    background: linear-gradient(135deg, #3d6b5c, #2d5248);
}

.phase-towers__footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px 16px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(197, 160, 89, 0.14);
}

.phase-towers__access {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 20px;
    border: 1px solid rgba(197, 160, 89, 0.45);
    border-radius: 999px;
    background: #fff;
    font: 700 10px/1 "Montserrat", sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #1e2a45;
    cursor: pointer;
    transition: all 0.35s ease;
    box-shadow: 0 8px 28px rgba(30, 42, 69, 0.08);
}

.phase-towers__access i,
.phase-towers__access .icon {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

.phase-towers__access:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(197, 160, 89, 0.2);
}

.phase-towers__footnote {
    margin: 0;
    font: 500 10px/1.4 "Montserrat", sans-serif;
    letter-spacing: 0.3px;
    color: #9ca3af;
}

@media (max-width: 900px) {
    .phase-towers__head {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .phase-towers__count {
        justify-self: center;
        font-size: clamp(72px, 20vw, 120px);
    }

    .phase-towers__head-copy {
        max-width: none;
    }

    .phase-towers__kicker {
        justify-content: center;
    }

    .phase-towers__showcase {
        grid-template-columns: 1fr;
    }

    .phase-towers__footer {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .phase-towers__access {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .phase-towers {
        padding: 44px 0;
    }

    .phase-towers__container {
        width: calc(100% - 32px);
    }

    .phase-towers__access {
        width: 100%;
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .phase-towers__tower-card:hover,
    .phase-towers__tower-card:hover .phase-towers__img,
    .phase-towers__explore:hover,
    .phase-towers__access:hover {
        transform: none;
    }
}

/* ==========================================
   PRICING & PAYMENT PLAN — Compact panel
   ========================================== */
.price-plan {
    position: relative;
    padding: clamp(36px, 5vh, 52px) 0;
    background: linear-gradient(180deg, #faf8f4 0%, #f5efe6 100%);
    overflow: hidden;
}

.price-plan::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 90% 70% at 50% -10%, rgba(197, 160, 89, 0.12), transparent 55%);
}

.price-plan__container {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 clamp(16px, 3vw, 32px);
}

.price-plan__panel {
    border-radius: 14px;
    background: linear-gradient(165deg, #1a2438 0%, #1e2a45 45%, #253556 100%);
    border: 1px solid rgba(197, 160, 89, 0.28);
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.08),
        0 24px 64px rgba(30, 42, 69, 0.28);
    overflow: hidden;
}

.price-plan__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding: clamp(16px, 2.2vw, 22px) clamp(18px, 2.5vw, 26px);
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.1) 0%, rgba(197, 160, 89, 0.03) 100%);
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

.price-plan__head-main {
    min-width: 0;
}

.price-plan__kicker {
    display: block;
    margin-bottom: 4px;
    font: 700 10px/1 "Montserrat", sans-serif;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-light);
}

.price-plan__title {
    margin: 0;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(24px, 2.8vw, 36px);
    font-weight: 500;
    line-height: 1.1;
    color: #fff;
    white-space: nowrap;
}

.price-plan__rate-block {
    text-align: center;
    min-width: 0;
}

.price-plan__rate {
    margin: 0;
    font-family: Georgia, serif;
    font-size: clamp(20px, 2.4vw, 28px);
    font-weight: 700;
    line-height: 1.1;
    color: #e5c17b;
    white-space: nowrap;
}

.price-plan__rate small {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: rgba(229, 193, 123, 0.75);
}

.price-plan__note {
    margin: 4px 0 0;
    font: 600 9px/1.2 "Montserrat", sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.price-plan__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    padding: 11px 18px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, #e5c17b 0%, #c5a059 50%, #a68045 100%);
    font: 700 10px/1 "Montserrat", sans-serif;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #1a1208;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.25);
    white-space: nowrap;
}

.price-plan__cta .icon,
.price-plan__cta i {
    width: 14px;
    height: 14px;
}

.price-plan__cta:hover {
    background: linear-gradient(135deg, #f0ddb0 0%, #e5c17b 50%, #c5a059 100%);
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(197, 160, 89, 0.32);
}

.price-plan__body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
}

.price-plan__col {
    padding: clamp(14px, 2vw, 20px) clamp(16px, 2.2vw, 22px);
}

.price-plan__col--pricing {
    border-right: 1px solid rgba(197, 160, 89, 0.16);
}

.price-plan__col-title {
    margin: 0 0 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(197, 160, 89, 0.25);
    font: 700 10px/1 "Montserrat", sans-serif;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--primary-light);
}

.price-plan__units {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 12px;
}

.price-plan__unit {
    padding: 12px 14px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(197, 160, 89, 0.2);
}

.price-plan__unit-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.price-plan__unit-badge {
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(197, 160, 89, 0.18);
    border: 1px solid rgba(197, 160, 89, 0.35);
    font: 700 9px/1 "Montserrat", sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #e5c17b;
}

.price-plan__unit-name {
    font-family: Georgia, serif;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.price-plan__unit-meta {
    margin: 0 0 6px;
    font: 500 10px/1.3 "Montserrat", sans-serif;
    color: rgba(255, 255, 255, 0.55);
}

.price-plan__unit-price {
    margin: 0;
    font-family: Georgia, serif;
    font-size: clamp(16px, 1.8vw, 20px);
    font-weight: 700;
    color: #e5c17b;
    line-height: 1.2;
}

.price-plan__offers {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.price-plan__offer {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(197, 160, 89, 0.22);
    font: 500 10px/1.35 "Montserrat", sans-serif;
    color: rgba(255, 255, 255, 0.75);
}

.price-plan__offer strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 18px;
    padding: 0 5px;
    border-radius: 4px;
    background: var(--primary);
    font: 700 8px/1 "Montserrat", sans-serif;
    color: #1a1208;
}

.price-plan__milestones {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 14px;
}

.price-plan__milestones li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 7px 0;
    border-bottom: 1px dashed rgba(197, 160, 89, 0.2);
}

.price-plan__milestones li:nth-last-child(-n+2) {
    border-bottom: none;
}

.price-plan__step {
    flex: 1;
    min-width: 0;
    font: 500 11px/1.3 "Montserrat", sans-serif;
    color: rgba(255, 255, 255, 0.82);
}

.price-plan__milestones strong {
    flex-shrink: 0;
    min-width: 40px;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(197, 160, 89, 0.15);
    border: 1px solid rgba(197, 160, 89, 0.35);
    font: 700 10px/1 "Montserrat", sans-serif;
    color: #e5c17b;
    text-align: center;
}

@media (max-width: 900px) {
    .price-plan__head {
        flex-direction: column;
        align-items: flex-start;
    }

    .price-plan__rate-block {
        text-align: left;
    }

    .price-plan__title,
    .price-plan__rate {
        white-space: normal;
    }

    .price-plan__body {
        grid-template-columns: 1fr;
    }

    .price-plan__col--pricing {
        border-right: none;
        border-bottom: 1px solid rgba(197, 160, 89, 0.14);
    }

    .price-plan__cta {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 560px) {
    .price-plan__units {
        grid-template-columns: 1fr;
    }

    .price-plan__milestones {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .price-plan__cta:hover {
        transform: none;
    }
}

/* ==========================================
   LOCATION — Compact single-panel board
   ========================================== */
.loc {
    position: relative;
    padding: clamp(36px, 5vh, 52px) 0;
    background: linear-gradient(180deg, #faf8f4 0%, #f5efe6 100%);
    overflow: hidden;
}

.loc::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 90% 70% at 50% -10%, rgba(197, 160, 89, 0.14), transparent 55%);
}

.loc__container {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 clamp(16px, 3vw, 32px);
}

.loc__panel {
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(197, 160, 89, 0.24);
    box-shadow:
        0 4px 6px rgba(166, 128, 69, 0.04),
        0 20px 56px rgba(166, 128, 69, 0.1);
    overflow: hidden;
}

.loc__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding: clamp(18px, 2.5vw, 24px) clamp(20px, 3vw, 28px);
    background: linear-gradient(135deg, #fffdf9 0%, #faf7f2 100%);
    border-bottom: 1px solid rgba(197, 160, 89, 0.18);
}

.loc__head-main {
    min-width: 0;
}

.loc__kicker {
    display: block;
    margin-bottom: 6px;
    font: 700 10px/1 "Montserrat", sans-serif;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-dark);
}

.loc__title {
    margin: 0;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(26px, 3.2vw, 40px);
    font-weight: 500;
    line-height: 1.1;
    color: var(--text-dark);
    white-space: nowrap;
}

.loc__title-accent {
    font-style: italic;
    background: linear-gradient(135deg, #a68045, #c5a059, #e5c17b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.loc__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.loc-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(197, 160, 89, 0.22);
    font: 600 10px/1 "Montserrat", sans-serif;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #5c4a2a;
    white-space: nowrap;
}

.loc-chip i,
.loc-chip .icon,
.loc-chip svg {
    width: 13px;
    height: 13px;
    color: var(--primary);
    flex-shrink: 0;
}

.loc__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.loc-col {
    padding: clamp(16px, 2vw, 22px) clamp(18px, 2.2vw, 24px);
    border-right: 1px solid rgba(197, 160, 89, 0.14);
}

.loc-col:last-child {
    border-right: none;
}

.loc-col__title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 12px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(197, 160, 89, 0.2);
    font: 700 10px/1 "Montserrat", sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-dark);
}

.loc-col__title i,
.loc-col__title .icon,
.loc-col__title svg {
    width: 15px;
    height: 15px;
    color: var(--primary);
}

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

.loc-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px dashed rgba(197, 160, 89, 0.16);
}

.loc-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.loc-item__name {
    flex: 1;
    min-width: 0;
    font: 500 12px/1.35 "Montserrat", sans-serif;
    color: var(--text-dark);
}

.loc-item__time {
    flex-shrink: 0;
    min-width: 52px;
    padding: 4px 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, #faf7f2, #f5efe6);
    border: 1px solid rgba(197, 160, 89, 0.25);
    font: 700 10px/1 "Montserrat", sans-serif;
    color: #a68045;
    text-align: center;
    white-space: nowrap;
}

@media (max-width: 900px) {
    .loc__head {
        flex-direction: column;
        align-items: flex-start;
    }

    .loc__chips {
        justify-content: flex-start;
    }

    .loc__title {
        white-space: normal;
    }

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

    .loc-col {
        border-right: none;
        border-bottom: 1px solid rgba(197, 160, 89, 0.14);
    }

    .loc-col:last-child {
        border-bottom: none;
    }
}

@media (max-width: 520px) {
    .loc-chip {
        font-size: 9px;
        padding: 6px 10px;
    }

    .loc-item {
        flex-wrap: wrap;
    }
}

/* Amenities (unique, premium) */
.premium-amenities {
    position: relative;
    padding: clamp(60px, 8vw, 120px) 0;
    background: linear-gradient(180deg, #FAF8F5 0%, #F5F1EB 100%);
    overflow: hidden;
}

.premium-amenities__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 80px);
}

.premium-amenities__grid {
    display: grid;
    grid-template-columns: 4.2fr 7.8fr;
    gap: clamp(40px, 6vw, 100px);
    align-items: center;
}

.premium-amenities__left {
    position: sticky;
    top: 120px;
    z-index: 10;
}

.premium-amenities__kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.premium-amenities__kicker-line {
    width: 32px;
    height: 1px;
    background: var(--primary);
}

.premium-amenities__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(38px, 4vw, 58px);
    font-weight: 500;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.premium-amenities__title span {
    font-style: italic;
    color: var(--primary-dark);
}

.premium-amenities__desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 40px;
}

/* Category Navigation List */
.premium-amenities__categories {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.premium-amenities__cat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 8px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
    width: 100%;
}

.premium-amenities__cat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-style: italic;
    color: var(--text-light-gray);
    width: 24px;
    transition: all 0.3s ease;
}

.premium-amenities__cat-name {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-gray);
    transition: all 0.3s ease;
}

.premium-amenities__cat-item.active .premium-amenities__cat-num {
    color: var(--primary);
    transform: scale(1.2);
}

.premium-amenities__cat-item.active .premium-amenities__cat-name {
    color: var(--text-dark);
    font-weight: 700;
    letter-spacing: 2px;
    padding-left: 8px;
}

.premium-amenities__cat-item::after {
    content: '';
    flex-grow: 1;
    height: 1px;
    background: rgba(197, 160, 89, 0.15);
    margin-left: 16px;
    opacity: 0;
    transition: all 0.3s ease;
    transform: scaleX(0);
    transform-origin: left;
}

.premium-amenities__cat-item.active::after {
    opacity: 1;
    transform: scaleX(1);
}

/* Slider Controls */
.premium-amenities__controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.premium-amenities__btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid rgba(197, 160, 89, 0.3);
    background: rgba(255, 255, 255, 0.8);
    color: var(--text-dark);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.premium-amenities__btn i,
.premium-amenities__btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.premium-amenities__btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.2);
}

.premium-amenities__btn--prev:hover i,
.premium-amenities__btn--prev:hover svg {
    transform: translateX(-4px);
}

.premium-amenities__btn--next:hover i,
.premium-amenities__btn--next:hover svg {
    transform: translateX(4px);
}

/* Right Side Track */
.premium-amenities__right {
    position: relative;
    width: 100%;
    min-width: 0;
    /* Critical: prevent CSS grid column from stretching to fit children */
    overflow: hidden;
}

.premium-amenities__slider-outer {
    overflow: hidden;
}

.premium-amenities__slider-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scrollbar-width: none;
    /* Hide standard Firefox scrollbar */
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}

.premium-amenities__slider-track::-webkit-scrollbar {
    display: none;
    /* Hide Chrome/Safari scrollbars */
}

.premium-amenities__slide {
    flex: 0 0 100%;
    scroll-snap-align: start;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/10;
    max-height: 560px;
    background: #000;
    opacity: 0.45;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
}

.premium-amenities__slide::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(197, 160, 89, 0.25);
    pointer-events: none;
    z-index: 2;
    transition: border-color 0.5s ease, box-shadow 0.5s ease;
}

.premium-amenities__slide:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(197, 160, 89, 0.3);
}

.premium-amenities__slide:hover::after {
    border-color: var(--primary, #c5a059);
    box-shadow: inset 0 0 0 1px rgba(197, 160, 89, 0.6);
}

.premium-amenities__slide.is-active {
    opacity: 1;
    box-shadow: 0 25px 55px rgba(197, 160, 89, 0.25);
}

.premium-amenities__slide.is-active::after {
    border-color: var(--primary, #c5a059);
    box-shadow: inset 0 0 0 1px rgba(197, 160, 89, 0.45);
}

.premium-amenities__slide.is-active .premium-amenities__slide-img {
    opacity: 1;
    filter: brightness(1.08) saturate(1.08);
}

.premium-amenities__slide-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.95;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease, opacity 0.8s ease;
}

.premium-amenities__slide:hover .premium-amenities__slide-img {
    transform: scale(1.08);
    opacity: 1;
    filter: brightness(1.12) saturate(1.1);
}

.premium-amenities__slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(20, 15, 10, 0.9) 0%, rgba(20, 15, 10, 0.25) 45%, transparent 70%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 36px;
    box-sizing: border-box;
    height: 100%;
}

.premium-amenities__slide-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
}

.premium-amenities__slide-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.premium-amenities__slide-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.premium-amenities__slide-list li {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.4;
}

.premium-amenities__slide-list li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--primary);
    flex-shrink: 0;
}

/* Floating element behind the left text for depth */
.premium-amenities__bg-glow {
    position: absolute;
    left: 0;
    top: 0;
    width: 600px;
    height: 100%;
    background: radial-gradient(circle, rgb(197 160 89 / 38%) 0%, #00000008 70%);
    pointer-events: none;
    z-index: 1;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .premium-amenities__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .premium-amenities__left {
        position: relative;
        top: 0;
        text-align: center;
    }

    .premium-amenities__kicker {
        justify-content: center;
    }

    .premium-amenities__categories {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 30px;
    }

    .premium-amenities__cat-item {
        padding: 8px 16px;
        border-radius: 20px;
        border: 1px solid rgba(197, 160, 89, 0.2);
        background: rgba(255, 255, 255, 0.5);
        width: auto;
    }

    .premium-amenities__cat-item.active {
        background: var(--primary);
        border-color: var(--primary);
    }

    .premium-amenities__cat-item.active .premium-amenities__cat-name {
        color: #fff;
        padding-left: 0;
    }

    .premium-amenities__cat-item.active .premium-amenities__cat-num {
        color: rgba(255, 255, 255, 0.8);
    }

    .premium-amenities__cat-item::after {
        display: none;
    }

    .premium-amenities__cat-num {
        font-size: 14px;
        width: auto;
    }

    .premium-amenities__controls {
        justify-content: center;
        margin-top: 20px;
    }

    .premium-amenities__slider-outer {
        margin-right: 0;
    }

    .premium-amenities__slide {
        flex: 0 0 100%;
        aspect-ratio: 4/5;
        max-height: none;
    }
}

/* ===== Introducing Godrej Samaris ===== */
.intro {
    position: relative;
    padding: clamp(56px, 7vw, 88px) 0 clamp(48px, 6vw, 72px);
    background: #faf8f4;
    overflow: hidden;
}

.intro__container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 40px);
}

.intro__head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto clamp(36px, 5vw, 52px);
}

.intro__kicker {
    display: block;
    margin-bottom: 14px;
    font: 700 11px/1 "Montserrat", sans-serif;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary-dark);
}

.intro__title {
    margin: 0 0 16px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 500;
    line-height: 1.1;
    color: #1e2a45;
    letter-spacing: -0.5px;
}

.intro__title span {
    color: var(--primary-dark);
}

.intro__ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    max-width: 280px;
    margin: 0 auto 20px;
}

.intro__orn-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(197, 160, 89, 0.6));
}

.intro__ornament .intro__orn-line:last-child {
    background: linear-gradient(270deg, transparent, rgba(197, 160, 89, 0.6));
}

.intro__orn-diamond {
    width: 7px;
    height: 7px;
    background: var(--primary);
    transform: rotate(45deg);
    flex-shrink: 0;
}

.intro__desc {
    margin: 0;
    font: 400 14px/1.75 "Montserrat", sans-serif;
    color: #5c6678;
}

.intro__cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(16px, 2.5vw, 24px);
}

.intro__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: clamp(28px, 3.5vw, 36px) clamp(18px, 2.5vw, 24px) clamp(24px, 3vw, 30px);
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(197, 160, 89, 0.12);
    box-shadow: 0 8px 32px rgba(30, 42, 69, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.intro__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(30, 42, 69, 0.1);
}

.intro__icon-wrap {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    display: grid;
    place-items: center;
}

.intro__icon {
    width: 100%;
    height: 100%;
}

.intro__card-kicker {
    margin: 0 0 6px;
    font: 600 10px/1.3 "Montserrat", sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #6b7280;
}

.intro__card-title {
    margin: 0 0 18px;
    font: 700 13px/1.35 "Montserrat", sans-serif;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary-dark);
}

.intro__card-accent {
    display: block;
    width: 36px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, #c5a059, #e5c17b);
}

@media (max-width: 900px) {
    .intro__container {
        padding-left: 0;
        padding-right: 0;
    }

    .intro__head {
        padding-left: clamp(20px, 4vw, 40px);
        padding-right: clamp(20px, 4vw, 40px);
    }

    .intro__cards {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        overscroll-behavior-x: contain;
        padding: 0 clamp(20px, 4vw, 40px) 10px;
        margin: 0;
        max-width: none;
    }

    .intro__cards::-webkit-scrollbar {
        display: none;
    }

    .intro__card {
        flex: 0 0 min(78vw, 280px);
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    .intro__card:hover {
        transform: none;
    }
}

@media (max-width: 768px) {
    .intro {
        padding: 44px 0;
    }

    .intro__card {
        flex-basis: min(82vw, 260px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .intro__card:hover {
        transform: none;
    }
}

/* ===== Amenities (reference layout) ===== */
.amenities-ref {
    position: relative;
    padding: clamp(70px, 9vw, 120px) 0;
    background: #faf8f4;
    overflow: hidden;
}

.amenities-ref__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 80px);
}

.amenities-ref__head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto clamp(40px, 5vw, 70px);
}

.amenities-ref__kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.amenities-ref__kicker-line {
    width: 32px;
    height: 1px;
    background: var(--primary);
}

.amenities-ref__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(38px, 4vw, 58px);
    font-weight: 500;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.amenities-ref__title span {
    font-style: italic;
    color: var(--primary-dark);
}

.amenities-ref__desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-gray);
}

/* Continuous marquee slider */
.amenities-ref__slider {
    position: relative;
}

.amenities-ref__slider-outer,
.gallery-creative__slider-outer {
    --marquee-img-h: clamp(410px, 44vw, 530px);
    --marquee-label-h: 52px;
    overflow: hidden;
    width: 100%;
}

.amenities-ref__slider-outer {
    --amenities-img-h: var(--marquee-img-h);
    --amenities-label-h: var(--marquee-label-h);
    height: calc(var(--marquee-img-h) + var(--marquee-label-h));
}

.gallery-creative__slider-outer {
    height: var(--marquee-img-h);
}

.amenities-ref__track {
    --amenities-gap: clamp(10px, 1.2vw, 16px);
    display: flex;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: var(--amenities-gap);
    width: max-content;
    height: 100%;
    will-change: transform;
}

.amenities-ref__track.is-marquee-active {
    transition: none;
}

.amenities-ref__slide {
    flex: 0 0 auto;
    width: auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin: 0;
    overflow: hidden;
    position: relative;
    border-radius: 0;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.amenities-ref__slide img {
    width: 100%;
    height: var(--amenities-img-h);
    min-height: var(--amenities-img-h);
    max-height: var(--amenities-img-h);
    flex: 0 0 var(--amenities-img-h);
    object-fit: cover;
    display: block;
    filter: brightness(1.06) saturate(1.15) contrast(1.06);
    transition: filter 0.5s ease, transform 0.45s ease;
}

.amenities-ref__slide:hover img {
    filter: brightness(1.1) saturate(1.22) contrast(1.08);
    transform: scale(1.02);
}

.amenities-ref__strip-img--crop-front {
    object-position: center 40%;
}

.amenities-ref__slide .amenities-ref__label {
    margin: 0;
    padding: 0 14px;
    background: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0;
    width: 100%;
    text-transform: none;
    text-align: center;
    color: #1a1a1a;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    height: var(--amenities-label-h);
    min-height: var(--amenities-label-h);
    max-height: var(--amenities-label-h);
    flex: 0 0 var(--amenities-label-h);
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 640px) {
    .amenities-ref__slider-outer,
    .gallery-creative__slider-outer {
        --marquee-img-h: clamp(330px, 62vw, 410px);
        --marquee-label-h: 48px;
    }

    .amenities-ref__slider-outer {
        --amenities-img-h: var(--marquee-img-h);
        --amenities-label-h: var(--marquee-label-h);
    }
}

/* Shared marquee navigation (reference style) */
.marquee-nav {
    display: flex;
    align-items: center;
    gap: clamp(12px, 2vw, 22px);
    margin-top: clamp(22px, 3vw, 34px);
}

.amenities-ref__marquee-nav {
    max-width: min(560px, 100%);
}

.marquee-nav__btn {
    width: auto;
    height: auto;
    padding: 2px;
    border: none;
    border-radius: 0;
    background: none;
    box-shadow: none;
    color: var(--text-dark);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
}

.marquee-nav__btn svg,
.marquee-nav__btn i {
    width: 22px;
    height: 22px;
}

.marquee-nav__btn:hover {
    color: var(--primary-dark);
    transform: translateY(-1px);
}

.marquee-nav__progress {
    flex: 1;
    min-width: 120px;
    height: 2px;
    background: rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: visible;
}

.marquee-nav__progress-fill {
    display: block;
    height: 100%;
    width: 0%;
    background: var(--primary);
    position: relative;
    transition: width 0.12s linear;
}

.marquee-nav__progress-fill::after {
    content: "";
    position: absolute;
    right: -1px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 7px solid var(--primary);
}

.marquee-nav__counter {
    font: 600 14px/1 "Montserrat", sans-serif;
    letter-spacing: 0.2px;
    color: var(--text-dark);
    white-space: nowrap;
}

.marquee-nav--on-dark .marquee-nav__btn {
    color: #f0ddb0;
}

.marquee-nav--on-dark .marquee-nav__btn:hover {
    color: #fff;
}

.marquee-nav--on-dark .marquee-nav__progress {
    background: rgba(255, 255, 255, 0.16);
}

.marquee-nav--on-dark .marquee-nav__counter {
    color: rgba(255, 255, 255, 0.88);
}

.marquee-clone {
    pointer-events: none;
    user-select: none;
}

/* International Design Excellence */
.design-excellence {
    padding: clamp(60px, 8vw, 100px) 0;
    background: #0b0f18;
    /* Dark elegant background */
    color: #fff;
    position: relative;
    overflow: hidden;
}

.design-excellence::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(197, 160, 89, 0.05), transparent 70%);
    pointer-events: none;
}

.design-excellence__head {
    max-width: 800px;
    margin-bottom: 60px;
}

.design-excellence__kicker {
    font: 700 11px/1 "Montserrat", sans-serif;
    letter-spacing: 4px;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.design-excellence__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 500;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 24px;
}

.design-excellence__desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    line-height: 1.7;
}

.design-excellence__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.partner-card {
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: var(--transition);
}

.partner-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
}

.partner-card__flag {
    font: 700 10px/1 "Montserrat", sans-serif;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 20px;
    display: inline-block;
    padding: 6px 12px;
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 999px;
}

.partner-card__name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    color: #fff;
    margin-bottom: 15px;
}

.partner-card__text {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 992px) {
    .design-excellence__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.gallery-creative {
    position: relative;
    padding: clamp(56px, 7vw, 88px) 0;
    background: #faf8f4;
    overflow: hidden;
}

.gallery-creative__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 70% 50% at 50% 0%, rgba(197, 160, 89, 0.1), transparent 58%);
}

.gallery-creative__inner {
    position: relative;
}

.gallery-creative__head {
    max-width: min(100%, 920px);
    margin: 0 auto clamp(28px, 4vw, 40px);
    text-align: center;
}

.gallery-creative__kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font: 700 11px/1 "Montserrat", sans-serif;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary-dark);
    margin-bottom: 14px;
}

.gallery-creative__kicker-line {
    width: 32px;
    height: 1px;
    background: var(--primary);
}

.gallery-creative__title {
    margin: 0;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(24px, 3.2vw, 42px);
    font-weight: 500;
    line-height: 1.15;
    color: var(--text-dark);
}

.gallery-creative__title span {
    font-style: italic;
    background: linear-gradient(135deg, #a68045, #c5a059, #e5c17b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.gallery-creative__desc {
    margin: 10px auto 0;
    max-width: 480px;
    color: #6b7280;
    font: 400 14px/1.6 "Montserrat", sans-serif;
}

/* Gallery continuous marquee slider (matches amenities) */
.gallery-creative__slider {
    position: relative;
}

.gallery-creative__track {
    --gallery-gap: clamp(10px, 1.2vw, 16px);
    display: flex;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: var(--gallery-gap);
    width: max-content;
    height: 100%;
    will-change: transform;
}

.gallery-creative__track.is-marquee-active {
    transition: none;
}

.gallery-creative__slide {
    flex: 0 0 auto;
    width: auto;
    height: 100%;
}

.gallery-creative__marquee-nav {
    max-width: min(560px, 100%);
}

.gallery-creative__slide.gc-card {
    margin: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    border-radius: 0;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    opacity: 1;
    transform: none;
    transition: box-shadow 0.35s ease;
    height: 100%;
}

.gallery-creative__slide .gc-card__open {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 100%;
    max-height: 100%;
    flex: 1 1 auto;
    padding: 0;
    margin: 0;
    border: none;
    background: none;
    cursor: zoom-in;
    text-align: left;
    font: inherit;
    color: inherit;
    position: relative;
    overflow: hidden;
}

.gc-card__open:focus-visible {
    outline: 2px solid rgba(197, 160, 89, 0.85);
    outline-offset: 3px;
}

.gc-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(1.06) saturate(1.15) contrast(1.06);
    transition: transform 0.5s ease, filter 0.5s ease;
    pointer-events: none;
}

.gc-card:hover img {
    filter: brightness(1.1) saturate(1.22) contrast(1.08);
    transform: scale(1.02);
}

.gc-card:hover {
    box-shadow: 0 12px 36px rgba(197, 160, 89, 0.2);
}

.gallery-creative__strip {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.gallery-creative__strip span {
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(197, 160, 89, 0.15);
    background: #fff;
    color: #444;
    font: 600 11px/1 "Montserrat", sans-serif;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.gallery-creative__strip span:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-2px);
}

@media (max-width: 640px) {
    .gc-card img {
        min-height: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .gc-card {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* Gallery lightbox */
.gc-lightbox {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: clamp(16px, 4vw, 32px);
    pointer-events: none;
}

.gc-lightbox.is-active {
    display: flex;
    pointer-events: auto;
}

.gc-lightbox__overlay {
    position: absolute;
    inset: 0;
    background: rgba(3, 7, 12, 0.92);
    backdrop-filter: blur(8px);
}

.gc-lightbox__stage {
    position: relative;
    z-index: 2;
    width: min(1100px, 100%);
    max-height: calc(100vh - 48px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.gc-lightbox__nav-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: clamp(10px, 2vw, 20px);
    width: 100%;
}

.gc-lightbox__figure {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-height: calc(100vh - 120px);
    min-width: 0;
}

.gc-lightbox__img {
    display: block;
    max-width: 100%;
    max-height: calc(100vh - 160px);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 16px;
    border: 1px solid rgba(197, 160, 89, 0.35);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}

.gc-lightbox__caption {
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.88);
    font: 500 13px/1.4 "Montserrat", sans-serif;
    letter-spacing: 0.5px;
    text-align: center;
}

.gc-lightbox__counter {
    margin: 0;
    text-align: center;
    color: rgba(240, 221, 176, 0.9);
    font: 600 11px/1 "Montserrat", sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.gc-lightbox__close,
.gc-lightbox__nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(197, 160, 89, 0.4);
    background: rgba(12, 20, 33, 0.85);
    color: #f0ddb0;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    touch-action: manipulation;
}

.gc-lightbox__close {
    position: absolute;
    top: -8px;
    right: 0;
    z-index: 3;
    width: 44px;
    height: 44px;
    border-radius: 50%;
}

.gc-lightbox__nav {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex-shrink: 0;
}

.gc-lightbox__close:hover,
.gc-lightbox__nav:hover {
    background: rgba(197, 160, 89, 0.18);
    border-color: rgba(229, 193, 123, 0.75);
    transform: translateY(-1px);
}

.gc-lightbox__close .icon,
.gc-lightbox__nav .icon {
    width: 20px;
    height: 20px;
    pointer-events: none;
}

@media (max-width: 768px) {
    .gc-lightbox__close {
        top: 0;
        right: 0;
    }

    .gc-lightbox__img {
        max-height: calc(100vh - 220px);
        border-radius: 12px;
    }

    .gc-lightbox__nav {
        width: 40px;
        height: 40px;
    }
}

h1,
h2,
h3,
h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

/* Location section (placeholder) */
.location-section {
    padding: 120px 0;
    background: var(--bg-dark);
    color: var(--text-white);
}

.location-section .section-title {
    color: var(--text-white);
}

.location-desc {
    max-width: 720px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.7);
}

/* About Section (Light) */
.about-section {
    padding: 150px 0;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.about-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.about-grid {
    position: absolute;
    inset: -20%;
    opacity: 0.35;
    background-image:
        linear-gradient(rgba(197, 160, 89, 0.10) 1px, transparent 1px),
        linear-gradient(90deg, rgba(197, 160, 89, 0.08) 1px, transparent 1px);
    background-size: 60px 60px;
    transform: rotate(-8deg);
    mask-image: radial-gradient(circle at 30% 20%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.2) 55%, rgba(0, 0, 0, 0) 75%);
}

.about-glow {
    position: absolute;
    width: 900px;
    height: 900px;
    right: -420px;
    top: -420px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(197, 160, 89, 0.28), rgba(197, 160, 89, 0.10) 40%, rgba(0, 0, 0, 0) 70%);
    filter: blur(10px);
    opacity: 0.9;
}

.grid-about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    position: relative;
}

.section-label {
    color: var(--primary-dark);
    font-size: 0.8rem;
    letter-spacing: 3px;
    margin-bottom: 15px;
    display: block;
    font-weight: 600;
}

.section-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.about-title {
    position: relative;
}

.about-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -14px;
    width: 140px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(197, 160, 89, 0.95), rgba(197, 160, 89, 0));
}

.about-title-accent {
    color: transparent;
    background: linear-gradient(180deg, rgba(229, 193, 123, 1) 0%, rgba(197, 160, 89, 1) 55%, rgba(142, 111, 62, 1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.about-text p {
    color: var(--text-gray);
    margin-bottom: 40px;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 28px 0 40px;
}

.about-highlight-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    backdrop-filter: blur(8px);
}

.about-highlight-card:hover {
    transform: translateY(-3px);
    border-color: rgba(197, 160, 89, 0.25);
    box-shadow: 0 24px 65px rgba(0, 0, 0, 0.10);
}

.about-highlight-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: rgba(197, 160, 89, 0.95);
    background: rgba(197, 160, 89, 0.12);
    border: 1px solid rgba(197, 160, 89, 0.25);
    flex: 0 0 auto;
}

.about-highlight-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.about-highlight-card p {
    margin: 0;
    font-size: 0.86rem;
    color: rgba(31, 41, 55, 0.80);
}

.about-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.about-signature {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.about-signature-pill {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(31, 41, 55, 0.75);
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(197, 160, 89, 0.25);
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(8px);
}

.about-signature-line {
    width: 90px;
    height: 1px;
    background: linear-gradient(90deg, rgba(197, 160, 89, 0.9), rgba(197, 160, 89, 0));
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 2px;
    border: 1px solid var(--primary);
    padding: 12px 25px;
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--primary);
    color: #000;
}

.about-image-wrap {
    position: relative;
    display: flex;
    justify-content: center;
}

.about-image-stack {
    position: relative;
    width: min(560px, 100%);
}

.circular-mask {
    width: 500px;
    height: 500px;
    position: relative;
}

.circular-mask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: ellipse(40% 50% at 50% 50%);
}

.glow-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid var(--primary);
    clip-path: ellipse(42% 52% at 50% 50%);
    box-shadow: 0 0 30px var(--primary);
    opacity: 0.5;
}

.about-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.10);
    backdrop-filter: blur(10px);
}

.about-float-card i {
    color: rgba(197, 160, 89, 0.95);
    width: 18px;
    height: 18px;
}

.af-title {
    font-size: 0.8rem;
    letter-spacing: 1px;
    font-weight: 600;
    color: rgba(31, 41, 55, 0.85);
}

.af-sub {
    font-size: 0.7rem;
    color: rgba(31, 41, 55, 0.65);
}

.about-float-top {
    top: 34px;
    left: -10px;
}

.about-float-bottom {
    bottom: 46px;
    right: -10px;
}

/* Amenities Section (Dark) */
.amenities-section {
    padding: 120px 0;
    background: var(--bg-navy);
    color: var(--text-white);
}

.amenities-section .section-title {
    color: var(--text-white);
}

.section-label-center {
    color: var(--primary);
    display: block;
    margin-bottom: 10px;
    letter-spacing: 5px;
    font-weight: 600;
}

.text-center {
    text-align: center;
}

.amenities-carousel {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 60px 0;
}

.amenities-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scrollbar-width: none;
    flex: 1;
}

.amenity-item {
    min-width: 160px;
    text-align: center;
}

.amenity-icon-card {
    height: 120px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 15px;
    transition: var(--transition);
}

.amenity-item:hover .amenity-icon-card {
    border-color: var(--primary);
    background: rgba(197, 160, 89, 0.05);
}

.amenity-item span {
    font-size: 0.7rem;
    letter-spacing: 1px;
}

.nav-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.amenity-hero-img {
    height: 600px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    margin-top: 50px;
}

.amenity-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Gallery Section (Light) */
.gallery-section {
    padding: 150px 0;
    background-color: var(--bg-white);
}

.gallery-section .section-title {
    color: var(--text-dark);
}

.gallery-section .section-label-center {
    color: var(--primary-dark);
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px 0;
}

.tab {
    background: transparent;
    border: 1px solid #e5e7eb;
    color: var(--text-gray);
    padding: 10px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: var(--transition);
}

.tab.active,
.tab:hover {
    background: var(--primary-dark);
    color: #fff;
    border-color: var(--primary-dark);
}

.gallery-slider-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
}

.gallery-cards {
    display: flex;
    gap: 20px;
    overflow: hidden;
    flex: 1;
}

.gallery-card {
    min-width: 280px;
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-card.featured {
    min-width: 500px;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.nav-btn-circle {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background: #dcdcdc;
    color: #242424;
    cursor: pointer;
}

/* Footer */
.footer-section {
    padding: clamp(40px, 5vw, 52px) 0 clamp(20px, 3vw, 28px);
    background: var(--bg-navy);
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: clamp(20px, 3vw, 28px);
}

.footer-cta h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    line-height: 1.1;
    margin-bottom: 8px;
    color: #fff;
}

.footer-short {
    max-width: 700px;
    margin: 0 0 14px;
    font-size: clamp(0.95rem, 1.6vw, 1.1rem);
    line-height: 1.45;
    opacity: 0.85;
    color: rgba(255, 255, 255, 0.75);
    text-align: left;
}

.footer-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 14px;
}

.footer-enquire-btn,
#footerEnquireBtn.footer-enquire-btn,
.footer-brochure-btn {
    margin: 0;
    padding: 14px 28px;
    cursor: pointer;
    font-size: 11px;
}

#footerEnquireBtn.footer-enquire-btn {
    border: none;
}

.brochure-fab {
    position: fixed;
    right: clamp(16px, 3vw, 28px);
    bottom: clamp(20px, 4vw, 32px);
    z-index: 9000;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border: 1px solid rgba(229, 193, 123, 0.65);
    border-radius: 999px;
    background: linear-gradient(135deg, #e5c17b 0%, #c5a059 50%, #a68045 100%);
    color: #1a1208;
    font: 700 11px/1.2 'Montserrat', sans-serif;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), 0 0 24px rgba(197, 160, 89, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
}

.brochure-fab.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.brochure-fab:hover,
.brochure-fab.is-visible:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4), 0 0 32px rgba(197, 160, 89, 0.45);
}

.brochure-fab .icon,
.footer-brochure-btn .icon {
    width: 18px;
    height: 18px;
    display: block;
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .brochure-fab__label {
        display: none;
    }

    .brochure-fab {
        padding: 14px;
        border-radius: 50%;
    }
}

.footer-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 26px;
}

.f-stat i {
    color: var(--primary);
    margin-bottom: 15px;
}

.f-stat h4 {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.f-stat p {
    font-size: 0.7rem;
    color: var(--text-gray);
}

.footer-contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 0;
}

.footer-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.8rem;
    transition: var(--transition);
}

.footer-contact i {
    width: 16px;
    height: 16px;
    color: rgba(197, 160, 89, 0.95);
}

.footer-contact:hover {
    transform: translateY(-2px);
    border-color: rgba(197, 160, 89, 0.45);
    background: rgba(197, 160, 89, 0.08);
}

.footer-contact-static:hover {
    transform: none;
}

.footer-card {
    background: rgba(3, 7, 18, 0.5);
    border: 1px solid rgba(197, 160, 89, 0.2);
    padding: 40px;
    border-radius: 10px;
}

.f-input-group {
    position: relative;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.f-input-group i {
    position: absolute;
    left: 0;
    top: 15px;
    font-size: 0.9rem;
    color: var(--primary);
}

.f-input-group input,
.f-input-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    padding: 15px 15px 15px 30px;
    color: #fff;
    font-family: inherit;
    font-size: 0.8rem;
}

.submit-btn-gold {
    width: 100%;
    padding: 15px;
    background: linear-gradient(to right, #c5a059, #8e6f3e);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    letter-spacing: 2px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.75rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.9);
}

.social-links a {
    color: rgba(255, 255, 255, 0.9);
    margin-left: 14px;
    transition: var(--transition);
}

.social-links a:first-child {
    margin-left: 0;
}

@media (max-width: 768px) {
    body.footer-only-page .footer-section {
        padding-top: 44px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .social-links {
        display: flex;
        gap: 12px;
    }

    .social-links a {
        margin-left: 0;
    }
}

.social-links a:hover {
    color: var(--primary);
    opacity: 1;
}

/* Map Integration */
.loc__map-wrap {
    margin-top: 60px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.loc__map-frame {
    width: 100%;
    height: 450px;
}

.loc__map-frame iframe {
    filter: grayscale(1) invert(0.9) contrast(1.1);
    opacity: 0.8;
    transition: all 0.5s ease;
}

.loc__map-frame:hover iframe {
    filter: grayscale(0) invert(0) contrast(1);
    opacity: 1;
}

/* Traveling Map Filters */
.travel-map__filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 10px 24px;
    border-radius: 999px;
    font: 600 12px "Montserrat", sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.2);
}

.map-node.hidden {
    display: none;
}

/* Sidebar Groups */
.nav-group {
    margin-bottom: 25px;
}

.nav-group h6 {
    font: 700 10px "Montserrat", sans-serif;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 12px;
    opacity: 0.6;
}

.nav-group .map-nav-btn {
    width: 100%;
    margin-bottom: 8px;
}

.node-dot i {
    width: 12px;
    height: 12px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    stroke-width: 2.5;
}

.node-dot svg {
    width: 100%;
    height: 100%;
}


/* ==========================================
   TRAVELING MAP - Animated Connectivity
   ========================================== */
.travel-map {
    padding: 41px 0 80px;
    background: #fff;
    overflow: hidden;
}

.travel-map__inner {
    position: relative;
}

.travel-map__head {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.travel-map__kicker {
    display: inline-block;
    font: 700 12px/1.1 "Montserrat", sans-serif;
    letter-spacing: 4px;
    color: var(--primary);
    margin-bottom: 18px;
    text-transform: uppercase;
}

.travel-map__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.travel-map__desc {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

.travel-map__canvas-wrap {
    position: relative;
    border-radius: 40px;
    background: #fdfaf5;
    padding: 40px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.06);
}

.travel-map__canvas {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04);
}

.travel-map__bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.travel-map__svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.route-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    transition: stroke-dashoffset 2.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.travel-map.revealed .route-path {
    stroke-dashoffset: 0;
}

/* 1. Road Casing (Outer luxury gold borders) */
.travel-map__canvas .road-casing {
    stroke: rgba(197, 160, 89, 0.4) !important;
    stroke-width: 10px !important;
    stroke-linecap: round !important;
    fill: none !important;
    transition: stroke-dashoffset 2.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* 2. Road Bed (Sleek dark asphalt) */
.travel-map__canvas .road-bed {
    stroke: #1e2530 !important;
    /* Premium deep charcoal-blue asphalt */
    stroke-width: 8px !important;
    stroke-linecap: round !important;
    fill: none !important;
    transition: stroke-dashoffset 2.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* 3. Road Divider (Lanes Center Lines) */
.travel-map__canvas .road-divider {
    stroke: rgba(255, 255, 255, 0.8) !important;
    stroke-width: 0.8px !important;
    stroke-linecap: round !important;
    stroke-dasharray: 4, 7 !important;
    stroke-dashoffset: 0 !important;
    /* Bypass draw-in animation */
    fill: none !important;
    opacity: 0;
    transition: opacity 1s ease-in-out 1.5s !important;
    /* Fade in after road base is drawn */
}

.travel-map.revealed .road-divider {
    opacity: 0.85;
}

/* 4. Glowing Road Highlights (Animated) */
.travel-map__canvas .route-highlight {
    stroke: #ffdf9e !important;
    /* Elegant gold highlight pulse */
    stroke-width: 2.5px !important;
    stroke-linecap: round !important;
    stroke-dasharray: 45 1000 !important;
    stroke-dashoffset: 1045 !important;
    /* Bypass draw-in animation */
    fill: none !important;
    filter: drop-shadow(0 0 5px var(--primary)) !important;
    opacity: 0;
    transition: opacity 1.5s ease-in-out 1.8s !important;
    /* Fade in after dividers */
}

.travel-map.revealed .route-highlight {
    opacity: 1;
    animation: dashHighlight 3.5s linear infinite;
}

.travel-map.revealed .hl-2,
.travel-map.revealed .hl-5 {
    animation-delay: 1.5s;
    animation-duration: 4.5s;
}

.travel-map.revealed .hl-3,
.travel-map.revealed .hl-6 {
    animation-delay: 0.5s;
    animation-duration: 4s;
}

.travel-map.revealed .hl-4,
.travel-map.revealed .hl-8 {
    animation-delay: 2s;
    animation-duration: 5s;
}

@keyframes dashHighlight {
    0% {
        stroke-dashoffset: 1045;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

.car {
    filter: drop-shadow(0 0 5px var(--primary));
    opacity: 0;
    transition: opacity 1s ease;
}

.travel-map.revealed .car {
    opacity: 1;
}

/* Locality Nodes */
.map-node {
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
}

.travel-map.revealed .map-node {
    opacity: 1;
}

.node-project {
    z-index: 10;
}

.node-project__card {
    background: #0c1421;
    color: #fff;
    padding: 12px 24px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--primary);
    white-space: nowrap;
}

.node-project__card img {
    height: 24px;
    filter: brightness(0) invert(1);
}

.node-project__card span {
    font: 700 12px/1 "Montserrat", sans-serif;
    letter-spacing: 1px;
}

.node-project__pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.2;
    animation: markerPulse 2s infinite;
    z-index: -1;
}

.node-dot {
    width: 12px;
    height: 12px;
    background: var(--primary);
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.5);
    margin-bottom: 8px;
}

.node-label {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 8px 16px;
    border-radius: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(197, 160, 89, 0.2);
    white-space: nowrap;
}

.node-label span {
    font: 700 10px/1.2 "Montserrat", sans-serif;
    color: #1a1a1a;
}

.node-label small {
    font-size: 8px;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
}

/* Filters */
.travel-map__filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(197, 160, 89, 0.3);
    color: #1a1a1a;
    padding: 12px 28px;
    border-radius: 999px;
    font: 600 12px/1 "Montserrat", sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.2);
}

@media (max-width: 768px) {
    .travel-map__canvas {
        aspect-ratio: 4/3;
    }

    .travel-map__filters {
        flex-wrap: wrap;
    }

    .node-label {
        padding: 6px 12px;
    }
}

/* Locality Node Cards */
.node-card {
    background: #fff;
    padding: 6px 12px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    white-space: nowrap;
    transition: var(--transition);
}

.node-card i {
    width: 16px;
    height: 16px;
    color: var(--primary);
    flex-shrink: 0;
}

.node-card__info {
    display: flex;
    flex-direction: column;
}

.node-card span {
    font: 700 9px/1.1 "Montserrat", sans-serif;
    color: #1a1a1a;
    letter-spacing: 0.5px;
}

.node-card small {
    font: 700 7px/1 "Montserrat", sans-serif;
    color: var(--primary);
    text-transform: uppercase;
    margin-top: 2px;
}

.map-node:hover .node-card {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(197, 160, 89, 0.15);
}

/* Hide old label styles if still there */
.node-label,
.node-dot {
    display: none;
}

/* Adjust Travel Map Canvas for Full Image */
.travel-map__canvas {
    aspect-ratio: 1 / 1;
    /* Change to 1:1 to show the full height of the square generated image */
    max-height: 85vh;
    /* Prevent it from being too tall on large screens */
}

@media (min-width: 1200px) {
    .travel-map__canvas {
        aspect-ratio: 4 / 3;
        /* Slightly wider on desktop but still showing more height */
    }
}

.travel-map__bg {
    object-fit: contain;
    /* Ensure the entire image is visible without cropping */
}

/* Style the new Building Images in cards */
.node-card__img-wrap {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    overflow: hidden;
    background: #f8f8f8;
    flex-shrink: 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.node-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.map-node:hover .node-card__img {
    transform: scale(1.1);
}

/* Remove old icon styles if they conflict */
.node-card i {
    display: none;
}

/* =========================================
   DITTO MAP STYLES (Godrej Samaris Replica)
   ========================================= */
.ditto-map {
    background-color: #f8f6f0;
    padding: 80px 0;
    padding-top: 23px;
    font-family: "Montserrat", sans-serif;
    overflow: hidden;
}

/* Floating Header */
.ditto-map__header {
    text-align: center;
    top: 40px;
    left: 40px;
    z-index: 10;
    pointer-events: none;
    margin-bottom: 1rem;
}

.ditto-map__title {
    font-size: 42px;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.1;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

.ditto-map__subtitle {
    font-size: 18px;
    font-weight: 600;
    color: #5c4818;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ditto-map__header-line {
    width: 100%;
    height: 1px;
    background: #c5a059;
    margin-bottom: 15px;
    opacity: 0.4;
}

.ditto-map__desc {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
    font-weight: 500;
}

/* Top Center Logo & Compass */
.ditto-top-center {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 40;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(253, 252, 248, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 16px 40px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15), inset 0 0 0 1px rgba(197, 160, 89, 0.3);
}

.ditto-top-center .brand-top {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 8px;
    color: #1a1a1a;
    margin: 0 0 2px 0;
    text-transform: uppercase;
}

.ditto-top-center .brand-bottom {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 12px;
    color: #c5a059;
    font-family: 'Playfair Display', serif;
    margin: 0 0 10px 0;
}

.ditto-top-center p {
    font-size: 9px;
    font-weight: 700;
    color: #444;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
}

.ditto-vertical-line {
    position: absolute;
    top: 175px;
    bottom: 55%;
    left: 50%;
    width: 1.5px;
    background: linear-gradient(to bottom, rgba(197, 160, 89, 0.8), rgba(197, 160, 89, 0.2));
    z-index: 15;
}

.ditto-compass {
    position: absolute;
    top: 40px;
    right: 40px;
    z-index: 10;
}

/* Paths and Pins */
.ditto-path-bg {
    display: block;
    stroke: #222222b5;
    /* Dark asphalt road background */
    stroke-width: 7px;
    stroke-linecap: round;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.ditto-path {
    display: block;
    stroke: rgb(213 212 212 / 95%);
    stroke-width: 1px;
    stroke-dasharray: 3 8;
    stroke-linecap: round;
}

.ditto-ring {
    fill: transparent;
    stroke: #fff;
    stroke-width: 4px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

.ditto-center-pin {
    position: absolute;
    transform: translate(-50%, -100%);
    z-index: 30;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.4));
    animation: pinBounce 2s infinite ease-in-out;
}

@keyframes pinBounce {

    0%,
    100% {
        transform: translate(-50%, -100%);
    }

    50% {
        transform: translate(-50%, -110%);
    }
}

/* Refined Cards */
.ditto-node {
    position: absolute;
    z-index: 25;
    width: 0;
    height: 0;
}

.ditto-card {
    position: absolute;
    background: #fcfbf8;
    border-radius: 12px;
    padding: 12px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(197, 160, 89, 0.15);
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    width: max-content;
    max-width: 300px;
    white-space: normal;
}

.ditto-card:hover {
    transform: translateY(-55%) scale(1.02);
    box-shadow: 0 20px 50px rgba(197, 160, 89, 0.2);
}

/* Connectors */
.ditto-card::before {
    content: '';
    position: absolute;
    border-top: 2px dashed rgba(255, 255, 255, 0.9);
    width: 30px;
    z-index: -1;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.3));
}

.ditto-node.left .ditto-card {
    right: 0;
    margin-right: 30px;
}

.ditto-node.left .ditto-card::before {
    left: 100%;
    top: 50%;
}

.ditto-node.right .ditto-card {
    left: 0;
    margin-left: 30px;
}

.ditto-node.right .ditto-card::before {
    right: 100%;
    top: 50%;
}

/* Card Content */
.ditto-card__icon {
    position: absolute;
    top: -12px;
    left: -12px;
    width: 36px;
    height: 36px;
    background: #a47a38;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 3px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.ditto-card__icon i {
    width: 16px;
    height: 16px;
}

.ditto-card__img {
    width: 75px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.ditto-card__info {
    display: flex;
    flex-direction: column;
}

.ditto-card__info h3,
.ditto-card__info h4 {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 3px;
    line-height: 1.2;
}

.ditto-card__info p {
    font-size: 11px;
    color: #666;
    font-weight: 500;
}

.ditto-card__info span {
    color: #a47a38;
    font-weight: 700;
}

.ditto-desc {
    font-size: 10px !important;
    color: #444 !important;
    margin: 6px 0 4px 0 !important;
    line-height: 1.4 !important;
}

.ditto-list {
    list-style: none;
    padding: 0;
    margin: 5px 0 0 0;
}

.ditto-list li {
    font-size: 10px;
    color: #222;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
    font-weight: 600;
}

.ditto-list li i {
    width: 10px;
    height: 10px;
    color: #555;
}

.ditto-list.bullet {
    list-style: disc;
    padding-left: 14px;
}

.ditto-list.bullet li {
    display: list-item;
}

/* Features Banner with Vertical Dividers */
.ditto-features {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: -35px auto 0 auto;
    position: relative;
    z-index: 25;
    padding: 25px 35px;
    background: #fdfcf8;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(197, 160, 89, 0.2);
    max-width: 1100px;
    gap: 25px;
}

.ditto-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.ditto-feature-divider {
    width: 1px;
    height: 45px;
    background: rgba(197, 160, 89, 0.3);
}

.ditto-feature i {
    color: #c5a059;
    width: 32px;
    height: 32px;
    stroke-width: 1.5;
    flex-shrink: 0;
}

.ditto-feature h4 {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.ditto-feature p {
    font-size: 11.5px;
    color: #666;
    line-height: 1.4;
    font-weight: 500;
}

@media (max-width: 1200px) {
    .ditto-features {
        max-width: 95%;
        padding: 20px;
        gap: 15px;
    }

    .ditto-feature h4 {
        font-size: 12px;
    }

    .ditto-feature p {
        font-size: 10px;
    }

    .ditto-card {
        max-width: 240px;
    }
}

.ditto-card small {
    font-size: .6rem;
    color: #000;
}

@media (max-width: 768px) {
    .travel-map__canvas-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -20px;
        /* Stretch past container padding */
        padding: 0 20px 15px 20px !important;
    }

    .travel-map__canvas {
        min-width: 800px !important;
    }

    .ditto-map__header {
        position: relative;
        top: 0;
        left: 0;
        margin-bottom: 20px;
        padding: 0 20px;
    }

    .ditto-top-center {
        position: relative;
        top: 0;
        margin-bottom: 20px;
        transform: none;
        left: 0;
    }

    .ditto-vertical-line {
        display: none;
    }

    .ditto-compass {
        display: none;
    }

    .ditto-features {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        margin-top: 20px;
    }

    .ditto-feature-divider {
        width: 100%;
        height: 1px;
        margin: 10px 0;
    }

    .ditto-feature {
        width: 100%;
    }

    .ditto-card {
        padding: 8px;
        gap: 10px;
        max-width: 180px;
    }

    .ditto-card__img {
        width: 50px;
        height: 50px;
    }

    .ditto-card__info h3,
    .ditto-card__info h4 {
        font-size: 11px;
    }

    .ditto-card__info p {
        font-size: 9px;
    }
}

/* Enquiry Popup Modal Styling */
.enquiry-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    pointer-events: none;
}

.enquiry-modal.is-active {
    display: flex;
    pointer-events: auto;
}

.enquiry-modal__overlay {
    position: fixed;
    inset: 0;
    z-index: 1;
    background: rgba(3, 7, 12, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.enquiry-modal__container {
    position: relative;
    z-index: 2;
    width: min(400px, 100%);
    margin: auto;
    pointer-events: auto;
}

.enquiry-modal .hero__form-card {
    margin: 0;
    max-width: none;
    width: 100%;
}

.enquiry-modal .hero__form-card:hover {
    transform: none;
}

.enquiry-modal__close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 30;
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    outline: none;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.enquiry-modal__close .icon {
    pointer-events: none;
}

.enquiry-modal__close:hover {
    background: #c5a059;
    color: #030712;
    transform: rotate(90deg);
}

.enquiry-modal__close svg,
.enquiry-modal__close i {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .enquiry-modal {
        padding: 12px;
        align-items: flex-start;
        padding-top: max(12px, env(safe-area-inset-top));
    }

    .enquiry-modal__container {
        width: 100%;
        max-width: 400px;
        margin-top: auto;
        margin-bottom: auto;
    }

    .enquiry-modal .hero__form-main {
        padding: 24px 20px 20px;
    }
}