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

:root {
    --primary-color: #2c5f2d;
    --secondary-color: #97be5a;
    --accent-color: #ffc857;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --text-color: #333;
    --text-light: #666;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

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

.highlight {
    color: var(--secondary-color);
    display: block;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: #1e4620;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 16px;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.nav-brand {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a.active {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: all 0.3s ease;
}

.nav-cta {
    display: flex;
    gap: 15px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(135deg, #2c5f2d 0%, #1a3f1b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 65px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path fill="%23ffffff" fill-opacity="0.05" d="M0 300L50 275C100 250 200 200 300 183.3C400 166.7 500 183.3 600 208.3C700 233.3 800 266.7 900 275C1000 283.3 1100 266.7 1150 258.3L1200 250V600H1150C1100 600 1000 600 900 600C800 600 700 600 600 600C500 600 400 600 300 600C200 600 100 600 50 600H0V300Z"/></svg>');
    background-size: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    text-align: center;
    color: var(--white);
    z-index: 2;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 48px;
    margin-bottom: 10px;
    letter-spacing: 3px;
    font-weight: 300;
}

.hero-subtitle {
    font-size: 72px;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-subtitle .highlight {
    color: var(--secondary-color);
    display: inline;
}

.hero-text {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-left: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(-45deg);
    margin: 0 auto;
}

/* Intro Section */
.intro-section {
    padding: 100px 0;
    background: var(--white);
}

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
}

.intro-text {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
}

.quick-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.quick-link-card {
    background: var(--white);
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.quick-link-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.quick-link-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.quick-link-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.quick-link-card p {
    color: var(--text-light);
    font-size: 14px;
}

/* Floor Plans Section */
.floorplans-section {
    padding: 100px 0;
    background: var(--light-color);
}

.floorplans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.floorplan-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.floorplan-image {
    height: 250px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.floorplan-placeholder {
    font-size: 48px;
    color: var(--white);
    font-weight: 700;
}

.floorplan-details {
    padding: 30px;
}

.floorplan-details h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.floorplan-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px 0;
    border-top: 2px solid #e0e0e0;
    border-bottom: 2px solid #e0e0e0;
}

.spec {
    text-align: center;
}

.spec-label {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.spec-value {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.floorplan-features {
    list-style: none;
    margin-bottom: 25px;
}

.floorplan-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.floorplan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

/* Amenities Section */
.amenities-section {
    padding: 100px 0;
    background: var(--white);
}

.amenities-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.amenity-card {
    background: var(--light-color);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.amenity-card:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.amenity-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.amenity-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.amenity-card p {
    font-size: 14px;
    opacity: 0.9;
}

.apartment-features {
    max-width: 900px;
    margin: 80px auto 0;
    text-align: center;
}

.apartment-features h3 {
    font-size: 36px;
    margin-bottom: 30px;
}

.features-content {
    text-align: left;
    background: var(--light-color);
    border-radius: 15px;
    padding: 40px;
}

.features-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--text-light);
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    list-style: none;
}

.features-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 20px;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: var(--light-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin-top: 60px;
}

.gallery-item {
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.gallery-placeholder {
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Neighborhood Section */
.neighborhood-section {
    padding: 100px 0;
    background: var(--white);
}

.neighborhood-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.neighborhood-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.neighborhood-text h4 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: var(--primary-color);
}

.neighborhood-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.neighborhood-list {
    list-style: none;
}

.neighborhood-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
}

.neighborhood-list li::before {
    content: '📍';
    position: absolute;
    left: 0;
}

.neighborhood-map {
    background: var(--light-color);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    min-height: 450px;
    height: 450px;
}

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

.map-overlay-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    z-index: 10;
}

.map-address {
    margin-bottom: 15px;
    line-height: 1.6;
}

.map-address strong {
    color: var(--primary-color);
    font-size: 16px;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 13px;
}

.map-placeholder {
    height: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}

.map-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.map-placeholder p {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.map-placeholder small {
    color: var(--text-light);
}

/* Contact Section */
/* Compact Contact Section - Above the Fold */
.contact-section-compact {
    padding: 120px 0 40px;
    background: linear-gradient(135deg, #f8fdf8 0%, #ffffff 50%, #f0f9f0 100%);
    min-height: calc(100vh - 65px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.contact-section-compact::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(151, 190, 90, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-section-compact::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(44, 95, 45, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.badge-modern {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary-color), #3a7a3b);
    color: white;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(44, 95, 45, 0.3);
}

.contact-header-compact {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.contact-header-compact h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--dark-color);
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

.contact-header-compact p {
    font-size: 17px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.contact-grid-compact {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.quick-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card-compact {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: all 0.3s ease;
    border: 1px solid rgba(151, 190, 90, 0.2);
    position: relative;
    overflow: hidden;
}

.contact-card-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-card-compact:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(44, 95, 45, 0.15);
}

.contact-card-compact:hover::before {
    opacity: 1;
}

.contact-icon {
    font-size: 32px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(151, 190, 90, 0.15), rgba(44, 95, 45, 0.1));
    border-radius: 14px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.contact-card-compact:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-card-compact strong {
    display: block;
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.contact-card-compact p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.contact-card-compact a {
    color: var(--text-color);
    text-decoration: none;
}

.contact-card-compact a:hover {
    color: var(--primary-color);
}

.link-btn {
    display: inline-block;
    margin-top: 8px;
    color: var(--primary-color) !important;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
}

.link-btn:hover {
    transform: translateX(4px);
}

.form-container-compact {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(151, 190, 90, 0.2);
    position: relative;
}

.form-container-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    border-radius: 20px 20px 0 0;
}

.form-header-modern {
    margin-bottom: 25px;
    text-align: center;
}

.form-header-modern h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
}

.form-header-modern p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

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

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

.contact-form-compact input,
.contact-form-compact select,
.contact-form-compact textarea {
    padding: 14px 18px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-family: inherit;
    font-size: 14px;
    transition: all 0.3s ease;
    width: 100%;
    background: #fafafa;
}

.contact-form-compact input:focus,
.contact-form-compact select:focus,
.contact-form-compact textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 4px 12px rgba(44, 95, 45, 0.15);
    transform: translateY(-2px);
}

.contact-form-compact input::placeholder,
.contact-form-compact textarea::placeholder {
    color: #aaa;
}

.contact-form-compact textarea {
    resize: vertical;
}

.btn-block {
    width: 100%;
}

/* Legacy Contact Section Styles */
.contact-section {
    padding: 100px 0;
    background: var(--light-color);
}

/* Compact Section Styles - Universal for All Pages */
.compact-section {
    background: linear-gradient(135deg, #f8fdf8 0%, #ffffff 50%, #f0f9f0 100%);
    position: relative;
}

.compact-header {
    text-align: center;
    margin-bottom: 40px;
}

/* Compact Floor Plans Grid */
.compact-floorplans-grid {
    max-width: 800px;
    margin: 0 auto;
}

.compact-plan-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(151, 190, 90, 0.2);
    text-align: center;
}

.plan-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.compact-plan-card h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.plan-specs-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.spec-badge {
    background: var(--light-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 600;
}

.plan-price {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 700;
    margin: 20px 0;
}

.compact-features {
    list-style: none;
    text-align: left;
    max-width: 400px;
    margin: 25px auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.compact-features li {
    font-size: 14px;
    color: var(--text-color);
}

.plan-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* Compact Amenities Grid */
.compact-amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.compact-amenity-item {
    background: var(--white);
    border-radius: 12px;
    padding: 25px 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(151, 190, 90, 0.15);
}

.compact-amenity-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(44, 95, 45, 0.15);
}

.amenity-icon-compact {
    font-size: 36px;
    margin-bottom: 12px;
}

.compact-amenity-item h4 {
    font-size: 14px;
    color: var(--primary-color);
    margin: 0;
    font-weight: 600;
}

/* Compact Gallery Grid */
.compact-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.compact-gallery-grid .gallery-item {
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.compact-gallery-grid .gallery-item:hover {
    transform: scale(1.05);
}

.compact-gallery-grid .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Neighborhood 2-Column Grid */
.neighborhood-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.neighborhood-col-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.neighborhood-col-card.map-card {
    padding: 0;
    overflow: hidden;
}

.neighborhood-col-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.neighborhood-col-card p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

.neighborhood-col-card ul {
    list-style: none;
    padding: 0;
    color: #666;
}

.neighborhood-col-card ul li {
    padding: 0.5rem 0;
}

/* Legacy Contact Section Styles */

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-top: 60px;
    width: 100%;
    max-width: 100%;
}

.info-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
}

.info-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.info-item {
    margin-bottom: 20px;
    line-height: 1.8;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.info-item a:hover {
    text-decoration: underline;
}

.contact-form-container {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: var(--shadow);
}

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

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

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

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 60px 0 30px;
}

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

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-section p {
    line-height: 1.8;
    opacity: 0.8;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.social-link:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    font-size: 14px;
}

.footer-links a:hover {
    opacity: 1;
}

.equal-housing {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.8;
}

/* Page Header */
.page-header {
    padding: 80px 0 50px;
    background: linear-gradient(135deg, #2c5f2d 0%, #1a3f1b 100%);
    text-align: center;
    color: var(--white);
    margin-top: 65px;
}

.page-title {
    font-size: 42px;
    margin-bottom: 12px;
}

.page-header .page-subtitle {
    font-size: 18px;
    opacity: 0.9;
    font-weight: 400;
}

/* Gallery Filters */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-overlay h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.gallery-overlay p {
    font-size: 14px;
    opacity: 0.9;
}

.gallery-item.hidden {
    display: none;
}

.gallery-info {
    margin-top: 60px;
}

.info-box {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow);
}

.info-box h3 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.info-box p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 25px;
}

/* Subsection Title */
.subsection-title {
    font-size: 28px;
    text-align: center;
    margin: 40px 0 30px;
    color: var(--primary-color);
}

/* Features Columns */
.features-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.feature-column h5 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Nearby Section */
.nearby-section {
    margin-top: 60px;
}

.nearby-section h3 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.nearby-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.nearby-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.nearby-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.nearby-card h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.nearby-list {
    list-style: none;
}

.nearby-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
}

.nearby-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 20px;
}

/* Transportation Section */
.transportation-section {
    margin-top: 60px;
    background: var(--light-color);
    border-radius: 15px;
    padding: 40px;
}

.transportation-section h3 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.transportation-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.transport-item {
    text-align: center;
}

.transport-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.transport-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.transport-item p {
    font-size: 14px;
    color: var(--text-light);
}

/* Floor Plan Info Section */
.floorplan-info-section {
    margin-top: 60px;
    text-align: center;
}

.floorplan-info-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.info-card {
    background: var(--light-color);
    border-radius: 15px;
    padding: 30px;
}

.info-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.info-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.info-card p {
    font-size: 14px;
    color: var(--text-light);
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin-top: 80px;
    padding: 60px 40px;
    background: var(--light-color);
    border-radius: 15px;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.cta-section p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Additional Info */
.additional-info {
    margin-top: 60px;
}

.info-box-horizontal {
    display: flex;
    gap: 30px;
    background: var(--light-color);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 40px;
    align-items: center;
}

.info-icon-large {
    font-size: 64px;
    min-width: 80px;
}

.info-box-horizontal h4 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.info-box-horizontal p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* FAQ Section */
.faq-section {
    margin-top: 40px;
}

.faq-section h3 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.faq-item {
    background: var(--white);
    border-radius: 15px;
    padding: 25px;
    box-shadow: var(--shadow);
}

.faq-item h5 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Checkbox Label */
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-label span {
    font-size: 14px;
    color: var(--text-color);
}

/* Floor Plan Pricing */
.floorplan-pricing {
    margin: 20px 0;
    padding: 15px;
    background: var(--light-color);
    border-radius: 8px;
    text-align: center;
}

.price-note {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

/* Local Highlights Section */
.local-highlights {
    margin-top: 60px;
}

.local-highlights h3 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.highlight-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.highlight-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.highlight-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Visual Highlights with Images */
.highlights-grid-visual {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.highlight-card-visual {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.highlight-card-visual:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.highlight-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.highlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.highlight-card-visual:hover .highlight-image img {
    transform: scale(1.1);
}

.image-placeholder {
    font-size: 64px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.highlight-content {
    padding: 25px;
}

.highlight-content h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.highlight-content p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
}

.learn-more {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.learn-more:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.event-date {
    display: inline-block;
    background: var(--light-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 600;
}

/* Climate Section */
.climate-section {
    margin-top: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    padding: 60px 40px;
    color: var(--white);
    text-align: center;
}

.climate-section h3 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--white);
}

.climate-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto 20px;
}

.climate-stat {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.climate-stat:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.climate-section p {
    color: var(--white);
    opacity: 0.95;
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Homepage Special Offer Banner */
.special-offer-banner {
    background: linear-gradient(135deg, #dc2626, #f59e0b);
    color: var(--white);
    padding: 0;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.special-offer-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: slidePattern 20s linear infinite;
    z-index: 1;
}

.offer-banner-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 0;
    align-items: center;
    position: relative;
    z-index: 2;
}

.offer-image {
    height: 100%;
    overflow: hidden;
}

.offer-image img {
    width: 100%;
    height: 100%;
    min-height: 350px;
    object-fit: cover;
    display: block;
}

.offer-text {
    padding: 50px 60px;
    text-align: left;
}

.offer-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.offer-text h2 {
    font-size: 48px;
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.offer-text p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.6;
}

.offer-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Featured Available Unit on Homepage */
.featured-available {
    padding: 80px 0;
    background: var(--light-color);
}

/* Available Units Grid */
.available-units-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    width: 100%;
}

.unit-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    width: 100%;
    max-width: 100%;
}

.unit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(44, 95, 45, 0.2);
}

.unit-card.featured {
    border: 3px solid var(--primary-color);
}

.unit-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.unit-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.unit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
    max-width: 100%;
}

.unit-card:hover .unit-image img {
    transform: scale(1.1);
}

.unit-price-overlay {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(44, 95, 45, 0.95);
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.unit-price-overlay .price {
    font-size: 28px;
    font-weight: 700;
    display: inline;
}

.unit-price-overlay .period {
    font-size: 14px;
    opacity: 0.9;
}

.unit-card-content {
    padding: 25px;
    min-height: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.unit-card-content h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
}

.unit-type {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
}

.unit-specs-compact {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.unit-specs-compact span {
    background: var(--light-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    color: var(--primary-color);
    font-weight: 600;
}

.unit-description-short {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 20px;
}

.unit-card-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.unit-card-actions .btn {
    text-align: center;
}

.btn-block {
    width: 100%;
    display: block;
}

/* Legacy styles for old showcase */
.available-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.showcase-images {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.showcase-main {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.showcase-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.price-tag {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.price-tag .price {
    font-size: 32px;
    font-weight: 700;
    display: block;
}

.price-tag .period {
    font-size: 16px;
    opacity: 0.9;
}

.showcase-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.showcase-thumbs img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.showcase-thumbs img:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.showcase-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.availability-status {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.status-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.available {
    background: #10b981;
    color: white;
}

.special-offer-tag {
    display: inline-block;
    background: linear-gradient(135deg, #f59e0b, #dc2626);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
}

.showcase-details h3 {
    font-size: 32px;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    margin: 0;
}

.quick-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.quick-spec {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--light-color);
    border-radius: 10px;
}

.spec-icon {
    font-size: 32px;
}

.spec-info strong {
    display: block;
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 2px;
}

.spec-info small {
    font-size: 13px;
    color: var(--text-light);
}

.unit-highlights {
    background: var(--light-color);
    padding: 25px;
    border-radius: 10px;
}

.unit-highlights h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.unit-highlights ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.unit-highlights li {
    padding: 8px 0;
    font-size: 15px;
    color: var(--text-color);
    border-bottom: 1px solid #e5e7eb;
}

.unit-highlights li:last-child {
    border-bottom: none;
}

.showcase-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Available Units Page Styles */
.special-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 40px 0;
    text-align: center;
    margin-bottom: 40px;
}

.banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.banner-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

.banner-content h2 {
    font-size: 48px;
    margin: 0;
    font-family: 'Playfair Display', serif;
}

.banner-content p {
    font-size: 18px;
    margin: 0;
    opacity: 0.9;
}

.featured-unit {
    padding: 60px 0;
}

.unit-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    gap: 20px;
}

.unit-title h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin: 10px 0;
    font-family: 'Playfair Display', serif;
}

.availability-badge {
    display: inline-block;
    background: #10b981;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.unit-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-top: 10px;
}

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

.price-period {
    font-size: 18px;
    color: var(--text-light);
}

.unit-gallery {
    margin-bottom: 50px;
}

.main-photo {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: var(--shadow-lg);
}

.main-photo img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.photo-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-grid img:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.photo-grid-expanded {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.photo-grid-expanded img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.photo-grid-expanded img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.thumbnail-img.active {
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-md);
}

.unit-details-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.detail-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-5px);
}

.detail-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.detail-info h3 {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-info p {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.detail-info small {
    display: block;
    font-size: 13px;
    color: var(--text-light);
    margin-top: 5px;
}

.price-highlight {
    color: var(--secondary-color) !important;
}

.special-tag {
    display: inline-block;
    background: linear-gradient(135deg, #f59e0b, #dc2626);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 5px;
}

.unit-description {
    background: var(--light-color);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 50px;
}

.unit-description h3 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.unit-description p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 15px;
}

.unit-features-section {
    margin-bottom: 50px;
}

.unit-features-section h3 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
    font-family: 'Playfair Display', serif;
}

.unit-features-section .features-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.unit-features-section .feature-column h4 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--secondary-color);
}

.unit-features-section .feature-column ul {
    list-style: none;
}

.unit-features-section .feature-column li {
    padding: 10px 0;
    font-size: 15px;
    color: var(--text-color);
    border-bottom: 1px solid #e5e7eb;
}

.lease-terms {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    margin-bottom: 50px;
}

.lease-terms h3 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
    font-family: 'Playfair Display', serif;
}

.terms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.term-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px;
    background: var(--light-color);
    border-radius: 10px;
}

.term-item strong {
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.term-item span {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
}

.term-item.special-offer {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.term-item.special-offer strong,
.term-item.special-offer span {
    color: var(--white);
}

.unit-cta {
    background: linear-gradient(135deg, var(--primary-color), #1e4a1f);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    color: var(--white);
}

.cta-content h3 {
    font-size: 38px;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 18px;
}

.other-plans {
    padding: 80px 0;
    background: var(--light-color);
}

.other-plans h2 {
    text-align: center;
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.plan-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    text-align: center;
    position: relative;
}

.plan-card h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.plan-specs {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.plan-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 20px 0;
}

.plan-card .special-tag {
    margin-top: 15px;
}

.featured-plan {
    border: 3px solid var(--secondary-color);
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #10b981;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Responsive Design */
@media (max-width: 968px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
        z-index: 1000;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-cta {
        display: none;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 48px;
    }
    
    .floorplans-grid {
        grid-template-columns: 1fr;
    }
    
    .neighborhood-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-grid-compact {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .form-row-compact {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .nearby-grid {
        grid-template-columns: 1fr;
    }
    
    .transportation-content {
        grid-template-columns: 1fr;
    }
    
    .info-box-horizontal {
        flex-direction: column;
        text-align: center;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .highlights-grid-visual {
        grid-template-columns: 1fr;
    }
    
    .climate-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .available-units-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .unit-card {
        max-width: 100%;
    }
    
    .unit-image {
        height: 220px;
    }
    
    .compact-amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .compact-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .compact-features {
        grid-template-columns: 1fr;
    }
    
    .neighborhood-two-col {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-subtitle {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 24px;
        line-height: 1.3;
        padding: 0 10px;
    }
    
    .section-subtitle {
        font-size: 14px;
        padding: 0 10px;
    }
    
    .featured-available {
        padding: 40px 0;
    }
    
    .available-units-grid {
        gap: 20px;
        margin-top: 30px;
    }
    
    .unit-card-content {
        padding: 20px 15px;
    }
    
    .unit-card-content h3 {
        font-size: 20px;
    }
    
    .unit-type {
        font-size: 13px;
    }
    
    .unit-specs-compact {
        flex-wrap: wrap;
        gap: 6px;
        justify-content: center;
    }
    
    .unit-specs-compact span {
        font-size: 11px;
        padding: 5px 8px;
    }
    
    .unit-description-short {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .unit-price-overlay {
        bottom: 10px;
        left: 10px;
        padding: 8px 15px;
    }
    
    .unit-price-overlay .price {
        font-size: 22px;
    }
    
    .unit-price-overlay .period {
        font-size: 12px;
    }
    
    .unit-card-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .unit-image {
        height: 200px;
    }
    
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-info {
        margin-bottom: 25px;
    }
    
    .info-card {
        padding: 20px 15px;
        margin-bottom: 15px;
    }
    
    .info-card h3 {
        font-size: 18px;
    }
    
    .info-item {
        font-size: 14px;
    }
    
    .contact-form {
        padding: 25px 15px;
    }
    
    .form-group label {
        font-size: 14px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 14px;
        padding: 10px;
    }
    
    .btn {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .btn-lg {
        padding: 14px 20px;
        font-size: 15px;
    }
    
    .btn-block {
        width: 100%;
        display: block;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-links {
        grid-template-columns: 1fr;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header {
        padding: 100px 0 60px;
    }
    
    .page-title {
        font-size: 32px;
    }
    
    .contact-section-compact {
        padding: 100px 0 30px;
        min-height: auto;
    }
    
    .contact-header-compact h1 {
        font-size: 28px;
    }
    
    .contact-grid-compact {
        gap: 20px;
    }
    
    .compact-amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .compact-gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .plan-actions {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .features-columns {
        grid-template-columns: 1fr;
    }
    
    .climate-stats {
        grid-template-columns: 1fr;
    }
    
    .climate-section {
        padding: 40px 20px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    /* Homepage Available Section Responsive */
    .offer-banner-content {
        grid-template-columns: 1fr;
    }
    
    .offer-image {
        height: 250px;
    }
    
    .offer-image img {
        min-height: 250px;
    }
    
    .offer-text {
        padding: 40px 25px;
    }
    
    .offer-text h2 {
        font-size: 32px;
    }
    
    .offer-buttons {
        flex-direction: column;
    }
    
    .available-showcase {
        grid-template-columns: 1fr;
        padding: 25px;
    }
    
    .showcase-main img {
        height: 300px;
    }
    
    .showcase-thumbs {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .quick-specs {
        grid-template-columns: 1fr;
    }
    
    .showcase-cta {
        flex-direction: column;
    }
    
    /* Available Units Page Responsive */
    .unit-header {
        flex-direction: column;
    }
    
    .photo-grid {
        grid-template-columns: 1fr;
    }
    
    .photo-grid-expanded {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .photo-grid-expanded img {
        height: 150px;
    }
    
    .unit-details-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .unit-features-section .features-columns {
        grid-template-columns: 1fr;
    }
    
    .terms-grid {
        grid-template-columns: 1fr;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .unit-cta {
        padding: 40px 20px;
    }
    
    .cta-content h3 {
        font-size: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .main-photo img {
        height: 300px;
    }
}
