        :root {
            --forest: #1a3a2f;
            --forest-dark: #0f2920;
            --forest-light: #2d5a4a;
            --gold: #c9a227;
            --gold-light: #e3c766;
            --cream: #faf8f5;
            --warm-white: #fffefb;
            --text-dark: #1a1a1a;
            --text-muted: #666;
            --shadow: rgba(26, 58, 47, 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Outfit', sans-serif;
            background: var(--cream);
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Typography */
        h1, h2, h3, h4 {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
            line-height: 1.2;
        }

        /* Top Navigation Bar */
        .top-bar {
            background: var(--forest-dark);
            padding: 0.75rem 2rem;
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .top-bar a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 400;
            letter-spacing: 0.5px;
            padding: 0.5rem 1rem;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .top-bar a:hover,
        .top-bar a.active {
            color: var(--gold);
            background: rgba(201, 162, 39, 0.1);
        }

        /* Main Navigation */
        .navbar {
            background: var(--forest);
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px var(--shadow);
        }

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

        .logo {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .logo-icon {
            width: 50px;
            height: 50px;
            background: var(--gold);
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-icon svg {
            width: 32px;
            height: 32px;
            fill: var(--forest-dark);
        }

        .logo-text {
            color: white;
        }

        .logo-text h1 {
            font-size: 1.5rem;
            font-weight: 700;
            letter-spacing: 2px;
        }

        .logo-text span {
            font-size: 0.65rem;
            color: var(--gold);
            letter-spacing: 1.5px;
            text-transform: uppercase;
            display: block;
            max-width: 200px;
            line-height: 1.3;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            color: rgba(255,255,255,0.85);
            text-decoration: none;
            font-weight: 400;
            font-size: 0.95rem;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--gold);
        }

        .nav-links a.active {
            color: var(--gold);
        }

        .nav-links a.active::after {
            width: 100%;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
        }

        .mobile-menu-btn span {
            display: block;
            width: 25px;
            height: 2px;
            background: white;
            margin: 5px 0;
            transition: all 0.3s ease;
        }

        /* Hero Section */
        .hero {
            position: relative;
            height: 90vh;
            min-height: 650px;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--forest) 0%, var(--forest-dark) 100%);
        }

        .hero-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            opacity: 0.03;
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            width: 100%;
        }

        .hero-text {
            color: white;
            animation: fadeInUp 1s ease;
        }

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

        .hero-badge {
            display: inline-block;
            background: var(--gold);
            color: var(--forest-dark);
            padding: 0.5rem 1.25rem;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            border-radius: 2px;
            margin-bottom: 1.5rem;
        }

        .hero-text h2 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            margin-bottom: 1rem;
            line-height: 1.1;
        }

        .hero-text h2 span {
            color: var(--gold);
        }

        .hero-text p {
            font-size: 1.15rem;
            opacity: 0.9;
            margin-bottom: 2rem;
            max-width: 500px;
            line-height: 1.8;
        }

        .hero-price {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.15);
            padding: 1.5rem 2rem;
            border-radius: 8px;
            display: inline-block;
            margin-bottom: 2rem;
        }

        .hero-price span {
            display: block;
            font-size: 0.85rem;
            opacity: 0.8;
            margin-bottom: 0.25rem;
        }

        .hero-price strong {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2rem;
            color: var(--gold);
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .hero-images {
            position: relative;
            height: 550px;
            animation: fadeInUp 1s ease 0.3s backwards;
        }

        .hero-image-main {
            position: absolute;
            width: 90%;
            height: 380px;
            right: 0;
            top: 0;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0,0,0,0.3);
        }

        .hero-image-main img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-image-secondary {
            position: absolute;
            width: 58%;
            height: 260px;
            left: 0;
            bottom: 40px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0,0,0,0.25);
            border: 4px solid var(--cream);
            z-index: 2;
        }

        .hero-image-secondary img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-image-third {
            position: absolute;
            width: 45%;
            height: 200px;
            right: 0;
            bottom: 0;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
            border: 4px solid var(--cream);
            z-index: 1;
        }

        .hero-image-third img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            font-family: 'Outfit', sans-serif;
            font-size: 0.95rem;
            font-weight: 500;
            text-decoration: none;
            border-radius: 4px;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: var(--gold);
            color: var(--forest-dark);
        }

        .btn-primary:hover {
            background: var(--gold-light);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(201, 162, 39, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid rgba(255,255,255,0.3);
        }

        .btn-secondary:hover {
            border-color: var(--gold);
            color: var(--gold);
        }

        /* Features Strip */
        .features-strip {
            background: white;
            padding: 3rem 2rem;
            box-shadow: 0 4px 20px var(--shadow);
        }

        .features-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 2rem;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--forest) 0%, var(--forest-light) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .feature-icon svg {
            width: 24px;
            height: 24px;
            fill: var(--gold);
        }

        .feature-text h4 {
            font-family: 'Outfit', sans-serif;
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--forest);
        }

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

        /* Section Styles */
        section {
            padding: 6rem 2rem;
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 4rem;
        }

        .section-header span {
            display: inline-block;
            color: var(--gold);
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .section-header h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            color: var(--forest);
            margin-bottom: 1rem;
        }

        .section-header p {
            color: var(--text-muted);
            font-size: 1.1rem;
        }

        /* About Section */
        .about {
            background: white;
        }

        .about-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-images {
            position: relative;
        }

        .about-image-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .about-image-grid img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 8px;
        }

        .about-image-grid img:first-child {
            grid-column: span 2;
            height: 280px;
            object-position: center top;
        }

        .about-text h3 {
            font-size: 2.5rem;
            color: var(--forest);
            margin-bottom: 1.5rem;
        }

        .about-text p {
            color: var(--text-muted);
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-top: 2rem;
        }

        .about-feature {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .about-feature svg {
            width: 20px;
            height: 20px;
            fill: var(--gold);
            flex-shrink: 0;
        }

        .about-feature span {
            font-size: 0.95rem;
            color: var(--text-dark);
        }

        /* Available Unit Section */
        .available-unit {
            background: linear-gradient(180deg, var(--cream) 0%, white 100%);
        }

        .unit-showcase {
            max-width: 1400px;
            margin: 0 auto;
        }

        .unit-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 20px 60px var(--shadow);
        }

        .unit-badge {
            position: absolute;
            top: 1.5rem;
            left: 1.5rem;
            background: var(--gold);
            color: var(--forest-dark);
            padding: 0.5rem 1rem;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            border-radius: 4px;
            z-index: 10;
        }

        .unit-gallery {
            position: relative;
        }

        .gallery-main {
            position: relative;
            height: 500px;
            max-height: 60vh;
            overflow: hidden;
            background: #000;
        }

        .gallery-main img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: opacity 0.5s ease;
        }

        .gallery-nav {
            position: absolute;
            bottom: 1.5rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 0.5rem;
            z-index: 10;
        }

        .gallery-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .gallery-dot.active {
            background: var(--gold);
            transform: scale(1.2);
        }

        .gallery-arrows {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            transform: translateY(-50%);
            display: flex;
            justify-content: space-between;
            padding: 0 1rem;
            z-index: 10;
        }

        .gallery-arrow {
            width: 50px;
            height: 50px;
            background: rgba(255,255,255,0.9);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .gallery-arrow:hover {
            background: var(--gold);
        }

        .gallery-arrow svg {
            width: 20px;
            height: 20px;
            fill: var(--forest);
        }

        .gallery-thumbnails {
            display: flex;
            gap: 0.5rem;
            padding: 1rem;
            overflow-x: auto;
            background: var(--forest-dark);
        }

        .gallery-thumb {
            width: 80px;
            height: 60px;
            border-radius: 4px;
            overflow: hidden;
            cursor: pointer;
            opacity: 0.6;
            transition: all 0.3s ease;
            flex-shrink: 0;
            border: 2px solid transparent;
        }

        .gallery-thumb.active {
            opacity: 1;
            border-color: var(--gold);
        }

        .gallery-thumb:hover {
            opacity: 1;
        }

        .gallery-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .unit-details {
            padding: 2.5rem;
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 3rem;
        }

        .unit-info h3 {
            font-size: 2rem;
            color: var(--forest);
            margin-bottom: 0.5rem;
        }

        .unit-info .address {
            color: var(--text-muted);
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
        }

        .unit-specs {
            display: flex;
            gap: 2rem;
            margin-bottom: 2rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid #eee;
        }

        .unit-spec {
            text-align: center;
        }

        .unit-spec strong {
            display: block;
            font-family: 'Cormorant Garamond', serif;
            font-size: 2rem;
            color: var(--forest);
        }

        .unit-spec span {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        .unit-description {
            color: var(--text-muted);
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .unit-amenities {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.75rem;
        }

        .amenity {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
        }

        .amenity svg {
            width: 18px;
            height: 18px;
            fill: var(--gold);
        }

        .unit-pricing {
            background: var(--forest);
            padding: 2rem;
            border-radius: 12px;
            color: white;
            height: fit-content;
        }

        .unit-pricing h4 {
            font-size: 1rem;
            font-weight: 500;
            opacity: 0.8;
            margin-bottom: 0.5rem;
        }

        .unit-pricing .price {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.5rem;
            color: var(--gold);
            margin-bottom: 0.25rem;
        }

        .unit-pricing .price-note {
            font-size: 0.85rem;
            opacity: 0.7;
            margin-bottom: 1.5rem;
        }

        .price-breakdown {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .price-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.75rem;
            font-size: 0.9rem;
        }

        .price-row span:first-child {
            opacity: 0.8;
        }

        .availability {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
            padding: 1rem;
            background: rgba(201, 162, 39, 0.15);
            border-radius: 8px;
        }

        .availability-dot {
            width: 10px;
            height: 10px;
            background: #4ade80;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        .availability span {
            font-size: 0.9rem;
        }

        .unit-pricing .btn {
            width: 100%;
            justify-content: center;
        }

        /* Floor Plan */
        .floor-plan {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid #eee;
        }

        .floor-plan h4 {
            font-family: 'Outfit', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            color: var(--forest);
            margin-bottom: 1rem;
        }

        .floor-plan img {
            width: 100%;
            max-width: 500px;
            border-radius: 8px;
            border: 1px solid #eee;
        }

        /* All Units Section */
        .all-units {
            background: var(--forest);
            color: white;
        }

        .all-units .section-header h2 {
            color: white;
        }

        .all-units .section-header p {
            color: rgba(255,255,255,0.7);
        }

        .units-table-container {
            max-width: 1000px;
            margin: 0 auto;
            overflow-x: auto;
        }

        .units-table {
            width: 100%;
            border-collapse: collapse;
            background: rgba(255,255,255,0.05);
            border-radius: 12px;
            overflow: hidden;
        }

        .units-table th {
            background: rgba(0,0,0,0.2);
            padding: 1.25rem 1.5rem;
            text-align: left;
            font-weight: 500;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--gold);
        }

        .units-table td {
            padding: 1rem 1.5rem;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }

        .units-table tr:last-child td {
            border-bottom: none;
        }

        .units-table tr:hover td {
            background: rgba(255,255,255,0.03);
        }

        .status-badge {
            display: inline-block;
            padding: 0.35rem 0.75rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        .status-available {
            background: rgba(74, 222, 128, 0.2);
            color: #4ade80;
        }

        .status-occupied {
            background: rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.5);
        }

        /* Location Section */
        .location {
            background: white;
        }

        .location-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .location-info h3 {
            font-size: 2.5rem;
            color: var(--forest);
            margin-bottom: 1.5rem;
        }

        .location-info p {
            color: var(--text-muted);
            margin-bottom: 2rem;
            font-size: 1.05rem;
            line-height: 1.8;
        }

        .location-highlights {
            display: grid;
            gap: 1.25rem;
        }

        .location-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .location-item-icon {
            width: 45px;
            height: 45px;
            background: var(--cream);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .location-item-icon svg {
            width: 22px;
            height: 22px;
            fill: var(--forest);
        }

        .location-item-text h4 {
            font-family: 'Outfit', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 0.25rem;
        }

        .location-item-text p {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin: 0;
        }

        .location-map {
            height: 450px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 20px 60px var(--shadow);
        }

        .location-map iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Contact Section */
        .contact {
            background: linear-gradient(180deg, var(--cream) 0%, white 100%);
        }

        .contact-content {
            max-width: 1000px;
            margin: 0 auto;
        }

        .contact-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 20px 60px var(--shadow);
            display: grid;
            grid-template-columns: 1fr 1.2fr;
        }

        .contact-info {
            background: var(--forest);
            padding: 3rem;
            color: white;
        }

        .contact-info h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .contact-info > p {
            opacity: 0.8;
            margin-bottom: 2.5rem;
            line-height: 1.7;
        }

        .contact-detail {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .contact-detail svg {
            width: 24px;
            height: 24px;
            fill: var(--gold);
            flex-shrink: 0;
            margin-top: 2px;
        }

        .contact-detail div h4 {
            font-family: 'Outfit', sans-serif;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--gold);
            margin-bottom: 0.25rem;
        }

        .contact-detail div p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        .contact-detail div a {
            color: white;
            text-decoration: none;
        }

        .contact-detail div a:hover {
            color: var(--gold);
        }

        .contact-form {
            padding: 3rem;
        }

        .contact-form h3 {
            font-size: 1.75rem;
            color: var(--forest);
            margin-bottom: 0.5rem;
        }

        .contact-form > p {
            color: var(--text-muted);
            margin-bottom: 2rem;
        }

        .form-group {
            margin-bottom: 1.25rem;
        }

        .form-group label {
            display: block;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.875rem 1rem;
            border: 2px solid #eee;
            border-radius: 8px;
            font-family: 'Outfit', sans-serif;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: white;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--forest);
        }

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

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .form-feedback {
            padding: 1rem;
            border-radius: 8px;
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }

        .form-feedback.success {
            background: rgba(74, 222, 128, 0.15);
            color: #166534;
            border: 1px solid rgba(74, 222, 128, 0.3);
        }

        .form-feedback.error {
            background: rgba(239, 68, 68, 0.15);
            color: #991b1b;
            border: 1px solid rgba(239, 68, 68, 0.3);
        }

        .contact-form .btn {
            width: 100%;
            justify-content: center;
            padding: 1.125rem 2rem;
            margin-top: 0.5rem;
        }

        /* Footer */
        footer {
            background: var(--forest-dark);
            color: white;
            padding: 4rem 2rem 2rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 3rem;
        }

        .footer-brand h3 {
            font-size: 1.75rem;
            margin-bottom: 0.25rem;
        }

        .footer-brand > span {
            display: block;
            color: var(--gold);
            font-size: 0.7rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .footer-brand p {
            margin-top: 1.5rem;
            opacity: 0.7;
            font-size: 0.95rem;
            line-height: 1.7;
        }

        .footer-section h4 {
            font-family: 'Outfit', sans-serif;
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--gold);
            margin-bottom: 1.5rem;
        }

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

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

        .footer-section ul a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }

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

        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 0;
            text-align: center;
            font-size: 0.9rem;
            opacity: 0.7;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-text p {
                margin-left: auto;
                margin-right: auto;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-images {
                display: none;
            }

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

            .about-content,
            .location-content {
                grid-template-columns: 1fr;
            }

            .about-images {
                order: -1;
            }

            .unit-details {
                grid-template-columns: 1fr;
            }

            .contact-card {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .top-bar {
                display: none;
            }

            .nav-links {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero {
                height: auto;
                min-height: 500px;
                padding: 4rem 0;
            }

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

            .unit-specs {
                flex-wrap: wrap;
                justify-content: center;
            }

            .unit-amenities,
            .about-features {
                grid-template-columns: 1fr;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
        }
