@charset "utf-8";

@font-face {
    font-family: "general-sans";
    src: url("/zenandsato/fonts/GeneralSans-Regular.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
}

Custom Variables :root {
    --color-body-text: #000;
    --color-heading-text: #000;
    --color-subheading-text: #7d8267;
    --color-highlight: #3a3733;
    --color-background: #fbf7ef;
    --color-white: #fff;
    --color-black: #000;
    --color-gray: #dee0d9;
    --body-font: "general-sans";
}
body {
    font-family: "general-sans", sans-serif;
}
html {
    scroll-behavior: smooth;
}
/* 
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  font-size: 100%;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-white);
  color: var(--color-body-text);
  font-family: var(--body-font);
}

img {
  max-width: 100%;
  border: 0;
  vertical-align: middle;
}

h1 {
  color: var(--color-white);
  font-weight: 400;
}

h2 {
  color: var(--color-black);
  font-weight: 300;
}

@media (min-width: 1200px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1200px;
  }
}


section {
  padding-block: 3em;
}

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

#banner_section {
  background-color: #3A3733;
}

footer {
  padding-block: 2em;
  background-color: #090909;
  color: var(--color-white);
} */

/* Header */
.custom-header {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 20px 70px;
    z-index: 10;
    align-items: center;
    font-family: "general-sans";
}

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

.custom-menu-toggle {
    font-size: 30px;
    font-weight: lighter;
    cursor: pointer;
    color: white;
    display: block; /* Always visible */
    z-index: 20;
}

/* Navigation */
.custom-nav {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    position: absolute;
    top: 80px;
    right: 50px;
    padding: 35px;
    border-radius: 6px;
    display: none;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 350px;
}

.custom-nav.active {
    display: flex;
}

.custom-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-nav ul li {
    margin: 10px 0;
    margin-bottom: 0px;
}

.custom-nav ul li a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 300;
}

/* Hero Section */
.custom-hero {
    background: url("../images/banner-bg.webp") no-repeat center center/cover;
    height: 200vh;
    display: flex;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 0 20px;
    color: white;
    overflow: hidden;
    font-family: "general-sans";
}

.custom-hero-text {
    max-width: 90%;
    z-index: 2;
}

.custom-hero-text h1 {
    font-size: 74px;
    font-weight: 400;
    margin: 0;
    line-height: 1.2;
    padding-top: 30vh;
}

.custom-hero-text p {
    font-size: 24px;
    margin-top: 10px;
}
.custom-hero-text h1,
.custom-hero-text p {
    opacity: 0;
    transform: translateY(20px);
    animation-fill-mode: forwards;
}

/* h1 appears first */
.custom-hero-text h1 {
    animation: fadeSlideIn 1s ease-out 0.3s forwards;
}

/* p appears slightly after */
.custom-hero-text p {
    animation: fadeSlideIn 1s ease-out 0.8s forwards;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.custom-nav {
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

/* When menu is active (visible) */
.custom-nav.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.enquire-btn {
    position: fixed;
    right: 0;
    top: 40%;
    transform: rotate(-90deg) translateY(-50%);
    transform-origin: right center;
    background-color: black;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-family: "general-sans";
    z-index: 100;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 1px;
}
/* pop-up */
/* Overlay */
.popup-overlay {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1999;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Form container with animation */
.popup-form {
    background: #fdfaf2;
    padding: 50px;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: translateY(-20px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    font-family: "general-sans";
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

/* Title */
.popup-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: #222;
    text-align: center;
}

/* Show animation */
.popup-overlay.show {
    visibility: visible;
    opacity: 1;
}

.popup-overlay.show .popup-form {
    transform: translateY(0);
    opacity: 1;
}

/* Close button */
.close-btn {
    position: absolute;
    top: 14px;
    right: 18px;
    font-size: 24px;
    color: #333;
    cursor: pointer;
}

/* Form inputs */
.popup-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.popup-form input,
.popup-form textarea {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    background: transparent;
    border: none;
    border-bottom: 1px solid #ccc;
    outline: none;
    font-family: "general-sans";
}

.popup-form textarea {
    resize: none;
    height: 50px;
}

/* Submit button */
.popup-form button {
    background: #2c2824;
    color: white;
    padding: 14px 0;
    margin-top: 20px;
    border: none;
    border-radius: 9999px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

/* Hover on popup Send button */
.popup-form button:hover {
    background: #1a1816;
}

/* Hover on Enquire Now button */
.enquire-btn:hover {
    background-color: #333;
}

/* opulent */
/* Existing styles */
.opulent-section {
    font-family: "general-sans";
    color: #111;
}

.opulent-intro {
    display: flex;
    padding: 100px 125px;
    background-color: #fbf7ef;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.opulent-text-left h2 {
    font-family: "general-sans";
    font-size: 48px;
    font-weight: lighter;
    line-height: 120%;
}

.opulent-text-right {
    max-width: 450px;
    font-size: 16px;
    line-height: 135%;
    color: #464646;
}

.opulent-block {
    padding: 100px 125px;
    align-items: flex-start;
    background-color: #fff;
    border-radius: 20px;
    flex-wrap: wrap;
}

.opulent-image img {
    width: 100%;
    border-radius: 15px;
    object-fit: cover;
}

.opulent-description {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 45px 0px;
}

.opulent-description h3 {
    font-size: 48px;
    font-weight: 300;
    line-height: 110.00000000000001%;
    width: 50%;
}

.opulent-description p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    width: 50%;
    color: #464646;
}

/* Added styles for animation control */
.hidden {
    opacity: 0;
}

.animate-left {
    animation: slideInLeft 1s ease forwards;
}

.animate-right {
    animation: slideInRight 1s ease forwards;
}

.animate-up {
    animation: slideInUp 1s ease forwards;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
/* highlights section */
/* .highlights {
  position: relative;
  width: 100%;
  margin: 0 auto;
  font-family: 'general-sans', sans-serif;
  font-weight: 300;
  height: 120vh;
  overflow: visible;
  padding: 0 40px;
} */

/* Center Content */
.highlights-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    width: 450px;
}

.highlights-content h2 {
    font-size: 48px;
    color: #333;
    margin-bottom: 30px;
    font-weight: 300;
}

.highlights-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

/* Image Card Base */
.image-card {
    position: absolute;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    width: 260px;
    transition: none;
}

/* Image Settings */
.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Overlay always visible */
.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 20px;
    transform: none;
}

/* Overlay text styling */
.image-overlay h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 5px;
}

.image-overlay p {
    font-size: 13px;
    opacity: 0.9;
    line-height: 135%;
}

/* Positioning individual cards */
.image-card.large {
    width: 280px; /* 320px - 40px */
    height: 314.05px; /* 354.05px - 40px */
    top: 130px;
    left: 30px;
    z-index: -1111;
}

.image-card.small {
    height: 240px;
    width: 378.80340576171875px;
    bottom: -60px;
    left: 85px;
    z-index: 1;
}

.image-card.medium:nth-of-type(3) {
    height: 160.98721313476562px; /* 200.98721313476562px - 40px */
    width: 181px; /* 221px - 40px */
    top: 150px; /* Adjusted position as needed */
    right: 240px;
    z-index: -2;
}

.image-card.medium:nth-of-type(4) {
    height: 209px; /* 249px - 40px */
    width: 233px; /* 273px - 40px */
    top: 320px; /* Adjusted position as needed */
    right: 20px;
    z-index: -3;
}

.image-card.medium:nth-of-type(5) {
    height: 194.2268371582031px; /* 234.2268371582031px - 40px */
    width: 217px; /* 257px - 40px */
    bottom: -20px;
    right: 160px;
}
.highlights-mobile-section {
    display: none;
}
.highlights {
    position: relative;
    width: 100%;
    margin: 0 auto;
    font-family: "general-sans", sans-serif;
    font-weight: 300;
    height: 120vh; /* Height for scrolling */
    overflow: visible;
    padding: 0 40px;
}
/* mastter plan section */
/* INITIAL STATE */
.master-plan {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    padding: 150px 50px;
    margin-top: 100px;
    /* margin-top: 20vh; */
}

.master-plan.animate {
    opacity: 1;
    transform: translateY(0);
}

/* TITLE */
.master-plan h2 {
    font-size: 48px;
    font-weight: 300;
    color: #111;
    text-align: left;
}

/* CONTAINER */
.plan-container {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}

/* IMAGE WRAPPER */
.plan-image-wrapper {
    position: relative;
    width: 60%;
}

.plan-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.master-plan.animate .plan-image {
    opacity: 1;
    transform: scale(1);
}

/* MAP BUTTONS */
.map-button {
    position: absolute;
    transform: translate(-50%, -50%);
    background: #111;
    color: #fff;
    font-size: 13px;
    width: 27px;
    height: 27px;
    border-radius: 50%;
    text-align: center;
    line-height: 28px;
    opacity: 0.2;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 2;
}

.map-button:hover {
    transform: scale(1.2);
}

/* LEGEND GRID */
.legend-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
    width: auto;
    height: 60%;
    flex: 1;
}

/* LEGEND ITEM BASE */
.legend-item {
    display: flex;
    align-items: center;
    padding: 10px 10px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 300;
    color: #222;
    background-color: transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
    opacity: 0;
    transform: translateY(20px);
}

/* LEGEND ITEM STAGGER (triggered when parent is in view) */
.master-plan.animate .legend-item {
    animation: legendFade 0.6s ease forwards;
}

.master-plan.animate .legend-item:nth-child(1) {
    animation-delay: 0.1s;
}
.master-plan.animate .legend-item:nth-child(2) {
    animation-delay: 0.2s;
}
.master-plan.animate .legend-item:nth-child(3) {
    animation-delay: 0.3s;
}
.master-plan.animate .legend-item:nth-child(4) {
    animation-delay: 0.4s;
}
.master-plan.animate .legend-item:nth-child(5) {
    animation-delay: 0.5s;
}
.master-plan.animate .legend-item:nth-child(6) {
    animation-delay: 0.6s;
}
.master-plan.animate .legend-item:nth-child(7) {
    animation-delay: 0.7s;
}
.master-plan.animate .legend-item:nth-child(8) {
    animation-delay: 0.8s;
}
.master-plan.animate .legend-item:nth-child(9) {
    animation-delay: 0.9s;
}
.master-plan.animate .legend-item:nth-child(10) {
    animation-delay: 1s;
}
.master-plan.animate .legend-item:nth-child(11) {
    animation-delay: 1.1s;
}
.master-plan.animate .legend-item:nth-child(12) {
    animation-delay: 1.2s;
}
.master-plan.animate .legend-item:nth-child(13) {
    animation-delay: 1.3s;
}
.master-plan.animate .legend-item:nth-child(14) {
    animation-delay: 1.4s;
}
.master-plan.animate .legend-item:nth-child(15) {
    animation-delay: 1.5s;
}
.master-plan.animate .legend-item:nth-child(16) {
    animation-delay: 1.6s;
}
.master-plan.animate .legend-item:nth-child(17) {
    animation-delay: 1.7s;
}
.master-plan.animate .legend-item:nth-child(18) {
    animation-delay: 1.8s;
}

/* LEGEND ITEM SPAN */
.legend-item span {
    background: #111;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    text-align: center;
    line-height: 28px;
    font-size: 14px;
    margin-right: 10px;
    flex-shrink: 0;
}

/* LEGEND HOVER & ACTIVE */
.legend-item:hover,
.legend-item.active {
    background-color: #000000;
    color: #e2e2e2;
}
.legend-item.active span {
    background-color: transparent;
    color: #e2e2e2;
}

/* LEGEND FADE KEYFRAMES */
@keyframes legendFade {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* four plans */
#aesthetics {
    width: 100%;
}
#aesthetics img {
    width: 45%;
    display: inline-block;
}
.floor-plans {
    font-family: "general-sans", sans-serif;
    background-color: #fbf7ef;
    padding: 60px 60px;
    text-align: left;
    color: #111;
}

.floor-plans h2 {
    font-size: 40px;
    margin-bottom: 24px;
    font-weight: 300;
    font-size: 48px;
}
.dimension-image {
    margin: 30px 0px 35px 0px;
    width: 70%;
}
.tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tab {
    padding: 8px 20px;
    border: 1px solid #000000;
    background-color: transparent;
    border-radius: 999px;
    cursor: pointer;
    font-size: 16px;
    line-height: 125%;
    color: #363026;
    transition: all 0.3s ease;
}

.tab.active {
    background-color: #2e2a26;
    color: #fff;
    border-color: #2e2a26;
}

.plans {
    display: flex;
    flex-direction: column;
}

.plan-content {
    display: none;
    gap: 0px;
    align-items: flex-start;
    padding: 40px 0px;
}

.plan-content.active {
    display: flex;
    flex-wrap: wrap;
    gap: 100px;
    padding-bottom: 0px;
}

.plan-layout {
    flex: 1 1 500px;
    max-width: 600px;
    align-items: flex-start;
}

.plan-layout img {
    width: 100%;
    border-radius: 8px;
}

.plan-details {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.sub-plan-details {
    display: flex;
    justify-content: space-between;
}
.label {
    text-transform: uppercase;
    font-size: 12px;
    color: #888;
    /* margin-top: 16px; */
}

.plan-details h4 {
    font-size: 20px;
    /* margin: 4px 0; */
}

.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px 40px;
}

.feature span {
    font-size: 20px;
}

.feature strong {
    display: block;
    color: #555;
    font-weight: 600;
    margin-bottom: 6px;
}

.feature p {
    color: #666;
    font-size: 14px;
    margin-bottom: 25px;
}
/* Animate section on appearance */
.floor-plans.animate {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.7s ease-out;
}

.floor-plans {
    opacity: 0;
    transform: translateY(30px);
}

/* Smooth fade for tab switching */
.plan-content {
    display: none;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.plan-content.active {
    display: flex !important;
    opacity: 1;
    transform: translateY(0);
}

/* clubhouse section */
.clubhouse-section {
    padding: 80px 70px;
    font-family: "general-sans", sans-serif;
}

.clubhouse-container {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 100px;
}

.clubhouse-image img {
    width: 90%;
    border-radius: 20px;
    display: block;
}

.clubhouse-text {
    max-width: 500px;
}

.clubhouse-text h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 20px;
    color: #111;
}

.clubhouse-text h4 {
    font-weight: 600;
    margin-bottom: 16px;
    color: #000000;
}

.clubhouse-text p {
    color: #444;
    font-size: 17px;
    line-height: 1.6;
}
/* Initial state */
.clubhouse-image,
.clubhouse-text {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

/* When in view */
.clubhouse-section.animate .clubhouse-image {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.2s;
    transform: translateY(0);
}

.clubhouse-section.animate .clubhouse-text {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}
/* amenties */

.amenities-section {
    padding: 0px;
    margin: 100px 0px;
    background-color: #fbf7ef;
    font-family: "general-sans", sans-serif;
}

.amenities-wrapper {
    display: flex;
    gap: 60px;
    width: 100%;
    margin: 0 auto;
    padding: 0px 50px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.amenities-content {
    flex: 1;
    /* padding-left: 100px; */
}

.amenities-content h2 {
    font-size: 48px;
    font-weight: 300;
    line-height: 110.00000000000001%;
    margin-bottom: 16px;
}

.amenities-content h4 {
    font-size: 16px;
    margin-bottom: 20px;
}

.amenities-content p {
    font-size: 16px;
    line-height: 150%;
    margin-bottom: 20px;
    max-width: 500px;
}

.amenities-images {
    display: flex;
    gap: 16px;
    flex: 1;
    min-width: 300px;
    height: 750px;
    overflow: hidden;
}

.column {
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 100%;
}

.marquee-content {
    display: flex;
    flex-direction: column;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.marquee-content img {
    width: 100%;
    margin-bottom: 16px;
    border-radius: 16px;
    object-fit: cover;
    height: 444px;
}

/* Scroll up */
.marquee-up .marquee-content {
    animation: scroll-up 40s linear infinite;
}

@keyframes scroll-up {
    0% {
        transform: translateY(0%);
    }
    100% {
        transform: translateY(-50%);
    }
}

/* Scroll down */
.marquee-down .marquee-content {
    animation: scroll-down 40s linear infinite;
}

@keyframes scroll-down {
    0% {
        transform: translateY(-50%);
    }
    100% {
        transform: translateY(0%);
    }
}
/* specs section */
.specs-section {
    font-family: "general-sans", sans-serif;
    padding: 50px 70px;
    max-width: 100%;
    height: 80vh;
    margin: auto;
    margin-bottom: 70px;
}

.specs-heading {
    font-size: 48px;
    font-weight: 300;
    line-height: 110.00000000000001%;
    margin-bottom: 50px;
}

.specs-tabs {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 40px;
    font-size: 16px;
    font-weight: 500;
    line-height: 135%;
    width: 58%;
    cursor: pointer;
}

.specs-tab {
    border-bottom: 2px solid transparent;
    padding-bottom: 4px;
    transition: border-color 0.3s;
}

.specs-tab.active {
    border-color: #000;
}

.specs-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    height: 85%;
}

.specs-image {
    flex: 1 1 30%;
    background-image: url("../images/stone-texture.webp");
    border-radius: 10px;
    height: 400px;
}

.specs-image img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.specs-content {
    flex: 2 1 500px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 40px;
    font-size: 14px;
    color: #000000;
    font-weight: 300;
    line-height: 135%;
}

.specs-block {
    line-height: 1.6;
}

.specs-block strong {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}
.specs-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}
/* Container transition for scroll */
.specs-section {
    opacity: 0;
    transform: scale(0.98) translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: opacity, transform;
}

.specs-section.animate {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* Dynamic height animation */
.specs-content-wrapper {
    transition: height 0.4s ease;
    overflow: hidden;
}

/* Animate spec content container */
.specs-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 40px;
    font-size: 14px;
    line-height: 135%;
    opacity: 0;
    transform: translateY(30px);
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.specs-content.animate-in {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Staggered blocks */
.specs-block {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlideUp 0.5s ease forwards;
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.specs-content.single-column {
    grid-template-columns: 1fr !important;
}
/* suctainability */
.sustainability-section {
    color: #1a1a1a;
    background: #fff;
    padding: 60px 20px;
    margin-top: 200px;
}

.sustainability-section .container {
    max-width: 100%;
    margin: auto;
}

.sustainability-section .container .text-section {
    padding-left: 30px;
}

.sustainability-section .title {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 30px;
}

.sustainability-section .subtitle {
    font-size: 1.4rem;
    font-weight: bold;
    color: #6b775e;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.sustainability-section .description {
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    color: #464646;
    max-width: 700px;
    margin-bottom: 20px;
}

.sustainability-section .cards {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 70px;
    flex-wrap: wrap;
}

.sustainability-section .card {
    border: none;
    background: #fbf7ef;
    border-radius: 20px;
    padding: 50px 50px;
    width: calc(25% - 15px);
    display: flex;
    flex-direction: column;
    gap: 20px;

    /* Fade initial state */
    opacity: 0;
    transform: translateY(40px);
}

.sustainability-section .card img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.sustainability-section .card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-bottom: -5px;
}

.sustainability-section .card p {
    font-weight: 400;
    font-size: 16px;
    color: #000000;
}

.sustainability-section .subtitle-image {
    height: 28px;
    margin-bottom: 20px;
    display: block;
}

/* Fade-up animation keyframes */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Initial state for text section */
.sustainability-section .text-section {
    opacity: 0;
    transform: translateY(40px);
}

/* Animate when class is added via JS */
.sustainability-section.animate .text-section {
    animation: fadeUp 2s ease forwards;
}

.sustainability-section.animate .card {
    animation: cardFadeUp 0.8s ease forwards;
}

.sustainability-section.animate .card:nth-child(1) {
    animation-delay: 0.4s;
}
.sustainability-section.animate .card:nth-child(2) {
    animation-delay: 0.5s;
}
.sustainability-section.animate .card:nth-child(3) {
    animation-delay: 0.6s;
}
.sustainability-section.animate .card:nth-child(4) {
    animation-delay: 0.7s;
}
/* parallax */
.parallax-container {
    margin-top: 70px;
    position: relative;
    height: 75vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-image {
    background-image: url("../images/parallex.webp"); /* update path */
    background-size: cover;
    background-position: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 120%;
    width: 100%;
    z-index: -1;
    will-change: transform;
    transition: transform 0.1s ease-out;
}

.parallax-content {
    color: white;
    z-index: 1;
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 16px;
    max-width: 90%;
    text-align: center;
}
/* location section */
.location-section {
    padding: 0;
    background-color: #fff;
}
.mobile-visible-map {
    display: none;
}
.location-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 700px;
    padding: 100px 30px;
    box-sizing: border-box;
    gap: 60px;
    flex-wrap: wrap;
}

/* Initial hidden states */
.location-text,
.location-map {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease, transform 1s ease;
}

.location-section.animate .location-text {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.location-section.animate .location-map {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

/* Text styles */
.location-text {
    flex: 1 1 40%;
    max-width: 600px;
}

.location-text h2 {
    font-size: 48px;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #000;
}

.location-text .address {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 8px;
    color: #000;
}

.location-text .subtext {
    font-size: 15px;
    color: #666;
    margin-bottom: 40px;
}

.within-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #000;
}

.location-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(200px, 1fr));
    gap: 30px 60px;
}

.point {
    display: flex;
    flex-direction: column;
    font-size: 16px;
    font-weight: 500;
}

.point .number {
    font-size: 13px;
    color: #999;
    margin-bottom: 4px;
}

.point .label {
    border-top: 1px solid #ccc;
    padding-top: 8px;
    color: #000;
    font-size: 14px;
    font-weight: 500;
}

/* Map styles */
.location-map {
    flex: 1 1 50%;
    justify-content: space-around;
    /* max-width: 700px; */
    text-align: center;
}

.location-map img {
    width: 90%;
    max-width: 700px;
    margin-top: 60px;
    height: auto;
    display: block;
}
/* nearby section */

.location-category-section {
    max-width: 90%;
    margin: 50px auto;
    padding: 40px 20px;
    background: #f9f5ed;
    border-radius: 24px;
}

.location-category-tabs {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    text-align: center;
    margin-bottom: 20px;
}

.location-tab {
    flex: 1;
    color: #b3b3b3;
    cursor: pointer;
    transition: color 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 12px;
    gap: 6px;
}

.location-tab img {
    height: 65px;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.location-tab.active {
    color: #000;
}

.location-tab.active img {
    opacity: 1;
}

.location-progress-bar {
    height: 12px;
    width: 92%;
    margin: auto;
    background-color: #ddd;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 40px;
}

.location-progress {
    height: 100%;
    width: 0%;
    background-color: #4e4e4e;
    transition: width 0.4s ease;
}

.location-tab-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 60px;
    text-align: center;
    justify-content: flex-start;
}

.location-item {
    width: calc(33.333% - 40px);
    font-size: 14px;
    line-height: 1.6;
}

.location-item .time {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 4px;
}

.location-disclaimer {
    text-align: center;
    font-size: 12px;
    color: #555;
    margin-top: 40px;
}
/* gallery section */
.custom-gallery-carousel {
    text-align: center;
    padding: 60px 0;
    background: #fff;
    overflow: hidden;
}

.custom-gallery-title {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 40px;
}

.custom-carousel-wrapper {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.custom-carousel-track {
    display: flex;
    transition: transform 0.6s ease;
    will-change: transform;
}

.custom-carousel-slide {
    flex: 0 0 800px;
    margin: 0 10px;
    /* opacity: 0.3; */
    transform: scale(0.5);
    transition: transform 0.5s ease, opacity 0.5s ease;
    border-radius: 12px;
    overflow: hidden;
}

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

/* .custom-carousel-slide img {
  width: 100%;
  display: block;
  border-radius: 12px;
} */
.custom-carousel-slide img {
    width: 100%;
    height: 400px; /* Fixed height for consistency */
    object-fit: cover; /* Ensures image fills the box without distortion */
    display: block;
    border-radius: 12px;
}

.custom-carousel-buttons {
    display: flex;
    justify-content: center;
    gap: 90%;
    margin-top: 0px;
}

.custom-carousel-btn {
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    padding: 10px 20px;
}

/* virtual tour */
.virtual-tour-section {
    background-color: #fef8f0;
    padding: 80px 20px;
    text-align: center;
}

.virtual-tour-header {
    max-width: 1160px;
    margin: 0 auto 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    text-align: left;
}

.virtual-tour-title {
    flex: 1 1 300px;
    font-size: 48px;
    font-weight: 300;
    line-height: 110.00000000000001%;
    margin: 0;
}

.virtual-tour-text {
    flex: 1 1 500px;
    font-size: 16px;
    font-weight: 300;
    line-height: 135%;
    color: #333;
}

.virtual-tour-video {
    max-width: 1160px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 24px;
}

.virtual-tour-video video {
    width: 100%;
    height: 500px;
    border-radius: 24px;
    display: block;
    object-fit: cover;
}
/* Walkthrough Section */
.walkthrough-title {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 30px;
    text-align: left;
    margin-left: 40px;
    color: #000;
}
.walkthrough-video-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 48px;
  margin-bottom: -200px;
}

.video-box {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 aspect ratio */
  /* border-radius: 20px; */
  overflow: hidden;
}

.walkthrough-thumbnail,
.video-box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 550px;
  display: block;
  object-fit: cover;
  /* border-radius: 20px; */
}

.walkthrough-play-btn {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 80px;
  height: 80px;
  z-index: 2;
}

.play-icon {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 768px) {
    
.walkthrough-video-wrapper {
  margin-bottom: 0px;
}
.walkthrough-thumbnail,
.video-box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}
  .walkthrough-title {
    font-size: 32px;
    text-align: left;
    padding-left: 15px;
    padding-top: 40px;
  }

  .walkthrough-play-btn {
    width: 60px;
    top: 50%;
    height: 60px;
  }

  .video-box {
    padding-top: 56.25%;
    /* border-radius: 15px; */
  }
}

/* contact section */
.contact-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    align-items: center;
    padding: 150px 140px;
    background-color: #fbf7ef;
    font-family: "general-sans", sans-serif;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-left {
    flex: 1 1 300px;
    max-width: 400px;
}

.contact-left h2 {
    font-size: 48px;
    line-height: 110.00000000000001%;
    font-weight: 300;
    color: #000000;
    margin-bottom: 25px;
}

.contact-left p {
    font-size: 16px;
    font-weight: 100;
    color: #464646;
    line-height: 135%;
}

.contact-form {
    flex: 1 1 400px;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    border: none;
    border-bottom: 1px solid #ccc;
    padding: 10px 5px;
    font-size: 16px;
    font-weight: 400;
    line-height: 135%;
    background: transparent;
    outline: none;
    font-family: inherit;
    color: #464646;
}

.contact-form textarea {
    resize: none;
    height: 48px;
}

.contact-form button {
    background-color: #2e2a26;
    color: #fff;
    border: none;
    padding: 14px;
    font-size: 14px;
    border-radius: 999px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.contact-form button:hover {
    background-color: #1c1a18;
}
/* Initial state */
.contact-section {
    opacity: 0;
    transform: scale(0.95) skewY(3deg);
    filter: blur(6px);
    transition: opacity 1.2s ease-out,
        transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        filter 1.2s ease-out;
    transform-origin: center;
    will-change: transform, opacity, filter;
}

/* Animate into view */
.contact-section.reveal {
    opacity: 1;
    transform: scale(1) skewY(0deg);
    filter: blur(0);
}

/* Staggered animation for children */
.contact-left,
.contact-form {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.contact-section.reveal .contact-left {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.3s;
}

.contact-section.reveal .contact-form {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.5s;
}
/* footer section */
.footer {
    background: #090909;
    color: #ffffff;
    padding: 60px 60px 30px 60px !important;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-info {
    display: flex;
    flex-direction: row;
    gap: 80px;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 300;
    line-height: 150%;
    margin-bottom: 12px;
    color: #ffffff;
}

.social-icons {
    display: flex;
    gap: 30px;
    justify-content: start;
}

.footer-logo-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    width: auto;
}

.footer-logo {
    width: 350px;
    height: auto;
}

.brochure-button {
    /* display: none; */
    width: 350px;
    background: #2d281d;
    color: #fff;
    padding: 10px 24px;
    border: none;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
}

.footer-divider {
    height: 1px;
    margin: 0px 0 30px 0px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    font-size: 12px;
    color: #a0a0a0;
    position: relative;
}

.footer-bottom p {
    font-size: 14px;
    font-weight: 300;
    color: #868686;
}

.footer-bottom .address h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}
.address {
    width: 20%;
}
.footer-bottom .disclaimer {
    font-size: 10px;
    font-style: italic;
    font-weight: 200;
    line-height: 135%;
    color: #868686;
    width: 280px;
    text-align: left;
}
/* slick slider */
/* .gallery-section {
  padding: 100px 0;
  text-align: center;
  background-color: #fff;
}

.gallery-section h2 {
  font-size: 40px;
  font-weight: 300;
  margin-bottom: 50px;
  font-family: 'Helvetica Neue', sans-serif;
}

.gallery-slider {
  position: relative;
  width: 90%;
  margin: 0 auto;
}

.gallery-slider .slick-slide {
  opacity: 0.4;
  transform: scale(0.9);
  transition: all 0.4s ease;
  padding: 0 15px;
}

.gallery-slider .slick-center {
  opacity: 1;
  transform: scale(1);
}

.gallery-slider img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  transition: all 0.4s ease;
}

.gallery-slider .slick-center img {
  height: 500px;
}

.slick-prev,
.slick-next {
  position: absolute;
  bottom: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: none;
  border: none;
  font-size: 30px;
  color: #000;
  cursor: pointer;
}

.slick-prev {
  left: -50px;
}

.slick-next {
  right: -50px;
} */

@media screen and (max-width: 1250px) {
    .image-card.large {
        width: 230px; /* 270px - 40px */
        height: 264.05px; /* 304.05px - 40px */
        top: 160px;
        left: 20px;
    }

    .image-card.small {
        width: 328.803px; /* 368.803px - 40px */
        height: 190px; /* 230px - 40px */
        bottom: -70px;
        left: 40px;
    }

    .image-card.medium:nth-of-type(3) {
        width: 151px;
        height: 130.987px;
        top: 180px;
        right: 200px;
    }

    .image-card.medium:nth-of-type(4) {
        width: 183px;
        height: 159px;
        top: 350px;
        right: 40px;
    }

    .image-card.medium:nth-of-type(5) {
        width: 167px;
        height: 144.227px;
        bottom: -20px;
        right: 130px;
    }
    .highlights-content h2 {
        font-size: 38px;
        color: #333;
        margin-bottom: 30px;
        font-weight: 300;
    }

    .highlights-content p {
        font-size: 12px;
        line-height: 1.8;
        color: #666;
        margin-bottom: 0px;
    }
    .highlights-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        z-index: 2;
        width: 350px;
    }
    .image-overlay h3 {
        font-size: 15px;
    }
    .image-overlay p {
        font-size: 12px;
    }
}
/* Responsive Design */
@media (max-width: 1024px) {
    .custom-nav {
        top: 70px;
        right: 50px;
        width: 300px;
    }

    .custom-hero {
        height: 180vh;
        align-items: flex-start;
        padding-top: 120px;
    }
    .background-video {
        position: absolute;
        top: 30%;
        left: 50%;
        min-width: 101%;
        min-height: 101%;
        width: 101%;
        height: fit-content;
        z-index: -1; /* Send the video behind the content */
        transform: translate(-50%, -50%);
    }
    .custom-hero-text h1 {
        margin-bottom: 10px;
        padding-top: 3vh;
        margin-top: -7vh;
        font-size: 50px;
    }
    .custom-hero-text p {
        font-size: 18px;
    }
    .enquire-btn {
        padding: 8px 16px;
        font-size: 14px;
    }
    /* master plan */
    .legend-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .master-plan h2 {
        font-size: 36px;
        margin-bottom: 30px;
    }
    .plan-image-wrapper {
        width: 100%;
    }
    /* four plans */
    #aesthetics {
        width: 100%;
        gap: 0px;
    }
    #aesthetics {
        flex-direction: column;
    }
    .plan-content {
        margin-top: 20px;
    }
    .plan-content.active {
        flex-direction: column;
        gap: 70px;
    }
    .dimension-image {
        width: 93%;
        /* margin-top: 40px; */
    }

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

    .tabs {
        justify-content: start;
    }
    /* slick slider */
    /* .gallery-slider .slick-slide {
    transform: scale(1);
    opacity: 1;
  }

  .gallery-slider img {
    height: auto;
  }

  .gallery-slider .slick-center img {
    height: auto;
  }

  .slick-prev, .slick-next {
    font-size: 24px;
    left: -10px;
    right: -10px;
  } */
    /* highlight section */
    .image-card.large {
        width: 200px; /* 320 - 80 */
        height: 234.05px; /* 354.05 - 80 */
    }

    .image-card.small {
        width: 288.803px; /* 418.803 - 80 */
        height: 160px; /* 280 - 80 */
    }

    .highlights-content h2 {
        font-size: 28px;
        color: #333;
        margin-bottom: 30px;
        font-weight: 300;
    }

    .highlights-content p {
        font-size: 10px;
        line-height: 1.8;
        color: #666;
        margin-bottom: 0px;
    }
    .highlights-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        z-index: 2;
        width: 250px;
    }

    .image-card.medium:nth-of-type(3) {
        width: 151px;
        height: 130.987px;
        top: 180px;
        right: 160px;
    }

    .image-card.medium:nth-of-type(4) {
        width: 183px;
        height: 159px;
        top: 350px;
        right: 40px;
    }

    .image-card.medium:nth-of-type(5) {
        width: 167px;
        height: 144.227px;
        bottom: -20px;
        right: 130px;
    }
    /* Overlay text styling */
    .image-overlay h3 {
        font-size: 15px;
        font-weight: 500;
        margin-bottom: 5px;
    }

    .image-overlay p {
        font-size: 10px;
        opacity: 0.9;
        line-height: 135%;
    }
    /* footer */
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center; /* Center text for better readability */
    }

    .footer-logo-block {
        align-items: center; /* Center the logo and button */
    }

    .brochure-button {
        width: 100%; /* Make button full width */
        padding: 12px 0; /* Adjust padding */
    }

    .footer-bottom {
        flex-direction: column; /* Stack the addresses vertically */
        align-items: center; /* Center the addresses */
        text-align: center; /* Center text for better readability */
    }

    .footer-divider {
        margin: 20px 0; /* Adjust margin */
    }
}

@media (max-width: 768px) {
    .custom-hero {
        height: 100vh;
        align-items: flex-start;
        padding-top: 120px;
    }
    .custom-hero-text h1 {
        font-size: 1.8em;
        padding-top: 0vh;
    }

    .custom-hero-text p {
        margin-top: -3px;
        font-size: 0.7em;
    }

    .custom-nav {
        right: 20px;
        width: 280px;
    }
    .custom-header {
        padding: 20px 25px;
    }
    .custom-logo img {
        height: 30px;
    }
    .enquire-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
    /* opulent */
    .opulent-intro,
    .opulent-block {
        flex-direction: column;
        padding: 20px;
    }
    .opulent-intro {
        padding: 100px 20px !important;
    }
    .opulent-text-left h2 {
        font-size: 30px;
        text-align: center;
        margin-bottom: -15px;
    }
    .opulent-text-right {
        font-size: 12px;
    }
    .opulent-text-right,
    .opulent-description {
        text-align: center;
        max-width: 100%;
    }

    .opulent-image img {
        width: 100%;
        height: 300px;
    }

    .opulent-description h3 {
        font-size: 32px;
        text-align: left;
        margin-bottom: 20px;
        width: 100%;
    }

    .opulent-description p {
        font-size: 14px;
        line-height: 170%;
        width: 100%;
        text-align: justify;
    }
    .opulent-description {
        flex-direction: column;
        width: 100%;
    }
    /* highlight */
    .highlights {
        display: none;
    }
    .highlights-mobile-section {
        display: block;
        padding: 40px 20px;
        background: #fff;
    }

    .highlight-mobile-wrapper {
        max-width: 460px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    .top-row {
        display: flex;
        justify-content: space-between;
        gap: 20px;
    }

    .highlight-card {
        position: relative;
        width: 130px;
        height: 130px;
        border-radius: 16px;
        overflow: hidden;
        flex-shrink: 0;
    }

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

    .text-overlay {
        position: absolute;
        bottom: 12px;
        left: 12px;
        color: #fff;
        font-weight: 700;
        font-size: 16px;
        line-height: 1.2;
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    }

    .text-overlay span {
        display: block;
        font-weight: 400;
        font-size: 14px;
        line-height: 150%;
    }

    .highlight-heading {
        text-align: center;
        padding: 0 10px;
    }

    .highlight-heading h2 {
        margin-top: 70px;
        font-size: 32px;
        font-weight: 300;
        margin-bottom: 16px;
    }

    .highlight-heading p {
        font-size: 12px;
        line-height: 1.6;
        color: #444;
        margin: 0 0 10px;
    }

    .highlight-heading .sub {
        margin-top: 10px;
        font-weight: 500;
    }

    .bottom-highlights {
        display: flex;
        flex-direction: column;
        gap: 24px;
        align-items: flex-end;
    }
    .Amenities {
        height: 109px;
        width: 118px;
    }
    .Land-Area {
        top: 40px;
        width: 163px;
        height: 109px;
    }

    .large-apartments {
        align-self: flex-start;
        width: 220px;
        height: 203px;
        max-height: 240px;
        bottom: 50px;
    }

    .large-apartments .text-overlay {
        bottom: 16px;
        left: 16px;
        font-size: 18px;
    }

    .large-apartments .text-overlay span {
        font-size: 16px;
    }

    .large-balcony {
        width: 170.48587036132812px;
        height: 164px;
        z-index: 2;
        top: 20px;
    }

    .open-space {
        width: 144px;
        height: 133px;
        bottom: 60px;
        z-index: 2;
    }

    /* NEW: dark overlay layer */
    .highlight-card::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 60%; /* Cover bottom 50% */
        background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.6),
            rgba(255, 5, 5, 0)
        );
        z-index: 1;
    }
    /* Ensure text is above the overlay */
    .text-overlay {
        position: absolute;
        bottom: 12px;
        left: 12px;
        color: #fff;
        font-weight: 700;
        font-size: 16px;
        line-height: 1.2;
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
        z-index: 2;
    }
    /* Animation keyframes */
    @keyframes fadeInUp {
        0% {
            opacity: 0;
            transform: translateY(40px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Initial state */
    .highlight-card {
        opacity: 0;
        transform: translateY(40px);
        transition: all 0.6s ease-out;
    }

    /* Triggered animation */
    .highlight-card.animate {
        animation: fadeInUp 0.8s forwards;
    }
    /* master plan */
    .master-plan {
        margin-top: -50px;
    }
    .legend-grid {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
    }
    .map-button {
        position: absolute;
        transform: translate(-50%, -50%);
        background: #111;
        color: #fff;
        font-size: 10px;
        width: 15px;
        height: 15px;
        border-radius: 50%;
        text-align: center;
        line-height: 15px;
        opacity: 0.2;
        transition: opacity 0.3s ease, transform 0.3s ease;
        z-index: 2;
    }

    .legend-item {
        font-size: 8px;
        padding: 4px 15px;
    }

    .plan-container {
        gap: 25px;
    }
    .legend-item span {
        width: 24px;
        height: 24px;
        font-size: 8px;
        line-height: 24px;
    }

    .master-plan h2 {
        font-size: 32px;
        margin-bottom: 10px;
    }

    /* four plans */
    .floor-plans h2 {
        font-size: 32px;
    }
    .plan-details {
        flex: 1 1 400px;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .plan-details h4 {
        font-size: 18px;
    }

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

    .tab {
        font-size: 13px;
        padding: 6px 16px;
    }
    /* clubhouse section */
    .clubhouse-section {
        padding: 40px 25px;
        font-family: "general-sans", sans-serif;
    }
    .clubhouse-image img {
        width: 100%;
    }
    .clubhouse-container {
        flex-direction: column;
        gap: 30px;
        text-align: left;
    }

    .clubhouse-text {
        max-width: 100%;
    }

    .clubhouse-text h2 {
        font-size: 32px;
    }

    .clubhouse-text h4 {
        font-size: 16px;
    }

    .clubhouse-text p {
        font-size: 15px;
    }
    /* amenties */
    .amenities-content h2 {
        font-size: 32px;
    }
    .amenities-content p {
        margin-bottom: 15px;
    }
    /* specs section */
    .specs-content {
        grid-template-columns: 1fr;
    }
    .specs-heading {
        font-size: 32px;
        margin-bottom: 35px;
    }
    /* sustainablity */
    .sustainability-section {
        padding: 40px 20px;
        margin-top: 20px;
    }

    .sustainability-section .container {
        padding: 0;
    }

    .sustainability-section .container .text-section {
        padding-left: 0;
        text-align: center;
    }

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

    .sustainability-section .subtitle-image {
        display: block;
        margin: 0 auto 30px auto;
        width: 80% !important;
        height: auto;
    }

    .sustainability-section .description {
        font-size: 12px;
        line-height: 150%;
        margin: 0 auto 16px auto;
        max-width: 100%;
    }

    .sustainability-section .cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-top: 100px;
    }

    .sustainability-section .card {
        background: #fbf7ef;
        border-radius: 16px;
        padding: 24px 16px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .sustainability-section .card img {
        width: 40px;
        height: 40px;
    }

    .sustainability-section .card h3 {
        font-size: 16px;
        font-weight: 700;
        margin-bottom: -4px;
    }

    .sustainability-section .card p {
        font-size: 12px;
        line-height: 150%;
        font-weight: 400;
    }
    /* parallex */
    .parallax-container {
        height: 70vh;
    }

    .parallax-content h1 {
        font-size: 24px;
    }

    .parallax-content p {
        font-size: 14px;
    }
    /* location section */
    .location-content {
        flex-direction: column;
        align-items: stretch;
    }

    .location-text h2 {
        font-size: 32px;
    }

    .location-points {
        order: 10;
        grid-template-columns: 1fr 1fr;
        gap: 25%;
        margin-bottom: 40px;
    }
    .mobile-visible-map {
        display: block;
        margin-bottom: 40px;
    }
    .desktop-visible-map {
        display: none;
    }
    .within-title {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 24px;
        color: #000;
    }
    /* nearby section */
    .location-tab-content {
        flex-direction: column;
        align-items: center;
    }

    .location-item {
        width: 100%;
        text-align: center;
    }

    .location-category-tabs {
        flex-direction: column;
        gap: 16px;
    }
    /* gallery section */
    .custom-carousel-slide {
        flex: 0 0 300px;
        margin: 0 10px;
        /* opacity: 0.3; */
        transform: scale(1);
        transition: transform 0.5s ease, opacity 0.5s ease;
        border-radius: 12px;
        overflow: hidden;
    }
    .custom-carousel-slide img {
        height: 220px;
    }
    .custom-gallery-title {
        font-size: 32px;
        text-align: left;
        padding-left: 15px;
    }
    /* vitual tour */
    .virtual-tour-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .virtual-tour-title {
        font-size: 32px;
        font-weight: 300;
    }

    .virtual-tour-text {
        font-size: 14px;
        font-weight: 300;
    }
    /* walkthrough section */
    /* .walkthrough-video-wrapper iframe {
        height: 250px;
    }
    .walkthrough-title {
        font-size: 32px;
        text-align: left;
        padding-left: 15px;
        padding-top: 40px;
    }

    .walkthrough-play-btn {
        width: 60px;
        height: 60px;
    }
    .walkthrough-thumbnail {
        width: 90%;
        margin: auto;
        border-radius: 20px;
    } */
    /* contact section */
    .contact-section {
        margin-top: 40px;
        flex-direction: column;
        padding: 60px 30px;
    }

    .contact-left,
    .contact-form {
        width: 100%;
        max-width: none;
    }

    .contact-left h2 {
        font-size: 32px;
    }

    .contact-left p {
        font-size: 14px;
        line-height: 135%;
        font-weight: 300;
    }
    /* footer section */
    .footer {
        padding: 30px 20px; /* Less padding for mobile */
        padding: 50px 0px 50px 0px !important;
    }

    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center; /* Center all text */
    }

    .footer-logo {
        width: 200px; /* Smaller logo for mobile */
    }

    .footer-section h4 {
        font-size: 14px; /* Smaller headings */
    }

    .contact-item {
        font-size: 12px; /* Smaller font for contact info */
    }

    .social-icons {
        flex-direction: column; /* Stack social icons vertically */
        align-items: center; /* Center social icons */
    }

    .footer-bottom {
        flex-direction: column; /* Stack addresses vertically */
        align-items: center; /* Center addresses */
        text-align: center; /* Center text for better readability */
    }

    .footer-bottom .address {
        margin-bottom: 20px; /* Space between address sections */
        width: 100%; /* Make sections full width */
    }

    .footer-bottom .disclaimer {
        margin-top: 10px; /* Space above disclaimer */
        text-align: center;
    }
    .footer-top {
        gap: 70px;
    }
    .social-icons {
        flex-direction: row;
        justify-content: space-around;
    }

    /* slick slider */
    /* .gallery-slider .slick-slide {
    transform: scale(1) !important;
    opacity: 1 !important;
  }

  .gallery-slider img {
    height: auto;
  } */
    /* amenities */
    .amenities-section {
        margin-block: 0;
        padding-bottom: 50px;
    }

    .amenities-content {
        padding: auto 20px;
        padding-bottom: 0px;
    }

    .amenities-wrapper {
        flex-direction: column;
        padding: 0px;
        gap: 0px;
    }

    .amenities-content {
        margin-bottom: 20px;
    }

    .amenities-images {
        flex-wrap: nowrap;
        flex-direction: column;
        overflow-x: hidden;
        overflow-y: hidden;
        width: 100%;
        height: auto;
        gap: 0px;
    }

    .column {
        flex-direction: row;
        height: 100%;
        width: fit-content;
    }

    .marquee-content {
        flex-direction: row;
        animation: none;
    }

    .marquee-content img {
        height: auto;
        width: 270px;
        margin-right: 16px;
    }
    .marquee-up .marquee-content {
        animation: scroll-up 25s linear infinite;
    }

    @keyframes scroll-up {
        0% {
            transform: translateX(0%);
        }
        100% {
            transform: translateX(-50%);
        }
    }

    /* Scroll down */
    .marquee-down .marquee-content {
        animation: scroll-down 25s linear infinite;
    }

    @keyframes scroll-down {
        0% {
            transform: translateX(-50%);
        }
        100% {
            transform: translateX(0%);
        }
    }
}

/* my css code */
/* ====== FOOTER GLOBAL STYLES ====== */
.main-site-footer {
    background-color: #111111;
    color: #f4f4f4;
    padding: 80px 40px 30px;
    font-family: "Arial", sans-serif;
}

.main-site-footer a {
    color: #a5a5a5;
    text-decoration: none;
}

.main-site-footer a:hover {
    color: #ffffff;
}

/* ====== FLEX WRAPPING STRUCTURE ====== */
.footer-flex-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 200px;
    margin-bottom: 50px;
}

/* ====== BRANDING SECTION ====== */
.footer-branding {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    width: auto;
}

.footer-project-logo {
    width: 350px;
    height: auto;
}

.footer-tagline {
    margin: 30px 0;
    font-size: 16px;
    line-height: 1.6;
    color: #ccc;
}

.footer-cta-btn {
    width: 350px;
    background: #2d281d;
    color: #fff;
    padding: 10px 24px;
    border: none;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
}
.footer-cta-btn:hover {
    background-color: #ffffff;
    color: #111;
}

/* ====== NAVIGATION SECTION ====== */
/* .footer-navigation {
  flex: 2 1 400px;
} */

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(100px, 1fr));
    gap: 20px 60px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-grid li {
    font-size: 16px;
    color: #222 !important;
}

.footer-links-grid:hover {
    color: #ffffff;
}

/* ====== CONTACT INFO ====== */
.footer-contact-info {
    flex: 1 1 220px;
}

.footer-contact-col {
    margin-bottom: 20px;
}
.footer-contact-col {
    text-align: right;
}
.footer-contact-col h4 {
    font-size: 16px;
}

.footer-contact-col p {
    display: flex;
    justify-content: flex-end; /* Align content to right */
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: #ccc;
    font-size: 15px;
}

.footer-contact-col img {
    width: 16px;
    height: 16px;
}

.footer-line {
    border: none;
    height: 2px;
    background: #ffffff;
    margin: 20px 0;
}

.custom-line {
    margin-top: 60px;
    border-top: 0.01px solid #333;
    font-size: 13px;
    color: #777;
    text-align: center;
}
.custom-responsive-line {
    border-top: 0.01px solid #333;
    font-size: 13px;
    color: #777;
    text-align: center;
    display: none;
}

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

.footer-social-icons img {
    width: 22px;
    height: 22px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-social-icons img:hover {
    opacity: 1;
}

/* ====== BOTTOM DETAILS ====== */
.footer-bottom-details {
    border-top: 1px solid #333;
    padding-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    justify-content: center !important;
    gap: 30px;
    font-size: 14px;
    color: #bbb;
    margin-bottom: 30px;
}

.footer-detail {
    flex: 1 1 220px;
}

/* ====== DISCLAIMER ====== */
.footer-disclaimer-section {
    border-top: 1px solid #333;
    padding-top: 20px;
    font-size: 13px;
    color: #777;
    text-align: center;
    margin-top: 30px;
}

.footer-disclaimer-section p {
    margin: 7px 0px 0px 0px;
}

.footer-detail strong {
    color: #ffffff;
}
@media (max-width: 768px) {
    .footer-links-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(100px, 1fr));
        gap: 10px 20px;
        list-style: none;
        padding: 0;
        margin: 0;
    }
}
