/* Секция заказа */
.zakaz {
    padding: 80px 0;
    background-color: #e8b830;
    position: relative;
    overflow: hidden;
}

/* Декоративные элементы фона */
.zakaz::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(230, 126, 34, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.zakaz__watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 17vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.119);
    white-space: nowrap;
    pointer-events: none;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 20px;
    font-family: 'Inter', sans-serif;
    user-select: none;
}


.zakaz::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(241, 196, 15, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.zakaz .container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.zakaz__title {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease;
}

.zakaz__description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

/* Кнопка */
.btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.btn--primary {
    background: linear-gradient(135deg, #e67e22, #f39c12);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(230, 126, 34, 0.3);
    position: relative;
    overflow: hidden;
}

.btn--primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(230, 126, 34, 0.4);
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.btn--primary:hover::before {
    width: 300px;
    height: 300px;
}

@media (max-width: 768px) {
    .zakaz__watermark {
        font-size: 20vw;
        letter-spacing: 10px;
        white-space: normal;
        text-align: center;
        line-height: 1.2;
    }
}

/* Анимации */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Адаптивность */
@media (max-width: 768px) {
    .zakaz {
        padding: 60px 20px;
    }
    
    .zakaz__title {
        font-size: 36px;
    }
    
    .zakaz__description {
        font-size: 18px;
    }
    
    .btn {
        padding: 14px 30px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .zakaz__title {
        font-size: 28px;
    }
    
    .zakaz__description {
        font-size: 16px;
    }
}