/* Contact Page Styles - Mobile First */

/* ── Hero ── */
.contact-hero {
    position: relative;
    background: linear-gradient(135deg, #003366, #004B87);
    padding: 60px 20px;
    text-align: center;
    color: white;
}

.contact-hero-content {
    max-width: 620px;
    margin: 0 auto;
}

.contact-hero h1 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 14px;
}

.contact-hero p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

/* ── Main section ── */
.contact-main {
    background: #f5f6f8;
    padding: 60px 20px 80px;
}

.contact-container {
    max-width: 1060px;
    margin: 0 auto;
}

/* ── Contact channels ── */
.contact-channels {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 56px;
}

.contact-channel {
    background: #ffffff;
    border-radius: 10px;
    padding: 28px 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
}

.contact-channel-icon {
    width: 46px;
    height: 46px;
    background: #003366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin-bottom: 14px;
}

.contact-channel h3 {
    font-size: 17px;
    font-weight: 700;
    color: #003366;
    margin-bottom: 8px;
}

.contact-channel p {
    font-size: 14px;
    color: #666;
    line-height: 1.65;
    margin-bottom: 14px;
}

.contact-channel-link {
    font-size: 14px;
    font-weight: 600;
    color: #FF8C00;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 140, 0, 0.3);
    padding-bottom: 1px;
    transition: border-color 0.18s;
}

.contact-channel-link:hover {
    border-color: #FF8C00;
}

/* ── Form + info layout ── */
.contact-form-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

/* ── Form wrapper ── */
.contact-form-wrapper {
    background: #ffffff;
    border-radius: 12px;
    padding: 36px 28px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.contact-form-title {
    font-size: 22px;
    font-weight: 700;
    color: #003366;
    margin-bottom: 6px;
}

.contact-form-sub {
    font-size: 14px;
    color: #888;
    margin-bottom: 28px;
}

/* ── Form fields ── */
.contact-form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.contact-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.contact-field label {
    font-size: 13px;
    font-weight: 600;
    color: #444;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
    padding: 12px 14px;
    border: 1.5px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    color: #333;
    background: #fafafa;
    outline: none;
    transition: border-color 0.18s, background 0.18s;
    font-family: inherit;
    width: 100%;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    border-color: #003366;
    background: #ffffff;
}

.contact-field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

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

.contact-form-status {
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 16px;
}

.contact-form-status--success {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
}

.contact-form-status--error {
    background: #fff5f5;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.contact-submit-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background: #003366;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
    margin-bottom: 12px;
}

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

.contact-submit-btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

.contact-form-note {
    font-size: 12px;
    color: #aaa;
    text-align: center;
}

.contact-form-note a {
    color: #888;
    text-decoration: underline;
}

.contact-form-note a:hover {
    color: #003366;
}

/* ── Info panel ── */
.contact-info-panel {
    background: linear-gradient(135deg, #001533, #002147);
    border-radius: 12px;
    padding: 32px 28px;
    color: white;
}

.contact-info-panel h3 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.contact-info-panel > p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 14px;
}

.contact-info-item svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: #FF8C00;
}

.contact-info-item a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
}

.contact-info-item a:hover {
    color: #FF8C00;
}

.contact-response-note {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.contact-response-note strong {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #FF8C00;
    margin-bottom: 12px;
}

.contact-response-note ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-response-note li {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
}


/* ── Tablet (≥641px) ── */
@media (min-width: 641px) {
    .contact-hero {
        padding: 80px 20px;
    }

    .contact-hero h1 {
        font-size: 42px;
    }

    .contact-channels {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-form-row {
        grid-template-columns: 1fr 1fr;
    }
}

/* ── Desktop (≥1025px) ── */
@media (min-width: 1025px) {
    .contact-hero h1 {
        font-size: 48px;
    }

    .contact-form-section {
        grid-template-columns: 1fr 380px;
        align-items: start;
    }
}
