/* Hero Section */
.hero {
    padding: 240px 0 0;
    margin-bottom: 86px;
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Museo Sans', sans-serif;
    font-size: 48px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: -1%;
    line-height: 1.3;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: var(--text-lg);
    line-height: 1.5;
    letter-spacing: -0.02em;
    color: var(--color-neutral-500);
    margin-bottom: 0;
}

/* Main Image */
.main-image {
    max-width: 1240px;
    margin: 86px auto 0;
}

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

/* Map Section (Desktop) */
.map-section {
    margin-top: 120px;
    padding: 100px 0;
    background-color: var(--color-neutral-800);
}

.map-container {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    gap: 72px;
}

.map-img-container {
    flex: 1;
    position: relative;
    height: 700px;
}

.map-img-container img {
    height: 100%;
    width: auto;
    object-fit: cover;
}

.info-section {
    flex: 1;
    padding: 0 50px;
    display: flex;
    flex-direction: column;
    color: white;
}

.info-section h2 {
    font-size: 30px;
    font-weight: var(--font-weight-bold);
    margin-bottom: 10px;
}

.location-map-item {
    display: flex;
    align-items: center;
    font-size: var(--text-lg);
    font-weight: var(--font-weight-regular);
    line-height: 1.4;
    letter-spacing: -0.02em;
}

.location-map-item::before {
    content: '';
    width: 14px;
    height: 14px;
    background-color: var(--color-primary);
    border-radius: 50%;
    margin-right: 8px;
}

.location-map-desc {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 20px;
    margin-bottom: 30px;
}

.location-map-desc p {
    margin-top: 6px;
    text-align: right;
    font-size: 10px;
    font-weight: var(--font-weight-bold);
    line-height: 1.4;
    letter-spacing: -0.02em;
    color: white;
}

.location-map-desc-img-container {
    display: flex;
    gap: 10px;
}

.location-map-desc-img-container div {
    flex: 1;
}

.location-map-desc-img-container img {
    object-fit: cover;
}

.location-map-video {
    width: 98%;
    height: auto;
}

/* Location Info Items */
.location-info-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.location-info-item {
    padding-bottom: 30px;
    border-bottom: 0.5px solid var(--color-neutral-300);
}

.section-badge {
    display: inline-flex;
    padding: var(--space-1) var(--space-2);
    background: var(--color-neutral-200);
    border-radius: var(--space-1);
    font-family: var(--font-family-display);
    font-size: var(--text-sm);
    font-weight: var(--font-weight-regular);
    text-transform: uppercase;
    color: var(--color-neutral-800);
    margin-bottom: 25px;
    letter-spacing: -0.02em;
}

.location-title {
    font-size: var(--text-2xl);
    font-weight: var(--font-weight-medium);
    color: var(--color-neutral-900);
    margin-bottom: 25px;
    letter-spacing: -0.02em;
}

.location-description {
    font-size: var(--text-lg);
    line-height: 1.6;
    color: var(--color-neutral-500);
    letter-spacing: -0.02em;
    margin-bottom: 0;
}

/* Features Section */
.features-section {
    background-color: var(--color-neutral-900);
    padding: 90px 0;
    color: white;
}

.features-container {
    max-width: 1440px;
    margin: 0 auto;
    padding-left: 50px;
}

.features-header {
    margin-bottom: 80px;
}

.features-subtitle {
    font-size: var(--text-4xl);
    font-weight: var(--font-weight-medium);
    margin-bottom: var(--space-5);
    letter-spacing: -0.02em;
}

.features-description {
    font-size: var(--text-lg);
    line-height: 1.5;
    color: var(--color-neutral-500);
    max-width: 327px;
    letter-spacing: -0.02em;
    margin-bottom: 0;
}

.features-content {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.features-map-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 58px;
}

.features-map {
    flex: 1;
    width: 720px;
    height: auto;
}

.features-map img {
    width: 100%;
    height: auto;
}

.features-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-description-item {
    display: flex;
    font-size: var(--text-lg);
    font-weight: var(--font-weight-regular);
    line-height: 1.4;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    padding-left: 22px;
    position: relative;
}

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

.feature-description-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 14px;
    height: 14px;
    background-color: var(--color-primary);
    border-radius: 7px;
}

.feature-title {
    font-size: 21px;
    font-weight: var(--font-weight-regular);
    line-height: 1.4;
    letter-spacing: -0.02em;
}

.feature-description {
    font-size: var(--text-lg);
    line-height: 1.6;
    color: var(--color-neutral-600);
    letter-spacing: -0.02em;
    margin-bottom: 0;
}

/* Residences Section */
.residences-section {
    padding: 160px 0 120px;
}

.residences-container {
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    display: flex;
    overflow: hidden;
}

.residences-card {
    flex: 1;
    background: #F7F8F9;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1120px;
    margin: 0 auto;
    padding-left: 50px;
}

.residences-image {
    flex: 1;
    height: 200px;
    overflow: hidden;
}

.residences-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.residences-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 58px;
}

.residences-label {
    font-size: 14px;
    color: #262B2F;
    margin-bottom: 8px;
}

.residences-title {
    font-family: 'Museo Sans', sans-serif;
    font-size: 36px;
    font-weight: 300;
    text-transform: uppercase;
    color: #12171A;
    margin-bottom: 20px;
}

.residences-icon {
    width: 50px;
    height: 25px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding-top: 150px;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .main-image {
        margin-top: 50px;
        padding: 0;
    }
    
    /* Mobile Map Section - Stacked Layout */
    .map-section {
        flex-direction: column;
        margin-top: var(--space-20);
        height: auto;
        padding: var(--space-20) 0;
    }

    .map-container {
        flex-direction: column;
    }

    .map-img-container {
        width: 100%;
    }

    .map-img-container img {
        width: 100%;
        height: auto;
    }

    .info-section {
        padding: 40px 20px 0;
    }

    .info-section h2 {
        margin-bottom: var(--space-5);
    }

    .location-info-list {
        gap: 30px;
    }

    .location-title {
        font-size: 24px;
    }

    .location-description {
        font-size: 16px;
    }

    .location-map-item {
        font-size: 16px;
    }

    /* Mobile Features */
    .features-section {
        padding-top: 60px;
    }

    .features-header {
        margin-bottom: 30px;
    }

    .features-container {
        padding: 0;
    }

    .features-list {
        padding: 0 var(--space-5);
    }

    .features-subtitle {
        font-size: 30px;
    }

    .features-description {
        font-size: 18px;
        line-height: 1.6;
        max-width: 327px;
    }

    .feature-description-item {
        font-size: 16px;
    }

    .feature-description-item::before {
        top: 3px;
    }

    .features-content {
        flex-direction: column;
        gap: var(--space-10);
    }

    .features-map-container {
        flex: auto;
        width: 100%;
        gap: var(--space-10);
    }

    .features-map {
        width: 100%;
        height: auto;
    }

    .features-list {
        gap: 30px;
    }

    .feature-description {
        font-size: 16px;
    }

    /* Mobile Residences */
    .residences-section {
        padding: 0;
        margin: var(--space-20) 0 60px;
    }
    .residences-container {
        flex-direction: column;
        padding: 0 20px;
    }

    .residences-card {
        flex-direction: column;
        padding: 40px;
        align-items: flex-start;
        gap: 0;
        margin: 0;
    }

    .residences-image {
        height: 180px;
        flex: auto;
    }

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

    .residences-info {
        padding: 0;
        width: 100%;
    }

}

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

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Loading animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}
