@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Outfit:wght@300;400;600;700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");

@font-face {
    font-family: Zolina;
    src: url("../fonts/Zolina-Thin.ttf") format("truetype");
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: Zolina;
    src: url("../fonts/Zolina-ExtraLight.ttf") format("truetype");
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: Zolina;
    src: url("../fonts/Zolina-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: Zolina;
    src: url("../fonts/Zolina-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: Zolina;
    src: url("../fonts/Zolina-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: Zolina;
    src: url("../fonts/Zolina-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: Zolina;
    src: url("../fonts/Zolina-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: Zolina;
    src: url("../fonts/Zolina-Black.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
}

:root {
    --brand-blue: #094966;
    --brand-black: #000000;
    --brand-white: #ffffff;
    --brand-beige: #d4d1ca;
    --primary-color: var(--brand-black);
    --secondary-color: var(--brand-white);
    --accent-color: var(--brand-blue);
    --text-light: var(--brand-white);
    --text-dark: var(--brand-black);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

body {
    font-size: 16px;
    color: var(--brand-black);
    line-height: 1.5;
    background-color: var(--brand-white);
    overflow-x: hidden;
    font-family: Montserrat, sans-serif !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img {
    max-width: 100%;
    height: auto;
}

.main-header {
    background-color: transparent;
    padding: 15px 0px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 1000;
    transition: var(--transition);
}

.main-header.scrolled {
    backdrop-filter: blur(10px);
    border-bottom-color: rgba(0, 0, 0, 0.05);
    padding: 10px 0px;
    background-color: #00000033;
}

.header-inner {
    height: 60px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.header-left {
    display: flex;
    justify-content: flex-start;
}

.header-center {
    display: flex;
    justify-content: center;
}

.header-right {
    display: flex;
    justify-content: flex-end;
}

.menu-toggle {
    background: none;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    padding: 0px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    align-items: flex-start;
}

.menu-toggle .bar {
    display: block;
    width: 30px;
    height: 1px;
    background-color: var(--brand-white);
    transition: var(--transition);
}

.main-header.scrolled .menu-toggle .bar {
    background-color: var(--brand-white);
}

.menu-toggle:hover .bar:nth-child(1) {
    width: 30px;
}

.menu-toggle:hover .bar:nth-child(2) {
    width: 20px;
}

.menu-toggle:hover .bar:nth-child(3) {
    width: 25px;
}

.menu-toggle:hover .bar {
    background-color: var(--brand-white);
}

.brand-logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.main-header.scrolled .brand-logo img {
    height: 40px;
}

.inquire-link {
    text-decoration: none;
    background-color: var(--brand-white);
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 600;
    padding: 12px 25px;
    transition: var(--transition);
    border: 1px solid var(--brand-white);
    text-transform: uppercase;
    color: var(--brand-black) !important;
}

.main-header.scrolled .inquire-link {
    background-color: var(--brand-black);
    border-color: var(--brand-black);
    color: var(--brand-white) !important;
}

.inquire-link:hover {
    background-color: var(--brand-blue);
    border-color: var(--brand-blue);
    color: var(--brand-white) !important;
}

/* Fixed vertical “Contact us” rail — right edge, viewport centered */
.fix-btn {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1040;
    margin: 0;
    padding: 1.25rem 0.65rem;
    min-width: 0;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-right: none;
    border-radius: 4px 0 0 4px;
    background-color: var(--brand-black);
    color: var(--brand-white);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.35em;
    line-height: 1.2;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transition: var(--transition);
    box-shadow: -4px 8px 24px rgba(0, 0, 0, 0.12);
}

.fix-btn:hover {
    background-color: var(--brand-blue);
    border-color: var(--brand-blue);
    color: var(--brand-white);
    transform: translateY(-50%) translateX(-3px);
}

.fix-btn:focus-visible {
    outline: 2px solid var(--brand-blue);
    outline-offset: 3px;
}

@media (max-width: 575px) {
    .fix-btn {
        padding: 1rem 0.5rem;
        font-size: 10px;
        letter-spacing: 0.28em;
    }
}

.h-font {
    font-family: Zolina, sans-serif;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--brand-black);
}

::-webkit-scrollbar-thumb {
    background: var(--brand-blue);
    border-radius: 10px;
}

@keyframes fadeInUp {
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.sidebar-menu {
    position: fixed;
    top: 0px;
    left: -100%;
    width: 400px;
    height: 100vh;
    background-color: var(--brand-white);
    z-index: 2000;
    transition: 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: rgba(0, 0, 0, 0.1) 15px 0px 50px;
    display: flex;
    flex-direction: column;
}

.sidebar-menu.active {
    left: 0px;
}

.sidebar-overlay {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.close-sidebar {
    background: none;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    font-size: 28px;
    color: var(--brand-black);
    cursor: pointer;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-sidebar:hover {
    background-color: rgba(0, 0, 0, 0.05);
    transform: rotate(90deg);
}

.sidebar-nav li {
    margin-bottom: 25px;
    opacity: 0;
    transform: translateX(-20px);
    transition: 0.4s;
}

.sidebar-menu.active .sidebar-nav li {
    opacity: 1;
    transform: translateX(0px);
}

.sidebar-menu.active .sidebar-nav li:nth-child(1) {
    transition-delay: 0.2s;
}

.sidebar-menu.active .sidebar-nav li:nth-child(2) {
    transition-delay: 0.3s;
}

.sidebar-menu.active .sidebar-nav li:nth-child(3) {
    transition-delay: 0.4s;
}

.sidebar-menu.active .sidebar-nav li:nth-child(4) {
    transition-delay: 0.5s;
}

.sidebar-menu.active .sidebar-nav li:nth-child(5) {
    transition-delay: 0.6s;
}

.sidebar-menu.active .sidebar-nav li:nth-child(6) {
    transition-delay: 0.7s;
}

.sidebar-nav a {
    text-decoration: none;
    color: var(--brand-black);
    font-size: 32px;
    font-weight: 200;
    letter-spacing: 4px;
    transition: var(--transition);
    display: inline-block;
}

.sidebar-nav a:hover {
    color: var(--brand-blue);
    transform: translateX(15px);
}

@media (max-width: 576px) {
    .sidebar-menu {
        width: 100%;
    }

    .sidebar-nav a {
        font-size: 28px;
    }
}

.banner {
    background-color: var(--brand-black);
}

.banner-bg {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-image: url("../images/banner.webp");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    transform: scale(1.1);
    animation: 10s ease-out 0s 1 normal forwards running zoomOut;
    z-index: 0;
}

.banner-overlay {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

@keyframes zoomOut {
    0% {
        transform: scale(1.1);
    }

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



.banner-title {
    overflow: hidden;
}

.reveal-text {
    opacity: 0;
    transform: translateY(100%);
    animation: 1.2s cubic-bezier(0.77, 0, 0.175, 1) 0.5s 1 normal forwards running revealText;
}

.reveal-text.delay-1 {
    animation-delay: 0.8s;
}

@keyframes revealText {
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.banner-subtitle {
    letter-spacing: 5px;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 400;
    opacity: 0;
    transform: translateY(20px);
    animation: 1s cubic-bezier(0.165, 0.84, 0.44, 1) 1.5s 1 normal forwards running fadeInUp;
}

@keyframes fadeIn {
    100% {
        opacity: 1;
    }
}

.btn-circular {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 160px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.btn-circular:hover {
    transform: scale(1.1);
}

.circular-text {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotateText 10s linear infinite;
}

.circular-text svg {
    width: 100%;
    height: 100%;
}

.circular-text textPath {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    fill: var(--brand-white);
}

.car-icon {
    position: absolute;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;

    padding: 0;
    z-index: 2;
    overflow: hidden;
    /* Ensure car doesn't spill out */
}

.car-icon img {
    width: 110%;
    /* Slightly larger to fill the circle better */
    height: auto;
    object-fit: contain;
    transform: translateY(5px);
    /* Adjust vertical centering for front view */
}

@keyframes rotateText {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.btn-premium {
    display: inline-flex;
    align-items: center;
    padding: 18px 45px;
    background-color: var(--brand-white);
    color: var(--brand-black);
    text-decoration: none;
    font-family: Zolina, sans-serif;
    font-size: 13px;
    letter-spacing: 3px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    animation: 1s cubic-bezier(0.165, 0.84, 0.44, 1) 2s 1 normal forwards running fadeInUp;
}

.btn-premium span {
    position: relative;
    z-index: 2;
}

.btn-premium::before {
    content: "";
    position: absolute;
    top: 0px;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--brand-blue);
    transition: var(--transition);
    z-index: 1;
}

.btn-premium:hover {
    color: var(--brand-white);
}

.btn-premium:hover::before {
    left: 0px;
}

.btn-premium i {
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.btn-premium:hover i {
    transform: translateX(10px);
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    right: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 10;
}

.scroll-text {
    writing-mode: vertical-lr;
    font-size: 11px;
    letter-spacing: 4px;
    color: var(--brand-white);
    opacity: 0.6;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--brand-white) 0%, transparent 100%);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 30%;
    background-color: var(--brand-blue);
    animation: 2s ease-in-out 0s infinite normal none running scrollMove;
}

@keyframes scrollMove {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(333%);
    }
}


.bg-midnight {
    background-color: rgb(0, 13, 25) !important;
}

.bg-brand-blue {
    background-color: var(--brand-blue) !important;
}

.modal-backdrop {
    z-index: 9998 !important;
}

.premium-modal {
    z-index: 9999 !important;
}

.premium-modal.show {
    display: block !important;
    opacity: 1 !important;
}

.premium-modal .modal-content {
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, 0.8) 0px 40px 100px;
    position: relative;
    background: rgb(9, 73, 102) !important;
    z-index: 10000 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.premium-modal .modal-dialog {
    z-index: 10001 !important;
}

.premium-modal .modal-header .btn-close {
    opacity: 0.8;
    transition: var(--transition);
}

.premium-modal .modal-header .btn-close:hover {
    transform: rotate(90deg);
    opacity: 1;
}

.letter-spacing-2 {
    letter-spacing: 2px;
}

.premium-form .form-control {
    background: transparent;
    border-width: medium medium 1px;
    border-style: none none solid;
    border-color: currentcolor currentcolor rgba(255, 255, 255, 0.2);
    border-image: initial;
    border-radius: 0px;
    padding: 15px 0px;
    color: var(--brand-white);
    font-size: 13px;
    letter-spacing: 1px;
    transition: var(--transition);
}

.premium-form .form-control:focus {
    background: transparent;
    border-bottom-color: var(--brand-white);
    box-shadow: none;
    outline: none;
}

.premium-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
}

.premium-form .form-control.is-invalid {
    border-bottom-color: #e8b4b4;
}

.premium-form .field-error {
    display: block;
    margin-top: 0.5rem;
    color: #f0c4c4;
    font-size: 12px;
    letter-spacing: 0.5px;
    min-height: 1.2em;
}

.inquiry-form-alert {
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(232, 180, 180, 0.6);
    background: rgba(80, 20, 20, 0.35);
    color: #f5d6d6;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-align: left;
}

.btn-submit {
    background-color: var(--brand-white);
    color: var(--brand-black);
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    padding: 15px 30px;
    font-family: Zolina, sans-serif;
    font-size: 13px;
    letter-spacing: 3px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-submit span {
    position: relative;
    z-index: 2;
}

.btn-submit::before {
    content: "";
    position: absolute;
    top: 0px;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--brand-black);
    transition: var(--transition);
    z-index: 1;
}

.btn-submit:hover {
    color: var(--brand-white);
}

.btn-submit:hover::before {
    left: 0px;
}

.btn-submit i {
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.btn-submit:hover i {
    transform: translateX(5px);
}

.premium-modal.fade .modal-dialog {
    transform: scale(0.9) translateY(30px);
    opacity: 0;
    transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.py-section {
    padding: 120px 0px;
}

@media (max-width: 768px) {
    .py-section {
        padding: 60px 0px;
    }
}

.about-section {
    background-color: var(--accent-color);
}

.about-section h2 {
    letter-spacing: 2px;
    line-height: 1.2;
    font-weight: 300;
}

.lead-text {
    font-size: 16px;
    line-height: 1.8;
    max-width: 900px;
}

.about-image-wrapper {
    position: relative;
    z-index: 1;
}

.about-image-wrapper img {
    width: 100%;
    transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 1;
}

.about-image-wrapper:hover img {
    transform: scale(1.02);
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(9, 73, 102, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: -1;
    filter: blur(40px);
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0px);
}

.reveal:nth-child(1) {
    transition-delay: 0.1s;
}

.reveal:nth-child(2) {
    transition-delay: 0.2s;
}

.reveal:nth-child(3) {
    transition-delay: 0.3s;
}

.reveal:nth-child(4) {
    transition-delay: 0.4s;
}

.reveal:nth-child(5) {
    transition-delay: 0.5s;
}

.reveal:nth-child(6) {
    transition-delay: 0.6s;
}

.layer1 {
    position: absolute;
    left: -120px;
    top: -100px;
    z-index: 0;
}

.layer2 {
    position: absolute;
    right: -44px;
    top: -34px;
    z-index: 0;
}

.layer3 {
    position: absolute;
    bottom: -67px;
    right: -65px;
}


.text-gold {
    color: white;
    font-weight: 600;
    font-size: 13px;
}


.gallery-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    z-index: 1;
}

.gallery-premium-section {
    background-color: var(--accent-color);
    padding: 120px 0px 200px;
}





@media (max-width: 991px) {}

.amenites-carousel-section {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 !important;
    background-image: url("../images/Swimming-Pool.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: none;
}

.amenites-carousel-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 33%);
    z-index: 1;
    pointer-events: none;
}

.amenites-carousel-section .premium-owl-wrapper {
    z-index: 2;
    width: 100%;
}

.amenites-carousel-section .abs-amenites {
    font-size: 54px;
    z-index: 3;
    position: relative;
    text-align: center;
    transition: all 0.5s ease;
    width: 100%;
    color: #ffffff !important;
    text-transform: uppercase;
    font-weight: 100;
    line-height: 1;
    letter-spacing: 4px;
}

.amenites-carousel .item {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    border-right: 1px solid white;
    position: relative;
    overflow: hidden;
}

.amenites-carousel .item:hover {
    backdrop-filter: blur(15px);
    background: rgba(0, 0, 0, 0.3);
}



.amenites-carousel .item,
.amenites-carousel .owl-item.center .item {
    transform: scale(1) !important;
}

.amenites-carousel-section .premium-owl-wrapper {
    padding: 0;
    width: 100%;
}

.amenites-carousel-section .gallery-card {
    border-radius: 0;
}

.amenites-carousel-section .owl-nav-custom {
    z-index: 100;
    pointer-events: none;
    top: auto;
    bottom: 50px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: auto;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.amenites-carousel-section .owl-prev-btn,
.amenites-carousel-section .owl-next-btn {
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white !important;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.amenites-carousel-section .owl-prev-btn:hover,
.amenites-carousel-section .owl-next-btn:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.amenites-counter {
    position: absolute;
    bottom: 50px;
    right: 80px;
    color: white;
    font-size: 18px;
    z-index: 100;
    letter-spacing: 4px;
    font-weight: 300;
    opacity: 0.8;
    pointer-events: none;
}

.amenites-counter .current {
    font-size: 32px;
    font-weight: 400;
    margin-right: 5px;
}

.hightlights {
    height: 100vh;
    overflow: hidden;
    background: #ffffff;
}

.hightlights-inner {
    display: flex;
    flex-wrap: nowrap;
    height: 100vh;
    width: fit-content;
}

.section-1 {
    display: flex;
    align-items: center;
    width: max-content;
    height: 100vh;
    padding-left: 8vw;
    flex-shrink: 0;
}

.section-1 div:nth-child(1) {
    max-width: 40vw;
}

.section-1 div:nth-child(2) {
    padding-left: 10vw;
    height: 100vh;
    overflow: hidden;

}

.section-1 figure {
    height: 100%;
    overflow: hidden;
}

.section-1 figure img {
    height: 100%;
    width: 130%;
    /* Increased for parallax shift */
    left: -15%;
    /* Center the oversized image */
    position: relative;
    object-fit: cover;
    transform: scale(1.1);
    will-change: transform;
}

.section-1 h3 {
    font-size: 54px;
    font-weight: 200;
    margin-bottom: 20px;
    max-width: 500px;
}

.section-1 p {
    font-size: 18px;
    font-weight: 400;
    max-width: 400px;
    opacity: 0.7;
}

.section-2 {
    display: flex;
    align-items: center;
    width: 100vw;
    height: 100vh;
    padding-left: 10vw;
    flex-shrink: 0;

}

.section-7 div:nth-child(2) {
    padding-left: 5vw !important;
}

.section-2 h3 {
    font-size: 44px;
    line-height: 1.2;
    font-weight: 200;
    text-transform: uppercase;
    color: black;
    flex: 1;
    max-width: 400px;
}

.section-2 div:nth-child(2) {
    flex: 1;
    padding-left: 0vw;
    height: 100vh;
    position: relative;
}

.section-2 figure {
    overflow: hidden;
    height: 100vh;
}

.sectoinab-2 {
    position: absolute;
    right: -130px;
    bottom: 40px;
    z-index: 1;
    width: 500px;
    height: 169px;
}

.sectoinab-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.amenites-headingarea {
    padding: 80px;
    background: #094966;
    color: white;
    text-align: center;
}

.amenites-headingarea h2 {
    font-size: 54px;
    font-weight: 100;
    letter-spacing: 1px;
}

.amenites-headingarea p {
    font-size: 18px;
    color: white;
}

.section-2 figure img {
    height: 100vh;
    width: 130%;
    /* Increased for parallax shift */
    left: -5%;
    /* Center the oversized image */
    position: relative;
    object-fit: cover;
    transform: scale(1.1);
    will-change: transform;
    /* Optimize for performance */
    /* Initial state */
}

@media (max-width: 768px) {
    .amenites-counter {
        right: 20px;
        bottom: 20px;
        font-size: 14px;
    }

    .amenites-counter .current {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .amenites-carousel-section {
        height: auto;
        min-height: 100vh;
    }

    .amenites-carousel-section .gallery-card img {
        height: 100vh;
    }
}

.retail-immersive-full {
    background-color: rgb(0, 0, 0);
    min-height: 80vh;
}

.retail-luxe-card h2 {
    font-weight: 100;
}

.location-editorial-section h2 {
    font-size: 54px;
    font-weight: 200;
    letter-spacing: 1px;
}

.gallery-premium-section h2 {
    font-size: 54px;
    font-weight: 100;
    line-height: 1.2;
    letter-spacing: 2px;
}

.developer-editorial-section h2 {
    font-size: 54px;
    font-weight: 100;
    letter-spacing: 1px;
    color: white;
    line-height: 1.2;
}

.retail-parallax-bg {
    position: absolute;
    top: -10%;
    left: 0px;
    width: 100%;
    height: 110%;
    background-image: url("../images/Experiences.webp");
    background-size: cover;
    background-position: center center;
    opacity: 0.9;
    z-index: 1;
    will-change: transform;
}

.retail-gradient-overlay {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgb(0, 13, 25) 0%, rgba(0, 13, 25, 0.4) 100%);
    z-index: 2;
}

.retail-luxe-card {
    position: relative;
    z-index: 3;
    padding: 60px;
    background: var(--accent-color);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
}

.min-vh-75 {
    min-height: 75vh;
}

@media (max-width: 991px) {
    .retail-luxe-card {
        padding: 40px 30px;
        background: rgba(0, 13, 25, 0.8);
    }

    .retail-gradient-overlay {
        background: rgba(0, 13, 25, 0.6);
    }
}

.location-editorial-section {
    background-color: rgb(255, 255, 255);
    padding: 120px 0px;
}

.map-editorial-wrapper {
    position: relative;
    padding: 10px;
    margin-bottom: 60px;
}

.map-editorial-inner {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 40px 80px;
}

.map-editorial-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 300px;
    height: 300px;
    border: 1px solid var(--brand-blue);
    opacity: 0.05;
    z-index: 1;
}

.location-premium-highlight {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 30px;
    background: #ffffff;
    border: 1px solid #f2f2f2;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.location-premium-highlight:hover {
    background: #ffffff;
    border-color: var(--brand-blue);
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(9, 73, 102, 0.08);
}

.lph-icon-wrapper {
    width: 60px;
    height: 60px;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fb;
    color: var(--brand-blue);
    font-size: 20px;
    transition: 0.4s;
    border: 1px solid rgba(9, 73, 102, 0.05);
}

.location-premium-highlight:hover .lph-icon-wrapper {
    background: var(--brand-blue);
    color: white;
}

.lph-content {
    display: flex;
    flex-direction: column;
}

.lph-name {
    font-size: 17px;
    font-weight: 500;
    color: #111;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.lph-dist {
    font-size: 12px;
    color: var(--brand-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

/* Focus Center Owl Carousel */
.gallery-block {
    position: relative;
    overflow: hidden;
    margin-top: -150px;
    padding-bottom: 120px;
}

.premium-owl-wrapper {
    position: relative;
    padding: 0 100px;
}

.owl-carousel .item {
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);

    transform: scale(0.85);
    cursor: pointer;
}

.owl-carousel .owl-item.center .item {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    /* box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4); */
}

.gallery-card img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform 1.5s ease;
}

.owl-item.center .gallery-card:hover img {
    transform: scale(1.1);
}

/* Custom Owl Nav */
.owl-nav-custom {
    position: absolute;
    top: 50%;
    left: 20px;
    right: 20px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.owl-prev-btn,
.owl-next-btn {
    width: 60px;
    height: 60px;
    background: var(--brand-blue);
    /* Solid brand blue for absolute visibility */
    border: 2px solid var(--brand-blue);
    /* Gold-leaf architectural border */
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.owl-prev-btn:hover,
.owl-next-btn:hover {
    background: var(--brand-blue);
    /* Transitions to Gold on hover */
    border-color: var(--brand-blue);
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 15px 40px rgba(196, 161, 98, 0.4);
}

/* Custom Dots */
.owl-theme .owl-dots {
    margin-top: 50px !important;
}

.owl-theme .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.owl-theme .owl-dots .owl-dot.active span {
    background: #c4a162;
    transform: scale(1.5);
}

@media (max-width: 991px) {
    .gallery-card img {
        height: 450px;
    }

    .premium-owl-wrapper {
        padding: 0;
    }
}

.developer-editorial-section {
    padding: 120px 0px;
    z-index: 1;
}

.editorial-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 25vw;
    color: rgba(255, 255, 255, 0.02);
    font-weight: 900;
    white-space: nowrap;
    pointer-events: none;
    z-index: -1;
}

.editorial-image-frame {
    position: relative;
    padding: 40px;
}

.main-img-wrapper {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-radius: 4px;
}

.main-img-wrapper img {
    transition: transform 2s;
}

.editorial-image-frame:hover .main-img-wrapper img {
    transform: scale(1.1);
}

.accent-frame {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 80%;
    height: 80%;
    border: 1px solid rgba(196, 161, 98, 0.3);
    z-index: 1;
}

.heritage-badge {
    position: absolute;
    bottom: 0px;
    right: 0px;
    background: black;
    color: rgb(255, 255, 255);
    padding: 40px;
    z-index: 3;
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, 0.3) 20px 20px 60px;
}

span.img-abs {
    position: absolute;
    left: 20px;
    bottom: 8px;
    font-size: 9px;
    color: white;
}

.section-7 span.img-abs {
    right: 20px;
    left: auto;
}

.editorial-content-box {
    padding: 100px 80px;
    background: #062b3d;
    /* Deeper premium navy */
    color: white;
    position: relative;
    margin-left: -40px;
    z-index: 10;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.4);
    border-left: 4px solid var(--brand-gold);
}

.editorial-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    margin-top: 20px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 8px;
    font-weight: 300;
}

.stat-label {
    color: white;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.4;
}

.about-section h2 {
    font-size: 54px;
    font-weight: 100;
    line-height: 1.2;
    letter-spacing: 2px;
}

.editorial-lead {
    font-size: 1.15rem;
    line-height: 1.8;
}

@media (max-width: 991px) {
    .editorial-content-box {
        margin-left: 0;
        padding: 60px 40px;
        margin-top: -40px;
    }

    .stat-num {
        font-size: 2.2rem;
    }
}

/* ==========================================================================
   Responsive Architecture (Hardened)
   ========================================================================== */

/* Fix horizontal scroll at source */
html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Global Heading Fluidity */
@media (max-width: 1199px) {
    .display-1 {
        font-size: 5rem;
    }

    .display-4 {
        font-size: 3.5rem;
    }

    .premium-owl-wrapper {
        padding: 0 50px;
    }
}

@media (max-width: 991px) {
    .py-section {
        padding: 70px 0;
    }

    .py-section-lg {
        padding: 80px 0;
    }

    /* Sticky Header Adjustments */
    .main-header {
        padding: 8px 0;
    }

    .brand-logo img {
        height: 40px;
    }

    /* Section Clearances for Sticky Header */
    section[id] {
        scroll-margin-top: 80px;
    }

    /* Heading Scaling */
    .display-1 {
        font-size: 3.8rem;
    }

    .display-4 {
        font-size: 2.8rem;
    }

    .display-5 {
        font-size: 2.2rem;
    }

    .h-font.display-4 br {
        display: none;
    }

    /* About Section */
    .about-image-wrapper {
        margin-top: 40px;
    }

    .about-image-wrapper [class^="layer"] {
        display: none;
    }

    /* Gallery Section */
    .premium-owl-wrapper {
        padding: 0 20px;
    }

    .gallery-block {
        margin-top: -60px;
    }

    /* Developer Section */
    .editorial-image-frame {
        margin-bottom: 40px;
    }

    .editorial-stats-row {
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat-box {
        flex: 1 1 40%;
        text-align: center;
    }

    /* Footer */
    .main-footer {
        text-align: center;
        padding: 60px 0 20px;
    }

    .social-links {
        justify-content: center;
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .display-1 {
        font-size: 3rem;
    }

    .display-4 {
        font-size: 2.2rem;
    }

    .header-right .inquire-link {
        display: none;
    }


    .premium-owl-wrapper {
        padding: 0 10px;
    }



    .stat-box {
        flex: 1 1 100%;
    }

    .location-premium-highlight {
        margin-bottom: 10px;
    }
}

/* Restore Footer Architecture */
.main-footer {
    padding: 100px 0px 20px;
    border-top: 1px solid rgba(196, 161, 98, 0.2);
    background-color: rgb(0, 0, 0) !important;
}

.footer-logo {
    max-height: 80px;
    filter: brightness(0) invert(1);
}

.social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgb(255, 255, 255);
    border-radius: 50%;
    transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none;
    font-size: 18px;
}

.social-icon:hover {
    background: rgb(196, 161, 98);
    border-color: rgb(196, 161, 98);
    color: rgb(0, 0, 0);
    transform: translateY(-8px) rotate(360deg);
    box-shadow: rgba(196, 161, 98, 0.3) 0px 15px 30px;
}

.rera-box {
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 4px;
}

.footer-bottom {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.tiny-disclaimer {
    font-size: 0.7rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.4);
}


@media (max-width: 768px) {

    .loading-scale,
    .scroll-down {
        display: none;
    }

    .banner-title {
        font-size: 40px;
    }

    .section-1 div:nth-child(1) {
        max-width: 100vw;
    }

    .section-1 div:nth-child(2) {
        width: 150vw;
    }

    .section-1 h3 {
        font-size: 44px;
    }

    .section-2 div:nth-child(1) {
        width: 110vw;
        padding-right: 2vw;
    }

    .section-2 div:nth-child(2) {
        width: 150vw;
        flex: 0 0 150vw;
    }

    .section-2 {
        width: max-content;
        padding-left: 0;
    }

    .sectoinab-2 {
        display: none;
    }

    .section-2 h3 {
        max-width: 350px;
    }

    .amenites-headingarea {
        padding: 60px 0;
    }

    .amenites-headingarea h2 {
        font-size: 36px;
    }

    .amenites-headingarea p {
        padding: 0 16px;
    }

    .amenites-carousel .item {
        pointer-events: none;
    }

    .bg-gymnasium {
        background-position: 20% 1000%;
    }

    .bg-yoga {
        background-position: 66% 100%;
    }

    .location-editorial-section h2 {
        font-size: 44px;
    }

    .gallery-premium-section h2 {
        font-size: 36px;
    }


    .editorial-image-frame {
        padding: 0;
        margin: 0;
    }

    .editorial-image-frame img {
        height: 350px;
        width: 100%;
    }

    .editorial-lead {
        font-size: 16px;
    }

    .editorial-content-box {
        padding: 40px 20px;
    }

    .developer-editorial-section h2 {
        font-size: 44px;
    }

    .developer-editorial-section .row {
        display: flex;
    }

    .developer-editorial-section .row .col-lg-6:nth-child(1) {
        order: 2;
    }

    .developer-editorial-section .row .col-lg-6:nth-child(2) {
        order: 1;
    }

    .owl-nav-custom {
        top: auto;
        transform: unset;
        justify-content: center;
        gap: 32px;
        margin-top: 20px;
    }

    .owl-nav-custom button {
        width: 50px;
        height: 50px;
        transform: unset !important;
    }
}


@media (max-width: 575px) {
    .retail-immersive-full .lead {
        font-size: 16px;
        line-height: 1.5;
    }

    .display-1 {
        font-size: 2.5rem;
    }

    .display-4 {
        font-size: 1.8rem;
    }

    .lead {
        font-size: 20px;
        opacity: 9 !important;
        margin-bottom: 30px !important;
    }

    .btn-premium {
        padding: 16px 30px;
    }

    .brand-logo img {
        height: 35px;
    }

    .py-section {
        padding: 50px 0;
    }

    .py-section-lg {
        padding: 60px 0;
    }

    .banner-title span {
        display: inline !important;
    }

    .gallery-card img {
        height: 350px;
    }

    .about-section h2 {
        font-size: 34px;
    }

}

/* —— Thank you page —— */
.thankyou-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: radial-gradient(ellipse 120% 80% at 50% 0%, rgba(209, 183, 99, 0.12) 0%, transparent 55%),
        linear-gradient(165deg, var(--brand-blue) 0%, #062f42 45%, var(--brand-black) 100%);
    color: var(--brand-white);
}

.thankyou-page .thankyou-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--glass-border);
}

.thankyou-page .thankyou-header .brand-logo img {
    height: 42px;
    filter: brightness(0) invert(1);
}

.thankyou-page .thankyou-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem 4rem;
}

.thankyou-page .thankyou-card {
    max-width: 520px;
    text-align: center;
    padding: 3rem 2.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    backdrop-filter: blur(8px);
}

.thankyou-page .thankyou-icon {
    width: 88px;
    height: 88px;
    margin: 0 auto 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(209, 183, 99, 0.45);
    background: rgba(255, 255, 255, 0.06);
    color: #e8d5a3;
    font-size: 2rem;
}

.thankyou-page .thankyou-card h1 {
    font-size: clamp(2rem, 5vw, 2.75rem);
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
    line-height: 1.15;
}

.thankyou-page .thankyou-card .thankyou-lead {
    font-size: 1.05rem;
    line-height: 1.65;
    opacity: 0.82;
    margin-bottom: 2rem;
}

.thankyou-page .thankyou-meta {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.45;
    margin-bottom: 1.5rem;
}

.thankyou-page .btn-thankyou-home {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 14px 32px;
    font-family: Zolina, sans-serif;
    font-size: 12px;
    letter-spacing: 3px;
    text-decoration: none;
    color: var(--brand-black);
    background: var(--brand-white);
    border: none;
    transition: var(--transition);
}

.thankyou-page .btn-thankyou-home:hover {
    background: #e8d5a3;
    color: var(--brand-black);
}

.thankyou-page .thankyou-footer {
    padding: 1.25rem 1.5rem;
    text-align: center;
    font-size: 11px;
    letter-spacing: 2px;
    opacity: 0.35;
    border-top: 1px solid var(--glass-border);
}