@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700&family=Open+Sans:wght@400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: #f7f5f2;
    color: #1f2937;
    min-height: 100vh;
    padding: 40px 15px;
}

.contact-header {
    text-align: center;
    margin-bottom: 28px;
}

.logo-link {
    display: inline-block;
}

.custom-logo {
    max-width: 180px;
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.contact-wrapper {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}

.contact-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 38px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.8fr);
    gap: 34px;
    align-items: start;
}

.contact-card h1,
.contact-info-side h2 {
    font-family: 'Montserrat', sans-serif;
    color: #111827;
}

.contact-card h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.subtitle {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 28px;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #374151;
}

input,
textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d6d3d1;
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Open Sans', sans-serif;
    background: #fff;
    transition: all 0.25s ease;
    outline: none;
    color: #1f2937;
}

input:focus,
textarea:focus {
    border-color: #b79d82;
    box-shadow: 0 0 0 4px rgba(183, 157, 130, 0.15);
}

textarea {
    resize: vertical;
    min-height: 140px;
}

.btn-submit {
    width: 100%;
    border: none;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    background: #111111;
    color: #ffffff;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn-submit:hover {
    transform: translateY(-1px);
    background: #b79d82;
    box-shadow: 0 12px 24px rgba(183, 157, 130, 0.24);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.error-message {
    display: block;
    margin-top: 6px;
    color: #dc2626;
    font-size: 13px;
    min-height: 16px;
}

.input-error {
    border-color: #dc2626 !important;
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.08) !important;
}

.contact-info-side {
    padding-top: 8px;
}

.info-box {
    background: #faf8f5;
    border: 1px solid #ece6df;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 18px;
}

.info-box:last-child {
    margin-bottom: 0;
}

.contact-info-side h2 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-info-side p,
.contact-info-side a {
    font-size: 14px;
    line-height: 1.7;
    color: #4b5563;
    text-decoration: none;
}

.contact-info-side a:hover {
    color: #b79d82;
}

.map-box {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid #ddd6ce;
    background: #eee7df;
}

.map-box iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-side {
        padding-top: 0;
    }
}

@media (max-width: 640px) {
    body {
        padding: 24px 12px;
    }

    .custom-logo {
        max-width: 150px;
    }

    .contact-card {
        padding: 24px;
        border-radius: 16px;
    }

    .contact-card h1 {
        font-size: 24px;
    }
}