/*---------------------------------------------------------------------
File Name: style.css
-----------------------------------------------------------------------*/

/*---------------------------------------------------------------------
import Fonts
-----------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css?family=Rajdhani:300,400,500,600,700');
@import url('https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');

/*---------------------------------------------------------------------
import Files
-----------------------------------------------------------------------*/
@import url(animate.min.css);
@import url(normalize.css);
@import url(icomoon.css);
@import url(css/font-awesome.min.css);
@import url(meanmenu.css);
@import url(owl.carousel.min.css);
@import url(swiper.min.css);
@import url(slick.css);
@import url(jquery.fancybox.min.css);
@import url(jquery-ui.css);
@import url(nice-select.css);

/*---------------------------------------------------------------------
skeleton
-----------------------------------------------------------------------*/
* {
    box-sizing: border-box !important;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden !important;
}

body {
    color: #666666;
    font-size: 14px;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    line-height: 1.80857;
    font-weight: normal;
    overflow-x: hidden !important;
}

a {
    color: #1f1f1f;
    text-decoration: none !important;
    outline: none !important;
    transition: all 0.3s ease-in-out;
}

h1, h2, h3, h4, h5, h6 {
    letter-spacing: 0;
    font-weight: normal;
    position: relative;
    padding: 0 0 10px 0;
    line-height: normal;
    color: #111111;
    margin: 0;
}

h1 { font-size: 24px; }
h2 { font-size: 22px; }
h3 { font-size: 18px; }
h4 { font-size: 16px; }
h5 { font-size: 14px; }
h6 { font-size: 13px; }

button:focus { outline: none; }
ul, li, ol { margin: 0; padding: 0; list-style: none; }

p {
    margin: 20px;
    font-weight: 300;
    font-size: 15px;
    line-height: 24px;
}

img { max-width: 100%; height: auto; }
:focus { outline: 0; }

/* ================================================================
   SYSTEME DE BOUTONS UNIFORME
   ================================================================ */
.btn-global {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease,
                background 0.25s ease, color 0.25s ease;
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
    line-height: 1;
}

.btn-global:active { transform: scale(0.97); }

.btn-global--yellow {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
}
.btn-global--yellow:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.35);
    color: #fff;
}

.btn-global--outline-yellow {
    background: transparent;
    border-color: #fcd34d;
    color: #fcd34d;
}
.btn-global--outline-yellow:hover {
    background: #fcd34d;
    color: #0a1f44;
    transform: translateY(-2px);
}

.btn-global--navy {
    background: #0a1f44;
    color: #fff;
    border-color: #0a1f44;
}
.btn-global--navy:hover {
    background: #1b5a8d;
    border-color: #1b5a8d;
    color: #fff;
    transform: translateY(-2px);
}

.btn-global--outline-navy {
    background: transparent;
    border-color: #0a1f44;
    color: #0a1f44;
}
.btn-global--outline-navy:hover {
    background: #0a1f44;
    color: #fcd34d;
    transform: translateY(-2px);
}

/* ================================================================
   BANDEAU DE NOTIFICATION
   ================================================================ */
.notification-banner-wrapper { position: relative; z-index: 999; }
.notification-banner {
    position: relative;
    width: 100%;
    animation: slideDown 0.5s ease forwards;
}
.notification-success { background: linear-gradient(135deg, #059669, #10b981); color: white; }
.notification-error   { background: linear-gradient(135deg, #dc2626, #ef4444); color: white; }
.notification-warning { background: linear-gradient(135deg, #d97706, #f59e0b); color: white; }
.notification-info    { background: linear-gradient(135deg, #3b82f6, #2563eb); color: white; }

.notification-content {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
}
.notification-content i:first-child { font-size: 20px; }
.notification-content span { flex: 1; }

.notification-close {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}
.notification-close:hover { background: rgba(255,255,255,0.3); transform: scale(1.1); }

@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
}

/* ================================================================
   HEADER & NAVBAR - VERSION CORRIGÉE SANS CONFLITS
   ================================================================ */
.header_section {
    width: 100%;
    background: #0a1f44;
    position: relative;
    z-index: 100;
}

.header_section .container-fluid {
    max-width: 100%;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* Reset des conflits pour la navbar */
.header_section .navbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    background: rgba(10, 31, 68, 0.95);
    backdrop-filter: blur(10px);
    width: 100%;
    transition: all 0.3s ease;
    margin: 0;
    float: none;
}

.header_section .navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(10, 31, 68, 0.98);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Logo */
.header_section .navbar-brand {
    display: inline-block;
    padding: 0;
    margin: 0;
    float: none;
}

.header_section .logo-img {
    height: 70px;
    width: auto;
    transition: transform 0.3s ease;
}
.header_section .logo-img:hover { transform: scale(1.05); }

/* Bouton toggler */
.header_section .custom-toggler {
    display: none;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 16px;
    border-radius: 40px;
    cursor: pointer;
}

.header_section .custom-toggler .navbar-toggler-icon {
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
}

.header_section .toggler-label {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Navigation */
.header_section .navbar-collapse {
    flex-grow: 1;
    align-items: center;
}

.header_section .navbar-nav {
    display: flex;
    flex-direction: row;
    margin: 0 auto;
    padding: 0;
    gap: 5px;
}

.header_section .nav-item {
    list-style: none;
    margin: 0;
    padding: 0;
}

.header_section .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 8px 20px !important;
    border-radius: 40px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 1rem;
    display: flex;
    align-items: center;
    background: transparent;
}

.header_section .nav-link:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fcd34d !important;
    transform: translateX(5px);
}

.header_section .nav-item.active .nav-link {
    background: rgba(255, 255, 255, 0.2);
    color: #fcd34d !important;
}

/* Espace client */
.header_section .client-area {
    margin-left: 15px;
}

.header_section .client-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.header_section .btn-client-dropdown {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 9px 16px;
    border-radius: 40px;
    font-size: 0.9rem;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.header_section .btn-client-dropdown:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.header_section .client-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header_section .client-avatar i { font-size: 28px; color: #fcd34d; }
.header_section .client-avatar img { width: 100%; height: 100%; object-fit: cover; }

.header_section .client-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: white;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.header_section .dropdown-icon {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}
.header_section .btn-client-dropdown[aria-expanded="true"] .dropdown-icon {
    transform: rotate(180deg);
}

/* Dropdown menu */
.header_section .dropdown-menu {
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 12px;
    padding: 8px 0;
    margin-top: 10px;
    min-width: 220px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.header_section .dropdown-item {
    padding: 10px 20px;
    color: #e2e8f0;
    font-size: 0.85rem;
    transition: 0.2s;
    display: flex;
    align-items: center;
    gap: 10px;
}
.header_section .dropdown-item i { width: 20px; color: #94a3b8; }
.header_section .dropdown-item:hover { background: #334155; color: white; }
.header_section .dropdown-item:hover i { color: #fcd34d; }
.header_section .dropdown-divider { border-color: #334155; margin: 6px 0; }

.header_section .dropdown-btn-logout {
    width: 100%;
    text-align: left;
    padding: 10px 20px;
    background: none;
    border: none;
    color: #e2e8f0;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}
.header_section .dropdown-btn-logout i { color: #ef4444; }
.header_section .dropdown-btn-logout:hover { background: #7f1d1d; color: #fca5a5; }

.header_section .notification-badge {
    background: #ef4444;
    color: white;
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: auto;
}

/* ================================================================
   HERO BANNER
   ================================================================ */
.hero_section {
    padding: 60px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero_mobile_overlay { display: none; }

.hero_title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: white;
}
.hero_title span { color: #fcd34d; position: relative; display: inline-block; }
.hero_title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(252, 211, 77, 0.3);
    border-radius: 4px;
}

.hero_text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.hero_buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero_image {
    max-width: 100%;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ================================================================
   RESPONSIVE MOBILE
   ================================================================ */
@media (max-width: 991px) {
    /* Menu mobile */
    .header_section .custom-toggler {
        display: flex;
    }

    .header_section .navbar-collapse {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 350px;
        height: 100vh;
        background: #0a1f44;
        padding: 80px 25px 30px;
        transition: right 0.3s ease;
        z-index: 1050;
        overflow-y: auto;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
        display: block !important;
    }

    .header_section .navbar-collapse.show {
        right: 0;
    }

    /* Overlay */
    .header_section .navbar-collapse.show::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }

    /* Bouton fermeture */
    .header_section .close-menu {
        position: absolute;
        top: 15px;
        right: 20px;
        background: rgba(255, 255, 255, 0.15);
        border: none;
        color: white;
        width: 35px;
        height: 35px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: 0.3s;
    }
    .header_section .close-menu:hover {
        background: rgba(255, 255, 255, 0.25);
        transform: rotate(90deg);
    }

    .header_section .navbar-nav {
        flex-direction: column;
        gap: 5px;
        margin-bottom: 30px !important;
    }

    .header_section .nav-item { width: 100%; }
    .header_section .nav-link {
        padding: 12px 20px !important;
        font-size: 1rem;
        justify-content: flex-start;
    }
    .header_section .nav-link i { width: 24px; font-size: 1.1rem; }

    .header_section .client-area {
        margin-left: 0;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .header_section .client-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    .header_section .client-buttons .btn-global { width: 100%; justify-content: center; }

    .header_section .btn-client-dropdown {
        justify-content: center;
        width: 100%;
    }

    .header_section .dropdown-menu {
        position: static !important;
        width: 100%;
        margin-top: 10px;
        background: rgba(255, 255, 255, 0.1);
    }
    .header_section .dropdown-item { color: rgba(255, 255, 255, 0.9); }

    .header_section .logo-img { height: 55px; }

    /* Hero mobile */
    .hero_section {
        background-image: url(../images/banner-img2.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        min-height: 100svh;
        padding: 50px 0 60px;
        align-items: flex-end;
    }

    .hero_mobile_overlay {
        display: block;
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom,
            rgba(10, 31, 68, 0.15) 0%,
            rgba(10, 31, 68, 0.5) 45%,
            rgba(10, 31, 68, 0.95) 100%);
        z-index: 0;
    }

    .hero_section .row { position: relative; z-index: 1; }
    .hero_img_col { display: none !important; }
    .hero_content { text-align: center; }
    .hero_title { font-size: 2.1rem; text-shadow: 0 2px 12px rgba(0,0,0,0.5); }
    .hero_text { font-size: 1rem; text-shadow: 0 1px 6px rgba(0,0,0,0.35); }
    .hero_buttons { justify-content: center; }
}

@media (max-width: 576px) {
    .hero_section { min-height: 100svh; padding: 40px 0 48px; }
    .hero_title { font-size: 1.75rem; }
    .hero_buttons { flex-direction: column; align-items: stretch; gap: 12px; }
    .hero_buttons .btn-global { width: 100%; }
    .header_section .logo-img { height: 45px; }
    .header_section .custom-toggler { padding: 6px 12px; }
    .header_section .toggler-label { font-size: 0.8rem; }
}

/* ================================================================
   STYLES EXISTANTS CONSERVÉS
   ================================================================ */
.paddind_bottom_0 { padding-bottom: 0 !important; }
.btn-custom {
    margin-top: 20px;
    background-color: transparent !important;
    border: 2px solid #ddd;
    padding: 12px 40px;
    font-size: 16px;
}
.lead {
    font-size: 18px;
    line-height: 30px;
    color: #767676;
    margin: 0;
    padding: 0;
}
.form-control:focus {
    border-color: #ffffff !important;
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}
.navbar-form input { border: none !important; }
.badge { font-weight: 500; }
blockquote {
    margin: 20px 0;
    padding: 30px;
}
button {
    border: 0;
    margin: 0;
    padding: 0;
    cursor: pointer;
}
.full { float: left; width: 100%; }
.layout_padding { padding-top: 90px; padding-bottom: 0; }
.padding_0 { padding: 0; }
.padding_left_0 { padding-left: 100px; }

/* Services section */
.services_section {
    width: 100%;
    float: left;
    background-image: url(../images/services-bg.png);
    height: auto;
    margin-top: 75px;
    padding-bottom: 60px;
    background-size: 100%;
}
.services_taital {
    width: 100%;
    float: left;
    font-size: 34px;
    color: #282c47;
    padding-top: 10px;
    text-transform: uppercase;
    font-weight: bold;
}
.services_taital::after {
    content: '';
    background-color: #ff5a58;
    position: absolute;
    width: 60px;
    text-align: center;
    right: initial;
    top: 0;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    height: 7px;
    left: 0;
    border-radius: 100px;
}
.services_text {
    width: 90%;
    float: left;
    font-size: 16px;
    color: #060606;
    margin-left: 0;
}

/* What we do section */
.what_we_do_section { width: 100%; float: left; }
.what_taital {
    width: 100%;
    float: left;
    font-size: 34px;
    color: #060606;
    padding-top: 10px;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
}
.what_taital::after {
    content: '';
    background-color: #ff5a58;
    position: absolute;
    width: 60px;
    text-align: center;
    right: 0;
    top: 0;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    height: 7px;
    left: 0;
    border-radius: 100px;
}
.what_text {
    width: 100%;
    float: left;
    font-size: 16px;
    color: #060606;
    text-align: center;
    margin-top: 0;
}
.what_we_do_section_2 { width: 100%; float: left; margin-top: 40px; }

/* Box main */
.box_main {
    width: 100%;
    float: left;
    background-color: #1b5a8d;
    border-radius: 10px;
    padding: 30px 0;
}
.box_main:hover { background-color: #ff5a58; }
.box_main.active { background-color: #ff5a58; }
.icon_1 { width: 100%; float: left; text-align: center; min-height: 70px; }
.accounting_text {
    width: 100%;
    float: left;
    font-size: 20px;
    color: #ffffff;
    text-align: center;
    text-transform: uppercase;
}
.lorem_text {
    width: 100%;
    float: left;
    font-size: 16px;
    color: #ffffff;
    text-align: center;
    margin-left: 0;
}
.moremore_bt_1 {
    width: 170px;
    margin: 30px auto 0;
    text-align: center;
}
.moremore_bt_1 a {
    width: 100%;
    float: left;
    font-size: 16px;
    color: #ffffff;
    border: 2px solid #ffffff;
    text-align: center;
    padding: 10px 0;
    border-radius: 40px;
}
.moremore_bt_1 a:hover { color: #ffffff; border: 2px solid #ffffff; }

/* Footer */
.footer_section {
    width: 100%;
    float: left;
    background-color: #121212;
    height: auto;
    margin-top: 0 !important;
    padding-top: 60px !important;
    padding-bottom: 30px !important;
}
.about_text {
    width: 100%;
    float: left;
    font-size: 24px;
    color: #fffcf4;
}
.location_text {
    width: 100%;
    float: left;
    font-size: 18px;
    color: #fffcf4;
    padding-top: 18px;
}
.padding_left_15 { padding-left: 15px; }
.dolor_text {
    width: 100%;
    float: left;
    font-size: 18px;
    color: #fffcf4;
    padding-top: 10px;
    margin: 0;
    line-height: 40px;
}
.mail_text {
    width: 100%;
    float: left;
    font-size: 18px;
    color: #d1d2d3;
    background-color: #ffffff;
    height: auto;
    padding: 5px 15px;
    margin-top: 18px;
}
.subscribe_bt { width: 100%; float: left; }
.subscribe_bt a {
    width: 170px;
    float: left;
    font-size: 18px;
    color: #ffffff;
    background-color: #ff5a58;
    height: auto;
    padding: 5px 0;
    text-align: center;
    text-transform: uppercase;
    margin-top: 22px;
}
.footer_social_icon { width: 100%; float: left; }
.footer_social_icon ul { margin: 0; padding: 0; }
.footer_social_icon li { float: left; padding: 35px 15px 0 0; }
.copyright_section {
    width: 60%;
    margin: 55px auto 0;
    border-top: 1px solid #fff;
    text-align: center;
}
.copyright_text {
    width: 100%;
    float: left;
    color: #ffffff;
    text-align: center;
    font-size: 16px;
    margin-left: 0;
    padding: 10px 0;
}
.copyright_text a { color: #ffffff; }
.copyright_text a:hover { color: #ff5a58; }
.margin_top_90 { margin-top: 90px; }

/* ================================================================
   STYLES POUR SERVICES ET CONTACT
   ================================================================ */
:root {
    --navy: #0a1f44;
    --yellow: #fcd34d;
    --yellow-d: #d97706;
    --blue: #1b5a8d;
    --blue-lt: #f0f5fb;
    --text: #3a4a58;
    --muted: #7a8c9a;
    --red: #ff5a58;
}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ================================================================
   MODAL BOOTSTRAP - CORRECTIONS
   ================================================================ */
.modal { z-index: 1050 !important; }
.modal-backdrop { z-index: 1040 !important; background-color: #000 !important; }
.modal-backdrop.show { opacity: 0.5 !important; }
.modal.show .modal-dialog { transform: none !important; }

#serviceModal.modal { display: block !important; }
#serviceModal.modal:not(.show) { display: none !important; }
#serviceModal.modal.show { display: flex !important; align-items: center !important; }

.modal-dialog { margin: 1.75rem auto !important; max-width: 700px !important; }

.srv-modal,
#serviceModal .modal-content {
    background: #fff !important;
    border-radius: 16px !important;
    border: none !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5) !important;
    overflow: hidden !important;
}

.srv-modal__header,
#serviceModal .srv-modal__header {
    background: linear-gradient(135deg, #0a1f44, #1b5a8d) !important;
    padding: 20px 24px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

.srv-modal__title,
#serviceModal .srv-modal__title {
    color: #fcd34d !important;
    font-weight: 800 !important;
    font-size: 1.1rem !important;
    margin: 0 !important;
    padding: 0 !important;
}

.srv-modal__header .btn-close,
#serviceModal .btn-close {
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat !important;
    opacity: 0.8 !important;
    filter: brightness(0) invert(1) !important;
}

.srv-modal__body,
#serviceModal .srv-modal__body {
    padding: 24px !important;
    max-height: 60vh !important;
    overflow-y: auto !important;
    background: #fff !important;
}

.srv-modal__footer,
#serviceModal .srv-modal__footer {
    padding: 16px 24px !important;
    border-top: 1px solid #eef0f4 !important;
    display: flex !important;
    justify-content: flex-end !important;
    gap: 10px !important;
    background: #fff !important;
}

#serviceModal .box_main,
#serviceModal .box_main:hover,
.modal-content .box_main,
.modal-content .box_main:hover {
    all: initial !important;
    background: transparent !important;
    color: #3a4a58 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    float: none !important;
    width: auto !important;
}

#serviceModal .srv-detail-item {
    padding: 12px 0 !important;
    border-bottom: 1px solid #eef0f4 !important;
}
#serviceModal .srv-detail-item:last-child { border-bottom: none !important; }

#serviceModal .srv-detail-label {
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    color: #7a8c9a !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
    margin-bottom: 4px !important;
}

#serviceModal .srv-detail-val {
    font-size: 1rem !important;
    font-weight: 700 !important;
    color: #0a1f44 !important;
}

#serviceModal .srv-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 12px 28px !important;
    border-radius: 40px !important;
    font-size: 0.88rem !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
}

#serviceModal .srv-btn--yellow {
    background: linear-gradient(135deg, #fcd34d, #d97706) !important;
    color: #0a1f44 !important;
}
#serviceModal .srv-btn--yellow:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 22px rgba(252, 211, 77, 0.4) !important;
}

#serviceModal .srv-btn--ghost {
    background: transparent !important;
    border: 2px solid #cdd7e3 !important;
    color: #3a4a58 !important;
}
#serviceModal .srv-btn--ghost:hover {
    border-color: #0a1f44 !important;
    color: #0a1f44 !important;
}

/* Responsive modal */
@media (max-width: 768px) {
    .modal-dialog { margin: 0.5rem auto !important; max-width: calc(100% - 1rem) !important; }
    .srv-modal__body, #serviceModal .srv-modal__body { padding: 16px !important; max-height: 50vh !important; }
    .srv-modal__footer, #serviceModal .srv-modal__footer { flex-wrap: wrap !important; }
    #serviceModal .srv-btn { width: 100% !important; justify-content: center !important; }
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}
.modal.show .modal-dialog { animation: modalFadeIn 0.3s ease-out !important; }

/* Print */
@media print {
    .footer_section, .cookie-consent, .modal, .toast { display: none !important; }
}
