/* ============================================
   FONT FACE DECLARATIONS
   ============================================ */
@font-face {
    font-family: 'Bambino Light';
    src: url('../fonts/Bambino Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Bambino Bold';
    src: url('../fonts/Bambino Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Ananda Black';
    src: url('../fonts/Ananda Black Personal Use.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Bambino Light', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ============================================
   HEADER STYLES
   ============================================ */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 21px 40px;
    transition: box-shadow 0.3s ease;
}

.main-header.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    /* height: 50px; */
    width: 100%;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-list {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    font-family: 'Bambino Bold', Arial, sans-serif;
    font-size: 16px;
    color: #333;
    transition: color 0.3s ease;
    position: relative;
    text-transform: uppercase;
    /* padding: 25% 0; */
    padding: 29px 0;
}

.nav-link:hover {
    color: #D4C5A9;
}

.nav-link.active {
    color: #6B2C5A;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 7px;
    background-color: #D4C5A9;
    display: block;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.social-icons {
    display: flex;
    gap: 8px;
    align-items: center;
}

.social-link {
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    transition: opacity 0.2s ease;
}

.social-link img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.social-link:hover {
    opacity: 0.75;
}

.header-enquire-btn {
    background: #4b0b2d;
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-family: "Bambino Bold", sans-serif;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    margin-left: 20px;
}

.header-enquire-btn:hover {
    background: #7b4b57;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(75, 11, 45, 0.3);
}

.header-enquire-btn:active {
    transform: translateY(0);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 30px;
    justify-content: center;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 2px;
    background: #333;
    transition: all 0.3s ease;
}

/* ============================================
   MAIN CONTENT
   ============================================ */
.main-content {
    margin-top: 70px;
}

.amenities-page .main-content {
    margin-top: 54px;
}


.location-page .main-content {
    margin-top: 54px;
}

/* ============================================
   HERO BANNER
   ============================================ */
.hero-banner {
    position: relative;
    width: 100%;
    height: 86vh;
    background-image: url('../images/hero-banner-1.jpg');
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 350px;
    overflow: visible;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-text-image {
    max-width: 600px;
    height: auto;
}

.info-bar {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1230px;
    background: #4b0b2d;
    padding: 35px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    gap: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 480px) {

    .info-bar {
        display: flex;
        flex-wrap: wrap;
    }

    .info-item {
        width: 45%;              /* 👈 2 items per row */
        box-sizing: border-box;
        padding: 12px 8px;
        border-right: 1px solid rgba(255,255,255,0.2);
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }

    /* Remove right border for even items */
    .info-item:nth-child(2n) {
        border-right: none;
    }

    /* Remove bottom border for last row */
    .info-item:nth-last-child(-n+2) {
        border-bottom: none;
    }

}
.info-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    color: #fff;
    flex: 1;
}

.info-item-top {
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    /* filter: brightness(0) invert(1);
    flex-shrink: 0; */
}

.info-label {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    line-height: 1.2;
    font-weight: lighter;
}

.info-value {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
    line-height: 1.2;
    margin-left: 30px;
    font-family: bambino bold;
}

/* ============================================
   COMMON SECTION STYLES
   ============================================ */
.section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    padding: 80px 40px;
    box-sizing: border-box;
    z-index: 1;
}

.section-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.section-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

.section1-content {
    top: -25% !important;
}

.section-title {
    font-size: 30px;
    color: #490f2d;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: lighter;
    text-align: center;
    line-height: 1.2;
}

@media (max-width: 767px) {
  .section-title,.amenities-intro-copy h2 {
      /*font-size: 22px;*/
      /*line-height: 1.3;*/
      padding-top: 10px;
      padding-left: 15px;
      padding-right: 15px;
      word-break: break-word;
  }
   
 }
@media (max-width: 767px) {
 .amenities-intro {
     overflow: visible;
 }
 
 .amenities-intro-inner {
     overflow: visible;
 }
 
 .amenities-intro-copy {
     padding-top: 20px;
     overflow: visible;
     padding-bottom: 30px;
 }

 .amenities-intro-copy h2 {
     line-height: 1.3;
     padding-top: 8px;
     margin-bottom: 15px;
     overflow: visible;
     visibility: visible;
 }
 
 .amenities-intro-copy p {
     overflow: visible;
     visibility: visible;
 }
}

.section-description {
    font-size: 18px;
    color: #000;
    line-height: 1.8;
    max-width: 1020px;
    margin: 0 auto;
    font-weight: lighter;
    letter-spacing: 1.5px;
    /* opacity: 0.8; */
}

/* ============================================
   SECTION 1: TIMELESS LUXURY
   ============================================ */
.section-1 {
    z-index: 0;
}

/* ============================================
   SECTION 2: LANDMARK
   ============================================ */
.section-2 {
    z-index: 3;
}

.landmarks-grid {
    display: flex;
    width: 100%;
    max-width: 1600px;
    margin: 60px auto 0;
    border-radius: 0;
    overflow: hidden;
}

.landmark-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    padding: 40px 20px;
    position: relative;
    gap: 20px;
}

.landmark-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: rgba(226, 212, 193, 0.3);
}

.landmark-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.landmark-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(85%) sepia(15%) saturate(500%) hue-rotate(5deg);
}

.landmark-text {
    font-size: 12px;
    color: #fff;
    text-align: center;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
    max-width: 180px;
}

/* ============================================
   SECTION 3: PLANS
   ============================================ */
.section-3 {
    z-index: 4;
    background: #f5f5f5;
    padding: 100px 80px;
}

.plans-container {
    display: flex;
    gap: 60px;
    max-width: 1400px;
    width: 100%;
    height: 100%;
    align-items: center;
}

.plans-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.plans-tabs {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.plan-tab {
    padding: 20px 30px;
    background: #fff;
    color: #333;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.plan-tab:hover {
    border-color: #b8860b;
    color: #b8860b;
}

.plan-tab.active {
    background: #b8860b;
    color: #fff;
    border-color: #b8860b;
}

.plans-description {
    color: #333;
    font-size: 16px;
    line-height: 1.8;
}

.plans-right {
    flex: 1.5;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plan-image-wrapper {
    width: 100%;
    height: 100%;
    max-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.plan-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* ============================================
   SECTION 4: CONNECTIVITY
   ============================================ */
.section-4 {
    z-index: 5;
    background: #fff;
    padding: 180px 40px;
    overflow-y: auto;
    height: auto;
    min-height: auto;
    align-items: flex-start;
    pointer-events: auto;
}

.connectivity-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.connectivity-heading {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: lighter;
}

.connectivity-map {
    text-align: center;
    margin-bottom: 50px;
}

.connectivity-map img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

.connectivity-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    position: relative;
    z-index: 10;
}

.connectivity-tabs {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sub-tabs-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.group-label {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sub-tab {
    padding: 15px 20px;
    background: #f5f5f5;
    color: #333;
    font-size: 14px;
    text-align: left;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 4px;
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.sub-tab:hover {
    background: #e0e0e0;
    border-color: #b8860b;
}

.sub-tab.active {
    background: #b8860b;
    color: #fff;
    border-color: #b8860b;
}

.connectivity-display {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.connectivity-image-wrapper {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.connectivity-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.connectivity-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.connectivity-distances {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.connectivity-distances li {
    font-size: 14px;
    color: #666;
    padding-left: 20px;
    position: relative;
}

.connectivity-distances li::before {
    content: 'â€¢';
    position: absolute;
    left: 0;
    color: #b8860b;
    font-size: 20px;
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
    position: relative;
    background-image: url('../images/section-2-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 40px 40px;
    color: #fff;
    z-index: 6;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 0;
}

.footer-container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-top {
    margin-bottom: 50px;
}

.footer-top-inner {
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    /* flex-wrap: wrap; */
}

.footer-logos-section {
    flex-shrink: 0;
    width: 20%;
}


.footer-project-name {
    flex: 1;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 10%;
}

.footer-verona-logo {
    max-width: 300px;
    height: auto;
}

.footer-address {
    flex-shrink: 0;
    text-align: right;
    max-width: 400px;
    width: 25%;
}

.footer-address p {
    font-size: 12px;
    line-height: 1.8;
    color: #fff;
    margin: 0;
    text-align: left;
    font-weight: lighter;
    opacity: 0.8;
}

.footer-disclaimer {
    margin-bottom: 40px;
}

.footer-disclaimer p {
    font-size: 12px;
    line-height: 1.8;
    color: #fff;
    text-align: center;
    opacity: 0.8;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.rera-info {
    font-size: 12px;
    color: #fff;
    display: flex;
    gap: 15px;
    align-items: center;
}

.rera-info p {
    margin: 0;
    line-height: 1.6;
    opacity: 0.8;
}

.rera-info a {
    color: #fff;
    text-decoration: underline;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.privacy-policy {
    font-size: 12px;
}

.privacy-link {
    color: #fff;
    cursor: pointer;
    transition: color 0.3s ease;
    text-decoration: none;
    opacity: 0.8;
}

.footer-social-icons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer-social-icons .social-link {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    transition: opacity 0.2s ease;
    color: #fff;
    border-radius: 50%;
    font-size: 16px;
}

.footer-social-icons .social-link i {
    color: #fff;
}

.footer-social-icons .social-link:hover {
    opacity: 0.75;
}

.enquire-now-btn {
    background: #4b0b2d;
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 4px;
    font-size: 14px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.enquire-now-btn:hover {
    background: #957971;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(90, 45, 56, 0.3);
}

.enquire-now-btn:active {
    transform: translateY(0);
}

.mobile-enquire-btn {
    display: none;
}

.privacy-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */
.scroll-to-top {
    position: fixed;
    bottom: 6%;
    right: 3%;
    width: 45px;
    height: 45px;
    background: #4b0b2d;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.scroll-to-top.show {
    display: flex;
}

.scroll-to-top:hover {
    background: #e8ddd0;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.scroll-to-top i {
    color: #fff;
    font-size: 18px;
}

/* ============================================
   DOWNLOAD BROCHURE BUTTON
   ============================================ */
.download-brochure-btn {
    position: fixed;
    bottom: 50%;
    right: 0;
    width: auto;
    min-width: 45px;
    height: 45px;
    background: #4b0b2d;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    box-shadow: 0 2px 10px rgba(90, 45, 56, 0.3);
    transition: all 0.3s ease;
    z-index: 9999;
    will-change: transform, background, box-shadow;
    backface-visibility: hidden;
    overflow: visible;
    transform: rotate(-90deg);
    transform-origin: bottom right;
}

.download-brochure-btn:hover {
    background: #957971;
    box-shadow: 0 4px 15px rgba(90, 45, 56, 0.4);
}

.download-brochure-btn i {
    font-size: 18px;
    color: #fff;
    transform: rotate(90deg);
}

.download-brochure-text {
    font-size: 9px;
    letter-spacing: 1.8px;
    color: #fff;
    white-space: nowrap;
    text-transform: uppercase;
}

/* Adjust scroll-to-top button position when brochure button is present */
@media (min-width: 769px) {
    .scroll-to-top {
        bottom: 10%;
    }
}

/* ============================================
   ENQUIRY FORM POPUP
   ============================================ */
.enquiry-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10001;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.enquiry-popup.active {
    display: flex;
}

.enquiry-popup-content {
    background: #fff;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.enquiry-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1;
}

.enquiry-popup-header h2 {
    font-size: 24px;
    color: #5a2d38;
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.enquiry-close {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f5f5f5;
    border: none;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.enquiry-close:hover {
    background: #5a2d38;
    color: #fff;
}

.enquiry-popup-body {
    padding: 20px 30px;
}

.enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.form-group .required {
    color: #d32f2f;
}

.form-group input,
.form-group textarea {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: "Bambino Light", sans-serif;
    color: #333;
    transition: border-color 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #5a2d38;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.enquiry-submit-btn {
    background: #4b0b2d;
    color: #fff;
    border: none;
    padding: 10px 30px;
    border-radius: 4px;
    font-size: 16px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    text-transform: uppercase;
}

.enquiry-submit-btn:hover {
    background: #7b4b57;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(90, 45, 56, 0.3);
}

.enquiry-submit-btn:active {
    transform: translateY(0);
}

/* ============================================
   PRIVACY POPUP
   ============================================ */
.privacy-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.privacy-popup.active {
    display: flex;
}

.privacy-popup-content {
    background: #fff;
    max-width: 800px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: 8px;
    position: relative;
}

.privacy-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1;
}

.privacy-popup-header h2 {
    font-size: 24px;
    color: #333;
}

.privacy-close {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f5f5f5;
    color: #333;
    transition: all 0.3s ease;
}

.privacy-close:hover {
    background: #b8860b;
    color: #fff;
}

.privacy-popup-body {
    padding: 30px;
}

.privacy-popup-body p {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.privacy-popup-body p:last-child {
    margin-bottom: 0;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

/* Tablet (768px - 1024px) */
@media screen and (max-width: 1024px) {
    .main-header {
        padding: 15px 30px;
    }

    .nav-list {
        gap: 20px;
    }

    .hero-banner {
        padding: 0 40px;
    }

    .hero-text-image {
        max-width: 400px;
    }

    .info-bar {
        padding: 30px 40px;
        gap: 30px;
        width: 95%;
    }

    .info-icon {
        width: 28px;
        height: 28px;
    }

    .info-item-top {
        gap: 8px;
    }

    .info-label {
        font-size: 11px;
    }

    .info-value {
        font-size: 12px;
        margin-left: 36px;
    }

    .section {
        padding: 60px 30px;
    }

    .section-title {
        font-size: 36px;
    }

    .section-description {
        font-size: 16px;
    }

    .landmarks-grid {
        flex-wrap: wrap;
    }

    .landmark-item {
        flex: 1 1 calc(50% - 1px);
        min-width: 200px;
    }

    .landmark-item:nth-child(2n)::after {
        display: none;
    }

    .plans-container {
        flex-direction: column;
        gap: 40px;
    }

    .plan-left,
    .plan-right {
        width: 100%;
    }

    .plan-left {
        padding: 60px 50px;
    }

    .plan-menu {
        width: 100%;
        max-width: 500px;
    }

    .plan-item {
        font-size: 36px;
    }

    .plan-accordion-item.active {
        margin-right: 0;
    }

    .plan-accordion-item.active::after {
        display: none;
    }

    .plan-right {
        padding: 40px;
    }

    .plan-right img {
        max-width: 100%;
    }

    .plan-slider-nav {
        width: 40px;
        height: 40px;
    }

    .plan-slider-nav i {
        font-size: 16px;
    }

    .plan-slider-prev {
        left: -20px;
    }

    .plan-slider-next {
        right: -20px;
    }

    .plans-right {
        width: 100%;
    }

    .connectivity-content {
        flex-direction: column;
        gap: 40px;
    }

    .connectivity-tabs {
        width: 100%;
    }

    .connectivity-display {
        width: 100%;
    }

    .footer-top-inner {
        text-align: center;
        gap: 30px;
    }

    .footer-verona-logo {
        max-width: 140px;
    }

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

    .footer-address p {
        text-align: center;
    }
}

/* Mobile (max 767px) */
@media screen and (max-width: 767px) {
    .main-header {
        padding: 15px 20px;
    }

    .main-nav {
        position: fixed;
        top: 55px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 50px);
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 20px;
        transition: left 0.3s ease;
        z-index: 999;
    }

    .main-nav.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: 20px;
    }

    .nav-link {
        font-size: 18px;
        width: 100%;
        padding: 10px 0;
        border-bottom: 1px solid #e0e0e0;
    }

    .social-icons {
        margin-top: 20px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header-enquire-btn {
        display: none;
    }

    .mobile-enquire-btn {
        display: flex;
        width: 100%;
        justify-content: center;
        margin-top: 30px;
        padding: 12px 24px;
        font-size: 16px;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(4px, 3px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-banner {
        padding: 0 20px;
        justify-content: center;
    }

    .hero-text-image {
        max-width: 100%;
    }

    .info-bar {
        padding: 25px 20px;
        flex-direction: column;
        gap: 20px;
        align-items: center;
        width: 90%;
    }

    /* .info-item {
        width: 100%;
        gap: 8px;
    } */

    .info-icon {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
    }

    .info-item-top {
        gap: 8px;
    }

    .info-label {
        font-size: 10px;
    }

    .info-value {
        font-size: 11px;
        margin-left: 32px;
    }

    .section {
        padding: 40px 20px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .section-description {
        font-size: 14px;
    }

    .landmarks-grid {
        flex-direction: column;
    }

    .landmark-item {
        flex: 1;
        width: 100%;
        border-bottom: 1px solid rgba(226, 212, 193, 0.3);
        padding: 30px 20px;
    }

    .landmark-item:not(:last-child)::after {
        display: none;
    }

    .landmark-item:last-child {
        border-bottom: none;
    }

    .section-3 {
        padding: 60px 20px;
    }

    .plans-container {
        gap: 30px;
    }

    .plan-tab {
        padding: 15px 20px;
        font-size: 16px;
    }

    .plan-container {
        flex-direction: column;
    }

    .plan-left,
    .plan-right {
        width: 100%;
    }

    .plan-left {
        padding: 40px 30px;
    }

    .plan-menu {
        width: 100%;
    }

    .plan-item {
        font-size: 28px;
        letter-spacing: 2px;
    }

    .plan-accordion-item.active {
        margin-right: 0;
        padding: 15px;
    }

    .plan-accordion-item.active::after {
        display: none;
    }

    .plan-desc {
        font-size: 13px;
    }

    .plan-right {
        padding: 30px 20px;
    }

    .plan-right img {
        max-width: 100%;
    }

    .section-4 {
        padding: 40px 20px;
    }

    .connectivity-heading {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .connectivity-map {
        margin-bottom: 30px;
    }

    .connectivity-image-wrapper {
        height: 250px;
    }

    .connectivity-title {
        font-size: 20px;
    }

    .main-footer {
        padding: 40px 20px 30px;
    }

    .footer-top-inner {
        flex-direction: column;
        padding: 30px 20px;
        gap: 30px;
        text-align: center;
    }

    .footer-logos-section {
        align-items: center;
    }

    .footer-verona-logo {
        max-width: 200px;
    }

    .footer-address {
        text-align: center;
        max-width: 100%;
    }

    .footer-address p {
        text-align: center;
    }

    .footer-disclaimer p {
        font-size: 11px;
    }

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

    .footer-bottom-right {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        width: 100%;
    }

    .enquire-now-btn {
        width: 100%;
        max-width: 200px;
    }

    .scroll-to-top {
        bottom: 120px;
        right: 20px;
        width: 40px;
        height: 40px;
    }

    .scroll-to-top i {
        font-size: 16px;
    }

    .download-brochure-btn {
        bottom: 20px;
        right: 0;
        min-width: 40px;
        height: 40px;
        padding: 8px 12px 8px 8px;
        border-radius: 4px 0 0 4px;
        transform: rotate(-90deg);
        transform-origin: bottom right;
    }

    .download-brochure-btn i {
        font-size: 14px;
    }

    .download-brochure-text {
        font-size: 8px;
        letter-spacing: 1.2px;
    }

    .enquiry-popup-content {
        max-width: 90%;
        max-height: 85vh;
    }

    .enquiry-popup-header {
        padding: 20px;
    }

    .enquiry-popup-header h2 {
        font-size: 20px;
    }

    .enquiry-popup-body {
        padding: 20px;
    }
}

/* Large Desktop (1920px+) */
@media screen and (min-width: 1920px) {

    .header-container,
    .section-content,
    .plans-container,
    .connectivity-container,
    .footer-container {
        max-width: 1350px;
    }

    .section-title {
        font-size: 30px;
    }

    .section-description {
        font-size: 20px;
    }

    .hero-text-image {
        max-width: 450px;
    }
}

.plan-section {
    width: 100%;
}

.neighbourhood-section{
    padding: 12rem 0;
}

.plan-container {
    display: flex;
    align-items: stretch;
    margin: auto;
    background: #f7f7f7;
    overflow: visible;
}

.plan-left {
    width: 40%;
    background: #f3ebdf;
    padding: 80px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: visible;
}

.plan-menu {
    width: 100%;
    position: relative;
    overflow: visible;
}

.plan-accordion-item {
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(123, 75, 87, 0.2);
    position: relative;
}

.plan-accordion-item.active {
    background: #f3ebdf;
    padding: 20px;
    margin: -20px -20px 20px -20px;
    position: relative;
    z-index: 10;
    margin-right: -50px;
    overflow: visible;
}

.plan-accordion-item.active::after {
    content: '';
    position: absolute;
    right: -80px;
    top: 10%;
    width: 50px;
    height: 100%;
    background: #f3ebdf;
    clip-path: polygon(0% 0%, 70% 10%, 0 20%);
    z-index: 1;
}

.plan-item {
    font-size: 40px;
    letter-spacing: 4px;
    color: #7b4b57;
    margin-bottom: 0;
    cursor: pointer;
    transition: 0.3s ease;
    font-weight: 500;
    padding-bottom: 5px;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
}

.plan-accordion-item.active .plan-item {
    color: #5a2d38;
}

.plan-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0;
}

.plan-accordion-item.active .plan-accordion-content {
    max-height: 200px;
    padding: 0px 0 20px 0;
}

/* Hide images inside accordion items on desktop */
@media (min-width: 769px) {
    .plan-accordion-item .plan-slider-container,
    .plan-accordion-item .plan-image-container {
        display: none !important;
    }
    
    /* Show desktop images on desktop */
    .plan-right {
        display: flex;
    }
}

/* Show images inside accordion items on mobile */
@media (max-width: 768px) {
    .plan-accordion-item.active .plan-slider-container,
    .plan-accordion-item.active .plan-image-container {
        display: flex !important;
        margin-top: 20px;
        width: 100%;
    }
    
    /* Hide desktop images on mobile */
    .plan-right {
        display: none !important;
    }
    
    .plan-accordion-item .plan-slider-container,
    .plan-accordion-item .plan-image-container {
        flex-direction: column;
        align-items: center;
    }
}

.plan-desc {
    font-size: 14px;
    line-height: 1.8;
    color: #6d6d6d;
    margin: 0;
}

.plan-right {
    width: 60%;
    padding: 80px 100px;
    display: flex;
    align-items: center;
    justify-content: start;
}

.plan-right img {
    width: 100%;
    max-width: 750px;
    transition: opacity 0.4s ease;
}

/* Plan Image Containers */
.plan-image-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plan-image-container a {
    display: flex;
    width: 100%;
    max-width: 750px;
    justify-content: center;
    pointer-events: none;
}

.plan-image-container {
    position: relative;
}

.plan-image-container img {
    width: 100%;
    max-width: 750px;
    transition: opacity 0.4s ease, filter 0.4s ease;
    filter: blur(8px);
}

.plan-image-container img.unblurred {
    filter: blur(0);
}

/* Unit Plan Slider */
.plan-slider-container {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plan-slider-wrapper {
    width: 100%;
    max-width: 750px;
    position: relative;
    overflow: hidden;
}

/* View Plan Button */
.view-plan-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #4b0b2d;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 10px;
    letter-spacing: 1px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(90, 45, 56, 0.3);
    text-transform: uppercase;
}

.view-plan-btn:hover {
    background: #7b4b57;
    transform: translate(-50%, -50%) translateY(-2px);
    box-shadow: 0 6px 20px rgba(90, 45, 56, 0.4);
}

.view-plan-btn.hidden {
    display: none;
}

.plan-slider-track {
    position: relative;
    width: 100%;
}

.plan-slider-track a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 750px;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1;
    display: block;
    pointer-events: none;
}

.plan-slider-track a.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.plan-slider-track a img,
.plan-slider-slide {
    width: 100%;
    max-width: 750px;
    height: auto;
    display: block;
    object-fit: contain;
    transition: opacity 0.25s ease, filter 0.4s ease;
    filter: blur(8px);
}

.plan-slider-slide.unblurred {
    filter: blur(0);
}

.plan-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #f3ebdf;
    color: #5a2d38;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    will-change: transform, background, box-shadow;
    backface-visibility: hidden;
    user-select: none;
}

.plan-slider-nav i {
    color: #5a2d38;
    font-size: 18px;
}

.plan-slider-nav:hover {
    background: #e8ddd0;
    transform: translateY(-50%) translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.plan-slider-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
    background: #f3ebdf;
}

.plan-slider-prev {
    left: -15px;
}

.plan-slider-next {
    right: -15px;
}

/* Plan Section Responsive - Tablet (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 768px) {
    .plan-left {
        padding: 60px 50px;
        width: 50%;
    }

    .plan-right {
        width: 50%;
    }

    .plan-menu {
        width: 100%;
    }

    .plan-item {
        font-size: 36px;
    }

    .plan-accordion-item.active {
        margin-right: -30px;
    }

    .plan-accordion-item.active::after {
        right: -60px;
    }
    
    .rera-info{
        width: 60%;
    }

    .footer-bottom-right {
        align-items: flex-end !important;
        width: 30% !important;
    }
}

/* Plan Section Responsive - Small Tablet/Mobile Landscape */
@media (max-width: 992px) {
    .plan-container {
        flex-direction: column;
    }

    .plan-left,
    .plan-right {
        width: 100%;
    }

    .plan-left {
        padding: 50px 40px;
    }

    .plan-menu {
        width: 100%;
        max-width: 500px;
    }

    .plan-item {
        font-size: 32px;
    }

    .plan-accordion-item.active {
        margin-right: 0;
    }

    .plan-accordion-item.active::after {
        display: none;
    }

    .plan-right {
        padding: 20px;
    }
}

/* Plan Section Responsive - Mobile (768px and below) */
@media (max-width: 768px) {
    .plan-container {
        flex-direction: column;
    }

    .plan-left {
        padding: 40px 30px;
        width: 100%;
    }

    /* Hide desktop images on mobile */
    .plan-right {
        display: none !important;
    }

    .plan-menu {
        width: 100%;
        margin-bottom: 0;
    }

    /* Show images inside accordion items on mobile */
    .plan-accordion-item.active .plan-slider-container,
    .plan-accordion-item.active .plan-image-container {
        display: flex !important;
        margin-top: 20px;
        width: 100%;
    }
    
    .plan-accordion-item .plan-slider-container,
    .plan-accordion-item .plan-image-container {
        flex-direction: column;
        align-items: center;
    }
}

/* s code start */


.neighbourhood-section {
    background: #f3f2f1;
    padding: 8rem 0;
    font-family: var(--font-display);
    color: #2b2d32;
    ;
    overflow: hidden;
}

.neighbourhood-section .container {
    width: min(96%, 1500px);
    margin: auto;
}

.neighbourhood-section .title {
    text-align: center;
    font-size: clamp(28px, 2.6vw, 54px);
    letter-spacing: clamp(3px, 0.35vw, 8px);
    font-weight: 300;
    font-family: "Bambino Light", sans-serif;
    line-height: 1.1;
    margin: 0 0 24px;
}

.neighbourhood-section .map-wrapper {
    text-align: center;
    position: relative;
    z-index: 5;
}

.neighbourhood-section .map-wrapper a {
    display: inline-block;
    text-decoration: none;
}

.neighbourhood-section .map-wrapper img {
    width: min(84%, 1480px);
    /* aspect-ratio: 16 / 5.2; */
    object-fit: cover;
    position: relative;
    z-index: 2;
    display: inline-block;
}

.neighbourhood-section .map-disclaimer {
    font-size: 11px;
    color: #8b8a88;
    text-align: right;
    margin-top: 6px;
    width: min(84%, 1480px);
    margin-left: auto;
    margin-right: auto;
    font-family: "Bambino Light", sans-serif;
}

.neighbourhood-section .layout {
    margin: -124px auto 0;
    width: min(84%, 1480px);
    min-height: 690px;
    position: relative;
    z-index: 1;
}

.neighbourhood-section .rings-wrapper {
    position: absolute;
    width: 690px;
    height: 690px;
    left: -156px;
    top: 0;
    z-index: 1;
}

.neighbourhood-section .rings {
    width: 100%;
    height: 100%;
    display: block;
}

.neighbourhood-section .rings circle {
    fill: none;
    stroke: #511535;
    stroke-width: 0.3;
    opacity: 1;
}

.neighbourhood-section .rings circle.active {
    stroke: #5e0f35;
    stroke-width: 2.2;
    opacity: 1;
}

.neighbourhood-section .categories {
    position: absolute;
    top: 112px;
    left: 56%;
    transform: translateX(-50%);
    width: 236px;
    text-align: left;
}

.neighbourhood-section .category {
    display: flex;
    align-items: center;
    gap: 11px;
    margin: 5px 0;
    font-size: 13px;
    letter-spacing: 0.45px;
    color: #7d7d7d;
    cursor: pointer;
    transition: 0.25s ease;
    justify-content: flex-start;
    font-family: "Baftiva Thin", sans-serif;
}

.neighbourhood-section .category img {
    width: 40px;
    height: 40px;
    padding: 10px;
    border-radius: 50%;
    border: 1px solid #e9decf;
    background: #f3f2f1;
    object-fit: contain;
    transition: 0.25s ease;
}

.neighbourhood-section .category.active {
    color: #5e0f35;
    font-weight: 500;
}

.neighbourhood-section .category.active img {
    /* background: none; */
    background: #5e0f35;
    /* filter: invert(1); */
    border-color: #5e0f35;
}

.neighbourhood-section .distance-stack {
    position: absolute;
    top: 330px;
    left: 53%;
    transform: translateX(-50%);
    width: 214px;
    text-align: center;
}

.neighbourhood-section .distance-item {
    margin: 26px 0;
    cursor: pointer;
}

.neighbourhood-section .distance-item strong {
    font-size: 44px;
    color: #7d7d7d;
    display: inline-block;
    line-height: 0.95;
    font-weight: 600;
    background: #f3f2ee;
    padding: 0 6px;
}

.neighbourhood-section .distance-item.active strong {
    color: #5e0f35;
}

.neighbourhood-section .distance-item strong span {
    font-size: 10px;
    margin-left: 2px;
    letter-spacing: 0.8px;
    position: relative;
    top: -8px;
    font-family: "Bambino Bold", sans-serif;
}

.neighbourhood-section .distance-item p {
    font-size: 14px;
    margin-top: 4px;
    color: #686665;
    background: #f3f2ee;
    letter-spacing: 0.4px;
    display: block;
    padding: 0 6px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    font-family: "Baftiva Thin", sans-serif;
}

.neighbourhood-section .image-wrapper {
    position: absolute;
    width: min(56%, 690px);
    right: 0;
    top: 126px;
    z-index: 4;
}

.neighbourhood-section .image-wrapper img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease;
}

.neighbourhood-section .image-wrapper p {
    margin-top: 16px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 30px;
    /* font-size: clamp(22px, 2.2vw, 40px); */
    font-weight: 300;
    line-height: 1;
    white-space: nowrap;
    display: inline-block;
    /* background: #f3f2f1; */
    padding: 0 10px 0 0;
    font-family: "Bambino Light", sans-serif;
}

/* 1920 target */
@media (min-width: 1700px) {
    .neighbourhood-section .layout {
        width: min(84%, 1500px);
        min-height: 730px;
        margin-top: -130px;
    }

    .neighbourhood-section .rings-wrapper {
        width: 740px;
        height: 740px;
        left: -270px;
        top: -20px;
    }

    .neighbourhood-section .categories {
        top: 190px;
        left: 60%;
    }

    .neighbourhood-section .distance-stack {
        top: 400px;
        left: 53%;
    }

    .neighbourhood-section .image-wrapper {
        width: min(70%, 890px);
        top: 166px;
    }

    .neighbourhood-section .distance-item {
        margin: 35px 0;
        cursor: pointer;
    }
}

@media (min-width: 1600px) {
    .neighbourhood-section .map-disclaimer {
        width: min(78%, 1480px);
    }

    .neighbourhood-section .map-wrapper img {
        width: min(78%, 1480px);
    }

    .neighbourhood-section .layout {
        width: min(78%, 1200px);
        min-height: 730px;
        margin-top: -130px;
    }

    .neighbourhood-section .rings-wrapper {
        width: 740px;
        height: 740px;
        left: -198px;
        top: -50px;
    }

    .neighbourhood-section .categories {
        top: 190px;
        left: 60%;
    }

    .neighbourhood-section .distance-stack {
        top: 408px;
        left: 53%;
    }

    .neighbourhood-section .image-wrapper {
        width: min(62%, 740px);
        top: 172px;
    }

    .neighbourhood-section .distance-item {
        margin: 35px 0;
        cursor: pointer;
    }
}

@media (min-width: 1520px) {
    .neighbourhood-section .map-disclaimer {
        width: min(78%, 1480px);
    }

    .neighbourhood-section .map-wrapper img {
        width: min(78%, 1480px);
    }

    .neighbourhood-section .layout {
        width: min(78%, 1200px);
        min-height: 730px;
        margin-top: -130px;
    }

    .neighbourhood-section .rings-wrapper {
        width: 740px;
        height: 740px;
        left: -190px;
        top: -76px;
    }

    .neighbourhood-section .categories {
        top: 210px;
        left: 60%;
    }

    .neighbourhood-section .distance-stack {
        top: 390px;
        left: 50%;
    }

    .neighbourhood-section .image-wrapper {
        width: min(61%, 740px);
        top: 172px;
    }

    .neighbourhood-section .distance-item {
        margin: 30px 0;
        cursor: pointer;
    }
}

/* 1366 target */
@media (min-width: 1200px) and (max-width: 1500px) {
    .neighbourhood-section .map-wrapper img {
        width: min(74%, 920px);
    }

    .neighbourhood-section .map-disclaimer {
        width: min(74%, 920px);
    }

    .neighbourhood-section .layout {
        width: min(84%, 1300px);
        min-height: 640px;
        margin-top: -108px;
    }

    .neighbourhood-section .rings-wrapper {
        width: 610px;
        height: 610px;
        left: -90px;
        top: -50px;
    }

    .neighbourhood-section .categories {
        top: 150px;
        left: 60%;
        width: 214px;
    }

    .neighbourhood-section .distance-stack {
        top: 330px;
        left: 50%;
        width: 194px;
    }

    .neighbourhood-section .distance-item {
        margin: 22px 0;
    }

    .neighbourhood-section .image-wrapper {
        width: min(56%, 580px);
        top: 155px;
    }

    .neighbourhood-section .image-wrapper p {
        font-size: 24px;
        white-space: nowrap;
    }

    .neighbourhood-section .category {
        font-size: 12px;
    }

    .neighbourhood-section .distance-item strong {
        font-size: 38px;
    }

    .neighbourhood-section .distance-item strong span {
        font-size: 9px;
    }

    .neighbourhood-section .distance-item p {
        font-size: 12px;
    }
}

@media (max-width: 1100px) {
    .neighbourhood-section .layout {
        margin-top: -10px;
        min-height: 880px;
        width: min(100%, 760px);
    }

    .neighbourhood-section .rings-wrapper {
        width: 600px;
        height: 600px;
        left: -110px;
        top: -4px;
    }

    .neighbourhood-section .image-wrapper {
        width: min(100%, 620px);
        right: 0;
        top: 366px;
    }

    .neighbourhood-section .category {
        font-size: 14px;
    }

    .neighbourhood-section .distance-item strong {
        font-size: 40px;
    }

    .neighbourhood-section .distance-item p {
        font-size: 13px;
    }
}

/* 768 target */
@media (min-width: 700px) and (max-width: 840px) {
    .neighbourhood-section .layout {
        min-height: 760px;
    }

    .neighbourhood-section .rings-wrapper {
        width: 560px;
        height: 560px;
        left: -120px;
        top: 6px;
    }

    .neighbourhood-section .categories {
        top: 96px;
        left: 58%;
        width: 220px;
    }

    .neighbourhood-section .distance-stack {
        top: 274px;
        left: 56.8%;
        width: 194px;
    }

    .neighbourhood-section .distance-item {
        margin: 21px 0;
    }

    .neighbourhood-section .image-wrapper {
        width: min(100%, 640px);
        top: 324px;
    }

    .neighbourhood-section .image-wrapper p {
        font-size: 22px;
        letter-spacing: 2px;
    }

    .neighbourhood-section .category {
        font-size: 13px;
    }

    .neighbourhood-section .distance-item strong {
        font-size: 34px;
    }

    .neighbourhood-section .distance-item strong span {
        font-size: 14px;
    }

    .neighbourhood-section .distance-item p {
        font-size: 12px;
    }
}

@media (max-width: 680px) {
    .neighbourhood-section .title {
        margin-bottom: 16px;
    }

    .neighbourhood-section .map-wrapper img {
        aspect-ratio: 5 / 3;
    }

    .neighbourhood-section .layout {
        min-height: 742px;
        margin-top: -4px;
    }

    .neighbourhood-section .rings-wrapper {
        width: 500px;
        height: 500px;
        left: -150px;
        top: 2px;
    }

    .neighbourhood-section .categories {
        left: 62%;
        top: 72px;
        width: 200px;
    }

    .neighbourhood-section .category {
        margin: 3px 0;
        font-size: 12px;
    }

    .neighbourhood-section .distance-stack {
        top: 222px;
        left: 60.7%;
        width: 168px;
    }

    .neighbourhood-section .distance-item {
        margin: 17px 0;
    }

    .neighbourhood-section .distance-item strong {
        font-size: 30px;
    }

    .neighbourhood-section .image-wrapper {
        width: 100%;
        top: 334px;
    }

    .neighbourhood-section .image-wrapper p {
        letter-spacing: 2px;
        font-size: 16px;
    }
}

/* 390 target */
@media (max-width: 420px) {
    .neighbourhood-section .title {
        font-size: 28px;
        letter-spacing: 2px;
    }

    .neighbourhood-section .rings-wrapper {
        width: 480px;
        height: 480px;
        left: -154px;
        top: 0;
    }

    .neighbourhood-section .categories {
        top: 68px;
        left: 64%;
        width: 178px;
    }

    .neighbourhood-section .category {
        gap: 10px;
        margin: 2px 0;
        font-size: 12px;
    }

    .neighbourhood-section .category img {
        padding: 8px;
    }

    .neighbourhood-section .distance-stack {
        top: 198px;
        left: 62.2%;
        width: 145px;
    }

    .neighbourhood-section .distance-item {
        margin: 17px 0;
    }

    .neighbourhood-section .distance-item strong {
        font-size: 26px;
    }

    .neighbourhood-section .distance-item p {
        font-size: 11px;
    }

    .neighbourhood-section .image-wrapper {
        top: 338px;
    }

    .neighbourhood-section .image-wrapper p {
        font-size: 18px;
        letter-spacing: 1.7px;
    }
}

/* 390 target */
@media (max-width: 420px) {
    .neighbourhood-section .title {
        font-size: 28px;
        letter-spacing: 2px;
    }

    .neighbourhood-section .rings-wrapper {
        width: 480px;
        height: 480px;
        left: -154px;
        top: 0;
    }

    .neighbourhood-section .categories {
        top: 68px;
        left: 64%;
        width: 178px;
    }

    .neighbourhood-section .category {
        gap: 10px;
        margin: 2px 0;
        font-size: 12px;
    }

    .neighbourhood-section .category img {
        padding: 8px;
    }

    .neighbourhood-section .distance-stack {
        top: 198px;
        left: 62.2%;
        width: 145px;
    }

    .neighbourhood-section .distance-item {
        margin: 17px 0;
    }

    .neighbourhood-section .distance-item strong {
        font-size: 26px;
    }

    .neighbourhood-section .distance-item p {
        font-size: 11px;
    }

    .neighbourhood-section .image-wrapper {
        top: 338px;
    }

    .neighbourhood-section .image-wrapper p {
        font-size: 18px;
        letter-spacing: 1.7px;
    }
}

@media (max-width: 680px) {
    .neighbourhood-section .layout {
        margin-top: 12px;
        min-height: auto;
        width: min(94%, 430px);
    }

    .neighbourhood-section .rings-wrapper {
        position: relative;
        width: 100%;
        height: auto;
        left: 0;
        top: 0;
    }

    .neighbourhood-section .rings {
        display: none;
    }

    .neighbourhood-section .categories {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        border: 1px solid #e3d7c9;
        overflow: hidden;
        text-align: center;
    }

    .neighbourhood-section .category {
        margin: 0;
        min-height: 62px;
        padding: 10px 6px;
        justify-content: center;
        border-right: 1px solid #e3d7c9;
        font-size: 9px;
        letter-spacing: 0.15px;
        line-height: 1.15;
        flex-direction: column;
        gap: 4px;
    }

    .neighbourhood-section .category:last-child {
        border-right: 0;
    }

    .neighbourhood-section .category img {
        display: block;
        width: 12px;
        height: 12px;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
    }

    .neighbourhood-section .category.active {
        background: #5e0f35;
        color: #fff;
    }

    .neighbourhood-section .distance-stack {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        margin-top: 12px;
        text-align: center;
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        border: 1px solid #e3d7c9;
        overflow: hidden;
    }

    .neighbourhood-section .distance-item {
        margin: 0;
        min-height: 62px;
        padding: 8px 6px;
        border-right: 1px solid #e3d7c9;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
    }

    .neighbourhood-section .distance-item:last-child {
        border-right: 0;
    }

    .neighbourhood-section .distance-item.active {
        background: #5e0f35;
    }

    .neighbourhood-section .distance-item.active strong,
    .neighbourhood-section .distance-item.active p,
    .neighbourhood-section .distance-item.active strong span {
        color: #fff;
    }

    .neighbourhood-section .distance-item strong {
        font-size: 18px;
        min-width: 0;
        padding: 0;
        background: transparent;
        line-height: 1;
        margin: 0;
    }

    .neighbourhood-section .distance-item strong span {
        font-size: 7px;
        top: -3px;
    }

    .neighbourhood-section .distance-item p {
        margin: 0;
        width: 100%;
        padding: 0;
        background: transparent;
        font-size: 9px;
        letter-spacing: 0.12px;
        line-height: 1.2;
    }

    .neighbourhood-section .image-wrapper {
        position: relative;
        width: 100%;
        right: auto;
        top: auto;
        margin-top: 16px;
    }
}

/* s code end */

/* ============================================
   AMENITIES PAGE
   ============================================ */
.amenities-page {
    background: #f3f2ee;
}

.amenities-main {
    background: #f3f2ee;
}

.amenities-hero {
    position: relative;
    width: 100%;
    height: 520px;
    overflow: hidden;
    background-image: url('../images/amenities-banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.amenities-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
}

.amenities-hero-text {
    position: absolute;
    left: 50%;
    top: 52%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.amenities-hero-topline {
    margin: 0 0 8px;
    font-size: 34px;
    letter-spacing: 4px;
    font-family: "Bambino Light", sans-serif;
}

.amenities-hero-text h1 {
    margin: 0;
    font-size: 52px;
    line-height: 1.05;
    letter-spacing: 3px;
    font-family: "Bambino Light", sans-serif;
    font-weight: 400;
}

.amenities-intro {
    padding: 78px 20px 64px;
    background: #fff;
}

.amenities-intro-inner {
    max-width: 950px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 78px;
    align-items: center;
}

.amenities-intro-image {
    width: 100%;
    max-width: 420px;
    display: block;
}

.amenities-intro-copy h2 {
    margin: 0 0 20px;
    font-size: 30px;
    line-height: 1;
    letter-spacing: 4px;
    color: #4f4a46;
    font-family: "Bambino Light", sans-serif;
    font-weight: 400;
}

.amenities-intro-copy h2.amenities-hero-topline {
    margin: 0 0 30px;
    font-size: 34px;
    letter-spacing: 4px;
    font-family: "Bambino Light", sans-serif;
    color: #4f4a46;
    text-transform: uppercase;
    line-height: 1.2;
}

.amenities-intro-copy p {
    margin: 0 0 18px;
    max-width: 600px;
    color: #6f6a66;
    font-size: 16px;
    line-height: 1.35;
    letter-spacing: 0.2px;
}

.amenities-intro-copy .enquiry-form {
    margin-top: 30px;
    gap: 15px;
}

.amenities-intro-copy .form-group {
    margin-bottom: 0;
}

/* ============================================
   CONTACT INFO SECTION
   ============================================ */
.contact-info-section {
    padding: 10px 140px 60px;
    background: #fff;
    text-align: center;
}

.contact-info-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-title {
    font-size: 48px;
    font-family: "Bambino Light", sans-serif;
    color: #8b7d6b;
    margin: 0 0 30px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
}

.contact-info-subtitle {
    font-size: 18px;
    color: #8b7d6b;
    margin: 0 0 50px;
    line-height: 1.6;
    letter-spacing: 0.5px;
}

.contact-addresses {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-address-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-address-item strong {
    font-size: 16px;
    font-family: "Bambino Bold", sans-serif;
    color: #8b7d6b;
    letter-spacing: 0.5px;
}

.contact-address-item p {
    font-size: 16px;
    font-family: "Bambino Light", sans-serif;
    color: #8b7d6b;
    margin: 0;
    line-height: 1.6;
    letter-spacing: 0.3px;
}

.contact-phone-box {
    border: 1px solid #8b7d6b;
    border-radius: 8px;
    padding: 10px 30px;
    display: inline-block;
    margin: 10px auto;
}

.contact-phone-box p {
    font-size: 16px;
    font-family: "Bambino Light", sans-serif;
    color: #8b7d6b;
    margin: 0;
    letter-spacing: 0.3px;
}

.contact-phone-box a {
    color: #8b7d6b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-phone-box a:hover {
    color: #4b0b2d;
    text-decoration: underline;
}

/* ============================================
   CONTACT FORM SECTION
   ============================================ */
.contact-form-section {
    padding: 80px 140px;
    background: #fff;
}

.contact-form-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.contact-form-group {
    display: flex;
    flex-direction: column;
}

.contact-form-group-full {
    grid-column: 1 / -1;
}

.contact-form-group label {
    font-size: 14px;
    color: #8b7d6b;
    margin-bottom: 8px;
    font-family: "Bambino Light", sans-serif;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.contact-form-group .required {
    color: #d32f2f;
}

.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea {
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid #d4c5a9;
    background: transparent;
    font-size: 16px;
    font-family: "Bambino Light", sans-serif;
    color: #333;
    transition: border-color 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    outline: none;
}

.contact-form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    padding-right: 20px;
}

.contact-form-group input:focus,
.contact-form-group select:focus,
.contact-form-group textarea:focus {
    border-bottom-color: #4b0b2d;
}

.contact-form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: "Bambino Light", sans-serif;
}

.contact-submit-btn {
    background: #4b0b2d;
    color: #fff;
    border: none;
    padding: 14px 60px;
    border-radius: 30px;
    font-size: 14px;
    font-family: "Bambino Bold", sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    width: auto;
    margin: 10px auto 0;
    display: block;
}

.contact-submit-btn:hover {
    background: #7b4b57;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(75, 11, 45, 0.3);
}

.contact-submit-btn:active {
    transform: translateY(0);
}

.amenities-gallery {
    background: #e8e7e2;
    padding: 20px 0 26px;
}

.amenities-gallery-inner {
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 18px;
    position: relative;
}

.amenities-track {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}

.amenities-slide {
    margin: 0;
    height: 360px;
    overflow: hidden;
    background: #ddd;
}

.amenities-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.amenities-slide.is-edge img {
    filter: grayscale(100%);
}

.amenities-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 42px;
    border: 0;
    background: #e8ddcb;
    color: #5e5348;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
}

.amenities-arrow-left {
    left: 8px;
}

.amenities-arrow-right {
    right: 8px;
}

.amenities-gallery-caption {
    margin: 12px 0 0;
    text-align: center;
    color: #57524f;
    font-size: 24px;
    letter-spacing: 0.8px;
}

.amenities-highlight {
    padding: 66px 20px 72px;
}

.contact-us-highlight {
    padding: 66px 160px 72px;
}

.amenities-highlight-inner {
    max-width: 1250px;
    margin: 0 auto;
    text-align: center;
}

.amenities-highlight-inner h3 {
    margin: 0 0 24px;
    font-family: "Bambino Light", sans-serif;
    font-size: 56px;
    line-height: 1.08;
    letter-spacing: 2px;
    color: #2f2a27;
    font-weight: 400;
}

.amenities-highlight-image {
    width: 100%;
    max-width: 1200px;
    height: 440px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

.google-map-iframe {
    width: 100%;
    max-width: 1200px;
    height: 440px;
    display: block;
    margin: 0 auto;
    border: 0;
    border-radius: 4px;
}

@media screen and (max-width: 1200px) {
    .amenities-hero {
        height: 460px;
    }

    .amenities-hero-topline {
        font-size: 28px;
    }

    .amenities-hero-text h1 {
        font-size: 44px;
    }

    .amenities-intro-inner {
        grid-template-columns: 340px 1fr;
        gap: 44px;
    }

    .amenities-intro-copy h2 {
        font-size: 25px;
    }

    .amenities-intro-copy p {
        font-size: 16px;
    }

    .amenities-slide {
        height: 310px;
    }

    .amenities-highlight-inner h3 {
        font-size: 44px;
    }
}

@media screen and (max-width: 900px) {
    .amenities-intro-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 24px;
    }

    .contact-form-section {
        padding: 60px 40px;
    }

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

    .amenities-intro-image {
        margin: 0 auto;
    }

    .amenities-intro-copy p {
        max-width: none;
    }

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

    .amenities-slide {
        height: 260px;
    }

    .amenities-highlight-inner h3 {
        font-size: 34px;
    }

    .amenities-highlight-image {
        height: 320px;
    }

    .google-map-iframe {
        height: 320px;
    }
}

@media screen and (max-width: 640px) {
    .amenities-hero {
        height: 350px;
    }

    .amenities-hero-topline {
        font-size: 18px;
        letter-spacing: 2px;
    }

    .amenities-hero-text h1 {
        font-size: 30px;
    }

    .amenities-intro {
        padding: 42px 16px;
    }

    .amenities-intro-copy h2 {
        font-size: 32px;
        letter-spacing: 2px;
    }

    .amenities-intro-copy p {
        font-size: 14px;
        line-height: 1.5;
    }

    .amenities-track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .amenities-slide {
        height: 210px;
    }

    .amenities-arrow {
        width: 24px;
        height: 36px;
    }

    .amenities-gallery-caption {
        font-size: 18px;
    }

    .amenities-highlight {
        padding: 44px 16px 52px;
    }

    .amenities-highlight-inner h3 {
        font-size: 24px;
        letter-spacing: 1px;
    }

    .amenities-highlight-image {
        height: 240px;
    }

    .google-map-iframe {
        height: 240px;
    }
}

/* ============================================
   GALLERY + LOCATION PAGES
   ============================================ */
.gallery-page,
.location-page {
    background: #f3f2ee;
}

.gallery-main,
.location-main {
    background: #f3f2ee;
}

.page-hero {
    position: relative;
    width: 100%;
    height: 520px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-hero-gallery {
    background-image: url('../images/gallery-banner.jpg');
}

.page-hero-location {
    background-image: url('../images/location-banner.jpg');
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.22);
}

.page-hero-text {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.page-hero-text p {
    margin: 0 0 4px;
    font-size: 36px;
    letter-spacing: 2px;
    font-family: "Bambino Light", sans-serif;
}

.page-hero-text h1 {
    margin: 0;
    font-size: 58px;
    line-height: 1;
    letter-spacing: 2px;
    font-family: "Bambino Light", sans-serif;
    font-weight: 400;
}

.page-intro {
    padding: 20px 20px;
}

.page-intro-inner {
    max-width: 950px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 380px 1fr;
    align-items: center;
    gap: 68px;
}

.page-intro-visual img {
    width: 100%;
    display: block;
}

.page-intro-copy h2 {
    margin: 0 0 18px;
    font-size: 30px;
    line-height: 1.02;
    letter-spacing: 4px;
    color: #5f5a56;
    font-family: "Bambino Light", sans-serif;
    font-weight: 400;
}

.page-intro-copy p {
    margin: 0 0 16px;
    color: #706a65;
    font-size: 16px;
    line-height: 1.33;
    max-width: 620px;
    letter-spacing: 0.2px;
}

.gallery-showcase {
    padding: 14px 20px 96px;
}

.gallery-tabs {
    max-width: 1200px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.gallery-tab {
    border: 0;
    background: transparent;
    color: #8c8682;
    font-size: 30px;
    letter-spacing: 2px;
    font-family: "Bambino Light", sans-serif;
    cursor: pointer;
    padding: 0;
}

.gallery-tab.active {
    color: #3f3b39;
}

.gallery-tab-divider {
    color: #a59e98;
    font-size: 30px;
    line-height: 1;
}

.gallery-slider-wrap {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px;
}

.gallery-image-frame {
    position: relative;
    overflow: hidden;
}

.gallery-image-frame a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.gallery-image-frame::after {
    content: attr(data-artistic-impression);
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 8px 16px;
    font-size: 6px;
    letter-spacing: 2px;
    font-family: "Bambino Light", sans-serif;
    z-index: 10;
    pointer-events: none;
    display: block;
    opacity: 0.8;
}

.gallery-image-frame img {
    width: 100%;
    display: block;
    height: 560px;
    object-fit: cover;
    transition: opacity 0.6s ease-in-out;
    opacity: 1;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: 0;
    background: #e8ddcb;
    color: #000;
    cursor: pointer;
    z-index: 2;
}

.gallery-arrow-left {
    left: 26px;
}

.gallery-arrow-right {
    right: 26px;
}

.location-neighbourhood {
    position: relative;
    padding-bottom: 130px;
    background: #fff;
    padding: 6rem 0;
}

.location-neighbourhood .distance-item strong {
    background: #fff;
}

.location-neighbourhood .distance-item p {
    background: #fff;
}

.location-corner-decor {
    position: absolute;
    right: 0;
    bottom: 46px;
    width: 170px;
    height: auto;
    opacity: 0.9;
}

@media screen and (max-width: 1200px) {
    .page-hero {
        height: 420px;
    }

    .page-hero-text p {
        font-size: 30px;
    }

    .page-hero-text h1 {
        font-size: 48px;
    }

    .page-intro-inner {
        grid-template-columns: 320px 1fr;
        gap: 42px;
    }

    .page-intro-copy h2 {
        font-size: 25px;
    }

    .page-intro-copy p {
        font-size: 16px;
    }

    .gallery-tab {
        font-size: 30px;
    }

    .gallery-image-frame img {
        height: 460px;
    }
}

@media screen and (max-width: 900px) {
    .page-intro-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 22px;
    }

    .page-intro-visual img {
        max-width: 320px;
        margin: 0 auto;
    }

    .page-intro-copy p {
        max-width: none;
    }

    .gallery-showcase {
        padding-bottom: 60px;
    }

    .gallery-tab {
        font-size: 24px;
    }

    .gallery-image-frame img {
        height: 360px;
    }

    .location-corner-decor {
        width: 110px;
        bottom: 28px;
    }
}

@media screen and (max-width: 640px) {
    .page-hero {
        height: 320px;
    }

    .page-hero-text p {
        font-size: 18px;
    }

    .page-hero-text h1 {
        font-size: 30px;
    }

    .page-intro {
        padding: 44px 16px 30px;
    }

    .page-intro-copy h2 {
        /* font-size: 32px; */
        letter-spacing: 2px;
    }

    .page-intro-copy p {
        font-size: 14px;
        line-height: 1.45;
    }

    .gallery-tabs {
        margin-bottom: 12px;
    }

    .gallery-tab {
        font-size: 18px;
        letter-spacing: 1px;
    }

    .gallery-tab-divider {
        font-size: 18px;
    }

    .gallery-slider-wrap {
        padding: 0 28px;
    }

    .gallery-image-frame img {
        height: 220px;
    }

    .gallery-arrow {
        width: 24px;
        height: 34px;
    }

    .gallery-arrow-left {
        left: 8px;
    }

    .gallery-arrow-right {
        right: 8px;
    }
}


.amenities-carousel {
    /* background: #efebe7; */
    padding: 80px 0 30px;
    overflow: hidden;
    text-align: center;
}


/* ============================================
   Contact Us PAGE
   ============================================ */

.contact-us-hero {
    position: relative;
    width: 100%;
    height: 520px;
    overflow: hidden;
    background-image: url('../images/contact-us-banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Reduced gap */
.carousel-track {
    display: flex;
    gap: 6px;
    /* reduce space here */
    transition: transform 0.6s cubic-bezier(.65, .05, .36, 1);
    align-items: center;
}

.slide {
    flex: 0 0 20%;
    box-sizing: border-box;
    overflow: hidden;
    /* important for zoom */
    position: relative;
    opacity: .5;
    transition: opacity 0.4s ease;
    padding: 0px;
}

/* Overlay for non-active slides */
.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

/* Remove overlay from active slide */
.slide.active::before {
    opacity: 0;
}

/* Default zoom smaller */
.slide a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.slide img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
    transform: scale(1);
    transition: transform 0.5s ease;
    position: relative;
    z-index: 0;
}

/* Active zoom */
.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide.active img {
    transform: scale(1.05);
    /* zoom but safe */
    height: 500px;
}

.nav {
    position: absolute;
    top: 50%;
    width: 44px;
    height: 44px;
    background: #e4ded8;
    color: #000;
    border: none;
    cursor: pointer;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transform: translateY(-50%);
}

.prev {
    left: 20%;
    transform: translate(-24px, -50%);
}

.next {
    left: 80%;
    transform: translate(-24px, -50%);
}

.carousel-caption {
    margin-top: 25px;
    font-size: 20px;
    letter-spacing: 1px;
    color: #6b625d;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

    .carousel-track {
        padding: 0 15%;
        gap: 10px;
    }

    .slide {
        flex: 0 0 100%;
        opacity: .4;
    }

    .slide img {
        height: 380px;
        transform: scale(.9);
    }

    .slide.active img {
        transform: scale(1.05);
    }

    .prev {
        left: 20px;
    }

    .next {
        right: 20px;
        left: auto;
    }

    .contact-us-wrp {
        max-width: 550px;
    }

    #contactPageForm .form-group{
        width: 100% !important;
    }

    .mobileMap{
        padding: 10px 20px 10px !important;
    }

}


@media screen and (max-width: 1800px) {
    .hero-banner {
        height: 88vh;
    }

    .hero-text-image {
        max-width: 450px;
    }

    .gallery-slider-wrap {
        max-width: 1170px;
    }
}

@media screen and (max-width: 1680px) {
    .hero-banner {
        height: 83vh;
        padding: 0 330px;
        background-position: 0px -110px;
    }

    .hero-text-image {
        max-width: 400px;
    }
    
    .neighbourhood-section{
        padding: 10rem 0;
    }

    .plan-left {
        padding: 70px;
    }

    .plan-accordion-item.active::after{
        right: -70px;
    }
}

@media screen and (max-width: 1440px) {
    .main-header {
        padding: 21px 140px;
    }

    .hero-banner {
        background-position: bottom;
        height: 86.1vh;
        padding: 0 270px;
    }

    .hero-text-image {
        max-width: 350px;
    }

    .info-bar {
        padding: 30px;
        max-width: 990px;
    }

    .section-title {
        font-size: 40px;
        letter-spacing: 2px;
    }

    .section-description {
        font-size: 16px;
        letter-spacing: 1px;
        max-width: 880px;
    }

    .plan-item {
        font-size: 36px;
        letter-spacing: 2px;
    }

    .plan-accordion-item.active .plan-accordion-content {
        padding: 5px 0;
    }

    .main-footer {
        padding: 60px 140px;
    }

    .footer-top-inner {
        padding: 20px;
    }
}

@media screen and (max-width: 1440px) {
    .main-header {
        padding: 17px 140px;
    }

    .nav-link {
        font-size: 12px;
    }

    .main-content {
        margin-top: 52px;
    }

    .amenities-hero-topline{
        font-size: 25px;
    }
    
    .amenities-hero-text h1{
        font-size: 40px;
    }

    .info-label {
        font-size: 12px;
    }
    
    .nav-link {
        padding: 21px 0;
    }
}

@media screen and (max-width: 1366px) {
    .nav-link {
        font-size: 12px;
    }

    .nav-link.active::after {
        height: 5px;
    }

    .hero-banner {
        padding: 0 250px;
        height: 86.2vh;
    }

    .info-bar {
        padding: 20px;
        max-width: 940px;
    }

    .info-label {
        font-size: 12px;
    }

    .info-value {
        font-size: 12px;
        margin-left: 25px;
    }

    .info-icon {
        width: 15px;
        height: 15px;
    }

    .section {
        padding: 80px 100px;
    }

    .section-title {
        font-size: 30px;
    }

    .section-description {
        font-size: 14px;
        line-height: 1.4;
        max-width: 740px;
    }

    .landmark-item {
        padding: 30px 20px;
        gap: 10px;
    }

    .landmark-icon {
        width: 40px;
        height: 40px;
    }
    
    .neighbourhood-section{
        padding: 3rem 0;
    }

    .plan-item {
        font-size: 30px;
        letter-spacing: 1px;
    }

    .plan-right img {
        max-width: 530px;
    }

    .plan-desc {
        line-height: 1.4;
    }

    .footer-address {
        max-width: 260px;
    }

    .footer-address p {
        font-size: 10px;
    }

    .footer-disclaimer p {
        font-size: 9px;
    }

    .privacy-policy {
        font-size: 10px;
    }

    .footer-bottom-right {
        flex-direction: column;
        align-items: flex-end;
        gap: 12px;
        width: 70%;
    }

    .footer-social-icons {
        gap: 10px;
    }

    .footer-social-icons .social-link {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    .enquire-now-btn {
        width: 100%;
        max-width: 130px;
        padding: 5px 15px;
        font-size: 12px;
        text-transform: uppercase;
    }

    .rera-info {
        font-size: 10px;
    }

    .scroll-to-top i {
        font-size: 16px;
    }

    .scroll-to-top {
        width: 35px;
        height: 35px;
    }
}

@media screen and (max-width: 1280px) {
    .hero-banner {
        height: 87.2vh;
    }

    .footer-address {
        max-width: 190px;
    }
    .amenities-page .main-content {
        margin-top: 55px;
    }
    .gallery-slider-wrap {
        max-width: 1080px;
    }
}

/* for connectivity */
@media screen and (max-width: 1024px) {
    .neighbourhood-section .layout {
        margin-top: 12px;
        min-height: auto;
        width: min(94%, 610px);
    }

    .neighbourhood-section .rings-wrapper {
        position: relative;
        width: 100%;
        height: auto;
        left: 0;
        top: 0;
    }

    .neighbourhood-section .rings {
        display: none;
    }

    .neighbourhood-section .categories {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        border: 1px solid #e3d7c9;
        overflow: hidden;
        text-align: center;
    }

    .neighbourhood-section .category {
        margin: 0;
        min-height: 62px;
        padding: 10px 6px;
        justify-content: center;
        border-right: 1px solid #e3d7c9;
        font-size: 9px;
        letter-spacing: 0.15px;
        line-height: 1.15;
        flex-direction: column;
        gap: 4px;
    }

    .neighbourhood-section .category:last-child {
        border-right: 0;
    }

    .neighbourhood-section .category img {
        display: block;
        width: 12px;
        height: 12px;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
    }

    .neighbourhood-section .category.active {
        background: #5e0f35;
        color: #fff;
    }

    .neighbourhood-section .distance-stack {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        margin-top: 12px;
        text-align: center;
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        border: 1px solid #e3d7c9;
        overflow: hidden;
    }

    .neighbourhood-section .distance-item {
        margin: 0;
        min-height: 62px;
        padding: 8px 6px;
        border-right: 1px solid #e3d7c9;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
    }

    .neighbourhood-section .distance-item:last-child {
        border-right: 0;
    }

    .neighbourhood-section .distance-item.active {
        background: #5e0f35;
    }

    .neighbourhood-section .distance-item.active strong,
    .neighbourhood-section .distance-item.active p,
    .neighbourhood-section .distance-item.active strong span {
        color: #fff;
    }

    .neighbourhood-section .distance-item strong {
        font-size: 18px;
        min-width: 0;
        padding: 0;
        background: transparent;
        line-height: 1;
        margin: 0;
        display: none;
    }

    .neighbourhood-section .distance-item strong span {
        font-size: 7px;
        top: -3px;
    }

    .neighbourhood-section .distance-item p {
        margin: 0;
        width: 100%;
        padding: 0;
        background: transparent;
        font-size: 9px;
        letter-spacing: 0.12px;
        line-height: 1.2;
    }

    .neighbourhood-section .image-wrapper {
        position: relative;
        width: 100%;
        right: auto;
        top: auto;
        margin-top: 16px;
    }
}

@media screen and (max-width: 1024px) {
    .hero-banner {
        padding: 0 150px;
        height: 88.5vh;
    }

    .info-bar {
        max-width: 760px;
    }

    .info-item {
        gap: 5px;
    }

    .info-label {
        font-size: 12px;
    }

    .info-value {
        font-size: 10px;
        margin-left: 22px;
    }

    .section {
        padding: 60px 130px;
    }

    .section-title {
        font-size: 30px;
    }

    .section-description {
        font-size: 12px;
        line-height: 1.2;
        max-width: 680px;
    }

    .landmark-item {
        flex: 1 1 calc(25% - 1px);
    }

    .plan-item {
        font-size: 20px;
        padding-bottom: 0px;
    }

    .plan-desc {
        font-size: 11px;
    }

    .neighbourhood-section .map-disclaimer {
        font-size: 8px;
    }

    .main-footer {
        padding: 30px 80px;
    }

    .footer-logos-section {
        width: 25%;
    }

    .neighbourhood-section .image-wrapper p {
        font-size: 24px;
    }
}

@media screen and (max-width: 1024px) {
    .main-header {
        padding: 19px 50px;
    }

    .landmark-item {
        flex: 1 1 calc(45% - 1px);
    }

    .amenities-hero-text{
        width: 100%;
    }

    .amenities-hero-topline{
        font-size: 15px;
        margin: 0 0 5px;
    }

    .amenities-hero-text h1 {
        font-size: 22px;
        letter-spacing: 2px;
    }

    .gallery-image-frame::after{
        padding: 6px 10px;
        font-size: 5px;
    }

    .rera-info img{
        max-width: 15%;
    }
}

@media screen and (max-width: 768px) {
    .hero-banner {
        padding: 0 50px;
        height: 92vh;
        background-image: url('../images/mobile-banner.jpg');
        background-position: center;
    }
    
    .hero-text-image {
        display: none;
    }

    .info-bar {
        max-width: 600px;
        padding: 15px;
        gap: 10px;
    }

    .info-label {
        font-size: 10px;
    }

    .info-value {
        font-size: 8px;
        margin-left: 25px;
    }

    .section {
        padding: 0px 40px;
        height: 90vh;
    }

    .section-title {
        font-size: 22px;
    }

    .section-2 {
        height: auto;
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .section-description {
        font-size: 12px;
        line-height: 1.1;
        max-width: 510px;
    }

    .plan-menu {
        max-width: 100%;
    }

    .plan-right img {
        max-width: 100%;
    }

    .plan-slider-nav {
        width: 35px;
        height: 35px;
    }

    .plan-slider-nav i {
        font-size: 16px;
    }

    .plan-slider-prev {
        left: -15px;
    }

    .plan-slider-next {
        right: -15px;
    }

    .plan-slider-slide {
        max-width: 100%;
    }

    .footer-top-inner {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .footer-logos-section {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .footer-disclaimer p {
        font-size: 8px;
    }

    .page-intro-copy h2{
        padding-top: 8px;
    }
    
    .footer-address{
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .main-header {
        padding: 15px 20px;
    }

    .header-container {
        gap: 10px;
    }

    .main-nav {
        align-items: center;
    }

    .download-brochure-btn {
        bottom: 300px;
        min-width: 35px;
        height: 35px;
    }

    .download-brochure-text {
        font-size: 7px;
        letter-spacing: 1px;
    }

    .hero-banner {
        padding: 0px 10px;
        height: 86.3vh;
        background-image: url('../images/mobile-banner.jpg');
        background-position: center;
    }

    .hero-content {
        display: none;
    }

    .hero-text-image {
        max-width: 150px;
    }

    .section-title {
        font-size: 19px;
        line-height: 1;
        letter-spacing: 0.4px;
    }

    .section1-content {
        top: -20% !important;
    }

    .main-footer {
        padding: 30px 20px;
    }

    .plan-left {
        padding: 20px 40px;
    }

    .footer-top-inner {
        padding: 20px;
    }

    .footer-bottom {
        text-align: center;
        align-items: center;
    }

    .scroll-to-top {
        bottom: 30px;
    }

    .info-bar {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .landmark-text {
        font-size: 10px;
    }

    .landmark-item {
        padding: 10px 20px;
        flex: 1 1 calc(25% - 1px);
    }

    .neighbourhood-section .title {
        font-size: 22px;
    }
    .neighbourhood-section .image-wrapper{
        text-align: center;
    }
    .neighbourhood-section .image-wrapper p{
        font-size: 11px;
    }
    .page-hero {
        height: 300px;
    }
    .page-intro-visual img {
        max-width: 200px;
    }
    .page-intro-copy h2 {
        font-size: 19px;
    }
    .page-intro-copy p {
        font-size: 12px;
        line-height: 1.25;
    }
    .neighbourhood-section {
        padding: 3rem 0;
    }
    .amenities-hero {
        height: 300px;
    }
    .amenities-intro-image{
        max-width: 250px;
    }
    .amenities-intro-copy h2 {
        font-size: 20px;
    }
    .amenities-intro-copy p {
        font-size: 12px;
        line-height: 1.25;
    }
    .carousel-track {
        padding: 0 14.2%;
        gap: 5px;
    }
    .next {
        right: -22px;
    }
    .footer-bottom-right{
        align-items: center;
    }
    .contact-info-section {
        padding: 50px 20px;
    }
    .contact-info-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    .contact-info-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    .contact-addresses {
        gap: 20px;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    .contact-address-item strong {
        font-size: 14px;
    }
    .contact-address-item p {
        font-size: 14px;
    }
    .contact-phone-box {
        padding: 15px 20px;
        margin: 0 10px;
    }
    .contact-phone-box p {
        font-size: 12px;
        line-height: 1.5;
    }
}

/* ===============================
   GSAP ANIMATION TARGETS
   =============================== */


/* GSAP Animation Targets - Initial States */
h2.section-title,
.section-title:not(h2),
.amenities-intro-copy h2,
.amenities-highlight .section-title,
.amenities-highlight h2,
.page-intro-copy h2,
.neighbourhood-section .section-title,
.neighbourhood-section .title,
.plan-item {
    will-change: transform, opacity;
    backface-visibility: hidden;
    /* Ensure content is visible by default on mobile */
    overflow: visible;
    visibility: visible;
}

/* Mobile-specific: Ensure headings are never clipped */
@media (max-width: 767px) {
    h2.section-title,
    .section-title:not(h2),
    .amenities-intro-copy h2,
    .amenities-highlight .section-title,
    .amenities-highlight h2,
    .page-intro-copy h2,
    .neighbourhood-section .section-title,
    .neighbourhood-section .title,
    .plan-item {
        overflow: visible !important;
        visibility: visible !important;
        clip-path: none !important;
        transform: translateZ(0); /* Force hardware acceleration */
    }
    
    /* Ensure parent containers don't clip */
    .amenities-intro,
    .amenities-intro-inner,
    .amenities-intro-copy,
    .amenities-highlight,
    .page-intro,
    .page-intro-copy,
    .section-1,
    .section-2,
    .section-3,
    .section-4,
    .neighbourhood-section {
        overflow: visible !important;
    }
}

.section-description,
.amenities-intro-copy p,
.page-intro-copy p,
.plan-desc {
    will-change: transform, opacity;
    backface-visibility: hidden;
}

.section-bg-image,
.amenities-intro-image,
.amenities-highlight-image,
.page-intro-visual img,
.neighbourhood-section .image-wrapper img,
#planImage,
.plan-image {
    will-change: transform, opacity;
    backface-visibility: hidden;
}

/* Banner animations - initial states */
.hero-banner,
.amenities-hero,
.page-hero {
    will-change: opacity;
    backface-visibility: hidden;
}

.hero-text-image {
    will-change: transform, opacity;
    backface-visibility: hidden;
}

/* Footer animations - initial states */
.footer-logo,
.footer-verona-logo {
    will-change: transform, opacity;
    backface-visibility: hidden;
}

.footer-top-inner,
.footer-bottom,
.footer-address p,
.footer-disclaimer p,
.footer-bottom p,
.privacy-link {
    will-change: transform, opacity;
    backface-visibility: hidden;
}

/* Info bar animations - initial states */
.info-item,
.info-icon,
.info-label,
.info-value {
    will-change: transform, opacity;
    backface-visibility: hidden;
}

/* Section 2 landmark animations - initial states */
.landmark-item,
.landmark-icon,
.landmark-text {
    will-change: transform, opacity;
    backface-visibility: hidden;
}

/* Neighbourhood section animations - initial states */
.neighbourhood-section .map-wrapper img,
.neighbourhood-section .map-disclaimer,
.neighbourhood-section .rings circle,
.neighbourhood-section .category,
.neighbourhood-section .distance-item {
    will-change: transform, opacity;
    backface-visibility: hidden;
}

/* Amenities carousel animations - initial states */
.amenities-carousel,
.amenities-carousel .carousel-track .slide,
.amenities-carousel .carousel-caption,
.amenities-carousel .nav {
    will-change: transform, opacity;
    backface-visibility: hidden;
}

/* amenities start */
/* .amenities-intro-copy p{
    
} */
/* amenities end */