/* Google Fonts Already Imported in HTML */
/* Playfair Display for headings, Inter for body */

/* CSS Variables */
:root {
    --primary-color: #1a2332;
    --secondary-color: #2c3e50;
    --accent-color: #c9a961;
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --text-light: #999999;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #1a2332;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Playfair Display", serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* REFINED MOBILE MENU - SMOOTH TRANSITIONS */
/* Navigation Base Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(26, 35, 50, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: box-shadow, background;
}

.navbar.scrolled {
    background: rgba(26, 35, 50, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Hamburger Menu Button */
.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 5px;
    z-index: 1001;
    position: relative;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
}

.nav-toggle span {
    width: 26px;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    border-radius: 2px;
}

/* Animated Hamburger to X */
.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Desktop Navigation Links */
.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.nav-brand {
    display: flex;
    flex-direction: column;
}

.brand-logo img {
    height: auto;
    width: clamp(80px, 15vw, 100px);
    background-color: rgb(251, 241, 224);
    border-radius: 10px;
    padding: 0px 10px;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: clamp(20px, 3vw, 40px);
}

.nav-link {
    font-size: clamp(14px, 2vw, 15px);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link-cta {
    background: var(--accent-color);
    color: white;
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 600;
}

.nav-link-cta:hover {
    background: var(--bg-white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #1a2332;
        flex-direction: column;
        padding: 16px 0 20px;
        box-shadow: var(--shadow-md);
        gap: 10px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: 10px 16px;
    }

    .nav-link-cta {
        width: 100%;
        text-align: center;
    }
}

/* HERO + SLIDER */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Slider container */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    will-change: transform;
}

.hero-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
    position: relative;
    overflow: hidden;
}

.hero-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(26, 35, 50, 0.8),
            rgba(26, 35, 50, 0.6));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 100px 20px 80px;
    width: 100%;
}

.hero-content .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-text-wrapper {
    animation: fadeInUp 1s ease;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(201, 169, 97, 0.2);
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    padding: clamp(6px, 1.5vw, 8px) clamp(18px, 3vw, 24px);
    border-radius: 30px;
    font-size: clamp(10px, 1.8vw, 13px);
    font-weight: 600;
    letter-spacing: clamp(1px, 0.3vw, 2px);
    text-transform: uppercase;
    margin-bottom: clamp(20px, 4vw, 30px);
    white-space: nowrap;
}

.hero-title {
    font-size: clamp(28px, 7vw, 64px);
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: clamp(16px, 3vw, 24px);
    line-height: 1.2;
    letter-spacing: -0.5px;
    padding: 0 10px;
}

.hero-title br {
    display: block;
}

.hero-subtitle {
    font-size: clamp(14px, 2.5vw, 20px);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: clamp(16px, 3vw, 24px);
    font-weight: 400;
    letter-spacing: 0.3px;
    padding: 0 10px;
}

.hero-location {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: clamp(6px, 1.5vw, 8px);
    color: var(--accent-color);
    font-size: clamp(12px, 2vw, 16px);
    margin-bottom: clamp(24px, 4vw, 40px);
    font-weight: 500;
    padding: 0 10px;
    flex-wrap: wrap;
}

.hero-location svg {
    width: clamp(16px, 3vw, 20px);
    height: clamp(16px, 3vw, 20px);
    flex-shrink: 0;
}

.hero-cta {
    display: flex;
    gap: clamp(12px, 2vw, 16px);
    justify-content: center;
    align-items: center;
    margin-top: clamp(24px, 4vw, 40px);
    flex-wrap: wrap;
    padding: 0 10px;
}

.scroll-down {
    position: absolute;
    bottom: clamp(20px, 4vw, 40px);
    left: 50%;
    transform: translateX(-50%);
    width: clamp(24px, 4vw, 30px);
    height: clamp(40px, 6vw, 50px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 25px;
    z-index: 3;
    display: block;
}

.scroll-down span {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: var(--accent-color);
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: clamp(14px, 2vw, 15px);
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    letter-spacing: 0.5px;
    will-change: transform;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--bg-white);
    border-color: var(--accent-color);
}

.btn-primary:hover {
    background: transparent;
    color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 169, 97, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--bg-white);
    border-color: var(--bg-white);
}

.btn-secondary:hover {
    background: var(--bg-white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--bg-white);
}

.full-width {
    width: 100%;
}

/* Image Placeholders */
.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: clamp(13px, 2vw, 15px);
    font-weight: 500;
    text-align: center;
    padding: 20px;
    border: 2px dashed var(--border-color);
}

.image-placeholder.dark {
    background: linear-gradient(135deg, #2c3e50 0%, #1a2332 100%);
    color: rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
}

.image-placeholder.large {
    min-height: 400px;
}

/* Blur floor plans */
.blur-floorplan img {
    filter: blur(12px);
    transform: scale(1.05);
}

/* Sections */
section {
    padding: clamp(60px, 15vw, 100px) 0;
}

.section-label {
    display: inline-block;
    font-size: clamp(12px, 2vw, 13px);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 16px;
}

.section-label.light {
    color: rgba(255, 255, 255, 0.8);
}

.section-title {
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    text-align: center;
}

.section-title.light {
    color: var(--bg-white);
}

.title-divider {
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    margin: 0 auto 24px auto;
}

.title-divider.light {
    background: var(--bg-white);
}

.section-description {
    font-size: clamp(15px, 2.5vw, 17px);
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 700px;
    text-align: center;
    margin: 0 auto;
}

/* Overview */
.overview {
    background: var(--bg-white);
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 8vw, 80px);
    align-items: center;
}

.overview-text {
    font-size: clamp(15px, 2.5vw, 16px);
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
    text-align: center;
}

.project-highlights {
    display: grid;
    gap: 24px;
    margin-top: 40px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: var(--bg-light);
    border-radius: 8px;
    transition: var(--transition);
    will-change: transform;
}

.highlight-item:hover {
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
}

.highlight-icon {
    flex-shrink: 0;
    width: clamp(40px, 6vw, 48px);
    height: clamp(40px, 6vw, 48px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
    border-radius: 8px;
    color: var(--accent-color);
}

.highlight-text h4 {
    font-size: clamp(16px, 2.5vw, 18px);
    margin-bottom: 6px;
    color: var(--primary-color);
}

.highlight-text p {
    font-size: clamp(13px, 2vw, 14px);
    color: var(--text-secondary);
}

.overview-images {
    position: relative;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

.overview-image-main {
    grid-column: 1 / -1;
    height: clamp(250px, 50vw, 400px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* Entrance */
.entrance {
    background: var(--bg-light);
}

.entrance-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.entrance-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(24px, 4vw, 40px);
    margin-top: 60px;
}

.entrance-item {
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    will-change: transform;
}

.entrance-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.entrance-image {
    height: clamp(200px, 40vw, 280px);
    overflow: hidden;
}

.entrance-info {
    padding: 32px 24px;
}

.entrance-info h3 {
    font-size: clamp(18px, 3vw, 20px);
    margin-bottom: 12px;
    color: var(--primary-color);
}

.entrance-info p {
    font-size: clamp(14px, 2vw, 15px);
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Amenities */
.amenities {
    background: var(--bg-white);
}

.amenities-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.amenities-showcase {
    margin-bottom: 60px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.amenities-image-large {
    height: clamp(300px, 60vw, 500px);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(20px, 3vw, 32px);
    margin-bottom: 80px;
}

.amenity-card {
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    will-change: transform;
}

.amenity-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.amenity-image {
    height: clamp(180px, 35vw, 220px);
    overflow: hidden;
}

.amenity-content {
    padding: 24px;
}

.amenity-content h3 {
    font-size: clamp(17px, 2.5vw, 19px);
    margin-bottom: 10px;
    color: var(--primary-color);
}

.amenity-content p {
    font-size: clamp(13px, 2vw, 14px);
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Fitness */
.fitness-section {
    background: var(--primary-color);
    padding: clamp(40px, 8vw, 60px);
    border-radius: 8px;
    margin-top: 60px;
}

.fitness-header {
    text-align: center;
    margin-bottom: 50px;
}

.fitness-header h2 {
    font-size: clamp(28px, 5vw, 40px);
    color: var(--bg-white);
    margin-bottom: 12px;
}

.fitness-header p {
    font-size: clamp(16px, 2.5vw, 18px);
    color: rgba(255, 255, 255, 0.8);
}

.fitness-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(20px, 3vw, 32px);
}

.fitness-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    will-change: transform;
}

.fitness-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.fitness-image {
    height: clamp(240px, 35vw, 240px);
}

.fitness-content {
    padding: 24px;
}

.fitness-content h3 {
    font-size: clamp(18px, 2.5vw, 20px);
    color: var(--bg-white);
    margin-bottom: 10px;
}

.fitness-content p {
    font-size: clamp(14px, 2vw, 15px);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* Night View */
.night-view {
    position: relative;
    padding: clamp(80px, 15vw, 120px) 0;
    background: var(--primary-color);
}

.night-view-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.night-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(26, 35, 50, 0.85),
            rgba(26, 35, 50, 0.75));
    z-index: 2;
}

.night-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.night-content h2 {
    font-size: clamp(28px, 5vw, 44px);
    color: var(--bg-white);
    margin-bottom: 32px;
    line-height: 1.3;
}

.night-content p {
    font-size: clamp(15px, 2.5vw, 17px);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Floor Plans */
.floor-plans {
    background: var(--bg-light);
}

.floor-plans-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.plans-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(20px, 3vw, 32px);
    margin-top: 60px;
}

.plan-card {
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
    will-change: transform;
    cursor: pointer;
}

.plan-card a {
    margin: 0 auto;
    pointer-events: none;
}

.plan-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.plan-card.featured {
    border-color: var(--accent-color);
}

.plan-card.featured:hover {
    transform: scale(1.02) translateY(-6px);
}

.plan-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 8px 16px;
    border-radius: 4px;
    font-size: clamp(12px, 2vw, 13px);
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 10;
}

.plan-badge.featured-badge {
    background: var(--accent-color);
}

.plan-badge.premium-badge {
    background: var(--secondary-color);
}

.plan-image {
    position: relative;
    height: clamp(220px, 40vw, 300px);
    overflow: hidden;
}

.plan-details {
    padding: 32px 24px;
}

.plan-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 6px;
    margin-bottom: 24px;
}

.area-label {
    font-size: clamp(12px, 2vw, 13px);
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.area-value {
    font-size: clamp(20px, 3vw, 22px);
    font-weight: 700;
    color: var(--primary-color);
}

.plan-features {
    list-style: none;
    margin-bottom: 24px;
}

.plan-features li {
    padding: 10px 0;
    font-size: clamp(14px, 2vw, 15px);
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 28px;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: var(--accent-color);
    border-radius: 50%;
}

.plan-features li::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--bg-white);
    border-radius: 50%;
}

/* Specifications, Location, Contact, Footer remain same except minor layout/responsive adjustments from original */

/* Specifications */
.specifications {
    background: var(--bg-white);
}

.specifications-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: clamp(20px, 3vw, 32px);
    margin-top: 60px;
}

.spec-card {
    padding: 32px 24px;
    background: var(--bg-light);
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    will-change: transform;
}

.spec-card:hover {
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.spec-icon {
    width: clamp(56px, 8vw, 64px);
    height: clamp(56px, 8vw, 64px);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
    border-radius: 8px;
    color: var(--accent-color);
}

.spec-card h3 {
    font-size: clamp(16px, 2.5vw, 18px);
    margin-bottom: 12px;
    color: var(--primary-color);
}

.spec-card p {
    font-size: clamp(13px, 2vw, 14px);
    color: var(--text-secondary);
    line-height: 1.7;
}

.silent-features {
    margin-top: 80px;
    padding: clamp(40px, 8vw, 50px);
    background: var(--primary-color);
    border-radius: 8px;
}

.silent-features h3 {
    font-size: clamp(24px, 4vw, 32px);
    color: var(--bg-white);
    text-align: center;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(14px, 2vw, 15px);
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.feature-item svg {
    flex-shrink: 0;
    color: var(--accent-color);
    margin-top: 2px;
}

/* Location */
.location {
    background: var(--bg-light);
}

.location-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.location-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(40px, 8vw, 60px);
    margin-top: 60px;
}

.location-map-container {
    height: clamp(400px, 80vw, auto);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.location-map-container iframe {
    width: 100%;
    height: 100%;
}

.location-highlights {
    display: grid;
    gap: 16px;
    margin-bottom: 40px;
}

.location-highlight {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: var(--bg-white);
    border-radius: 6px;
    box-shadow: var(--shadow-sm);
    flex-wrap: wrap;
    gap: 10px;
}

.highlight-label {
    font-size: clamp(12px, 2vw, 14px);
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.highlight-value {
    font-size: clamp(15px, 2.5vw, 17px);
    color: var(--primary-color);
    font-weight: 700;
}

/* Nearby */
.nearby-section {
    margin-bottom: 40px;
}

.nearby-section h3 {
    font-size: clamp(20px, 3vw, 24px);
    margin-bottom: 24px;
    color: var(--primary-color);
}

/* Force 2 columns at all screen sizes */
.nearby-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.nearby-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    will-change: transform;
    position: relative;
    overflow: hidden;
}

.nearby-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.nearby-item svg {
    flex-shrink: 0;
    color: var(--accent-color);
    margin-top: 2px;
    width: 24px;
    height: 24px;
    transition: var(--transition);
}

.nearby-item:hover svg {
    transform: scale(1.1);
    color: var(--primary-color);
}

.nearby-item h4 {
    font-size: clamp(15px, 2vw, 16px);
    margin-bottom: 6px;
    color: var(--primary-color);
    font-weight: 600;
}

.nearby-item p {
    font-size: clamp(13px, 1.8vw, 14px);
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Responsive adjustments for 2 columns */
@media (max-width: 768px) {
    .nearby-grid {
        gap: 16px;
    }

    .nearby-item {
        padding: 20px;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .nearby-grid {
        gap: 12px;
    }

    .nearby-item {
        padding: 16px;
        gap: 10px;
    }

    .nearby-item svg {
        width: 20px;
        height: 20px;
    }

    .nearby-item h4 {
        font-size: 14px;
    }

    .nearby-item p {
        font-size: 12px;
    }
}

/* Extra small screens - still 2 columns but more compact */
@media (max-width: 360px) {
    .nearby-grid {
        gap: 10px;
    }

    .nearby-item {
        padding: 12px;
        gap: 8px;
    }

    .nearby-item h4 {
        font-size: 13px;
    }

    .nearby-item p {
        font-size: 11px;
    }
}


.address-card {
    padding: 32px;
    background: var(--primary-color);
    border-radius: 8px;
    color: var(--bg-white);
}

.address-card h4 {
    font-size: clamp(18px, 2.5vw, 20px);
    color: var(--accent-color);
    margin-bottom: 16px;
}

.address-card p {
    font-size: clamp(14px, 2vw, 15px);
    line-height: 1.8;
    margin-bottom: 8px;
}

/* Contact (Last Section) */
.contact {
    background: var(--primary-color);
    padding: clamp(60px, 15vw, 100px) 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(40px, 8vw, 60px);
    align-items: flex-start;
}

.contact-description {
    font-size: clamp(15px, 2vw, 16px);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: center;
}

.contact-details {
    display: grid;
    gap: 32px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    flex-shrink: 0;
    width: clamp(40px, 6vw, 48px);
    height: clamp(40px, 6vw, 48px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--accent-color);
}

.contact-detail-item h4 {
    font-size: clamp(16px, 2.5vw, 18px);
    color: var(--bg-white);
    margin-bottom: 8px;
}

.contact-detail-item p {
    font-size: clamp(14px, 2vw, 15px);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 4px;
}

.contact-detail-item a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.contact-detail-item a:hover {
    color: var(--accent-color);
}

.contact-form-section {
    background: var(--bg-white);
    padding: clamp(32px, 6vw, 48px);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.contact-form {
    display: grid;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    font-size: clamp(13px, 2vw, 14px);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: clamp(14px, 2vw, 15px);
    font-family: inherit;
    color: var(--text-primary);
    transition: var(--transition);
    background: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 30px 0;
    padding-top: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: clamp(13px, 2vw, 14px);
    color: rgba(255, 255, 255, 0.5);
}

/* Modal Popup Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background-color: #ffffff;
    margin: auto;
    padding: clamp(30px, 5vw, 40px);
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    color: #999;
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 35px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.modal-close:hover,
.modal-close:focus {
    color: #333;
}

.modal-title {
    margin: 0 0 10px 0;
    font-size: clamp(24px, 4vw, 28px);
    font-weight: 600;
    color: #333;
}

.modal-subtitle {
    margin: 0 0 30px 0;
    color: #666;
    font-size: clamp(13px, 2vw, 14px);
}

.modal-form .form-group {
    margin-bottom: 20px;
}

.modal-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: clamp(13px, 2vw, 14px);
}

.modal-form input,
.modal-form select,
.modal-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: clamp(14px, 2vw, 15px);
    font-family: inherit;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.modal-form input:focus,
.modal-form select:focus,
.modal-form textarea:focus {
    outline: none;
    border-color: #007bff;
}

.modal-form textarea {
    resize: vertical;
    min-height: 80px;
}

.modal-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    font-size: clamp(14px, 2vw, 15px);
    font-weight: 500;
    text-align: center;
    display: none;
    animation: slideIn 0.3s ease;
}

.modal-message.show {
    display: block;
}

.modal-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.modal-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translate(-50%, 0);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, 20px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1199px) {
    .hero {
        min-height: 550px;
        max-height: 800px;
    }
}

@media (max-width: 1023px) {

    .overview-grid,
    .location-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .amenities-grid,
    .fitness-grid,
    .plans-container,
    .specs-grid {
        grid-template-columns: 1fr;
    }

    .entrance-gallery {
        grid-template-columns: 1fr;
    }

    .overview-images {
        grid-template-columns: 1fr;
    }

    .overview-image-secondary {
        height: clamp(200px, 40vw, 300px);
    }
}

@media (max-width: 767px) {
    .hero {
        min-height: 480px;
        max-height: 650px;
        height: 100vh;
    }

    .hero-content {
        padding: 90px 16px 60px;
    }

    .hero-content .container {
        padding: 0 12px;
    }

    .hero-title {
        font-size: clamp(24px, 6.5vw, 36px);
        margin-bottom: 16px;
    }

    .hero-title br {
        display: inline;
    }

    .hero-subtitle {
        font-size: clamp(13px, 3.5vw, 16px);
        margin-bottom: 16px;
    }

    .hero-location {
        font-size: clamp(11px, 2.8vw, 14px);
        margin-bottom: 24px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 320px;
        margin: 24px auto 0;
    }

    .hero-cta .btn {
        width: 100%;
        min-width: auto;
    }

    .scroll-down {
        bottom: 20px;
        width: 24px;
        height: 40px;
    }

    .section-title {
        font-size: clamp(28px, 6vw, 36px);
    }

    section {
        padding: 60px 0;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-section {
        padding: 24px 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: clamp(22px, 7vw, 32px);
        padding: 0 5px;
    }

    .hero-subtitle {
        font-size: clamp(12px, 3.8vw, 15px);
        line-height: 1.5;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
    }

    .nav-wrapper {
        padding: 10px 0;
    }

    .modal-content {
        padding: 25px 16px;
    }

    .fitness-section,
    .silent-features {
        padding: 30px 20px;
    }
}

/* Performance */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

.hero-image-container,
.btn,
.highlight-item,
.entrance-item,
.amenity-card,
.fitness-card,
.plan-card,
.spec-card,
.nearby-item {
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}