/* ═══════════════════════════════════════════════════════════
   AIRBID — contact.css
═══════════════════════════════════════════════════════════ */

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.contact-hero {
    background-color: var(--primary);
    padding: 96px 0 80px;
}

.contact-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(32px, 6vw, 56px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.contact-hero-sub {
    color: rgba(255, 255, 255, 0.65);
    font-size: 17px;
    line-height: 1.7;
    max-width: 460px;
    margin: 0 auto;
}

/* ══════════════════════════════════
   CONTACT CARDS ROW
══════════════════════════════════ */
.contact-cards-section {
    padding: 0;
    margin-top: -36px;
    position: relative;
    z-index: 2;
}

.contact-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px 28px;
    height: 100%;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    transition: transform 0.25s, box-shadow 0.25s;
}
.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.contact-card-icon {
    font-size: 36px;
    display: block;
    margin-bottom: 16px;
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 40;
}
.contact-icon-teal    { color: var(--deep-teal); }
.contact-icon-coral   { color: var(--vibrant-coral); }
.contact-icon-emerald { color: var(--emerald-accent); }

.contact-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--on-surface);
    margin-bottom: 8px;
}

.contact-card-desc {
    font-size: 13px;
    color: var(--outline);
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact-card-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 700;
    color: var(--deep-teal);
    text-decoration: none;
    transition: color 0.2s, gap 0.2s;
}
.contact-card-link .material-symbols-outlined { font-size: 16px; }
.contact-card-link:hover {
    color: var(--vibrant-coral);
    gap: 8px;
}

/* ══════════════════════════════════
   MAIN SECTION (form + info)
══════════════════════════════════ */
.contact-main-section {
    padding: 72px 0 88px;
    background: var(--surface-lowest);
}

/* ── FORM CARD ── */
.contact-form-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 48px 44px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.07);
}

.contact-form-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--deep-teal);
    margin-bottom: 6px;
}

.contact-form-sub {
    font-size: 14px;
    color: var(--outline);
    margin-bottom: 28px;
}

.contact-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--on-surface);
    margin-bottom: 6px;
    letter-spacing: 0.01em;
}

.contact-input {
    width: 100%;
    background: var(--surface-low);
    border: 2px solid var(--outline-variant);
    border-radius: 10px;
    padding: 13px 16px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    color: var(--on-surface);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    appearance: none;
}
.contact-input:focus {
    border-color: var(--deep-teal);
    box-shadow: 0 0 0 3px rgba(23, 62, 75, 0.1);
    background: #ffffff;
}
.contact-input.input-error {
    border-color: var(--vibrant-coral);
    box-shadow: 0 0 0 3px rgba(240, 107, 100, 0.12);
}
.contact-input::placeholder { color: var(--outline); }

.contact-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='%2371787b'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    cursor: pointer;
}

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

.contact-error {
    font-size: 12px;
    color: var(--vibrant-coral);
    margin-top: 5px;
    margin-bottom: 0;
    display: none;
}
.contact-error.visible { display: block; }

.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--vibrant-coral);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 15px 36px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    width: 100%;
    justify-content: center;
}
.contact-submit-btn:hover { background: #e05a53; }
.contact-submit-btn:active { transform: scale(0.98); }
.contact-submit-btn:disabled { opacity: 0.65; cursor: not-allowed; }

.contact-btn-icon { font-size: 20px; }

.contact-success {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(76, 195, 155, 0.1);
    border: 2px solid var(--emerald-accent);
    border-radius: 12px;
    padding: 20px 24px;
    margin-top: 20px;
    font-size: 14px;
    color: var(--on-surface);
    line-height: 1.5;
}
.contact-success-icon {
    font-size: 28px;
    color: var(--emerald-accent);
    flex-shrink: 0;
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.contact-error-banner {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(240, 107, 100, 0.1);
    border: 2px solid var(--vibrant-coral);
    border-radius: 12px;
    padding: 20px 24px;
    margin-top: 20px;
    font-size: 14px;
    color: var(--on-surface);
    line-height: 1.5;
}
.contact-error-icon {
    font-size: 28px;
    color: var(--vibrant-coral);
    flex-shrink: 0;
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* ── INFO CARDS ── */
.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #ffffff;
    border-radius: 14px;
    padding: 24px 24px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.contact-info-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-info-icon-wrap .material-symbols-outlined {
    font-size: 24px;
    color: #ffffff;
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.contact-info-teal   { background: var(--deep-teal); }
.contact-info-coral  { background: var(--vibrant-coral); }
.contact-info-emerald { background: var(--emerald-accent); }

.contact-info-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--on-surface);
    margin-bottom: 4px;
}

.contact-info-body {
    font-size: 13px;
    color: var(--outline);
    line-height: 1.7;
    margin: 0;
}

.contact-phone-link {
    color: var(--deep-teal);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s;
}
.contact-phone-link:hover { color: var(--vibrant-coral); }

/* FAQ nudge box */
.contact-faq-nudge {
    display: flex;
    align-items: center;
    gap: 18px;
    background: var(--primary);
    border-radius: 14px;
    padding: 24px 24px;
}

.contact-faq-icon {
    font-size: 32px;
    color: var(--emerald-accent);
    flex-shrink: 0;
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 32;
}

.contact-faq-text {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 4px;
}

.contact-faq-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    transition: gap 0.2s, color 0.2s;
}
.contact-faq-link .material-symbols-outlined { font-size: 16px; }
.contact-faq-link:hover {
    color: var(--emerald-accent);
    gap: 8px;
}

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 991.98px) {
    .contact-hero { padding: 64px 0 72px; }
    .contact-main-section { padding: 56px 0 64px; }
    .contact-form-card { padding: 36px 28px; }
    .contact-cards-section { margin-top: -36px; }
}

@media (max-width: 767.98px) {
    .contact-hero { padding: 56px 0 64px; }
    .contact-cards-section { margin-top: -28px; }
    .contact-main-section { padding: 40px 0 56px; }
    .contact-info-card { padding: 20px; }
    .contact-faq-nudge { padding: 20px; }
}

@media (max-width: 575.98px) {
    .contact-hero { padding: 48px 0 56px; }
    .contact-hero-sub { font-size: 15px; }
    .contact-form-card { padding: 28px 20px; }
    .contact-cards-section { margin-top: 0; padding-top: 32px; background: var(--surface-lowest); }
    .contact-submit-btn { padding: 14px 24px; }
    .contact-info-icon-wrap { width: 40px; height: 40px; border-radius: 10px; }
    .contact-faq-nudge { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (max-width: 374.98px) {
    .contact-form-card { padding: 20px 14px; }
    .contact-card { padding: 24px 16px; }
    .contact-hero-sub { font-size: 14px; }
}
