.thanks-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    background: linear-gradient(135deg, #fff5f0 0%, #ffffff 50%, #f0f9ff 100%);
    position: relative;
    overflow: hidden;
}

.thanks-section::before {
    content: "";
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
}

.thanks-section::after {
    content: "";
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 150, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite reverse;
}

.thanks-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease;
}

.success-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 40px;
    background: linear-gradient(135deg, #ff6b00 0%, #ff8c3a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    box-shadow: 0 20px 60px rgba(255, 107, 0, 0.3);
    animation: scaleIn 0.6s ease 0.3s both;
}

.thanks-content h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: #1a1a1a;
    animation: fadeInUp 0.6s ease 0.4s both;
}

.thanks-content p {
    font-size: 1.3rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease 0.5s both;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.6s both;
}

.btn-primary,
.btn-secondary {
    padding: 16px 40px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b00 0%, #ff8c3a 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.4);
}

.btn-secondary {
    background: white;
    color: #1a1a1a;
    border: 2px solid #e0e0e0;
}

.btn-secondary:hover {
    border-color: #ff6b00;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-box {
    background: white;
    padding: 40px;
    border-radius: 20px;
    margin-top: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    animation: fadeInUp 0.6s ease 0.7s both;
}

.info-box h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.info-box p {
    font-size: 1rem;
    margin-bottom: 0;
}

.social-share {
    margin-top: 40px;
    animation: fadeInUp 0.6s ease 0.8s both;
}

.social-share p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #666;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.social-links a:hover {
    background: linear-gradient(135deg, #ff6b00 0%, #ff8c3a 100%);
    color: white;
    transform: translateY(-5px);
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 800px) {
    .thanks-content h1 {
        font-size: 2.5rem;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .info-box {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .thanks-content h1 {
        font-size: 2rem;
    }

    .success-icon {
        width: 100px;
        height: 100px;
        font-size: 3rem;
    }

    .info-box {
        padding: 25px;
    }
}