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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-text: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* Skip to content */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-to-content:focus {
    top: 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo img {
    height: 50px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.phone-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 18px;
    padding: 10px 15px;
}

.phone-link:hover {
    color: var(--secondary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    display: block;
    transition: var(--transition);
}

/* Main Navigation */
.main-nav {
    background: var(--primary-color);
}

.main-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-nav li {
    position: relative;
}

.main-nav a {
    display: block;
    padding: 15px 20px;
    color: var(--white);
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-nav a:hover {
    background: rgba(255,255,255,0.1);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--white);
    box-shadow: -2px 0 10px rgba(0,0,0,0.2);
    z-index: 2000;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.mobile-menu-header img {
    height: 40px;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: var(--primary-color);
}

.mobile-menu nav ul {
    list-style: none;
}

.mobile-menu nav a {
    display: block;
    padding: 15px 20px;
    color: var(--primary-color);
    border-bottom: 1px solid #e0e0e0;
}

.mobile-menu nav a:hover {
    background: var(--bg-light);
}

.mobile-menu-actions {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

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

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 2;
    width: 90%;
    max-width: 800px;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

.slide-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slide-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.slider-controls button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.3);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition);
    z-index: 3;
}

.slider-controls button:hover {
    background: rgba(255,255,255,0.5);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: var(--transition);
}

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

/* Introduction Section */
.intro-section {
    padding: 80px 0;
    text-align: center;
}

.intro-section h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.intro-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 30px;
    color: var(--light-text);
}

.intro-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

/* Parallax Section */
.intention-section {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.parallax-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.intention-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.intention-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.intention-content h2 {
    font-size: 3rem;
    margin-bottom: 30px;
}

/* Feature Cards */
.feature-cards {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.feature-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.feature-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: var(--transition);
}

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

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
}

.card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.card-content p {
    font-size: 1rem;
}

/* Gallery Highlight */
.gallery-highlight {
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.gallery-item.large {
    grid-row: span 2;
    height: 515px;
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-highlight-content {
    text-align: center;
}

.gallery-highlight-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

/* Neighborhood Section */
.neighborhood-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.neighborhood-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.neighborhood-text h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.neighborhood-text p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--light-text);
}

.neighborhood-image img {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Instagram Section */
.instagram-section {
    padding: 80px 0;
    text-align: center;
}

.instagram-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.instagram-handle {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 40px;
    display: inline-block;
}

.instagram-handle:hover {
    color: var(--primary-color);
}

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

.instagram-grid a {
    display: block;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

.instagram-grid a:hover img {
    transform: scale(1.1);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

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

.cta-section .phone-link {
    color: var(--white);
    font-size: 1.5rem;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: var(--white);
    padding: 50px 0 30px;
}

.footer .container {
    text-align: center;
}

.footer-contact {
    margin-bottom: 30px;
}

.footer-contact a {
    font-size: 1.2rem;
    line-height: 1.8;
}

.footer-contact a:hover {
    color: var(--secondary-color);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--white);
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-copyright {
    padding-top: 20px;
    border-top: 1px solid #333;
}

.footer-copyright p {
    color: #999;
    font-size: 0.9rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.7);
}

.modal.active {
    display: block;
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 30px;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    position: relative;
}

.close {
    position: absolute;
    right: 20px;
    top: 15px;
    color: #aaa;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

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

.modal-content h2 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.modal-content img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
}

.pet-policy-list {
    list-style: none;
    margin-bottom: 25px;
}

.pet-policy-list li {
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

.pet-policy-list li:last-child {
    border-bottom: none;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.95);
    color: var(--white);
    padding: 20px;
    z-index: 2500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-notice.hidden {
    display: none;
}

.cookie-notice p {
    flex: 1;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-buttons a {
    color: var(--secondary-color);
}

.cookie-buttons a:hover {
    color: var(--white);
}

.cookie-buttons button {
    padding: 10px 20px;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
}

.cookie-buttons button:hover {
    background: #2980b9;
}

/* Responsive Design */
@media (max-width: 968px) {
    .header-actions .btn {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        display: none;
    }
    
    .slide-content h1 {
        font-size: 2.5rem;
    }
    
    .slide-content h2 {
        font-size: 1.8rem;
    }
    
    .neighborhood-content {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item.large {
        grid-row: span 1;
        height: 250px;
    }
    
    .intro-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-actions {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .header-actions {
        gap: 10px;
    }
    
    .phone-link {
        font-size: 16px;
        padding: 8px 10px;
    }
    
    .hero-slider {
        height: 400px;
    }
    
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .slide-content h2 {
        font-size: 1.5rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .intro-section h2 {
        font-size: 1.8rem;
    }
    
    .intention-content h2 {
        font-size: 2rem;
    }
    
    .card-grid {
        grid-template-columns: 1fr;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cookie-notice {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .slide-content h1 {
        font-size: 1.5rem;
    }
    
    .slide-content h2 {
        font-size: 1.2rem;
    }
    
    .instagram-grid {
        grid-template-columns: 1fr;
    }
    
    .slider-controls button {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

/* ========================================
   ADDITIONAL PAGE STYLES
   ======================================== */

/* Page Header */
.page-header {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.page-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}

.page-header-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 2;
    width: 90%;
}

.page-header-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-header-content p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Active Navigation State */
.main-nav a.active {
    background: rgba(255,255,255,0.2);
}

/* Amenities Page */
.amenities-intro {
    padding: 60px 0 40px;
    text-align: center;
}

.amenities-intro p {
    font-size: 1.2rem;
    max-width: 900px;
    margin: 0 auto;
    color: var(--light-text);
}

.amenities-grid {
    padding: 40px 0 80px;
}

.amenity-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.amenity-section.reverse {
    direction: rtl;
}

.amenity-section.reverse > * {
    direction: ltr;
}

.amenity-image img {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.amenity-content h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.amenity-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.amenity-list li {
    padding-left: 25px;
    position: relative;
    color: var(--light-text);
}

.amenity-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.amenities-note {
    text-align: center;
    color: var(--light-text);
    font-style: italic;
    margin-top: 40px;
}

/* Floorplans Page */
.floorplans-section {
    padding: 80px 0;
}

.floorplans-disclaimer {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
    color: var(--light-text);
    font-size: 0.9rem;
}

.floorplan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.floorplan-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.floorplan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.floorplan-image {
    height: 250px;
    overflow: hidden;
}

.floorplan-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.floorplan-details {
    padding: 25px;
}

.floorplan-details h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.floorplan-specs {
    color: var(--light-text);
    margin-bottom: 10px;
}

.floorplan-price {
    font-size: 1.3rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.floorplan-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 25px;
}

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

/* Gallery Page */
.gallery-page {
    padding: 80px 0;
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item-page {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item-page:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

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

.gallery-item-page:hover img {
    transform: scale(1.1);
}

/* Neighborhood Page */
.neighborhood-intro {
    padding: 60px 0;
    text-align: center;
}

.neighborhood-intro p {
    font-size: 1.1rem;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    color: var(--light-text);
}

.neighborhood-categories {
    padding: 40px 0 80px;
    background: var(--bg-light);
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

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

.category-content {
    display: none;
}

.category-content.active {
    display: block;
}

.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.place-card {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: var(--transition);
}

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

.place-card h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
}

/* Residents Page */
.residents-portal {
    padding: 80px 0;
}

.portal-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.portal-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.portal-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--light-text);
}

.portal-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Contact Page */
.contact-section {
    padding: 80px 0;
}

.contact-intro {
    text-align: center;
    margin-bottom: 50px;
}

.contact-intro p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--light-text);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.info-card a {
    color: var(--text-color);
    display: block;
    line-height: 1.8;
}

.info-card a:hover {
    color: var(--secondary-color);
}

.info-card p {
    margin-bottom: 10px;
    line-height: 1.6;
    color: var(--light-text);
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.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 input,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

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

.form-group input.error,
.form-group textarea.error {
    border-color: var(--accent-color);
}

.contact-form button {
    align-self: flex-start;
}

.form-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.form-success h3 {
    color: #155724;
    margin-bottom: 10px;
}

/* Responsive Styles for New Pages */
@media (max-width: 968px) {
    .amenity-section,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .amenity-list {
        grid-template-columns: 1fr;
    }
    
    .page-header-content h1 {
        font-size: 2rem;
    }
    
    .floorplan-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .page-header {
        height: 300px;
    }
    
    .page-header-content h1 {
        font-size: 1.5rem;
    }
    
    .places-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-masonry {
        grid-template-columns: 1fr;
    }
}
