/* ================================================================
   CONTACT PAGE STYLES + BASE STYLES (ensures footer & body work)
   ================================================================ */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,700;0,900;1,700&display=swap');

:root {
    --navy: #003b66;
    --navy-deep: #001e3c;
    --navy-mid: #004d87;
    --sky: #23adeb;
    --sky-light: #e8f7fe;
    --sky-bright: #29c3ff;
    --green: #64ba4d;
    --green-light: #eaf6e5;
    --gold: #fed109;
    --gold-light: #fff0a0;
    --white: #ffffff;
    --off-white: #f7fafd;
    --text: #0a1f3c;
    --text-mid: #2c4a6e;
    --text-muted: #6b84a0;
    --r-sm: 12px;
    --r-md: 20px;
    --r-lg: 28px;
    --r-xl: 40px;
    --r-pill: 100px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.mt-body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--off-white);
    color: var(--text);
    overflow-x: hidden;
    margin-bottom:50px !important;
}

/* Glitter canvas */
#ks-canvas {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.45;
}

/* Over menu */
.over-menu {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
.over-menu.active {
    opacity: 1;
    visibility: visible;
}

/* ========== CONTACT HERO ========== */
.contact-hero {
    position: relative;
    background: linear-gradient(160deg, #071220 0%, #0f2445 50%, #0a1628 100%);
    padding: 80px 28px 60px;
    text-align: center;
    overflow: hidden;
}
.hero-bg-layer {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, rgba(31,168,219,0.03) 0px, rgba(31,168,219,0.03) 2px, transparent 2px, transparent 8px);
    opacity: 0.5;
}
.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}
.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    padding: 6px 18px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #1fa8db;
    margin-bottom: 20px;
    border: 1px solid rgba(31,168,219,0.3);
}
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 8vw, 56px);
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
}
.hero-title .highlight {
    background: linear-gradient(135deg, #1fa8db, #f5c518);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero-rule {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 20px auto;
    width: fit-content;
}
.hr-line {
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #1fa8db, transparent);
}
.hr-diamond {
    width: 8px;
    height: 8px;
    background: #1fa8db;
    transform: rotate(45deg);
    box-shadow: 0 0 12px #1fa8db;
    animation: pulseGem 2s infinite;
}
@keyframes pulseGem {
    0%,100% { opacity: 0.6; transform: rotate(45deg) scale(1); }
    50% { opacity: 1; transform: rotate(45deg) scale(1.2); }
}
.hero-sub {
    font-size: 18px;
    color: rgba(255,255,255,0.75);
    max-width: 600px;
    margin: 0 auto;
}
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
}
.hero-wave svg {
    display: block;
    width: 100%;
    fill: #f4f7fb;
}

/* ========== BREADCRUMB ========== */
.breadcrumb-bar {
    background: #fff;
    border-bottom: 1px solid #dce8f0;
    padding: 12px 0;
}
.breadcrumb-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    gap: 8px;
    font-size: 12px;
    color: #6b85a0;
    font-family: 'JetBrains Mono', monospace;
}
.breadcrumb-inner a {
    color: #1fa8db;
    text-decoration: none;
}
.breadcrumb-inner a:hover {
    color: #0d7aa8;
}

/* ========== MAIN CONTACT LAYOUT ========== */
.contact-page {
    max-width: 1280px;
    margin: 60px auto;
    padding: 0 28px;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 48px;
}

/* ========== FORM CARD ========== */
.contact-form-card {
    background: #fff;
    border-radius: 32px;
    padding: 36px;
    border: 1px solid #e2edf5;
    box-shadow: 0 20px 40px rgba(0,0,0,0.04);
    transition: transform 0.3s, box-shadow 0.3s;
}
.contact-form-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 45px rgba(31,168,219,0.08);
}
.form-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 800;
    color: #0e2240;
    margin-bottom: 8px;
}
.form-sub {
    color: #6b85a0;
    font-size: 13px;
    margin-bottom: 28px;
}
.req-star {
    color: #e84a4a;
}
.input-group {
    margin-bottom: 20px;
}
.input-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #0e2240;
}
.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid #dce8f0;
    border-radius: 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    transition: all 0.25s;
    background: #fff;
}
.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    border-color: #1fa8db;
    outline: none;
    box-shadow: 0 0 0 4px rgba(31,168,219,0.1);
}
.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
    padding: 14px 36px;
    background: linear-gradient(135deg, #1fa8db, #0d7aa8);
    color: #fff;
    border: none;
    border-radius: 100px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 6px 14px rgba(31,168,219,0.3);
}
.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(31,168,219,0.4);
    background: linear-gradient(135deg, #0d7aa8, #1fa8db);
}

/* ========== INFO SIDEBAR ========== */
.contact-info-card {
    background: #fff;
    border-radius: 32px;
    border: 1px solid #e2edf5;
    overflow: hidden;
    padding: 28px 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.04);
    transition: transform 0.3s;
}
.contact-info-card:hover {
    transform: translateY(-4px);
}
.info-block {
    margin-bottom: 32px;
}
.info-block h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: #0e2240;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.info-block h3 i {
    color: #1fa8db;
    font-size: 20px;
}
.info-block p,
.info-block a {
    color: #2e4a6a;
    font-size: 14px;
    line-height: 1.6;
    text-decoration: none;
}
.info-block a:hover {
    color: #0d7aa8;
    text-decoration: underline;
}
.support-hours ul {
    list-style: none;
    padding: 0;
}
.support-hours li {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    padding: 10px 0;
    border-bottom: 1px solid #eef2f7;
}
.support-hours li:last-child {
    border-bottom: none;
}
.social-icons {
    display: flex;
    gap: 14px;
    margin-top: 10px;
}
.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f0f7ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1fa8db;
    font-size: 16px;
    transition: all 0.2s;
}
.social-icon:hover {
    background: #1fa8db;
    color: #fff;
    transform: translateY(-3px);
}

/* ========== FADE-UP ANIMATION ========== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.2,0.9,0.4,1), transform 0.8s cubic-bezier(0.2,0.9,0.4,1);
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== TOAST MESSAGES ========== */
.toast-msg {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: #0e2240;
    color: white;
    padding: 14px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    z-index: 9999;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transform: translateX(-120%);
    transition: transform 0.3s ease;
}
.toast-msg.show {
    transform: translateX(0);
}
.toast-msg.success { background: #3aad1e; }
.toast-msg.error { background: #e84a4a; }
.toast-msg.warning { background: #f5c518; color: #0e2240; }
.toast-msg i { font-size: 18px; }

/* ========== RESPONSIVE ========== */
@media (max-width: 860px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .contact-form-card {
        padding: 28px;
    }
    .form-row-2 {
        grid-template-columns: 1fr;
        gap: 0;
    }
}
@media (max-width: 640px) {
    .contact-page {
        padding: 0 20px;
        margin: 40px auto;
    }
    .contact-hero {
        padding: 60px 20px 40px;
    }
    .hero-title {
        font-size: 32px;
    }
    .hero-sub {
        font-size: 16px;
    }
}