.cabins-section {
    padding: 4rem 0;
    background: white;
}

.section-intro {
    text-align: center;
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.8;
    max-width: 900px;
    margin: -2rem auto 4rem;
    font-family: 'Lato', sans-serif;
}

.cabin-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 5rem;
}

.feature-card {
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid #E2E8F0;
    transition: all 0.4s;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 31, 63, 0.15);
    border-color: var(--silver);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1.5rem;
    color: #F59E0B;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--navy-blue);
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: #64748B;
    line-height: 1.8;
    font-family: 'Lato', sans-serif;
}

/* Cabin Photos */
.cabin-photos {
    margin-top: 5rem;
}

.photos-title {
    font-size: 2rem;
    color: var(--navy-blue);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 600;
}

.photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.photo-placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #E2E8F0 0%, #CBD5E1 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #94A3B8;
}

.photo-placeholder p {
    color: #64748B;
    font-family: 'Lato', sans-serif;
    font-size: 1.125rem;
}

.cabin-photo-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 4/3;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s;
}

.cabin-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cabin-photo-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 31, 63, 0.2);
}

.photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 31, 63, 0.9) 0%, transparent 100%);
    color: white;
    padding: 1.5rem;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .cabin-features {
        grid-template-columns: 1fr;
    }

    .photos-grid {
        grid-template-columns: 1fr;
    }
}
