/* ===== Contact Page ===== */
.contact-page {
    padding: 40px 100px 80px;
    background: #ffffff;
}

.contact-container {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    gap: 33px;
    align-items: stretch;
}

/* ===== Left: Form Side ===== */
.contact-form-side {
    flex: 0 0 583px;
    display: flex;
    flex-direction: column;
}

.contact-form-side form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-field label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #00293D;
    margin-bottom: 8px;
}

.contact-field .required {
    color: #e53e3e;
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    background: #ffffff;
    border: 1px solid rgba(0, 41, 61, 0.12);
    border-radius: 16px;
    padding: 20px 16px;
    font-size: 14px;
    font-weight: 400;
    color: #00293D;
    transition: border-color 0.2s ease;
    outline: none;
    font-family: inherit;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: #98A2B3;
    font-size: 14px;
}

.contact-field input:focus,
.contact-field textarea:focus {
    border-color: #00a8ab;
    box-shadow: 0 0 0 3px rgba(0, 168, 171, 0.1);
}

.contact-field textarea {
    resize: vertical;
    min-height: 120px;
}

.field-error {
    color: #e53e3e;
    font-size: 13px;
    margin-top: 6px;
    margin-bottom: 0;
}

.contact-submit-btn {
    width: 246px;
    height: 56px;
    background: #00a8ab;
    border: none;
    border-radius: 100px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: inherit;
}

.contact-submit-btn:hover {
    background: #008e90;
}

/* ===== Right: Info Panel ===== */
.contact-info-panel {
    flex: 1;
    min-height: 687px;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 41, 61, 0.05), rgba(0, 168, 171, 0.08));
}

.contact-info-content {
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    gap: 48px;
    height: 100%;
}

.contact-info-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-title {
    font-size: 40px;
    font-weight: 800;
    color: #00293D;
    line-height: 1.4;
    margin: 0;
}

.contact-info-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #535965;
    line-height: 1.7;
    margin: 0;
}

/* ===== Contact Info Items ===== */
.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 41px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 41, 61, 0.06);
}

.contact-info-text h3 {
    font-size: 24px;
    font-weight: 700;
    color: #00293D;
    margin: 0 0 4px;
    line-height: 1.4;
}

.contact-info-text p {
    font-size: 16px;
    font-weight: 400;
    color: #00293D;
    margin: 0;
    line-height: 1.5;
}

.contact-info-text h3 + p {
    margin-top: 12px;
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
    .contact-page {
        padding: 40px 48px 80px;
    }

    .contact-form-side {
        flex: 1;
    }

    .contact-info-title {
        font-size: 32px;
    }

    .contact-info-text h3 {
        font-size: 20px;
    }
}

@media (max-width: 992px) {
    .contact-page {
        padding: 32px 24px 60px;
    }

    .contact-container {
        flex-direction: column-reverse;
        gap: 32px;
    }

    .contact-form-side {
        flex: unset;
    }

    .contact-info-panel {
        min-height: auto;
    }

    .contact-info-content {
        padding: 40px 32px;
        gap: 32px;
    }

    .contact-info-title {
        font-size: 28px;
    }

    .contact-info-text h3 {
        font-size: 18px;
    }

    .contact-submit-btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .contact-page {
        padding: 24px 16px 48px;
    }

    .contact-info-content {
        padding: 32px 24px;
        gap: 28px;
    }

    .contact-info-title {
        font-size: 24px;
    }

    .contact-info-items {
        gap: 28px;
    }

    .contact-info-text h3 {
        font-size: 16px;
    }

    .contact-info-text p {
        font-size: 14px;
    }
}
