.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.thank-you-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 0 50px;
    position: relative;
}

.thank-you-container {
    text-align: center;
    max-width: 800px;
    background: white;
    padding: 80px 60px;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.thank-you-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(45deg, #8B4513, #D2691E, #FFD700);
}

.success-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 40px;
    position: relative;
    animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.success-icon::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 3px solid rgba(40, 167, 69, 0.3);
    border-radius: 50%;
    animation: ripple 2s infinite;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.thank-you-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #8B4513;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out;
}

.thank-you-subtitle {
    font-size: 1.5rem;
    color: #555;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.thank-you-message {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 50px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.next-steps {
    background: linear-gradient(45deg, #f8f9fa, #e9ecef);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.next-steps-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #8B4513;
    margin-bottom: 25px;
}

.steps-list {
    list-style: none;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 35px;
    height: 35px;
    background: linear-gradient(45deg, #8B4513, #D2691E);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 15px;
    flex-shrink: 0;
}

.step-text {
    color: #555;
    line-height: 1.6;
}

.action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(45deg, #8B4513, #D2691E);
    color: white;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.3);
}

.btn-secondary {
    background: white;
    color: #8B4513;
    border: 2px solid #8B4513;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 69, 19, 0.4);
}

.btn-secondary:hover {
    background: #8B4513;
    color: white;
}

.btn i {
    margin-left: 8px;
}

.contact-reminder {
    background: rgba(139, 69, 19, 0.05);
    padding: 30px;
    border-radius: 20px;
    margin-top: 40px;
    border-left: 5px solid #8B4513;
    animation: fadeInUp 1s ease-out 1.5s both;
}

.contact-reminder h4 {
    color: #8B4513;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.contact-info a {
    color: #555;
}

.contact-item {
    display: flex;
    align-items: center;
    color: #666;
}

.contact-item i {
    color: #D2691E;
    margin-right: 8px;
}

.floating-element {
    position: absolute;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
}

.floating-element:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    font-size: 2rem;
}

.floating-element:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-delay: 2s;
    font-size: 1.5rem;
}

.floating-element:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
    font-size: 2.5rem;
}

.floating-element:nth-child(4) {
    bottom: 10%;
    right: 10%;
    animation-delay: 1s;
    font-size: 1.8rem;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@media (max-width: 768px) {
    .thank-you-title {
        font-size: 2.5rem;
    }

    .thank-you-subtitle {
        font-size: 1.2rem;
    }

    .thank-you-container {
        padding: 50px 30px;
    }

    .action-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-info {
        flex-direction: column;
        gap: 15px;
    }

    .steps-list {
        padding: 0 10px;
    }
}