/* Thanks Page Styles */
.thanks {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-beige) 0%, var(--color-white) 100%);
    padding: 2rem 0;
}

.thanks__container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.thanks__content {
    background-color: var(--color-white);
    padding: 3rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--box-shadow);
    text-align: center;
}

.thanks__icon {
    width: 100px;
    height: 100px;
    background-color: var(--color-tomato);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    color: var(--color-white);
}

.thanks__title {
    color: var(--color-cocoa);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.thanks__message {
    color: var(--color-sage);
    line-height: 1.6;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.thanks__info {
    color: var(--color-sage);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.thanks__phone,
.thanks__email {
    color: var(--color-tomato);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.thanks__phone:hover,
.thanks__email:hover {
    color: var(--color-cocoa);
}

.thanks__btn {
    background-color: var(--color-tomato);
    color: var(--color-white);
    padding: 12px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.thanks__btn:hover {
    background-color: var(--color-cocoa);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-hover);
}

/* Responsive Design */
@media (max-width: 768px) {
    .thanks__content {
        padding: 2rem;
    }
    
    .thanks__title {
        font-size: 1.75rem;
    }
    
    .thanks__icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .thanks__content {
        padding: 1.5rem;
    }
    
    .thanks__title {
        font-size: 1.5rem;
    }
    
    .thanks__message,
    .thanks__info {
        font-size: 1rem;
    }
    
    .thanks__icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
}
