/* =========================================================
   COLPAP CONTACT PAGE
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Poppins", Arial, sans-serif;
    color: #333;
    background: #ffffff;
}


/* =========================================================
   HEADER
   ========================================================= */

.main-header {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: relative;
    z-index: 1000;
}

.header-container {
    width: 100%;
    min-height: 140px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 55px;
}


/* LOGO */

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    width: 240px;
    height: auto;
    display: block;
}


/* NAVIGATION */

.main-nav {
    display: flex;
    align-items: center;
    gap: 90px;
}

.main-nav a {
    position: relative;

    color: #0B2D6B;
    text-decoration: none;

    font-size: 28px;
    font-weight: 700;

    transition: all 0.3s ease;
}

.main-nav a:hover {
    color: #061f50;
}

.main-nav a.active {
    color: #0B2D6B;
}

.main-nav a.active::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;

    bottom: -12px;

    width: 100%;
    height: 3px;

    background: #0B2D6B;

    border-radius: 5px;
}


/* =========================================================
   HERO
   ========================================================= */

.contact-hero {
    min-height: 390px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 80px 20px;

    background:
        linear-gradient(
            rgba(11, 45, 107, 0.90),
            rgba(11, 45, 107, 0.90)
        ),
        url("../images/contact-bg.jpg") center center / cover no-repeat;
}

.hero-content {
    max-width: 850px;
}

.hero-label {
    display: inline-block;

    margin-bottom: 18px;

    color: #ffffff;

    font-size: 15px;
    font-weight: 700;

    letter-spacing: 3px;
}

.hero-content h1 {
    margin-bottom: 20px;

    color: #ffffff;

    font-size: 58px;
    line-height: 1.15;
    font-weight: 700;
}

.hero-content p {
    max-width: 700px;

    margin: auto;

    color: rgba(255,255,255,0.9);

    font-size: 19px;
    line-height: 1.8;
}


/* =========================================================
   CONTACT INFORMATION
   ========================================================= */

.contact-info {
    padding: 70px 30px;

    background: #f7f9fc;
}

.info-container {
    max-width: 1250px;

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 25px;
}

.info-card {
    padding: 35px 25px;

    background: #ffffff;

    border-radius: 12px;

    text-align: center;

    border: 1px solid #e8edf5;

    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 15px 35px rgba(11,45,107,0.10);
}

.info-icon {
    width: 65px;
    height: 65px;

    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #0B2D6B;

    border-radius: 50%;

    color: #ffffff;

    font-size: 23px;
}

.info-card h3 {
    margin-bottom: 12px;

    color: #0B2D6B;

    font-size: 20px;
}

.info-card a {
    color: #333;

    text-decoration: none;

    font-weight: 600;
}

.info-card a:hover {
    color: #0B2D6B;
}

.info-card p {
    margin-top: 8px;

    color: #777;

    line-height: 1.7;
}


/* =========================================================
   CONTACT FORM + MAP
   ========================================================= */

.contact-section {
    padding: 90px 30px;

    background: #ffffff;
}

.contact-container {
    max-width: 1250px;

    margin: auto;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 40px;
}

.contact-box {
    padding: 45px;

    background: #ffffff;

    border: 1px solid #e5e9f0;

    border-radius: 14px;

    box-shadow:
        0 15px 45px rgba(11,45,107,0.07);
}

.section-label {
    display: inline-block;

    margin-bottom: 12px;

    color: #0B2D6B;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 2px;
}

.contact-box h2 {
    margin-bottom: 15px;

    color: #0B2D6B;

    font-size: 34px;
    line-height: 1.25;
}

.section-description {
    margin-bottom: 30px;

    color: #777;

    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   FORM
   ========================================================= */

.contact-form {
    width: 100%;
}

.form-row {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 20px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;

    margin-bottom: 8px;

    color: #0B2D6B;

    font-size: 14px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    border: 1px solid #dce2eb;

    border-radius: 7px;

    background: #ffffff;

    color: #333;

    font-family: inherit;

    font-size: 14px;

    outline: none;

    transition: all 0.3s ease;
}

.form-group input,
.form-group select {
    height: 50px;

    padding: 0 15px;
}

.form-group textarea {
    min-height: 145px;

    padding: 14px 15px;

    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #0B2D6B;

    box-shadow:
        0 0 0 3px rgba(11,45,107,0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}


/* SUBMIT */

.submit-button {
    width: 100%;

    height: 54px;

    border: none;

    border-radius: 7px;

    background: #0B2D6B;

    color: #ffffff;

    font-family: inherit;

    font-size: 15px;
    font-weight: 700;

    cursor: pointer;

    transition: all 0.3s ease;
}

.submit-button i {
    margin-right: 8px;
}

.submit-button:hover {
    background: #061f50;

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(11,45,107,0.20);
}


/* =========================================================
   MAP
   ========================================================= */

.map-box {
    display: flex;

    flex-direction: column;
}

.google-map {
    width: 100%;

    min-height: 390px;

    border: 0;

    border-radius: 10px;

    margin-bottom: 20px;
}

.directions-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    min-height: 50px;

    padding: 0 20px;

    border-radius: 7px;

    background: #0B2D6B;

    color: #ffffff;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    transition: all 0.3s ease;
}

.directions-button:hover {
    background: #061f50;

    color: #ffffff;

    transform: translateY(-2px);
}


/* =========================================================
   SOLUTIONS
   ========================================================= */

.solutions-section {
    padding: 90px 30px;

    background: #f7f9fc;
}

.solutions-container {
    max-width: 1250px;

    margin: auto;
}

.solutions-heading {
    max-width: 750px;

    margin: 0 auto 50px;

    text-align: center;
}

.solutions-heading > span {
    color: #0B2D6B;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 2px;
}

.solutions-heading h2 {
    margin: 12px 0 15px;

    color: #0B2D6B;

    font-size: 40px;
}

.solutions-heading p {
    color: #777;

    font-size: 16px;

    line-height: 1.8;
}

.solutions-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 25px;
}

.solution-card {
    padding: 35px 25px;

    background: #ffffff;

    border-radius: 12px;

    text-align: center;

    border: 1px solid #e6eaf0;

    transition: all 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 15px 35px rgba(11,45,107,0.10);
}

.solution-icon {
    width: 65px;
    height: 65px;

    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #0B2D6B;

    color: #ffffff;

    font-size: 23px;
}

.solution-card h3 {
    margin-bottom: 12px;

    color: #0B2D6B;

    font-size: 20px;
}

.solution-card p {
    color: #777;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   CTA
   ========================================================= */

.contact-cta {
    max-width: 1250px;

    margin: 70px auto;

    padding: 45px 50px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    background: #0B2D6B;

    border-radius: 14px;
}

.contact-cta span {
    color: rgba(255,255,255,0.75);

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2px;
}

.contact-cta h2 {
    margin: 8px 0;

    color: #ffffff;

    font-size: 30px;
}

.contact-cta p {
    margin: 0;

    color: rgba(255,255,255,0.85);
}

.cta-button {
    min-width: 190px;

    height: 52px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 0 20px;

    border: 2px solid #ffffff;

    border-radius: 7px;

    color: #ffffff;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #ffffff;

    color: #0B2D6B;
}


/* =========================================================
   FOOTER
   ========================================================= */

.contact-footer {
    background: #0B2D6B;

    color: #ffffff;
}

.footer-container {
    max-width: 1300px;

    margin: auto;

    padding: 70px 40px;

    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr 1fr;

    gap: 55px;
}

.footer-column {
    display: flex;

    flex-direction: column;
}

.footer-brand {
    max-width: 330px;
}


/* FOOTER LOGO */

.footer-logo {
    width: 190px;

    height: auto;

    margin-bottom: 25px;

    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: rgba(255,255,255,0.78);

    font-size: 14px;

    line-height: 1.8;
}


/* FOOTER TITLES */

.footer-column h3 {
    position: relative;

    margin-bottom: 30px;

    padding-bottom: 13px;

    color: #ffffff;

    font-size: 21px;
}

.footer-column h3::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 45px;
    height: 2px;

    background: rgba(255,255,255,0.65);
}


/* FOOTER LINKS */

.footer-column > a {
    margin-bottom: 15px;

    color: rgba(255,255,255,0.78);

    text-decoration: none;

    font-size: 14px;

    transition: 0.3s;
}

.footer-column > a:hover {
    color: #ffffff;

    padding-left: 5px;
}


/* FOOTER CONTACT */

.footer-column > p {
    margin-bottom: 18px;

    color: rgba(255,255,255,0.82);

    font-size: 14px;

    line-height: 1.6;
}

.footer-column > p i {
    width: 22px;
}


/* SOCIAL */

.social-links {
    display: flex;

    gap: 12px;

    margin-top: 25px;
}

.social-links a {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,0.4);

    color: #ffffff;

    text-decoration: none;

    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #ffffff;

    color: #0B2D6B;

    transform: translateY(-3px);
}


/* FOOTER BOTTOM */

.footer-bottom {
    padding: 20px 30px;

    border-top: 1px solid rgba(255,255,255,0.15);

    text-align: center;

    color: rgba(255,255,255,0.75);

    font-size: 13px;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {

    .header-container {
        padding: 0 30px;
    }

    .main-nav {
        gap: 45px;
    }

    .main-nav a {
        font-size: 22px;
    }

    .info-container,
    .solutions-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .footer-container {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (max-width: 767px) {

    /* HEADER */

    .header-container {
        min-height: 100px;

        padding: 15px 20px;

        flex-direction: column;

        gap: 20px;
    }

    .logo img {
        width: 180px;
    }

    .main-nav {
        width: 100%;

        justify-content: center;

        gap: 22px;

        flex-wrap: wrap;
    }

    .main-nav a {
        font-size: 16px;
    }


    /* HERO */

    .contact-hero {
        min-height: 320px;

        padding: 60px 20px;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content p {
        font-size: 16px;
    }


    /* INFO */

    .contact-info {
        padding: 50px 20px;
    }

    .info-container {
        grid-template-columns: 1fr;
    }


    /* CONTACT */

    .contact-section {
        padding: 60px 20px;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-box {
        padding: 30px 22px;
    }

    .contact-box h2 {
        font-size: 28px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }


    /* SOLUTIONS */

    .solutions-section {
        padding: 60px 20px;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .solutions-heading h2 {
        font-size: 32px;
    }


    /* CTA */

    .contact-cta {
        margin: 40px 20px;

        padding: 35px 25px;

        flex-direction: column;

        align-items: flex-start;
    }

    .contact-cta h2 {
        font-size: 25px;
    }

    .cta-button {
        width: 100%;
    }


    /* FOOTER */

    .footer-container {
        grid-template-columns: 1fr;

        padding: 55px 25px;

        gap: 40px;
    }

    .footer-brand {
        max-width: none;
    }

}
/* =====================================================
   CONTACT SECTION - FIXED LAYOUT
===================================================== */

.contact-section {
    width: 100%;
    padding: 80px 0;
    background: #f7f9fc;
}

.contact-container {
    width: 92%;
    max-width: 1400px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;

    align-items: stretch;
}


/* =====================================================
   CONTACT BOX
===================================================== */

.contact-box {
    background: #ffffff;
    border: 1px solid #dce3ed;
    border-radius: 16px;

    padding: 55px;

    box-sizing: border-box;

    min-width: 0;
}


/* =====================================================
   FORM HEADER
===================================================== */

.contact-box .section-label {
    display: block;

    margin-bottom: 12px;

    color: #0b3578;

    font-size: 15px;
    font-weight: 700;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-box h2 {
    margin: 0 0 18px 0;

    color: #0b3578;

    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;
}

.section-description {
    margin-bottom: 35px;

    color: #667085;

    font-size: 16px;
    line-height: 1.7;
}


/* =====================================================
   FORM
===================================================== */

.contact-form {
    width: 100%;
}

.form-row {
    width: 100%;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 20px;

    margin-bottom: 20px;
}

.form-group {
    width: 100%;
    margin-bottom: 20px;
}

.form-group label {
    display: block;

    margin-bottom: 8px;

    color: #172b4d;

    font-size: 15px;
    font-weight: 600;
}


/* =====================================================
   INPUTS
===================================================== */

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;

    box-sizing: border-box;

    border: 1px solid #d5dce6;

    border-radius: 8px;

    background: #ffffff;

    color: #172b4d;

    font-family: inherit;

    font-size: 15px;

    padding: 14px 16px;

    outline: none;

    transition: all 0.25s ease;
}

.contact-form input,
.contact-form select {
    height: 50px;
}

.contact-form textarea {
    min-height: 150px;

    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #0b3578;

    box-shadow: 0 0 0 3px rgba(11, 53, 120, 0.08);
}


/* =====================================================
   SEND BUTTON
===================================================== */

.submit-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    min-width: 180px;

    padding: 14px 25px;

    border: none;
    border-radius: 8px;

    background: #0b3578;

    color: #ffffff;

    font-size: 15px;
    font-weight: 700;

    cursor: pointer;

    transition: all 0.25s ease;
}

.submit-button:hover {
    background: #092b63;

    transform: translateY(-2px);
}


/* =====================================================
   MAP
===================================================== */

.map-box {
    display: flex;

    flex-direction: column;
}

.map-box h2 {
    margin-bottom: 15px;
}

.google-map {
    display: block;

    width: 100%;
    height: 450px;

    border: 0;

    border-radius: 10px;

    margin-top: 10px;
}

.directions-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    width: fit-content;

    margin-top: 25px;

    padding: 14px 24px;

    border-radius: 8px;

    background: #0b3578;

    color: #ffffff !important;

    font-size: 15px;
    font-weight: 700;

    text-decoration: none;

    transition: all 0.25s ease;
}

.directions-button:hover {
    background: #092b63;

    color: #ffffff !important;

    transform: translateY(-2px);
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 991px) {

    .contact-container {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .contact-box {
        padding: 40px;
    }

    .contact-box h2 {
        font-size: 32px;
    }

}


@media (max-width: 575px) {

    .contact-container {
        width: 94%;
    }

    .contact-box {
        padding: 25px;
    }

    .form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .contact-box h2 {
        font-size: 28px;
    }

    .google-map {
        height: 350px;
    }

}
/* =====================================================
   CLEAN CONTACT FORM
===================================================== */

.contact-form-box {
    padding: 50px !important;
}


/* HEADER */

.contact-heading {
    width: 100%;
    margin-bottom: 35px;
}

.contact-heading .section-label {
    display: block;
    margin-bottom: 12px;

    color: #0b3578;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
}

.contact-heading h2 {
    margin: 0 0 15px 0 !important;

    color: #0b3578 !important;

    font-size: 38px !important;
    line-height: 1.2 !important;

    font-weight: 700 !important;

    white-space: normal !important;
}

.contact-heading p {
    max-width: 700px;

    margin: 0;

    color: #667085;

    font-size: 16px;
    line-height: 1.7;
}


/* FORM */

.contact-form {
    width: 100% !important;
    max-width: none !important;
}

.contact-form .form-row {
    display: grid !important;

    grid-template-columns: 1fr 1fr !important;

    gap: 20px !important;

    width: 100% !important;

    margin: 0 !important;
}


.contact-form .form-group {
    width: 100% !important;

    margin-bottom: 22px !important;
}


.contact-form label {
    display: block;

    margin-bottom: 8px;

    color: #0b3578;

    font-size: 15px;

    font-weight: 600;
}


.contact-form input,
.contact-form select,
.contact-form textarea {
    display: block;

    width: 100% !important;

    box-sizing: border-box;

    border: 1px solid #d5dce6 !important;

    border-radius: 8px !important;

    background: #fff !important;

    padding: 13px 15px !important;

    color: #333 !important;

    font-size: 15px !important;

    box-shadow: none !important;
}


.contact-form input,
.contact-form select {
    height: 52px !important;
}


.contact-form textarea {
    height: 150px !important;

    min-height: 150px !important;

    resize: vertical;
}


.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #0b3578 !important;

    box-shadow: 0 0 0 3px rgba(11, 53, 120, 0.08) !important;

    outline: none !important;
}


/* BUTTON */

.contact-form .submit-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    width: auto !important;

    min-width: 170px;

    height: 52px;

    padding: 0 25px;

    border: 0;

    border-radius: 8px;

    background: #0b3578 !important;

    color: #fff !important;

    font-size: 15px;

    font-weight: 700;

    text-transform: uppercase;

    cursor: pointer;
}

.contact-form .submit-button:hover {
    background: #092b63 !important;

    transform: translateY(-2px);
}


/* MOBILE */

@media (max-width: 767px) {

    .contact-form-box {
        padding: 30px !important;
    }

    .contact-heading h2 {
        font-size: 30px !important;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }

}
/* =====================================================
   SUCCESS / ERROR NOTIFICATION
===================================================== */

#form-message {
    position: fixed;
    top: 25px;
    left: 50%;
    transform: translateX(-50%) translateY(-30px);

    z-index: 99999;

    min-width: 320px;
    max-width: 90%;

    padding: 16px 28px;

    border-radius: 12px;

    font-size: 17px;
    font-weight: 600;
    text-align: center;

    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.18);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.4s ease,
        transform 0.4s ease,
        visibility 0.4s ease;
}

/* MESSAGE SUCCESS */

#form-message.success-message {
    background: #d4edda;
    color: #155724;
    border: 1px solid #b7dfc0;

    opacity: 1;
    visibility: visible;

    transform: translateX(-50%) translateY(0);
}

/* MESSAGE ERROR */

#form-message.error-message {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f1b0b7;

    opacity: 1;
    visibility: visible;

    transform: translateX(-50%) translateY(0);
}

/* MOBILE */

@media (max-width: 576px) {

    #form-message {
        top: 15px;
        min-width: 0;
        width: 90%;

        padding: 14px 18px;

        font-size: 15px;
    }

}

/* =========================================================
   CONTACT - SAME NAVBAR AS HOME / ABOUT
   ========================================================= */

@media (max-width: 767.98px) {

    .main-navbar .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 15px;
    }

    .main-navbar .logo {
        width: auto;
        margin: 0 0 15px 0;
    }

    .main-navbar .logo img {
        width: 180px;
        height: auto;
    }

    .main-navbar .nav-menu {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        margin: 0;
        padding: 0;
        gap: 0;
    }

    .main-navbar .nav-menu > li {
        width: 100%;
        margin: 0;
        text-align: center;
    }

    .main-navbar .nav-menu > li > a {
        display: block;
        width: 100%;
        padding: 10px 15px;
        font-size: 16px;
    }

    /* SERVICES */
    .main-navbar .dropdown-menu {
        position: static !important;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .main-navbar .dropdown-menu li {
        width: 100%;
    }

    .main-navbar .dropdown-menu li a {
        display: block;
        width: 100%;
        padding: 8px 15px;
        font-size: 14px;
        text-align: center;
    }
}
/* =========================================================
   COLPAP - RESPONSIVE NAVBAR FINAL
   ========================================================= */


/* =========================================================
   DESKTOP
   ========================================================= */

.main-navbar {
    width: 100%;
    background: #ffffff;
    position: relative;
    z-index: 9999;
}

.main-navbar > .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* MENU */

.main-navbar .nav-menu {
    display: flex;
    align-items: center;

    margin: 0;
    padding: 0;

    list-style: none;
}

.main-navbar .nav-menu > li {
    position: relative;
    margin: 0 18px;
}

.main-navbar .nav-menu > li > a {
    display: flex;
    align-items: center;

    color: #0B2D6B;

    font-size: 20px;
    font-weight: 700;

    text-decoration: none;

    white-space: nowrap;
}

.main-navbar .nav-menu > li > a:hover {
    color: #2878D4;
}


/* =========================================================
   SERVICES DROPDOWN DESKTOP
   ========================================================= */

.main-navbar .dropdown {
    position: relative;
}

.main-navbar .dropdown-menu {
    position: absolute;

    top: 100%;
    left: 50%;

    transform: translateX(-50%);

    width: 220px;

    margin: 0;
    padding: 5px 0;

    display: none;

    background: #ffffff;

    list-style: none;

    box-shadow: 0 5px 20px rgba(0,0,0,.15);

    z-index: 99999;
}

.main-navbar .dropdown:hover > .dropdown-menu {
    display: block;
}

.main-navbar .dropdown-menu li {
    width: 100%;
    margin: 0;
    padding: 0;
}

.main-navbar .dropdown-menu li a {
    display: block;

    width: 100%;

    padding: 12px 15px;

    color: #0B2D6B;

    font-size: 14px;
    font-weight: 500;

    white-space: nowrap;

    text-decoration: none;
}

.main-navbar .dropdown-menu li a:hover {
    background: #f2f6fb;
}


/* =========================================================
   LANGUAGE SELECTOR
   ========================================================= */

.language-selector {
    position: relative;

    flex-shrink: 0;

    margin-left: 20px;
}

.language-current {
    display: block;

    background: #ffffff;

    color: #0B2D6B;

    border: 1px solid #0B2D6B;

    border-radius: 5px;

    padding: 9px 12px;

    font-family: "Poppins", sans-serif;

    font-size: 13px;
    font-weight: 600;

    cursor: pointer;

    white-space: nowrap;
}

.language-current:hover {
    background: #0B2D6B;
    color: #ffffff;
}


/* MENU LANGUES */

.language-selector .language-dropdown {
    position: absolute;

    top: calc(100% + 8px);
    right: 0;

    width: 150px;

    display: none;

    padding: 0;
    margin: 0;

    background: #ffffff;

    border-radius: 5px;

    box-shadow: 0 5px 20px rgba(0,0,0,.18);

    overflow: hidden;

    z-index: 999999;
}

.language-selector .language-dropdown.show {
    display: block;
}

.language-selector .language-dropdown button {
    display: block;

    width: 100%;

    padding: 10px 14px;

    border: none;

    background: #ffffff;

    color: #0B2D6B;

    font-family: "Poppins", sans-serif;

    font-size: 13px;

    text-align: left;

    cursor: pointer;
}

.language-selector .language-dropdown button:hover {
    background: #f2f6fb;
    color: #2878D4;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

    /* -----------------------------------------
       BARRE BLANCHE
       ----------------------------------------- */

    .main-navbar {
        width: 100% !important;

        height: auto !important;
        min-height: 62px !important;

        padding: 0 !important;

        overflow: visible !important;
    }


    /* -----------------------------------------
       CONTAINER
       ----------------------------------------- */

    .main-navbar > .container {
        width: 100% !important;
        max-width: 100% !important;

        margin: 0 !important;

        padding: 0 !important;

        display: flex !important;

        align-items: center !important;

        justify-content: center !important;

        flex-wrap: nowrap !important;
    }


    /* -----------------------------------------
       LOGO
       ----------------------------------------- */

    .main-navbar .logo {
        display: none !important;
    }


    /* -----------------------------------------
       MENU + LANGUE = 5 COLONNES
       ----------------------------------------- */

    .main-navbar .nav-menu {
        width: 80% !important;

        display: grid !important;

        grid-template-columns: repeat(4, 1fr) !important;

        align-items: stretch !important;

        margin: 0 !important;
        padding: 0 !important;

        gap: 0 !important;

        list-style: none !important;
    }


    /* -----------------------------------------
       ITEMS
       ----------------------------------------- */

    .main-navbar .nav-menu > li {
        width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;

        position: relative !important;

        text-align: center !important;
    }


    /* -----------------------------------------
       LIENS
       ----------------------------------------- */

    .main-navbar .nav-menu > li > a {

        width: 100% !important;

        min-height: 62px !important;

        display: flex !important;

        align-items: center !important;

        justify-content: center !important;

        padding: 5px 1px !important;

        margin: 0 !important;

        color: #0B2D6B !important;

        font-size: 13px !important;

        font-weight: 700 !important;

        line-height: 1.1 !important;

        white-space: nowrap !important;

        text-align: center !important;
    }


    /* -----------------------------------------
       LANGUAGE
       ----------------------------------------- */

    .main-navbar .language-selector {

        width: 20% !important;

        height: 62px !important;

        display: flex !important;

        align-items: center !important;

        justify-content: center !important;

        margin: 0 !important;

        padding: 0 !important;

        flex-shrink: 0 !important;

        position: relative !important;
    }


    /* Bouton FR */

    .main-navbar .language-current {

        padding: 6px 7px !important;

        font-size: 11px !important;

        border-radius: 5px !important;

        white-space: nowrap !important;
    }


    /* -----------------------------------------
       DROPDOWN LANGUES MOBILE
       ----------------------------------------- */

    .main-navbar .language-dropdown {

        position: absolute !important;

        top: 58px !important;

        right: 0 !important;

        width: 145px !important;

        z-index: 999999 !important;
    }


    /* -----------------------------------------
       DROPDOWN SERVICES MOBILE
       ----------------------------------------- */

    .main-navbar .dropdown-menu {

        position: absolute !important;

        top: 100% !important;

        left: 50% !important;

        transform: translateX(-50%) !important;

        width: 190px !important;

        margin: 0 !important;

        padding: 5px 0 !important;

        background: #0B2D6B !important;

        z-index: 999999 !important;
    }

    .main-navbar .dropdown:hover > .dropdown-menu,
    .main-navbar .dropdown:focus-within > .dropdown-menu {

        display: block !important;
    }

    .main-navbar .dropdown-menu li {
        width: 100% !important;

        margin: 0 !important;
    }

    .main-navbar .dropdown-menu li a {

        display: block !important;

        width: 100% !important;

        padding: 11px 14px !important;

        color: #ffffff !important;

        font-size: 12px !important;

        text-align: left !important;

        white-space: nowrap !important;
    }

}


/* =========================================================
   TRÈS PETITS TÉLÉPHONES
   ========================================================= */

@media (max-width: 360px) {

    .main-navbar .nav-menu > li > a {
        font-size: 12px !important;
    }

    .main-navbar .language-current {
        padding: 5px 5px !important;
        font-size: 10px !important;
    }

}