/* ── Contact Page ── */
.contact-page-body {
    font-family: var(--font, 'Inter', sans-serif);
    background: #F0F4FF;
    color: #0f172a;
    min-height: 100vh;
}

.contact-navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid #e2e8f0;
    padding: 0 5%;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 1px 8px rgba(37,99,235,.07);
}

.contact-nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.contact-logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #1d4ed8, #2563EB);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 900;
    color: white;
    font-family: serif;
    box-shadow: 0 3px 10px rgba(37,99,235,.25);
}

.contact-logo-text {
    font-size: 18px;
    font-weight: 900;
    color: #1e293b;
    display: block;
}

.contact-logo-sub {
    display: block;
    font-size: 10px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: .5px;
    font-weight: 600;
}

.contact-nav-links {
    display: flex;
    gap: 8px;
    align-items: center;
}

.contact-hero {
    text-align: center;
    padding: 56px 5% 40px;
    background: linear-gradient(135deg, #eff6ff, #F0F4FF);
}

.contact-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #eff6ff;
    color: #2563EB;
    border: 1.5px solid #bfdbfe;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 11.5px;
    font-weight: 700;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.contact-hero-title {
    font-size: 40px;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 10px;
    letter-spacing: -.3px;
}

.contact-hero-sub {
    font-size: 15px;
    color: #64748b;
    max-width: 420px;
    margin: 0 auto;
    line-height: 1.7;
}

.contact-main {
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 5% 60px;
}

.contact-social {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}

.contact-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,.18);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    text-decoration: none;
    transition: background .18s;
    border: 1px solid rgba(255,255,255,.25);
}

.contact-social-btn:hover {
    background: rgba(255,255,255,.32);
    color: white;
}

.contact-footer {
    text-align: center;
    padding: 18px;
    font-size: 12px;
    color: #94a3b8;
    border-top: 1px solid #e2e8f0;
    background: white;
}

@media (max-width: 768px) {
    .contact-hero-title { font-size: 28px; }
    .contact-wrapper { grid-template-columns: 1fr; }
}
