@import url('style_new.css');

.contact-section {
    padding: 8rem 0;
    min-height: 80vh;
    margin-top: var(--header-height);
}

.contact-container {
    background: var(--bg-color);
    padding: 3rem;
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-top: 2rem;
}

.contact-title {
    font-size: 2.5rem;
    font-family: "Futura", "Jost", sans-serif;
    color: var(--accent-color);
    margin-bottom: 1rem;
    text-align: center;
}

.contact-lead {
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0.7;
}

.contact-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 3rem;
}

.contact-table th {
    padding: 1.5rem;
    text-align: left;
    width: 250px;
    background: rgba(0,0,0,0.02);
    border-bottom: 1px solid var(--glass-border);
    font-weight: 600;
}

.contact-table th span {
    font-size: 0.8rem;
    color: #c53030;
    margin-left: 0.5rem;
    font-weight: 400;
}

.contact-table td {
    padding: 1.5rem;
    border-bottom: 1px solid var(--glass-border);
}

.contact-table input[type="text"],
.contact-table textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--glass-border);
    background: #fff;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-table input[type="text"]:focus,
.contact-table textarea:focus {
    border-color: var(--accent-color);
    outline: none;
    box-shadow: 0 0 10px rgba(166, 138, 46, 0.1);
}

.contact-table textarea {
    height: 150px;
}

.btn-submit-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.error-list {
    background: #fff5f5;
    border-left: 4px solid #f56565;
    padding: 1rem;
    margin-bottom: 2rem;
    list-style: none;
    color: #c53030;
}

.thx-message {
    text-align: center;
    padding: 4rem 0;
    font-size: 1.2rem;
    line-height: 2;
}

@media (max-width: 768px) {
    .contact-table th, .contact-table td {
        display: block;
        width: 100%;
    }
    .contact-table th {
        background: none;
        padding-bottom: 0.5rem;
        border-bottom: none;
    }
    .contact-container {
        padding: 1.5rem;
    }
}
