/* Thanks Page Styles */
.thanks {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary-bg) 0%, var(--color-text-light) 50%, var(--color-secondary) 100%);
    padding: 40px 0;
}

.thanks__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.thanks__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 25px;
}

.thanks__icon {
    width: 100px;
    height: 100px;
    background-color: var(--color-primary-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    animation: pulse 2s infinite;
}

.thanks__icon i {
    font-size: 48px;
    color: var(--color-text-light);
}

.thanks__title {
    font-family: var(--font-secondary);
    font-size: 36px;
    line-height: 1.2;
    color: var(--color-text-dark);
    margin-bottom: 10px;
}

.thanks__message {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(46, 46, 46, 0.9);
    margin-bottom: 10px;
}

.thanks__note {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(46, 46, 46, 0.7);
    margin-bottom: 20px;
}

.thanks__btn {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    background-color: var(--color-primary-accent);
    color: var(--color-text-light);
    border: none;
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.thanks__btn:hover {
    background-color: var(--color-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(163, 191, 168, 0.3);
}

.thanks__decoration {
    display: flex;
    justify-content: center;
    align-items: center;
}

.thanks__image {
    width: 100%;
    max-width: 350px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(46, 46, 46, 0.15);
    opacity: 0.9;
}

/* Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(163, 191, 168, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(163, 191, 168, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(163, 191, 168, 0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .thanks__container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .thanks__title {
        font-size: 28px;
    }
    
    .thanks__message {
        font-size: 16px;
    }
    
    .thanks__note {
        font-size: 14px;
    }
    
    .thanks__icon {
        width: 80px;
        height: 80px;
    }
    
    .thanks__icon i {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .thanks {
        padding: 20px 0;
    }
    
    .thanks__container {
        gap: 30px;
    }
    
    .thanks__title {
        font-size: 24px;
    }
    
    .thanks__message {
        font-size: 15px;
    }
    
    .thanks__note {
        font-size: 13px;
    }
    
    .thanks__icon {
        width: 70px;
        height: 70px;
    }
    
    .thanks__icon i {
        font-size: 32px;
    }
    
    .thanks__btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}
