/* ============================================
   СТРАНИЦА "УСЛУГИ"
   Стили созданы точно по макету Figma
   ============================================ */

/* Секция "Услуги при проживании" */
.services-page {
    position: relative;
    width: 100%;
    max-width: 1728px;
    margin: 0 auto;
    padding: 0 30px 100px;
    overflow: visible;
}

.services-page__container {
    position: relative;
    width: 1668px;
    margin: 0 auto;
    padding: 0;
}

/* Заголовок "Услуги при проживании" */
/* Figma: x=-5227, y=6687, размер 579×68px */
.services-page__title {
    font-family: 'Coolvetica', 'Yanone Kaffeesatz', sans-serif;
    font-weight: 700;
    font-size: 56.51962661743164px;
    line-height: 67.82355499267578px;
    color: #000000;
    margin: 0 0 101px 0;
    letter-spacing: 0;
}

/* Контейнер карточек */
.services-page__cards {
    display: flex;
    flex-direction: column;
    gap: 83px;
}

/* Элемент услуги (карточка + текст) */
/* Figma: карточка x=28, текст x=772, gap = 772 - 28 - 659 = 85px */
.services-page__item {
    display: flex;
    align-items: flex-start;
    gap: 85px;
    position: relative;
}

/* Карточка услуги */
/* Figma: размеры 659×312px (первая), 657×312px (остальные) */
.services-page__card {
    position: relative;
    width: 659px;
    height: 312px;
    border-radius: 25px;
    overflow: hidden;
    background: #ffffff;
    flex-shrink: 0;
}

.services-page__item:nth-child(2) .services-page__card,
.services-page__item:nth-child(3) .services-page__card,
.services-page__item:nth-child(4) .services-page__card {
    width: 657px;
}

/* Карточка с фиолетовым фоном (Wi-Fi) */
.services-page__card--purple {
    background: #a065d6;
}

/* Изображение в карточке */
.services-page__card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

/* Контент карточки (текст справа) */
/* Figma: заголовок y=643, карточка y=576, разница = 67px сверху */
.services-page__card-content {
    margin-top: 67px;
    width: 667px;
    flex-shrink: 0;
}

/* Заголовок карточки */
.services-page__card-title {
    font-family: 'Coolvetica', 'Yanone Kaffeesatz', sans-serif;
    font-weight: 700;
    font-size: 56.51962661743164px;
    line-height: 67.82355499267578px;
    color: #000000;
    margin: 0 0 14px 0;
    letter-spacing: 0;
}

/* Описание карточки */
.services-page__card-description {
    font-family: 'Coolvetica', 'Yanone Kaffeesatz', sans-serif;
    font-weight: 300;
    font-size: 40.14759826660156px;
    line-height: 48.177120208740234px;
    color: #000000;
    margin: 0;
    letter-spacing: 0;
}

/* Секция "Оснащение" */
.services-equipment {
    position: relative;
    width: 100%;
    max-width: 1728px;
    margin: 0 auto;
    padding: 0 30px 100px;
    overflow: visible;
}

.services-equipment__container {
    position: relative;
    width: 1668px;
    margin: 0 auto;
    padding: 0;
}

/* Заголовок "Оснащение" */
/* Figma: x=30, y=2248, размер 282×68px */
.services-equipment__title {
    font-family: 'Coolvetica', 'Yanone Kaffeesatz', sans-serif;
    font-weight: 700;
    font-size: 56.51962661743164px;
    line-height: 67.82355499267578px;
    color: #000000;
    /* Figma: заголовок y=2248, текст y=2384, разница = 2384 - 2248 - 68 = 68px */
    margin: 0 0 68px 0;
    letter-spacing: 0;
}

/* Контейнер колонок */
/* Figma: первая колонка x=10, вторая x=685, gap = 685 - (10 + 667) = 8px */
.services-equipment__columns {
    display: flex;
    gap: 8px;
}

/* Колонка оснащения */
/* Figma: первая колонка x=10, вторая x=685, каждая шириной 667px */
.services-equipment__column {
    width: 667px;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Элемент оснащения */
.services-equipment__item {
    font-family: 'Coolvetica', 'Yanone Kaffeesatz', sans-serif;
    font-weight: 300;
    font-size: 40.14759826660156px;
    line-height: 48.177120208740234px;
    color: #000000;
    margin: 0;
    letter-spacing: 0;
    position: relative;
    padding-left: 20px;
}

.services-equipment__item::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #000000;
}

/* ============================================
   АДАПТИВНЫЕ СТИЛИ
   ============================================ */

@media (max-width: 1728px) {
    .services-page__container,
    .services-equipment__container {
        width: 100%;
        max-width: 1668px;
        padding: 0 20px;
    }
}

@media (max-width: 1440px) {
    .services-page {
        padding: 0 20px 80px;
    }
    
    .services-page__title,
    .services-equipment__title {
        font-size: 48px;
        line-height: 56px;
    }
    
    .services-page__title {
        margin-bottom: 60px;
    }
    
    .services-page__item {
        gap: 30px;
    }
    
    .services-page__card {
        width: 100%;
        max-width: 659px;
    }
    
    .services-page__item:nth-child(2) .services-page__card,
    .services-page__item:nth-child(3) .services-page__card,
    .services-page__item:nth-child(4) .services-page__card {
        width: 100%;
        max-width: 657px;
    }
    
    .services-page__card-content {
        margin-top: 0;
        width: 100%;
        max-width: 500px;
    }
    
    .services-page__card-title {
        font-size: 48px;
        line-height: 56px;
    }
    
    .services-page__card-description {
        font-size: 32px;
        line-height: 38px;
    }
    
    .services-equipment {
        padding: 0 20px 80px;
    }
    
    .services-equipment__title {
        margin-bottom: 50px;
    }
    
    .services-equipment__columns {
        gap: 20px;
    }
    
    .services-equipment__column {
        width: 100%;
        max-width: 550px;
    }
    
    .services-equipment__text {
        font-size: 32px;
        line-height: 38px;
    }
}

@media (max-width: 1024px) {
    .services-page {
        padding: 0 20px 60px;
    }
    
    .services-page__title,
    .services-equipment__title {
        font-size: 42px;
        line-height: 50px;
    }
    
    .services-page__title {
        margin-bottom: 50px;
    }
    
    .services-page__cards {
        gap: 50px;
    }
    
    .services-page__item {
        flex-direction: column;
        gap: 20px;
    }
    
    .services-page__card {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 280px;
    }
    
    .services-page__card-content {
        margin-top: 0;
        width: 100%;
    }
    
    .services-page__card-title {
        font-size: 36px;
        line-height: 42px;
        margin-bottom: 12px;
    }
    
    .services-page__card-description {
        font-size: 24px;
        line-height: 30px;
    }
    
    .services-equipment {
        padding: 0 20px 60px;
    }
    
    .services-equipment__title {
        margin-bottom: 50px;
    }
    
    .services-equipment__columns {
        flex-direction: column;
        gap: 30px;
    }
    
    .services-equipment__column {
        width: 100%;
        max-width: 100%;
    }
    
    .services-equipment__text {
        font-size: 24px;
        line-height: 30px;
    }
}

@media (max-width: 768px) {
    .services-page {
        padding: 0 15px 40px;
    }
    
    .services-page__title,
    .services-equipment__title {
        font-size: 32px;
        line-height: 38px;
    }
    
    .services-page__title {
        margin-bottom: 30px;
    }
    
    .services-page__cards {
        gap: 30px;
    }
    
    .services-page__card {
        min-height: 240px;
        border-radius: 20px;
    }
    
    .services-page__card-content {
        padding: 15px;
    }
    
    .services-page__card-title {
        font-size: 28px;
        line-height: 34px;
        margin-bottom: 10px;
    }
    
    .services-page__card-description {
        font-size: 20px;
        line-height: 26px;
    }
    
    .services-equipment {
        padding: 0 15px 40px;
    }
    
    .services-equipment__title {
        margin-bottom: 30px;
    }
    
    .services-equipment__columns {
        gap: 25px;
    }
    
    .services-equipment__text {
        font-size: 18px;
        line-height: 24px;
    }
}

@media (max-width: 480px) {
    .services-page {
        padding: 0 15px 30px;
    }
    
    .services-page__title,
    .services-equipment__title {
        font-size: 24px;
        line-height: 30px;
    }
    
    .services-page__title {
        margin-bottom: 25px;
    }
    
    .services-page__cards {
        gap: 25px;
    }
    
    .services-page__card {
        min-height: 200px;
        border-radius: 16px;
    }
    
    .services-page__card-content {
        padding: 12px;
    }
    
    .services-page__card-title {
        font-size: 22px;
        line-height: 28px;
        margin-bottom: 8px;
    }
    
    .services-page__card-description {
        font-size: 16px;
        line-height: 22px;
    }
    
    .services-equipment {
        padding: 0 15px 30px;
    }
    
    .services-equipment__title {
        margin-bottom: 25px;
    }
    
    .services-equipment__columns {
        gap: 20px;
    }
    
    .services-equipment__text {
        font-size: 16px;
        line-height: 22px;
    }
}

