﻿
/* =========================
   CONTACT PAGE MODERN UI
========================= */
body {
    background: #f4f8fc;
}

/* MAIN SECTION */

.contact-modern {
    position: relative;
    padding: 90px 0;
    overflow: hidden;
}

    /* BACKGROUND GLOW */

    .contact-modern::before {
        content: '';
        position: absolute;
        top: -150px;
        left: -150px;
        width: 350px;
        height: 350px;
        background: rgba(0,212,255,0.12);
        border-radius: 50%;
        filter: blur(80px);
    }

    .contact-modern::after {
        content: '';
        position: absolute;
        bottom: -150px;
        right: -150px;
        width: 350px;
        height: 350px;
        background: rgba(13,31,58,0.12);
        border-radius: 50%;
        filter: blur(80px);
    }

/* HEADER */

.contact-heading {
    text-align: center;
    margin-bottom: 70px;
}

.contact-badge {
    display: inline-block;
    padding: 10px 24px;
    background: #0B1F3A;
    color: #fff;
    border-radius: 50px;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 700;
}

.contact-title {
    font-size: 60px;
    font-weight: 900;
    color: #0B1F3A;
    margin-top: 25px;
    line-height: 1.1;
}

    .contact-title span {
        color: #00bfff;
    }

.contact-subtitle {
    max-width: 760px;
    margin: auto;
    margin-top: 20px;
    color: #666;
    line-height: 1.9;
    font-size: 17px;
}

/* CONTACT CARD */

.contact-card {
    background: #fff;
    border-radius: 28px;
    padding: 45px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    height: 100%;
    transition: 0.4s;
}

    .contact-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 60px rgba(0,0,0,0.12);
    }

/* FORM */

.form-title {
    font-size: 36px;
    font-weight: 800;
    color: #0B1F3A;
    margin-bottom: 10px;
}

.form-text {
    color: #666;
    margin-bottom: 35px;
}

/* INPUT */

.form-floating .form-control {
    border: none;
    background: #f5f8fc;
    border-radius: 18px;
    height: 60px;
    padding-left: 20px;
    box-shadow: none !important;
}

.form-floating textarea.form-control {
    height: 170px !important;
    padding-top: 20px;
}

.form-floating label {
    padding-left: 20px;
    color: #666;
}

/* BUTTON */

.contact-btn {
    border: none;
    height: 60px;
    border-radius: 18px;
    background: linear-gradient(135deg,#00bfff,#0B1F3A);
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    transition: 0.4s;
}

    .contact-btn:hover {
        transform: translateY(-4px);
        box-shadow: 0 15px 35px rgba(0,191,255,0.35);
    }

/* MAP */

.map-box {
    overflow: hidden;
    border-radius: 28px;
    height: 100%;
    min-height: 650px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
}

    .map-box iframe {
        width: 100%;
        height: 100%;
        border: 0;
    }

/* CONTACT INFO */

.info-section {
    margin-top: 70px;
}

.info-card {
    background: #fff;
    border-radius: 24px;
    padding: 35px 25px;
    text-align: center;
    height: 100%;
    transition: 0.4s;
    box-shadow: 0 10px 35px rgba(0,0,0,0.06);
}

    .info-card:hover {
        transform: translateY(-10px);
        background: #0B1F3A;
    }

        .info-card:hover h4,
        .info-card:hover p {
            color: #fff;
        }

        .info-card:hover .info-icon {
            background: #00bfff;
            color: #fff;
        }

.info-icon {
    width: 80px;
    height: 80px;
    margin: auto;
    border-radius: 50%;
    background: #f4f8fc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #0B1F3A;
    margin-bottom: 25px;
    transition: 0.4s;
}

.info-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: #0B1F3A;
    margin-bottom: 10px;
    transition: 0.4s;
}

.info-card p {
    color: #666;
    margin: 0;
    line-height: 1.8;
    transition: 0.4s;
}

/* ANIMATION */

.fade-up {
    opacity: 0;
    transform: translateY(70px);
    transition: all 1s ease;
}

    .fade-up.show {
        opacity: 1;
        transform: translateY(0);
    }

/* RESPONSIVE */

@media(max-width:991px) {

    .contact-title {
        font-size: 42px;
    }

    .contact-card {
        padding: 30px;
    }

    .map-box {
        min-height: 450px;
        margin-top: 30px;
    }
}


/* ===============================
   CONTACT HIGHLIGHTS
================================ */

.contact-highlights {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin: 25px 0 35px;
}

.highlight-box {
    background: #f8fbff;
    border: 1px solid #edf2f7;
    padding: 12px 18px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.35s;
    cursor: pointer;
}

.highlight-box i {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg,#0B1F3A,#1d5bc7);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.highlight-box span {
    font-weight: 600;
    color: #222;
    font-size: 14px;
}

.highlight-box:hover {
    transform: translateY(-5px);
    background: #0B1F3A;
    box-shadow: 0 12px 30px rgba(11,31,58,0.18);
}

.highlight-box:hover span {
    color: #fff;
}
/* =========================================
   TOP FLOATING CONTACT STRIP
========================================= */

.top-contact-strip {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 45px;
    margin-bottom: 70px;
    flex-wrap: wrap;
}

.strip-item {
    position: relative;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 22px;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 280px;
    overflow: hidden;
    transition: 0.45s ease;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

    .strip-item::before {
        content: '';
        position: absolute;
        width: 140px;
        height: 140px;
        background: rgba(11,31,58,0.05);
        border-radius: 50%;
        top: -70px;
        right: -70px;
    }

    .strip-item:hover {
        transform: translateY(-10px);
        background: linear-gradient(135deg,#0B1F3A,#163f75);
        box-shadow: 0 20px 45px rgba(11,31,58,0.2);
    }

.strip-icon {
    width: 65px;
    height: 65px;
    min-width: 65px;
    border-radius: 18px;
    background: linear-gradient(135deg,#0B1F3A,#2c67bd);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    transition: 0.4s;
}

.strip-item:hover .strip-icon {
    background: #fff;
    color: #0B1F3A;
    transform: rotate(10deg) scale(1.08);
}

.strip-text h5 {
    margin: 0;
    font-size: 19px;
    font-weight: 700;
    color: #111;
    transition: 0.4s;
}

.strip-text p {
    margin: 5px 0 0;
    color: #666;
    font-size: 14px;
    transition: 0.4s;
}

.strip-item:hover .strip-text h5,
.strip-item:hover .strip-text p {
    color: #fff;
}

/* MOBILE */

@media(max-width:768px) {

    .top-contact-strip {
        gap: 18px;
    }

    .strip-item {
        width: 100%;
        min-width: auto;
    }
}

.info-card p {
    font-size: 14px;
    word-wrap: break-word; /* allows long words to wrap */
    overflow-wrap: break-word; /* modern equivalent */
}


.info-card p {
    font-size: 14px;
    word-wrap: break-word; /* allows long words to wrap */
    overflow-wrap: break-word; /* modern equivalent */
}
.info-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.info-icon {
    font-size: 28px;
    color: #00bfff;
    margin-bottom: 15px;
}

.contact-block {
    margin-bottom: 15px;
}

.contact-name {
    font-size: 15px;
    margin: 0;
    color: #0B1F3A;
}

    .contact-name span {
        color: #555;
        font-size: 13px;
    }

.contact-phone {
    margin: 5px 0 0;
}

    .contact-phone a {
        font-size: 14px;
        font-weight: bold;
        color: #00bfff;
        text-decoration: none;
    }

        .contact-phone a:hover {
            text-decoration: underline;
        }
