.apartment-hero {
    padding-top: 100px;
    min-height: 70vh;
    background: linear-gradient(135deg, var(--teal-primary) 0%, var(--teal-light) 100%);
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.apartment-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.2;
    background: url('~/Adelfas.Theme/img/main.jpg') center/cover;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-info h1 {
    color: white;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
}

.hero-info p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.price-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.price-large {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.price-note {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.quick-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.quick-stat {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
}

.quick-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.quick-stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.25rem;
}

.gallery-main {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 400px 200px;
    gap: 1rem;
    margin-bottom: 4rem;
}

.gallery-main-image {
    grid-row: 1 / 3;
    background: linear-gradient(135deg, var(--teal-primary) 0%, var(--teal-light) 100%);
    border-radius: var(--radius-xl);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
}

.gallery-side {
    background: linear-gradient(45deg, var(--orange-primary) 0%, var(--orange-light) 100%);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.location-map {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--teal-primary) 0%, var(--teal-light) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 2rem 0;
}

.nearby-places {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.place-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.place-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.place-icon {
    font-size: 2rem;
}

.place-distance {
    font-weight: 700;
    color: var(--teal-primary);
}

.booking-section {
    background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-light) 100%);
    border-radius: var(--radius-xl);
    padding: var(--spacing-3xl);
    text-align: center;
    color: white;
    margin: var(--spacing-3xl) 0;
}

.booking-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.booking-section p {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .gallery-main {
        grid-template-columns: 1fr;
        grid-template-rows: 300px 200px 200px;
    }

    .gallery-main-image {
        grid-row: 1 / 2;
    }

    .quick-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .apartment-hero {
        padding-top: 180px;
        min-height: auto;
    }

    .nearby-places {
        grid-template-columns: 1fr;
    }
}
