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

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --lavender-primary: #8B7AB8;
    --lavender-light: #A396C4;
    --lavender-dark: #6B5B95;
    --lavender-accent: #9B89B3;
    --background-primary: #FAFAF9;
    --background-secondary: #F5F4F2;
    --surface: #FFFFFF;
    --surface-elevated: #FFFFFF;
    --text-primary: #2C2C2C;
    --text-secondary: #5A5A5A;
    --text-muted: #8B8B8B;
    --border-light: #E8E6E3;
    --border-medium: #D1CFC9;
    --shadow-light: rgba(43, 43, 43, 0.08);
    --shadow-medium: rgba(43, 43, 43, 0.12);
    --shadow-strong: rgba(43, 43, 43, 0.16);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--background-primary);
    min-height: 100vh;
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* Refined card styling */
.refined-card {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow-light);
    transition: all 0.3s ease;
}

.refined-card:hover {
    box-shadow: 0 8px 30px var(--shadow-medium);
    transform: translateY(-2px);
}

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

/* Navigation */
nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border-light);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px var(--shadow-light);
}

.nav-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0.3rem;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--lavender-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: calc(100% - 2rem);
}

.nav-link:hover {
    color: var(--lavender-primary);
}

.nav-link.active {
    color: var(--lavender-primary);
}

.nav-link.active::after {
    width: calc(100% - 2rem);
}

/* Header */
header {
    background: linear-gradient(135deg, var(--surface) 0%, var(--background-secondary) 100%);
    color: var(--text-primary);
    padding: 4rem 0;
    border-bottom: 1px solid var(--border-light);
    position: relative;
}

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

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

.lavender-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    animation: float 3s ease-in-out infinite;
}

h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--text-primary);
    line-height: 1.2;
}

.location {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    margin-top: 0.5rem;
    font-weight: 400;
}

.quick-contact {
    text-align: right;
}

.quick-contact a {
    color: var(--lavender-light);
    text-decoration: none;
    display: block;
    margin: 0.25rem 0;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 2px;
}

.quick-contact a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--lavender-primary);
    transition: width 0.3s ease;
}

.quick-contact a:hover::after {
    width: 100%;
}

.quick-contact a:hover {
    color: var(--lavender-primary);
}

/* Hero Section */
.hero {
    padding: 5rem 0;
    text-align: center;
    background: var(--background-secondary);
}

.hero h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.hero p {
    font-size: 1.2rem;
    max-width: 680px;
    margin: 0 auto 3rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 400;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.btn {
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    cursor: pointer;
    font-size: 0.95rem;
    position: relative;
    letter-spacing: 0.02em;
    font-family: 'Inter', sans-serif;
    display: inline-block;
}

.btn-primary {
    background: var(--lavender-primary);
    border-color: var(--lavender-primary);
    color: white;
    box-shadow: 0 2px 8px rgba(139, 122, 184, 0.2);
}

.btn-primary::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: white;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.btn-primary:hover::after {
    width: calc(100% - 2rem);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(139, 122, 184, 0.3);
    background: var(--lavender-dark);
    border-color: var(--lavender-dark);
}

.btn-secondary {
    background: transparent;
    color: var(--lavender-primary);
    border-color: var(--lavender-primary);
}

.btn-secondary::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--lavender-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.btn-secondary:hover::after {
    width: calc(100% - 2rem);
}

.btn-secondary:hover {
    background: var(--lavender-primary);
    color: white;
    transform: translateY(-1px);
}

/* Refined unit action buttons */
.unit-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    align-items: center;
}

.btn-download {
    background: var(--lavender-primary);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    border: 1px solid var(--lavender-primary);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-download::after {
    content: '';
    position: absolute;
    bottom: 0.6rem;
    left: 50%;
    width: 0;
    height: 1px;
    background: white;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.btn-download:hover::after {
    width: calc(100% - 2.5rem);
}

.btn-download:hover {
    background: var(--lavender-dark);
    border-color: var(--lavender-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 122, 184, 0.25);
}

.btn-schedule {
    background: transparent;
    color: var(--lavender-primary);
    text-decoration: none;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    border: 1px solid var(--border-medium);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.btn-schedule::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--lavender-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.btn-schedule:hover::after {
    width: calc(100% - 2rem);
}

.btn-schedule:hover {
    border-color: var(--lavender-primary);
    background: rgba(139, 122, 184, 0.05);
    transform: translateY(-1px);
}

/* Photo Gallery */
.gallery {
    padding: 5rem 0;
    background: var(--surface);
}

.section-title {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--text-primary);
    margin-bottom: 4rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.2;
    position: relative;
}

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

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

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border-light);
    transition: all 0.4s ease;
    cursor: pointer;
    box-shadow: 0 4px 20px var(--shadow-light);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px var(--shadow-medium);
    border-color: var(--lavender-primary);
}

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

.gallery-item::after {
    content: attr(data-label);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2.5rem 1rem 1.2rem;
    font-size: 0.95rem;
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.gallery-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(123, 104, 196, 0.3);
}

/* Gallery Tabs */
.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: var(--background-secondary);
    color: var(--text-secondary);
    border: 1px solid var(--border-light);
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    position: relative;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--lavender-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.tab-btn:hover {
    background: var(--surface);
    border-color: var(--lavender-primary);
    color: var(--lavender-primary);
    transform: translateY(-1px);
}

.tab-btn:hover::after {
    width: calc(100% - 2rem);
}

.tab-btn.active {
    background: var(--lavender-primary);
    color: white;
    border-color: var(--lavender-primary);
    box-shadow: 0 4px 12px rgba(139, 122, 184, 0.25);
}

.tab-content {
    display: none;
}

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

.tab-title {
    color: var(--text-primary);
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 500;
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: -0.01em;
}

.room-section {
    margin-bottom: 4rem;
}

.room-title {
    color: var(--lavender-primary);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    font-weight: 500;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    letter-spacing: -0.01em;
}

.room-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--lavender-primary);
    border-radius: 1px;
}

/* Video Section */
.video-section {
    margin-bottom: 3rem;
}

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

.video-overlay {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
}

.video-info {
    padding: 1rem;
}

.video-info h4 {
    margin: 0;
    color: var(--lavender-primary);
    font-size: 1.1rem;
}

.video-info p {
    margin: 0.5rem 0 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.video-item {
    background: var(--surface);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 2px solid transparent;
}

.video-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--lavender-primary);
}

.video-item video {
    width: 100%;
    height: auto;
    min-height: 200px;
    object-fit: cover;
    background: #f5f5f5;
    cursor: pointer;
    display: block;
}

.video-item video:hover {
    opacity: 0.9;
}

.video-item h4 {
    margin: 0;
    color: #7b68c4;
    font-size: 1.1rem;
}

.video-item p {
    margin: 0.5rem 0 0;
    color: #666;
    font-size: 0.9rem;
}

/* Units Section */
.units {
    padding: 5rem 0;
    background: var(--background-secondary);
}

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

.unit-card {
    background: var(--surface);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.unit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.05) 0%, transparent 50%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.unit-card:hover::before {
    opacity: 1;
}

.unit-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: var(--lavender-primary);
}

.unit-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.unit-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.unit-price {
    background: var(--lavender-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(156, 136, 212, 0.3);
}

.unit-availability {
    background: #22c55e;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.unit-features {
    list-style: none;
    margin: 1.5rem 0;
    color: var(--text-secondary);
}

.unit-card p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
}

.unit-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(156, 136, 212, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
}

.unit-features li:before {
    content: "🌿";
    font-size: 1.2rem;
}

.unit-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
    padding: 1rem;
    background: #f8f6ff;
    border-radius: 10px;
}

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

.spec-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: #7b68c4;
}

.spec-label {
    font-size: 0.9rem;
    color: #666;
}

/* Pricing Section */
.pricing {
    padding: 4rem 0;
    background: var(--background-light);
}

.pricing-table {
    max-width: 800px;
    margin: 0 auto;
    background: var(--surface);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(156, 136, 212, 0.2);
}

.pricing-header {
    background: linear-gradient(135deg, var(--lavender-primary), var(--lavender-dark));
    color: white;
    padding: 2rem;
    text-align: center;
}

.pricing-body {
    padding: 2rem;
    background: var(--surface);
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(156, 136, 212, 0.2);
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-label {
    font-weight: bold;
    color: var(--lavender-light);
}

.pricing-value {
    color: var(--text-secondary);
}

/* Contact Form */
.contact {
    padding: 4rem 0;
    background: var(--background-dark);
}

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

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(156, 136, 212, 0.2);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #7b68c4;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #9c88d4;
}

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

.contact-info {
    background: linear-gradient(135deg, #9c88d4 0%, #7b68c4 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(156, 136, 212, 0.3);
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    font-size: 1.1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-item-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* Testimonials */
.testimonials {
    padding: 4rem 0;
    background: var(--background-light);
}

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

.testimonial-card {
    background: var(--surface);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    text-align: center;
    border: 1px solid rgba(156, 136, 212, 0.2);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--lavender-primary);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.testimonial-author {
    font-weight: bold;
    color: var(--lavender-light);
}

.testimonial-rating {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* Neighborhood Map */
.neighborhood {
    padding: 4rem 0;
    background: var(--background-dark);
}

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

.map-placeholder {
    background: white;
    height: 400px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(123, 104, 196, 0.3);
    box-shadow: 0 10px 25px rgba(156, 136, 212, 0.15);
}

.neighborhood-highlights {
    background: var(--surface);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(156, 136, 212, 0.2);
}

.neighborhood-highlights h4 {
    color: var(--lavender-light) !important;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(156, 136, 212, 0.2);
    color: var(--text-secondary);
}

.highlight-item:last-child {
    border-bottom: none;
}

.highlight-icon {
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
}

.highlight-distance {
    margin-left: auto;
    background: var(--lavender-primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq {
    padding: 4rem 0;
    background: var(--background-light);
}

.faq-item {
    background: var(--surface);
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(156, 136, 212, 0.2);
}

.faq-question {
    padding: 1.5rem;
    background: var(--surface);
    cursor: pointer;
    font-weight: bold;
    color: var(--text-primary);
    user-select: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(156, 136, 212, 0.2);
}

.faq-question:hover {
    background: rgba(156, 136, 212, 0.1);
    color: var(--lavender-light);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: var(--surface);
    color: var(--text-secondary);
}

.faq-answer.active {
    padding: 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.faq-toggle {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    color: var(--lavender-primary);
}

.faq-toggle.active {
    transform: rotate(45deg);
}

/* Application Section */
.application {
    padding: 4rem 0;
    background: var(--background-dark);
    text-align: center;
}

.application h2 {
    color: var(--text-primary);
}

.application p {
    color: var(--text-secondary);
}

.application-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.step-card {
    background: var(--surface);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(156, 136, 212, 0.2);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--lavender-primary);
}

.step-card p {
    color: var(--text-secondary);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--lavender-primary), var(--lavender-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(156, 136, 212, 0.3);
}

.step-title {
    font-size: 1.2rem;
    color: var(--lavender-light);
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background: #4a4a4a;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    color: #9c88d4;
    margin-bottom: 1rem;
}

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

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
}

.footer-section ul li a:hover {
    color: #9c88d4;
}

.footer-bottom {
    border-top: 1px solid #666;
    padding-top: 1rem;
    text-align: center;
    color: #ccc;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Image Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.lightbox-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 1200px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox img,
.lightbox video {
    max-width: 100%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox video {
    background: #000;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: var(--lavender-primary);
    transform: scale(1.1);
}

.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Decorative Elements */
.decorative-border {
    height: 4px;
    background: linear-gradient(90deg, #9c88d4, #e1bee7, #9c88d4);
    margin: 2rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        text-align: center;
        flex-direction: column;
        gap: 1rem;
    }

    .quick-contact {
        text-align: center;
    }

    h1 {
        font-size: 2rem;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .units-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-grid,
    .neighborhood-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .nav-container {
        gap: 1rem;
    }

    .nav-link {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}