.lang-switcher {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-left: 2rem;
    font-size: 0.75rem;
    letter-spacing: 1px;
}
.lang-switcher a {
    opacity: 0.6;
    text-decoration: none;
    color: inherit;
}
.lang-switcher a.active,
.lang-switcher a:hover {
    opacity: 1;
    color: var(--accent);
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
    margin-top: 10px;
}
.contact-form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.contact-form label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
    color: #ccc;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #333;
    background: #1a1a1a;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    box-sizing: border-box;
}
.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
}
.contact-form .hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
}
.contact-alert {
    padding: 12px 16px;
    margin-bottom: 16px;
    border: 1px solid #ff4757;
    background: rgba(255, 71, 87, 0.15);
    color: #ffb3ba;
    font-size: 0.9rem;
}
.contact-phone-row {
    margin-top: 10px;
    text-align: center;
}
.protected-phone {
    border: none;
    font-family: inherit;
	background: transparent !important;
}
.contact-phone-row span {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #CCC;
    margin-bottom: 10px;
}
.thank-you-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 160px 20px 80px;
    background: #111;
    color: #fff;
}
.thank-you-box {
    max-width: 700px;
    padding: 60px 40px;
    border: 1px solid #333;
}
.thank-you-box h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
}
.thank-you-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ddd;
    margin-bottom: 2rem;
}
@media screen and (max-width: 900px) {
    .lang-switcher { margin-left: 0; }
    .contact-form-row { grid-template-columns: 1fr; }
}