/* ========== СЛАЙДЕР ========== */
.hero-slider {
    width: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slider-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.slider-slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
}

.slide-content {
    position: absolute;
    bottom: 120px;
    left: 150px;
    color: white;
    z-index: 2;
    max-width: 450px;
    animation: slideUp 1s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-category {
    display: inline-block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    border-left: 3px solid #b87c4a;
    padding-left: 15px;
}

.slide-title {
    font-size: 56px;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: white;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
}

.slide-description {
    font-size: 20px;
    line-height: 1.6;
    margin: 0 0 30px 0;
    opacity: 0.95;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
    max-width: 500px;
}

.slide-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: rgba(134, 78, 60, 0.9);
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    backdrop-filter: blur(5px);
}

.slide-btn:hover {
    background-color: #5d3a1a;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Кнопки навигации слайдера */
.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.slider-prev:hover,
.slider-next:hover {
    background-color: #b87c4a;
    border-color: transparent;
}

.slider-prev {
    left: 30px;
}

.slider-next {
    right: 30px;
}

/* Точки слайдера */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #b87c4a;
    width: 30px;
    border-radius: 10px;
}

/* ========== БЛОК "О НАС" ========== */
.aboutUs {
    width: 100%;
    padding: 60px 20px;
    background-color: #FFF5EC;
}

.aboutUs-container {
    max-width: 1100px;
    margin: 0 auto;
}

.aboutUs-header {
    margin-bottom: 40px;
}

.section-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #b87c4a;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.titleAboutUs {
    font-size: 36px;
    font-weight: 700;
    color: #5d3a1a;
    line-height: 1.2;
    max-width: 500px;
    margin: 0;
}

.aboutUs-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.aboutUs-text {
    flex: 1;
}

.descriptionAboutUs {
    font-size: 16px;
    line-height: 1.6;
    color: #6b4f34;
    margin-bottom: 30px;
}

.aboutUs-image {
    flex: 1;
}

.aboutUs-image img {
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(93, 58, 26, 0.15);
}

/* ========== СЕКЦИЯ НОМЕРОВ ========== */
.rooms-section {
    width: 100%;
    padding: 60px 20px;
    background-color: #FFF8F0;
}

.rooms-container {
    max-width: 1200px;
    margin: 0 auto;
}

.rooms-title {
    font-size: 42px;
    font-weight: 700;
    color: #5d3a1a;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.rooms-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #b87c4a, #e6d5c0);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.room-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 35px rgba(93, 58, 26, 0.1);
}

.room-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.room-card:hover .room-image {
    transform: scale(1.03);
}

.room-content {
    padding: 20px;
}

.room-name {
    font-size: 20px;
    font-weight: 700;
    color: #5d3a1a;
    margin: 0 0 10px 0;
}

.room-description {
    font-size: 14px;
    line-height: 1.5;
    color: #6b4f34;
    margin: 0 0 15px 0;
}

.room-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #e6d5c0;
}

.room-price {
    font-size: 20px;
    font-weight: 700;
    color: #b87c4a;
}

.room-link {
    color: #b87c4a;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.room-link:hover {
    color: #5d3a1a;
    transform: translateX(3px);
    display: inline-block;
}

/* ========== СЕКЦИЯ УСЛУГ ========== */
.services-section {
    width: 100%;
    padding: 60px 20px;
    background-color: #FFF5EC;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-title {
    font-size: 42px;
    font-weight: 700;
    color: #5d3a1a;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.services-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #b87c4a, #e6d5c0);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 35px rgba(93, 58, 26, 0.1);
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image {
    transform: scale(1.03);
}

.service-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-name {
    font-size: 18px;
    font-weight: 700;
    color: #b87c4a;
    margin: 0 0 12px 0;
    letter-spacing: 1px;
}

.service-description {
    font-size: 14px;
    line-height: 1.6;
    color: #6b4f34;
    margin: 0;
    flex: 1;
}

.services-footer {
    background-color: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.services-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(135deg, #b87c4a, #5d3a1a);
}

.services-footer-text {
    font-size: 15px;
    line-height: 1.7;
    color: #5d3a1a;
    margin: 0;
    font-weight: 500;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* ========== СЕКЦИЯ ОТЗЫВОВ ========== */
.reviews-section {
    width: 100%;
    padding: 60px 20px;
    background-color: #FFF8F0;
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-title {
    font-size: 42px;
    font-weight: 700;
    color: #5d3a1a;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.reviews-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #b87c4a, #e6d5c0);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.review-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 35px rgba(93, 58, 26, 0.1);
}

.review-card-inner {
    padding: 25px;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(184, 124, 74, 0.2);
}

.review-name {
    font-size: 18px;
    font-weight: 700;
    color: #5d3a1a;
    margin: 0 0 5px 0;
}

.review-rating {
    color: #f4a950;
    font-size: 16px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 14px;
    line-height: 1.6;
    color: #6b4f34;
    margin: 0 0 20px 0;
    flex: 1;
}

.review-date {
    font-size: 12px;
    color: #9b7a5a;
    text-align: right;
    border-top: 1px solid #e6d5c0;
    padding-top: 15px;
    margin-top: auto;
}

.reviews-footer {
    text-align: center;
}

.reviews-more-btn {
    display: inline-block;
    padding: 12px 40px;
    background-color: transparent;
    color: #b87c4a;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #b87c4a;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.reviews-more-btn:hover {
    background-color: #b87c4a;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(184, 124, 74, 0.3);
}

/* ========== СЕКЦИЯ АКЦИЙ ========== */
.promotions-section {
    width: 100%;
    padding: 60px 20px;
    background-color: #FFF5EC;
}

.promotions-container {
    max-width: 1200px;
    margin: 0 auto;
}

.promotions-title {
    font-size: 42px;
    font-weight: 700;
    color: #5d3a1a;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.promotions-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #b87c4a, #e6d5c0);
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.promotion-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    height: 100%;
    color: white;
}

.promotion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 35px rgba(93, 58, 26, 0.2);
}

.promotion-content {
    padding: 30px 25px;
    position: relative;
    z-index: 2;
}

.promotion-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.85;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 30px;
}

.promotion-value {
    font-size: 32px;
    font-weight: 800;
    margin: 15px 0 10px 0;
    line-height: 1.2;
}

.promotion-description {
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 25px 0;
    opacity: 0.95;
    min-height: 45px;
}

.promotion-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.promotion-link:hover {
    border-bottom-color: white;
    gap: 12px;
}

.promotion-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.promotion-link:hover::after {
    transform: translateX(4px);
}

/* Кофейные градиенты для акций */
.promotion-card.discount {
    background: linear-gradient(135deg, #C68642 0%, #A05A2C 100%);
}

.promotion-card.breakfast {
    background: linear-gradient(135deg, #D4A373 0%, #B87C4A 100%);
}

.promotion-card.massage {
    background: linear-gradient(135deg, #A0705A 0%, #7A4E3A 100%);
}

.promotion-card.pool {
    background: linear-gradient(135deg, #A0784A 0%, #7A5A3A 100%);
}

.promotion-card.early-booking {
    background: linear-gradient(135deg, #B87C4A 0%, #8B5A2B 100%);
}

.promotion-card.long-stay {
    background: linear-gradient(135deg, #9B7A5A 0%, #6B4F34 100%);
    }

    /* Кнопка "Все акции" */
    .promotions-more {
        text-align: center;
        margin-top: 40px;
    }

    .promotions-more-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: transparent;
        border: 2px solid #b87c4a;
        color: #b87c4a;
        padding: 14px 50px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 50px;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        font-family: 'Inter', sans-serif;
    }

    .promotions-more-btn:hover {
        background-color: #b87c4a;
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(184, 124, 74, 0.3);
    }

    .promotions-more-btn .btn-icon {
        transition: transform 0.3s ease;
    }

    .promotions-more-btn:hover .btn-icon {
        transform: translateX(3px);
    }

    .promotions-hidden {
        width: 100%;
        animation: fadeIn 0.5s ease;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* ========== БЛОК ПОДПИСКИ ========== */
    .newsletter-block {
        width: 100%;
        padding: 80px 20px;
        background-color: #FFF8F0;
    }

    .newsletter-card {
        background: linear-gradient(135deg, #804c1d 0%, #8b5a2b 100%);
        border-radius: 30px;
        padding: 60px 40px;
        text-align: center;
        color: white;
        box-shadow: 0 20px 40px rgba(93, 58, 26, 0.3);
        position: relative;
        overflow: hidden;
    }

    .newsletter-card::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
        pointer-events: none;
    }

    .newsletter-title {
        font-size: 42px;
        font-weight: 700;
        margin: 0 0 15px 0;
        position: relative;
        z-index: 2;
    }

    .newsletter-description {
        font-size: 18px;
        line-height: 1.6;
        margin: 0 0 40px 0;
        opacity: 0.9;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        position: relative;
        z-index: 2;
    }

    .newsletter-form {
        max-width: 500px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
    }

    .newsletter-wrapper {
        display: flex;
        gap: 15px;
        margin-bottom: 20px;
        background: white;
        border-radius: 60px;
        padding: 5px;
    }

    .newsletter-input {
        flex: 1;
        height: 60px;
        padding: 0 25px;
        border: none;
        border-radius: 60px;
        font-size: 16px;
        color: #5d3a1a;
        background: transparent;
        outline: none;
    }

    .newsletter-input::placeholder {
        color: #9b7a5a;
    }

    .newsletter-button {
        display: flex;
        align-items: center;
        gap: 10px;
        height: 60px;
        padding: 0 35px;
        background: #b87c4a;
        color: white;
        border: none;
        border-radius: 60px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        white-space: nowrap;
    }

    .newsletter-button:hover {
        background: #5d3a1a;
        transform: translateX(3px);
    }

    .newsletter-agree {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        color: rgba(255, 255, 255, 0.9);
        font-size: 14px;
        cursor: pointer;
    }

    .newsletter-agree input[type="checkbox"] {
        width: 18px;
        height: 18px;
        cursor: pointer;
        accent-color: #b87c4a;
    }

    /* ========== АДАПТИВНОСТЬ ========== */
    @media screen and (max-width: 992px) {
        .rooms-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .services-grid {
            gap: 20px;
        }

        .promotions-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media screen and (max-width: 900px) {
        .slide-content {
            bottom: 100px;
            left: 120px;
        }

        .slide-title {
            font-size: 48px;
        }

        .slide-description {
            font-size: 18px;
        }

        .aboutUs-content {
            flex-direction: column;
            gap: 30px;
        }

        .titleAboutUs {
            font-size: 32px;
            max-width: 100%;
        }
    }

    @media screen and (max-width: 768px) {
        .hero-slider {
            height: 500px;
        }

        .slide-content {
            bottom: 80px;
            left: 86px;
            right: 30px;
        }

        .slide-title {
            font-size: 40px;
        }

        .slide-description {
            font-size: 16px;
            max-width: 100%;
        }

        .slider-prev,
        .slider-next {
            width: 40px;
            height: 40px;
        }

        .slider-prev {
            left: 15px;
        }

        .slider-next {
            right: 15px;
        }

        .services-title,
        .reviews-title,
        .promotions-title,
        .rooms-title {
            font-size: 36px;
        }

        .services-grid,
        .reviews-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .newsletter-card {
            padding: 40px 20px;
        }

        .newsletter-title {
            font-size: 32px;
        }

        .newsletter-description {
            font-size: 16px;
            margin-bottom: 30px;
        }

        .newsletter-wrapper {
            flex-direction: column;
            background: transparent;
            padding: 0;
        }

        .newsletter-input {
            background: white;
            height: 55px;
        }

        .newsletter-button {
            width: 100%;
            justify-content: center;
            height: 55px;
        }
    }

    @media screen and (max-width: 600px) {

        .rooms-grid,
        .services-grid,
        .reviews-grid,
        .promotions-grid {
            grid-template-columns: 1fr;
        }

        .promotions-more-btn {
            width: 100%;
            justify-content: center;
        }
    }

    @media screen and (max-width: 480px) {
        .hero-slider {
            height: 400px;
        }

        .slide-content {
            bottom: 60px;
            left: 72px;
            right: 20px;
        }

        .slide-category {
            font-size: 12px;
        }

        .slide-title {
            font-size: 32px;
        }

        .slide-description {
            font-size: 14px;
            margin-bottom: 20px;
        }

        .slide-btn {
            padding: 12px 25px;
            font-size: 14px;
        }

        .aboutUs {
            padding: 40px 15px;
        }

        .titleAboutUs {
            font-size: 28px;
        }

        .stat-number {
            font-size: 28px;
        }

        .stat-label {
            font-size: 10px;
        }

        .newsletter-title {
            font-size: 28px;
        }

        .newsletter-description {
            font-size: 15px;
        }

        .promotion-content {
            padding: 25px 20px;
        }

        .promotion-value {
            font-size: 28px;
        }
    }    
.rooms-grid {
    align-items: stretch;
    /* Растягиваем карточки на одинаковую высоту */
}

.room-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.room-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.room-description {
    flex: 1;
    /* Занимает доступное пространство */
    margin-bottom: 15px;
}

.room-footer {
    margin-top: auto;
    /* Прижимаем блок с ценой и кнопкой к низу */
}
.about-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.benefit-card {
    background: white;
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .06);
    transition: .3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card i {
    font-size: 30px;
    color: #b87c4a;
    margin-bottom: 15px;
}

.benefit-card h4 {
    color: #5d3a1a;
    margin-bottom: 10px;
}

.benefit-card p {
    color: #6b4f34;
    font-size: 14px;
}

.about-cta {
    margin-top: 40px;
    background: linear-gradient(135deg, #b87c4a, #8b5a2b);
    color: white;
    padding: 35px;
    border-radius: 20px;
    text-align: center;
}

.about-cta h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.about-cta p {
    margin-bottom: 25px;
    line-height: 1.6;
}

.about-btn {
    display: inline-block;
    padding: 15px 35px;
    background: white;
    color: #b87c4a;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: .3s;
}

.about-btn:hover {
    transform: translateY(-3px);
}
.stat-card {
    position: relative;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    border-radius: 18px 18px 0 0;
}
.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 35px rgba(184, 124, 74, .15);
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: #5d3a1a;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #9b7a5a;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    line-height: 1.4;
}
.stat-card:hover::before {
    height: 6px;
    transition: 0.3s;
}
.stat-card {
    background: linear-gradient(180deg,#ffffff 0%,#fffaf5 100%);
}
.aboutUs-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
}
/* ========== СТАТИСТИКА ========== */

.aboutUs-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.stat-card {
    position: relative;
    background: linear-gradient(180deg,
            #ffffff 0%,
            #fffaf5 100%);
    border-radius: 18px;
    padding: 25px 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .05);
    border: 1px solid rgba(184, 124, 74, .12);
    overflow: hidden;
    transition: all .3s ease;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg,
            #b87c4a,
            #e0c3a0);
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 35px rgba(184, 124, 74, .15);
}

.stat-card:hover::before {
    height: 6px;
    transition: .3s;
}

.stat-card i {
    font-size: 28px;
    color: #b87c4a;
    margin-bottom: 15px;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: #5d3a1a;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #9b7a5a;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    line-height: 1.4;
}

/* ========== АДАПТИВ СТАТИСТИКИ ========== */

@media screen and (max-width:768px) {

    .aboutUs-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-card {
        padding: 20px 12px;
    }

    .stat-number {
        font-size: 30px;
    }

    .stat-label {
        font-size: 11px;
    }
}

@media screen and (max-width:480px) {

    .aboutUs-stats {
        grid-template-columns: 1fr;
        gap: 12px;
        margin: 30px 0;
    }

    .stat-card {
        padding: 18px;
    }

    .stat-card i {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 10px;
        letter-spacing: .8px;
    }
}