/* ===================== Contact page ===================== */

.contact-hero {
    background: linear-gradient(180deg, #f8f5ef 0%, #fdfaf3 100%);
    border-bottom: 1px solid #ece6d6;
}

.contact-eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    color: #8a7a55;
    font-weight: 600;
    margin-bottom: 12px;
}

.contact-title {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 700;
    color: #1f1d18;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.contact-intro {
    color: #5b554a;
    max-width: 640px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.7;
}

.contact-body {
    padding: 70px 0;
    background: #ffffff;
}

.contact-info-card,
.contact-form-card {
    background: #fff;
    border: 1px solid #ece6d6;
    border-radius: 14px;
    padding: 32px;
    height: 100%;
    box-shadow: 0 4px 20px rgba(20, 16, 8, 0.04);
}

.contact-info-card {
    background: linear-gradient(180deg, #fdfaf3 0%, #ffffff 100%);
}

.contact-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1f1d18;
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 1px solid #ece6d6;
}

.contact-info-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid #f4eedd;
}

.contact-info-item:last-child {
    border-bottom: 0;
}

.contact-info-icon {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #f3ead4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8a7a55;
}

.contact-info-icon svg {
    width: 22px;
    height: 22px;
}

.contact-info-content {
    flex: 1;
    min-width: 0;
}

.contact-info-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #8a7a55;
    margin-bottom: 4px;
    font-weight: 600;
}

.contact-info-value {
    color: #1f1d18;
    font-weight: 500;
    text-decoration: none;
    display: block;
    line-height: 1.5;
    word-break: break-word;
}

a.contact-info-value:hover {
    color: #8a7a55;
}

.contact-socials {
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid #ece6d6;
}

.contact-socials-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.contact-social-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #f3ead4;
    color: #8a7a55;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s ease;
}

.contact-social-btn svg {
    width: 18px;
    height: 18px;
}

.contact-social-btn:hover {
    background: #1f1d18;
    color: #fdfaf3;
    transform: translateY(-2px);
}

.contact-form .form-label {
    font-weight: 600;
    color: #3d3a32;
    margin-bottom: 6px;
    font-size: 0.92rem;
}

.contact-form .form-control {
    border: 1px solid #ece6d6;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 0.98rem;
    transition: all 0.2s ease;
    background: #fdfaf3;
}

.contact-form .form-control:focus {
    border-color: #8a7a55;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(138, 122, 85, 0.15);
}

.contact-submit {
    background: #1f1d18;
    color: #fdfaf3;
    border: 0;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s ease;
    font-size: 1rem;
}

.contact-submit:hover {
    background: #8a7a55;
    color: #fff;
}

.contact-submit svg {
    width: 18px;
    height: 18px;
}

[dir="rtl"] .contact-submit svg {
    transform: scaleX(-1);
}

.contact-alert {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 14px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.contact-alert svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.contact-alert-success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.contact-alert-error {
    background: #fdecea;
    color: #c62828;
    border: 1px solid #f5c2c0;
}

.contact-alert-error ul {
    list-style: none;
    padding: 0;
}

.contact-map {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #ece6d6;
    box-shadow: 0 4px 20px rgba(20, 16, 8, 0.04);
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 420px;
    border: 0;
}

@media (max-width: 768px) {
    .contact-body {
        padding: 40px 0;
    }
    .contact-info-card,
    .contact-form-card {
        padding: 22px;
    }
    .contact-map iframe {
        height: 300px;
    }
}
