
/* ==========================================
   MANIASLT CONTACT PAGE
   White / Sky Blue / Navy / Red Accent
========================================== */


/* ==========================================
   1. CONTACT PAGE
========================================== */

.contact-page {
    width: 100%;
    overflow: hidden;

    background: #f0f9ff;

    color: #071c33;
}

.contact-hero {
    position: relative;

    min-height: 680px;

    display: flex;
    align-items: center;

    padding: 95px 0;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(56,189,248,.22),
            transparent 32%
        ),
        radial-gradient(
            circle at 10% 90%,
            rgba(239,51,64,.08),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f0f9ff 55%,
            #e0f2fe 100%
        );
}


/* ==========================================
   2. MAIN LAYOUT
========================================== */

.contact-layout {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 65px;
}


/* ==========================================
   3. LEFT SIDE
========================================== */

.contact-intro {
    max-width: 570px;
}

.contact-eyebrow {
    display: inline-flex;
    align-items: center;

    padding: 8px 15px;

    border: 1px solid #bae6fd;
    border-radius: 30px;

    background: #e0f2fe;

    color: #0284c7;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.4px;
}

.contact-intro h1 {
    margin: 23px 0;

    color: #071c33;

    font-size: clamp(38px, 5vw, 62px);
    font-weight: 850;

    line-height: 1.1;
    letter-spacing: -2px;
}

.contact-intro h1 span {
    display: block;
    color: #0284c7;
}

.contact-description {
    max-width: 510px;

    margin: 0;

    color: #64748b;

    font-size: 16px;
    line-height: 1.9;
}


/* ==========================================
   4. CONTACT HIGHLIGHTS
========================================== */

.contact-highlights {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;

    margin-top: 34px;
}

.contact-highlight {
    display: flex;
    align-items: center;

    gap: 9px;

    padding: 10px 14px;

    border: 1px solid #dbeafe;
    border-radius: 30px;

    background: #ffffff;

    color: #334155;

    font-size: 12px;
    font-weight: 700;

    box-shadow:
        0 4px 15px rgba(7,28,51,.035);
}

.highlight-dot {
    display: inline-block;

    width: 7px;
    height: 7px;

    flex-shrink: 0;

    border-radius: 50%;

    background: #38bdf8;
}


/* ==========================================
   5. SUPPORT CARD
========================================== */

.contact-support {
    width: 100%;

    display: flex;
    justify-content: center;
}

.support-card {
    position: relative;

    width: 100%;
    max-width: 510px;

    padding: 35px;

    border: 1px solid rgba(255,255,255,.2);
    border-radius: 25px;

    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(56,189,248,.20),
            transparent 45%
        ),
        linear-gradient(
            145deg,
            #071c33,
            #0b2a4a
        );

    color: #ffffff;

    box-shadow:
        0 25px 65px rgba(7,28,51,.18);
}


/* ==========================================
   6. SUPPORT HEADER
========================================== */

.support-card-header {
    margin-bottom: 30px;
}

.support-label {
    display: inline-block;

    margin-bottom: 12px;

    color: #7dd3fc;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.support-card-header h2 {
    margin: 0 0 12px;

    color: #ffffff;

    font-size: 27px;
    font-weight: 800;

    line-height: 1.25;
}

.support-card-header p {
    margin: 0;

    color: #cbd5e1;

    font-size: 13px;
    line-height: 1.7;
}


/* ==========================================
   7. FLOATING BUTTON CONTAINER
========================================== */

.contact-floating-buttons {
    display: grid;

    gap: 20px;

    padding: 5px 0 10px;
}


/* ==========================================
   8. FLOATING BUTTON
========================================== */

.contact-float {
    position: relative;

    display: flex;
    align-items: center;

    gap: 16px;

    width: 100%;
    min-height: 100px;

    padding: 17px 20px 17px 15px;

    border: 1px solid rgba(255,255,255,.85);
    border-radius: 19px;

    background: #ffffff;

    color: #071c33;

    text-decoration: none;

    box-shadow:
        0 12px 30px rgba(0,0,0,.13),
        0 3px 7px rgba(0,0,0,.05);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;

    animation: contactFloat 4s ease-in-out infinite;
}


/* Slightly different timing for WhatsApp */

.contact-float-whatsapp {
    animation-delay: -2s;
}


/* Floating animation */

@keyframes contactFloat {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }

}


/* Telegram accent */

.contact-float-telegram {
    border-left: 4px solid #38bdf8;
}


/* WhatsApp accent */

.contact-float-whatsapp {
    border-left: 4px solid #22c55e;
}


/* Hover */

a.contact-float:hover {
    animation-play-state: paused;

    transform: translateY(-8px);

    border-color: #7dd3fc;

    box-shadow:
        0 20px 40px rgba(0,0,0,.20),
        0 5px 12px rgba(0,0,0,.08);
}


/* Keyboard focus */

a.contact-float:focus-visible {
    outline: 3px solid #38bdf8;
    outline-offset: 4px;
}


/* ==========================================
   9. GIF ICON
========================================== */

.contact-float-icon {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 68px;
    height: 68px;

    flex: 0 0 68px;

    border-radius: 17px;

    background: #f0f9ff;

    box-shadow:
        inset 0 0 0 1px rgba(56,189,248,.12);
}

.contact-float-whatsapp .contact-float-icon {
    background: #f0fdf4;
}

.contact-float-icon img {
    display: block;

    width: 64px;
    height: 64px;

    max-width: 100%;

    object-fit: contain;

    border: none;

    transition: transform .25s ease;
}

a.contact-float:hover .contact-float-icon img {
    transform: scale(1.07);
}


/* ==========================================
   10. BUTTON TEXT
========================================== */

.contact-float-content {
    display: flex;
    flex-direction: column;

    gap: 5px;

    min-width: 0;

    flex: 1;
}

.contact-float-content strong {
    display: block;

    color: #071c33;

    font-size: 17px;
    font-weight: 800;

    line-height: 1.3;
}

.contact-float-content small {
    display: block;

    color: #64748b;

    font-size: 12px;
    line-height: 1.5;
}


/* ==========================================
   11. ARROW ICON
========================================== */

.contact-float-arrow {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    flex: 0 0 34px;

    border-radius: 50%;

    background: #e0f2fe;

    color: #0284c7;

    font-size: 20px;

    transition:
        background .25s ease,
        color .25s ease,
        transform .25s ease;
}

.contact-float-whatsapp .contact-float-arrow {
    background: #dcfce7;
    color: #16a34a;
}

a.contact-float:hover .contact-float-arrow {
    background: #38bdf8;

    color: #071c33;

    transform: translate(2px,-2px);
}

a.contact-float-whatsapp:hover .contact-float-arrow {
    background: #22c55e;
    color: #ffffff;
}


/* ==========================================
   12. EMPTY LINK STATE
========================================== */

.contact-float.is-pending {
    opacity: .72;
    cursor: default;
}

.contact-float.is-pending .contact-float-arrow {
    opacity: .45;
}


/* ==========================================
   13. SUPPORT CARD FOOTER
========================================== */

.support-card-footer {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    margin-top: 28px;
    padding-top: 23px;

    border-top: 1px solid rgba(255,255,255,.12);

    color: #94a3b8;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.2px;
}

.support-footer-dot {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #38bdf8;
}


/* ==========================================
   14. BOTTOM SECTION
========================================== */

.contact-bottom-section {
    padding: 0 0 90px;

    background: #f0f9ff;
}

.contact-bottom-card {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding: 40px 45px;

    border: 1px solid #dbeafe;
    border-radius: 22px;

    background: #ffffff;

    box-shadow:
        0 10px 30px rgba(7,28,51,.04);
}

.contact-bottom-label {
    display: block;

    margin-bottom: 8px;

    color: #0284c7;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.4px;
}

.contact-bottom-card h2 {
    margin: 0 0 10px;

    color: #071c33;

    font-size: 27px;
    font-weight: 800;
}

.contact-bottom-card p {
    max-width: 580px;

    margin: 0;

    color: #64748b;

    font-size: 14px;
    line-height: 1.7;
}


/* ==========================================
   15. HOME BUTTON
========================================== */

.contact-home-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 15px;

    min-height: 50px;

    padding: 12px 22px;

    flex-shrink: 0;

    border-radius: 12px;

    background: #38bdf8;

    color: #071c33;

    font-size: 13px;
    font-weight: 800;

    text-decoration: none;
    white-space: nowrap;

    transition: .2s ease;
}

.contact-home-button:hover {
    background: #0284c7;

    color: #ffffff;

    transform: translateY(-2px);
}

.contact-home-button:focus-visible {
    outline: 3px solid #075985;
    outline-offset: 3px;
}


/* ==========================================
   16. TABLET
========================================== */

@media (max-width: 1000px) {

    .contact-layout {
        gap: 35px;
    }

    .contact-intro h1 {
        font-size: 45px;
    }

    .support-card {
        padding: 27px;
    }

}


/* ==========================================
   17. MOBILE
========================================== */

@media (max-width: 767px) {

    .contact-hero {
        min-height: auto;

        padding: 55px 0 65px;
    }

    .contact-layout {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .contact-intro h1 {
        margin: 18px 0;

        font-size: 39px;

        letter-spacing: -1.5px;
    }

    .contact-description {
        font-size: 14px;
        line-height: 1.8;
    }

    .contact-highlights {
        gap: 9px;
        margin-top: 25px;
    }

    .contact-highlight {
        font-size: 11px;
        padding: 8px 11px;
    }

    .contact-support {
        justify-content: stretch;
    }

    .support-card {
        max-width: none;

        padding: 28px 22px;

        border-radius: 20px;
    }

    .support-card-header h2 {
        font-size: 24px;
    }

    .contact-float {
        min-height: 88px;

        gap: 12px;

        padding: 12px;
    }

    .contact-float-icon {
        width: 58px;
        height: 58px;

        flex-basis: 58px;
    }

    .contact-float-icon img {
        width: 54px;
        height: 54px;
    }

    .contact-float-content strong {
        font-size: 15px;
    }

    .contact-float-content small {
        font-size: 11px;
    }

    .contact-float-arrow {
        width: 30px;
        height: 30px;

        flex-basis: 30px;

        font-size: 18px;
    }

    .contact-bottom-section {
        padding-bottom: 60px;
    }

    .contact-bottom-card {
        flex-direction: column;
        align-items: stretch;

        padding: 30px 24px;
    }

    .contact-bottom-card h2 {
        font-size: 23px;
    }

    .contact-home-button {
        width: 100%;
    }

}


/* ==========================================
   18. SMALL MOBILE
========================================== */

@media (max-width: 380px) {

    .contact-intro h1 {
        font-size: 33px;
    }

    .support-card {
        padding: 23px 15px;
    }

    .contact-float-icon {
        width: 48px;
        height: 48px;

        flex-basis: 48px;
    }

    .contact-float-icon img {
        width: 46px;
        height: 46px;
    }

    .contact-float-content strong {
        font-size: 14px;
    }

    .contact-float-content small {
        font-size: 10px;
    }

    .contact-float-arrow {
        width: 27px;
        height: 27px;

        flex-basis: 27px;
    }

}


/* ==========================================
   19. REDUCED MOTION
========================================== */

@media (prefers-reduced-motion: reduce) {

    .contact-float {
        animation: none;
        transition: none;
    }

    .contact-float-icon img,
    .contact-float-arrow,
    .contact-home-button {
        transition: none;
    }

}