/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #b48e79;
    --primary-dark: #9a6954;
    --primary-gradient: linear-gradient(135deg, #d8a175, #9a6954);
    --secondary-color: #2c3e50;
    --text-color: #333;
    --text-muted: #5a6c7d;
    --light-bg: #f8f6f3;
    --section-alt-bg: #f0ebe5;
    --white: #ffffff;
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.12);
    --radius: 12px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    padding: 0 !important;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.navbar-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #b8860b);
    opacity: 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.navbar.scrolled .navbar-accent {
    opacity: 1;
    transform: scaleX(1);
}

.navbar .container.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 24px;
    min-height: 56px;
}

.nav-brand {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    gap: 2px;
    line-height: 1.2;
    align-items: flex-start;
}

.logo-bg {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 8px;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.08);
}

.logo-bg-nav {
    padding: 5px 10px;
}

.logo-bg-footer {
    padding: 8px 14px;
    margin-bottom: 1rem;
    display: inline-block;
}

.nav-brand-logo {
    height: 38px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    object-position: left center;
    transition: opacity 0.3s ease;
    display: block;
}

.nav-brand:hover .nav-brand-logo {
    opacity: 0.9;
}

.nav-brand-tagline {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 0;
    transition: color 0.3s ease;
}

.navbar.scrolled .nav-brand-tagline {
    color: rgba(0, 0, 0, 0.6);
}

.nav-menu {
    display: flex;
    flex-wrap: nowrap;
    list-style: none;
    gap: 0;
    align-items: center;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--white);
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.06em;
    transition: color 0.25s ease;
    position: relative;
    padding: 6px 10px;
    border-radius: 4px;
    white-space: nowrap;
}

.nav-menu a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    background: var(--primary-color);
    bottom: 2px;
    left: 10px;
    right: 10px;
    height: 1.5px;
    width: calc(100% - 20px);
    max-width: 0;
    margin: 0 auto;
    transition: max-width 0.3s ease;
    border-radius: 1px;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    max-width: calc(100% - 20px);
}

.navbar.scrolled .nav-menu a {
    color: var(--secondary-color);
}

.navbar.scrolled .nav-menu a:hover {
    color: var(--primary-color);
    background: rgba(216, 161, 117, 0.08);
}

.navbar.scrolled .nav-menu a:hover::after,
.navbar.scrolled .nav-menu a.active::after {
    max-width: calc(100% - 20px);
}

.navbar.scrolled .nav-menu a.active {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.25s ease;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.1);
}

.navbar.scrolled .hamburger:hover {
    background: rgba(0, 0, 0, 0.06);
}

.hamburger span {
    width: 22px;
    height: 2.5px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar.scrolled .hamburger span {
    background: var(--secondary-color);
}

.hamburger.open span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
}
.hamburger.open span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    background: linear-gradient(135deg, #d8a175 0%, #b8860b 50%, #9a6954 100%);
    background-size: 200% 200%;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: 0 2px 12px rgba(216, 161, 117, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-position 0.5s ease;
}

.nav-cta i {
    font-size: 0.75rem;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(216, 161, 117, 0.5);
    background-position: 100% 50%;
}

.nav-cta-mobile {
    display: none;
}

.nav-cta-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    background: linear-gradient(135deg, #d8a175, #9a6954);
    color: #fff !important;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta-link:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(216, 161, 117, 0.4);
}

/* Hero/Banner Section */
.hero.banner {
    height: 100vh;
    overflow: hidden;
    position: relative;
    margin-top: 0;
}

.banner-slide {
    position: relative;
    width: 100%;
    height: 100vh;
}

.progress-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center center;
}

.progress-thumb.active {
    opacity: 1;
    z-index: 1;
}

.progress-thumb.mb-banner2 {
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #1a1816;
}

.overlay {
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.banner .container {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    top: 0;
    z-index: 3;
}

.banner .container .caption {
    display: flex;
    align-items: center;
    height: 100%;
    max-width: 490px;
    margin-left: 0;
    color: #fff;
    position: relative;
    z-index: 3;
    padding: 0 20px;
}

.banner .container .caption > div {
    margin: 0;
    padding: 15px 0 20px;
    border-top: 1px solid rgba(196, 194, 194, 0.8);
    border-bottom: 1px solid rgba(196, 194, 194, 0.8);
    text-align: center;
    width: 100%;
}

.hero-content {
    display: flex;
    align-items: center;
    height: 100%;
    max-width: 490px;
    margin-left: 0;
    color: #fff;
    position: relative;
    z-index: 3;
    padding: 0 20px;
}

.hero-content > div {
    margin: 0;
    padding: 1.25rem 0 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    text-align: center;
    width: 100%;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 0;
    letter-spacing: 0.02em;
}

.hero-content h2 {
    font-size: 20px;
    margin: 15px 0;
    font-weight: normal;
}

.hero-content .hero-subtitle {
    font-size: 14px;
    letter-spacing: 4px;
    color: #fff;
    margin-bottom: 0;
    font-weight: 300;
    text-transform: uppercase;
}

.hero-content .hero-location {
    font-size: 14px;
    letter-spacing: 4px;
    color: #fff;
    margin-bottom: 0;
    font-weight: 300;
}

.hero-content .hero-location-detail {
    font-size: 14px;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 300;
}

.price-cut {
    text-decoration: line-through;
    opacity: 0.85;
    margin-right: 0.5rem;
}

.price-now {
    font-weight: 700;
    color: inherit;
}

.hero-content .hero-price {
    background: var(--primary-gradient);
    border: none;
    font-size: 1.15rem;
    text-align: center;
    padding: 0.65rem 1.25rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin: 1rem 0 0;
    display: inline-block;
    line-height: 1.3;
    font-weight: 600;
}

.hero-content .hero-launch {
    font-size: 18px;
    margin-top: 10px;
    color: #fff;
    font-weight: 300;
}

/* Banner Circle Button */
.banner .circle {
    width: 70px;
    height: 70px;
    border-radius: 100%;
    border: 1px solid rgba(255, 255, 255, 0.41);
    position: absolute;
    bottom: 50px;
    text-align: center;
    line-height: 62px;
    transition: all 0.8s ease-in-out;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner .circle:hover {
    background: linear-gradient(45deg, #d8a175, #9a6954);
}

.circle-ani {
    animation: bounce2 2000ms infinite cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

@keyframes bounce2 {
    50% {
        transform: translateY(-6px);
    }
}

.banner .circle a {
    color: #fff;
    text-decoration: none;
    font-size: 24px;
}

.banner .circle i {
    font-size: 24px;
}

/* Progress Box - Slide Indicator */
.progress-box {
    position: absolute;
    right: 143px;
    bottom: 38px;
    display: flex;
    align-items: center;
    color: #fff;
    z-index: 99;
    width: 200px;
}

.slide-count-wrap {
    display: block;
    font-size: 14px;
}

.slide-count-wrap .active,
.slide-count-wrap .total {
    color: #fff;
    font-weight: 300;
}

.progress {
    display: block;
    width: 140px;
    height: 1px;
    overflow: hidden;
    background-color: rgba(248, 246, 246, 0.43);
    background-image: linear-gradient(to right, #fff, #fff);
    background-repeat: no-repeat;
    background-size: 0 100%;
    transition: background-size 0.4s ease-in-out;
    margin: 0 15px;
    position: relative;
}

.slider__label {
    content: '';
    background: #fff;
    top: 0;
    bottom: 0;
    width: 33.333%;
    height: 1px;
    position: absolute;
    z-index: 99;
}

/* RERA Detail Banner */
.rera-detail-banner {
    position: absolute;
    right: 0;
    top: 109px;
    z-index: 9;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    padding: 12px 16px;
    border-radius: 8px 0 0 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 300px;
}

.rera-detail-banner h3 {
    font-size: 15px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 8px;
}

.rera-detail-banner p,
.rera-detail-banner a {
    color: #fff;
    font-size: 12px;
    margin-bottom: 0;
    line-height: 1.5;
}

.rera-detail-banner p.rera-website-line {
    margin-top: 6px;
}

.rera-detail-banner a {
    text-decoration: underline;
    word-break: break-word;
}

.rera-detail-banner a:hover {
    color: var(--primary-color);
}

.rera-id {
    margin-bottom: 0;
}

.rera-id p {
    margin-bottom: 0;
    font-weight: 600;
    font-size: 13px;
}

.btn-primary {
    background: linear-gradient(45deg, #d8a175, #9a6954);
    text-transform: uppercase;
    padding: 10px 20px;
    font-size: 13px;
    letter-spacing: 3px;
    color: #fff;
    border-radius: 0 13px;
    text-align: center;
    display: inline-block;
    outline: none;
    transition: all 0.3s ease-in-out;
    border: none;
    cursor: pointer;
    margin-top: 15px;
    font-weight: 600;
}

.btn-primary:hover {
    background: #000;
    color: #fff;
}

/* Section Styles */
/* Section base – professional plot landing page */
.section {
    padding: 5rem 0;
    position: relative;
}

.section-alt {
    background: var(--section-alt-bg);
}

.pd100 {
    padding: 5rem 0;
}

.bg-grey {
    background: var(--section-alt-bg);
}

/* Unified section headers */
.capstext {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: block;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
}

.heading {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--secondary-color);
    margin-bottom: 0;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.section-title {
    text-align: center;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--secondary-color);
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

/* Overview Section */
.overview-header {
    margin-bottom: 2.5rem;
}

.overview-header .capstext {
    letter-spacing: 0.2em;
}

.overview-content {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 3rem;
    align-items: center;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.overview-text {
    padding-right: 1rem;
}

.overview-text p {
    margin-bottom: 1.25rem;
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-color);
}

.overview-text .developer-info {
    margin-top: 1.25rem;
    margin-bottom: 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 0.95rem;
    color: var(--text-muted);
}

.overview-image {
    max-width: 100%;
    min-height: 280px;
}

.overview-image img {
    width: 100%;
    height: auto;
    max-height: 380px;
    min-height: 260px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: var(--radius-lg);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

/* Highlights Section */
.highlights-header {
    margin-bottom: 2.5rem;
}

.highlights-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.highlights-list {
    flex: 1;
}

.icon-part {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.icon-part li {
    font-size: 0.95rem;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    line-height: 1.4;
    position: relative;
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    gap: 1rem;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.icon-part li:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(216, 161, 117, 0.25);
}

.icon-part li span {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-align: center;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(216, 161, 117, 0.15), rgba(154, 105, 84, 0.1));
}

.icon-part li span i {
    font-size: 1.15rem;
    color: var(--primary-color);
}

.icon-part li span img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.line_animation {
    border-bottom: solid 1px var(--primary-color);
    display: block;
    transform: scaleX(0) translateZ(0);
    transform-origin: 0 50%;
    height: 5px;
    transition: transform 4s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    border-radius: 0 5px;
    overflow: hidden;
}

.line_animation.wow.animated,
.line_animation.animated {
    transform: scaleX(1) translateZ(0);
}

.highlights-image {
    flex: 1;
    width: 100%;
    min-height: 420px;
}

.highlights-image img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    object-position: center;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.highlights-image img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* Legacy highlights-grid for backwards compatibility */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.highlight-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.highlight-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.highlight-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Amenities Section - matching source */
ul.amenities-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
    padding: 0;
    list-style: none;
}

ul.amenities-list li {
    flex: 0 0 20%;
    width: 20%;
    margin: 10px 0 20px;
    padding: 0 10px;
    transition: var(--transition);
}

.amenities-box {
    background: var(--white);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    box-shadow: var(--shadow);
    padding: 1.5rem 1rem;
}

.amenities-box .icon {
    width: 72px;
    height: 72px;
    display: block;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(216, 161, 117, 0.12), rgba(154, 105, 84, 0.08));
    padding: 1rem;
    margin: 0 auto;
    transition: var(--transition);
}

.amenities-box .icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.amenities-box .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.amenities-box .txt {
    margin-top: 0.75rem;
    color: var(--secondary-color);
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
}

ul.amenities-list li:hover {
    transform: translateY(-4px);
}

ul.amenities-list li:hover .amenities-box {
    box-shadow: var(--shadow-lg);
    border-color: rgba(216, 161, 117, 0.2);
}

ul.amenities-list li:hover .amenities-box .icon {
    background: linear-gradient(135deg, #d8a175, #9a6954);
}

ul.amenities-list li:hover .amenities-box .icon i {
    color: var(--white);
}

/* Legacy amenities-grid for backwards compatibility */
.amenities-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
    padding: 0;
    list-style: none;
}

.amenity-item {
    flex: 0 0 20%;
    width: 20%;
    margin: 10px 0 20px;
    padding: 0 10px;
    background: transparent;
    box-shadow: none;
}

.amenity-item > div {
    background: #fff;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.amenity-item i {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background: #f4ede6;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 7px;
}

.amenity-item span {
    color: #000;
    text-align: center;
    font-size: 14px;
}

/* Floor Plan Section */
.floor-plan-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tab-btn {
    padding: 10px 30px;
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.floor-plan-content {
    position: relative;
}

.floor-plan-item {
    display: none;
}

.floor-plan-item.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.floor-plan-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.floor-plan-details h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.floor-plan-details p {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

/* Price Section */
.price-info {
    max-width: 900px;
    margin: 0 auto;
}

.price-note {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.price-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.price-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.price-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.price-range {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.price-area {
    color: var(--text-color);
}

.price-disclaimer {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* Location Section */
.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.location-text {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.location-text h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.location-features {
    list-style: none;
    margin-top: 1.25rem;
}

.location-features li {
    padding: 0.6rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-color);
}

.location-features i {
    color: var(--primary-color);
    font-size: 1rem;
    flex-shrink: 0;
}

.location-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.location-map iframe {
    width: 100%;
    border-radius: var(--radius-lg);
}

.location-map-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.25s ease;
}

.location-map-cta:hover {
    color: var(--primary-dark);
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    cursor: pointer;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

/* Video gallery items */
.gallery-video-item .gallery-video-preview {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}
.gallery-video-item:hover .gallery-video-preview {
    transform: scale(1.05);
}

/* Video items: play icon always visible */
.gallery-video-item .gallery-overlay {
    opacity: 0.65;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}
.gallery-video-item:hover .gallery-overlay {
    opacity: 0.9;
    background: rgba(201, 169, 97, 0.75);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(201, 169, 97, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}
.gallery-video-item .gallery-overlay i {
    font-size: 3.5rem;
    color: var(--white);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.gallery-overlay i {
    color: var(--white);
    font-size: 2.5rem;
}

/* Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.gallery-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal {
    position: absolute;
    top: 30px;
    right: 45px;
    color: var(--white);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--primary-color);
}

.modal-image {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
}
.modal-video-player {
    width: 95%;
    max-width: 1000px;
    height: 85vh;
    border: none;
    border-radius: 8px;
    background: #000;
    object-fit: contain;
}

.modal-nav {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    top: 50%;
    transform: translateY(-50%);
}

.modal-prev,
.modal-next {
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: var(--white);
    padding: 15px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.5rem;
    transition: var(--transition);
}

.modal-prev:hover,
.modal-next:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Why Invest Section */
.why-invest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.why-invest-card {
    background: var(--white);
    padding: 2rem 1.75rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-top: 4px solid var(--primary-color);
}

.why-invest-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.why-invest-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Strategic Connectivity Section */
.connectivity-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.connectivity-list ul {
    list-style: none;
}

.connectivity-list li {
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.connectivity-list i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.connectivity-map img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* Master Plan Section */
.master-plan-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.master-plan-image {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}

.master-plan-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* Section CTA buttons */
.section-cta-wrap {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.section-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 28px;
    background: linear-gradient(135deg, var(--primary-color), #9a6954);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.04em;
    box-shadow: 0 4px 16px rgba(216, 161, 117, 0.4);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.section-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(216, 161, 117, 0.5);
}

.section-cta-btn i {
    font-size: 1rem;
}

.section-cta-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.section-cta-outline:hover {
    background: rgba(216, 161, 117, 0.12);
}

.master-plan-table-container h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.master-plan-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    box-shadow: var(--shadow);
    border-radius: 10px;
    overflow: hidden;
}

.master-plan-table thead {
    background: var(--primary-color);
    color: var(--white);
}

.master-plan-table th,
.master-plan-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.master-plan-table th {
    font-weight: 600;
    text-align: center;
}

.master-plan-table td {
    text-align: center;
}

.master-plan-table tbody tr:hover {
    background: #f8f9fa;
}

.enquire-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.enquire-link:hover {
    color: #b89850;
    text-decoration: underline;
}

/* Price List Section */
.price-list-container {
    max-width: 960px;
    margin: 0 auto;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.price-list-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.price-list-table thead {
    background: var(--primary-gradient);
    color: var(--white);
}

.price-list-table th {
    padding: 1.2rem 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-list-table th:first-child {
    padding-left: 1.5rem;
}

.price-list-table th:last-child {
    padding-right: 1.5rem;
    text-align: center;
}

.price-list-table tbody tr {
    border-bottom: 1px solid #eee;
    transition: var(--transition);
    background: #fff;
}

.price-list-table tbody tr:last-child {
    border-bottom: none;
}

.price-list-table tbody tr:nth-child(odd) {
    background: var(--light-bg);
}

.price-list-table tbody tr:hover {
    background: rgba(216, 161, 117, 0.06);
}

.price-list-table td {
    padding: 1.2rem 1rem;
    color: var(--text-color);
    font-size: 0.95rem;
}

.price-list-table td:first-child {
    padding-left: 1.5rem;
    font-weight: 500;
    color: var(--secondary-color);
}

.price-list-table td:last-child {
    padding-right: 1.5rem;
    text-align: center;
}

.price-amount {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.pricing-highlight {
    background: linear-gradient(135deg, rgba(216, 161, 117, 0.08), rgba(154, 105, 84, 0.06));
    padding: 1.75rem 2rem;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid rgba(216, 161, 117, 0.2);
}

.pricing-highlight p {
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: var(--text-color);
}

.pricing-highlight p:last-child {
    margin-bottom: 0;
}

.pricing-highlight strong {
    color: var(--secondary-color);
}

.price-disclaimer {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 1rem;
}

/* Why Consider Section */
.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-header .capstext {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.section-header .heading {
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    color: var(--secondary-color);
    margin-bottom: 0;
    font-weight: 600;
    line-height: 1.35;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.why-consider-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.why-consider-item {
    background: var(--white);
    padding: 2rem 1.75rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.why-consider-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.35s ease;
}

.why-consider-item:hover::before {
    transform: scaleX(1);
}

.why-consider-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.why-consider-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(216, 161, 117, 0.1), rgba(154, 105, 84, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.why-consider-item:hover .why-consider-icon {
    background: linear-gradient(135deg, #d8a175, #9a6954);
    transform: scale(1.1);
}

.why-consider-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.why-consider-item:hover .why-consider-icon i {
    color: var(--white);
}

.why-consider-item h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.why-consider-item p {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Why Choose Section */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.why-choose-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.why-choose-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.why-choose-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.why-choose-item h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem 1.75rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card::before {
    content: '“';
    position: absolute;
    font-size: 4rem;
    color: rgba(216, 161, 117, 0.3);
    top: -10px;
    left: 18px;
    font-family: serif;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    line-height: 1.8;
    color: var(--text-color);
}

.testimonial-author h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.testimonial-author p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* About Section */
/* About Section Enhanced */
.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 2.5rem;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.about-text {
    text-align: left;
}

.about-intro h3 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-intro p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-color);
    font-size: 1rem;
}

.about-features {
    margin-top: 2rem;
}

.about-features h4 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(216, 161, 117, 0.1);
    border-radius: 8px;
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(216, 161, 117, 0.2);
    transform: translateX(5px);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.feature-item span {
    color: var(--text-color);
    font-size: 0.95rem;
    font-weight: 500;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

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

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    background: var(--white);
    padding: 2rem 1.75rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #d8a175, #9a6954);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(216, 161, 117, 0.1), rgba(154, 105, 84, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.stat-item:hover .stat-icon {
    background: linear-gradient(135deg, #d8a175, #9a6954);
    transform: scale(1.1);
}

.stat-icon i {
    color: var(--primary-color);
    font-size: 2rem;
    transition: var(--transition);
}

.stat-item:hover .stat-icon i {
    color: var(--white);
}

.stat-item h3 {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    word-spacing: 2px;
}

.stat-item p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.5;
}

.developer-info-box {
    margin-top: 3rem;
    background: linear-gradient(135deg, rgba(216, 161, 117, 0.1), rgba(154, 105, 84, 0.1));
    padding: 2.5rem;
    border-radius: 15px;
    display: flex;
    gap: 2rem;
    align-items: center;
    border: 2px solid rgba(216, 161, 117, 0.3);
}

.developer-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d8a175, #9a6954);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.developer-icon i {
    color: var(--white);
    font-size: 2.5rem;
}

.developer-details h4 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.developer-details p {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
}

/* Hero location styling */
.hero-location {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease 0.25s both;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease 0.15s both;
}

.hero-location-detail {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-launch {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #fff;
    animation: fadeInUp 1s ease 0.5s both;
}

.developer-info {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--primary-color);
}

.pricing-highlight {
    background: var(--primary-color);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.pricing-highlight p {
    margin: 0.5rem 0;
    font-size: 1.2rem;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form-container,
.contact-info {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-form-container h3,
.contact-info h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

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

.form-group label {
    margin-bottom: 0.4rem;
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(216, 161, 117, 0.15);
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.3rem;
}

.contact-item h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: rgba(255, 255, 255, 0.9);
    padding: 3.5rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 44px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
    margin-bottom: 1rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Mobile nav overlay (only visible when menu open) */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        position: relative;
        z-index: 1002;
    }

    .nav-overlay {
        display: block;
    }

    body.nav-open .nav-overlay {
        opacity: 1;
        pointer-events: auto;
    }

    .navbar .container.nav-inner {
        min-height: 56px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 56px;
        bottom: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: linear-gradient(180deg, rgba(30, 28, 26, 0.99) 0%, rgba(20, 18, 16, 0.99) 100%);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        width: 100%;
        max-width: 100%;
        height: calc(100vh - 56px);
        max-height: calc(100vh - 56px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        text-align: center;
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
        box-shadow: 8px 0 32px rgba(0, 0, 0, 0.4);
        padding: 16px 24px;
        gap: 0;
        z-index: 1000;
        list-style: none;
        margin: 0;
    }

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

    .nav-menu li {
        width: 100%;
        max-width: 280px;
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-menu li:last-child {
        border-bottom: none;
        margin-top: 8px;
    }

    .nav-cta-mobile {
        padding: 0;
    }

    .nav-menu a {
        color: rgba(255, 255, 255, 0.95);
        padding: 11px 16px;
        display: block;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.04em;
        border-radius: 0;
        text-decoration: none;
        text-align: center;
        -webkit-tap-highlight-color: transparent;
    }

    .nav-menu a::after {
        display: none;
    }

    .nav-menu a:hover,
    .nav-menu a:focus {
        background: rgba(216, 161, 117, 0.15);
        color: var(--primary-color);
    }

    .nav-cta-mobile a,
    .nav-cta-link {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 14px 20px;
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        color: #fff !important;
        margin: 0;
        border-radius: 8px;
        font-size: 13px;
    }

    .nav-cta-link:hover {
        background: linear-gradient(135deg, #c99a6e, #8a5d44);
        color: #fff !important;
    }

    .nav-actions {
        display: none;
    }

    .nav-brand-tagline {
        font-size: 0.6rem;
        letter-spacing: 0.1em;
    }

    .hero-content {
        max-width: 100%;
        padding: 0 15px;
    }

    .hero-content > div {
        padding: 20px 0;
    }

    .hero-content h1 {
        font-size: 35px;
    }

    .hero-content h2 {
        font-size: 18px;
    }

    .hero-content .hero-price {
        font-size: 18px;
    }

    .heading {
        font-size: 40px;
        margin-bottom: 30px;
    }
    
    .section-header .heading {
        font-size: 2rem;
    }

    .overview-content,
    .highlights-content,
    .location-content,
    .contact-content,
    .connectivity-content,
    .about-main {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        margin-top: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .developer-info-box {
        flex-direction: column;
        text-align: center;
    }

    .overview-text {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .highlights-list {
        margin-bottom: 2rem;
    }

    .floor-plan-item.active {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .highlights-grid,
    .why-invest-grid,
    .why-consider-grid {
        grid-template-columns: 1fr;
    }

    ul.amenities-list li {
        flex: 0 0 50%;
        width: 50%;
    }

    .amenities-grid .amenity-item {
        flex: 0 0 50%;
        width: 50%;
    }

    .price-cards {
        grid-template-columns: 1fr;
    }
    
    .price-list-table {
        font-size: 0.85rem;
    }
    
    .price-list-table th,
    .price-list-table td {
        padding: 0.8rem 0.5rem;
    }
    
    .price-list-table th:first-child,
    .price-list-table td:first-child {
        padding-left: 0.8rem;
    }
    
    .price-list-table th:last-child,
    .price-list-table td:last-child {
        padding-right: 0.8rem;
    }
    
    .price-amount {
        font-size: 1rem;
    }
    
    .price-list-container {
        overflow-x: auto;
    }
    
    .price-list-table {
        min-width: 600px;
    }
}

@media (max-width: 480px) {
    .price-list-table {
        font-size: 0.75rem;
        min-width: 500px;
    }
    
    .price-list-table th,
    .price-list-table td {
        padding: 0.6rem 0.4rem;
    }
    
    .pricing-highlight {
        padding: 1.5rem;
    }
    
    .pricing-highlight p {
        font-size: 0.95rem;
    }

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

    .pd100 {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .section {
        padding: 50px 0;
    }

    .container {
        padding: 0 15px;
    }
}

/* Enquiry Modal */
.enquiry-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s ease;
}

.enquiry-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.enquiry-modal-dialog {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0 auto;
    padding: 20px;
    max-width: 600px;
    width: 100%;
}

.enquiry-modal-content {
    background: var(--white);
    border-radius: 15px;
    position: relative;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.3s ease;
}

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

.enquiry-modal-header {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 2001;
}

.enquiry-modal-close {
    background: #90665c;
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    position: relative;
    z-index: 2002;
}

.enquiry-modal-close:hover {
    background: #b89850;
    transform: rotate(90deg);
}

.enquiry-modal-body {
    padding: 30px;
}

.enquiry-header-icon {
    text-align: center;
    margin-bottom: 15px;
}

.enquiry-header-icon i {
    font-size: 3.5rem;
    color: var(--primary-color);
    background: linear-gradient(135deg, rgba(216, 161, 117, 0.1), rgba(154, 105, 84, 0.1));
    width: 80px;
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 10px;
}

.enquiry-popup-box h6 {
    font-size: 28px;
    color: var(--secondary-color);
    margin-bottom: 8px;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.enquiry-subtitle {
    text-align: center;
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 25px;
    font-style: italic;
}

.input-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon-wrapper i {
    position: absolute;
    left: 15px;
    color: var(--primary-color);
    font-size: 1.1rem;
    z-index: 1;
}

.input-icon-wrapper .form-control {
    padding-left: 50px;
    padding-right: 12px;
}

.input-icon-wrapper select.form-control {
    padding-left: 50px;
    padding-right: 40px;
    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='%23d8a175' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.input-icon-wrapper textarea.form-control {
    padding-left: 50px;
    padding-right: 12px;
    padding-top: 12px;
    resize: vertical;
}

.enquiry-footer-note {
    text-align: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    color: #666;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.enquiry-footer-note i {
    color: var(--primary-color);
}

.enquiry-form .form-group {
    margin-bottom: 15px;
}

.enquiry-form .form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    box-sizing: border-box;
}

/* Ensure inputs with icons have proper padding */
.input-icon-wrapper .form-control {
    padding-left: 50px !important;
    padding-right: 12px !important;
}

.enquiry-form .form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

.enquiry-form .form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 10px;
}

.enquiry-form .form-check-input {
    margin-top: 4px;
    cursor: pointer;
}

.enquiry-form .form-check-label {
    font-size: 12px;
    color: var(--text-color);
    line-height: 1.5;
    cursor: pointer;
}

.enquiry-submit-btn {
    width: 100%;
    padding: 15px 30px;
    margin-top: 10px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #d8a175, #9a6954);
    border: none;
    color: var(--white);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.enquiry-submit-btn:hover {
    background: linear-gradient(135deg, #9a6954, #d8a175);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(216, 161, 117, 0.4);
}

.enquiry-submit-btn i {
    font-size: 1rem;
}

#name-error-enquiry,
#email-error-enquiry,
#phone-error-enquiry {
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
}

/* Floating WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    width: 60px;
    height: 60px;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

/* Floating Call Button */
.call-us {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    width: 60px;
    height: 60px;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #d8a175, #9a6954);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(216, 161, 117, 0.4);
    transition: var(--transition);
    animation: pulse-call 2s infinite;
}

.call-us:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(216, 161, 117, 0.6);
}

.call-us img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

/* Pulse animations */
@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
    }
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
}

@keyframes pulse-call {
    0% {
        box-shadow: 0 4px 12px rgba(216, 161, 117, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(216, 161, 117, 0.8);
    }
    100% {
        box-shadow: 0 4px 12px rgba(216, 161, 117, 0.4);
    }
}

/* Responsive adjustments for floating buttons */
@media (max-width: 768px) {
    .whatsapp-btn,
    .call-us {
        width: 55px;
        height: 55px;
        bottom: 0.8rem;
    }
    
    .whatsapp-btn {
        right: 0.8rem;
    }
    
    .call-us {
        left: 0.8rem;
    }
    
    .whatsapp-btn img,
    .call-us img {
        width: 30px;
        height: 30px;
    }
    
    /* Banner responsive */
    .banner .container .caption {
        max-width: 100%;
        margin: auto;
        padding: 0 15px;
    }
    
    .banner .container .caption h1 {
        font-size: 35px;
    }
    
    .banner .container .caption h2 {
        font-size: 18px;
    }
    
    .banner .container .caption span {
        font-size: 18px;
    }
    
    .progress-box {
        right: 70px;
        bottom: 40px;
        width: 64%;
    }
    
    .progress-box span {
        font-size: 15px;
    }
    
    .progress {
        width: 100px;
        margin: 0 10px;
    }
    
    .banner .circle {
        display: none;
    }
    
    .rera-detail-banner {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        top: auto;
        max-width: none;
        border-radius: 0;
        padding: 12px 20px;
        text-align: center;
        background: rgba(0, 0, 0, 0.65);
        border: none;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
    }
    
    .rera-detail-banner .rera-id p,
    .rera-detail-banner p.rera-website-line {
        font-size: 12px;
        margin: 0;
    }
    
    .rera-detail-banner p.rera-website-line {
        margin-top: 6px;
    }
    
    .rera-detail-banner a {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .banner .container .caption h1 {
        font-size: 28px;
    }
    
    .banner .container .caption h2 {
        font-size: 16px;
    }
    
    .banner .container .caption span {
        font-size: 16px;
        padding: 8px;
    }
    
    .progress-box {
        right: 20px;
        bottom: 30px;
        width: auto;
        flex-direction: column;
        gap: 5px;
    }
    
    .progress {
        width: 80px;
        margin: 5px 0;
    }
    
    .rera-detail-banner {
        padding: 10px 16px;
    }
    
    .rera-detail-banner .rera-id p,
    .rera-detail-banner p.rera-website-line,
    .rera-detail-banner a {
        font-size: 11px;
    }
    
    .section-header .heading {
        font-size: 1.75rem;
        line-height: 1.4;
    }
    
    /* Enhanced Enquiry Modal Responsive */
    .enquiry-modal-dialog {
        padding: 10px;
    }
    
    .enquiry-modal-content {
        max-width: 100%;
        max-height: 95vh;
    }
    
    .enquiry-modal-body {
        padding: 20px;
    }
    
    .enquiry-header-icon i {
        font-size: 2.5rem;
        width: 60px;
        height: 60px;
    }
    
    .enquiry-popup-box h6 {
        font-size: 22px;
    }
    
    .enquiry-subtitle {
        font-size: 0.85rem;
    }
    
    /* About Section Mobile */
    .about-intro h3 {
        font-size: 1.5rem;
    }
    
    .about-features h4 {
        font-size: 1.3rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        padding: 2rem 1.5rem;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .developer-info-box {
        padding: 2rem 1.5rem;
    }
    
    .developer-icon {
        width: 60px;
        height: 60px;
    }
    
    .developer-icon i {
        font-size: 2rem;
    }
}
