/* Homepage-specific enhancements */

/* Hero company info */
.hero-company-info {
    margin-top: 20px;
    color: #999;
    font-size: 13px;
}

/* Services list links */
.services-list a {
    color: #111;
    text-decoration: none;
    transition: color 0.3s ease;
}

.services-list a:hover {
    color: #ff4b22;
}

/* Gifts - flexible grid */
.gifts-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.gifts-row .gifts-border {
    width: calc(33.333% - 30px);
    min-width: 250px;
}

.gifts-icon svg {
    width: 48px;
    height: 48px;
    margin-bottom: 15px;
}

/* Reviews section */
#reviews {
    padding: 100px 0;
    background: #f9f9f9;
    border-top: 1px solid #f0f0f0;
}

.reviews-wrap {
    text-align: center;
}

.reviews-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.review-block {
    width: 30%;
    min-width: 280px;
    background: #fff;
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-block:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.review-stars {
    margin-bottom: 16px;
}

.review-star {
    color: #FFB800;
    font-size: 20px;
}

.review-text {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.review-author {
    font-family: 'Bauhaus', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #111;
    margin: 0 0 4px;
}

.review-profession {
    font-size: 13px;
    color: #999;
    margin: 0;
}

/* Commercial offer CTA */
.co-cta-section {
    padding: 60px 0;
}

.co-cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #0E131D 0%, #1a2332 100%);
    border-radius: 20px;
    padding: 40px 48px;
    gap: 32px;
}

.co-cta-content {
    display: flex;
    align-items: center;
    gap: 24px;
}

.co-cta-icon {
    font-size: 48px;
    line-height: 1;
    flex-shrink: 0;
}

.co-cta-text h3 {
    font-family: 'Adineue', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 6px;
}

.co-cta-text p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    line-height: 1.5;
}

.co-cta-btn {
    flex-shrink: 0;
    white-space: nowrap;
    padding: 14px 32px;
    font-size: 15px;
}

@media (max-width: 767px) {
    .co-cta-card {
        flex-direction: column;
        padding: 28px 24px;
        text-align: center;
        gap: 20px;
    }

    .co-cta-content {
        flex-direction: column;
        gap: 16px;
    }

    .co-cta-text h3 {
        font-size: 20px;
    }

    .co-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Scroll animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animations for children */
.stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.25s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.35s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.4s; }

.stagger-children.visible > * {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 767px) {
    .gifts-row .gifts-border {
        width: 100%;
        min-width: unset;
    }

    .review-block {
        width: 100%;
        min-width: unset;
    }

    .hero-company-info {
        text-align: center;
    }
}
