/* ============================================
   DELTA CONTROL - Modern CSS Styles
   100% CSS - No JavaScript dependencies
   ============================================ */

/* ============================================
   MODERN HEADER
   ============================================ */

.modern-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #ffffff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.header-top {
    background: linear-gradient(135deg, #1a1d5a 0%, #2e3092 50%, #1a1d5a 100%);
    padding: 10px 0;
    color: #ffffff;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-info {
    display: flex;
    gap: 25px;
}

.header-contact {
    font-size: 0.9rem;
    color: #ffffff;
}

.header-contact i {
    margin-right: 6px;
    color: #ffffff;
}

.header-social {
    display: flex;
    gap: 12px;
    padding-left: 600px;
}

.header-social a {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
}

.header-social a:hover {
    background: #ffffff;
    color: #1a4d8f;
    transform: translateY(-2px);
}

.header-main {
    background: #ffffff;
    padding: 15px 0;
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo img {
    height: 50px;
    width: auto;
}

.header-nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.main-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5px;
}

.main-menu > li {
    position: relative;
}

.main-menu > li > a {
    display: block;
    padding: 12px 18px;
    color: #333;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.main-menu > li > a:hover,
.main-menu > li.active > a {
    color: #2e3092;
    background: #e0e1e9;
}

.main-menu > li.has-dropdown > a i {
    margin-left: 4px;
    font-size: 0.8rem;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    list-style: none;
    margin: 0;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.main-menu > li.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li {
    margin: 0;
}

.dropdown li a {
    display: block;
    padding: 10px 20px;
    color: #555;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.dropdown li a:hover {
    background: #f0f4f8;
    color: #1a4d8f;
    padding-left: 25px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #1a4d8f;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    background: #ffffff;
    border-top: 1px solid #e0e0e0;
}

.mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu > ul > li {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-menu > ul > li > a {
    display: block;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-size: 1rem;
}

.mobile-menu > ul > li.active > a {
    color: #1a4d8f;
    background: #f0f4f8;
}

.mobile-menu .submenu {
    display: none;
    background: #f8f9fa;
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu .submenu li a {
    display: block;
    padding: 12px 20px 12px 40px;
    color: #555;
    text-decoration: none;
    font-size: 0.9rem;
    border-bottom: 1px solid #e0e0e0;
}

.mobile-menu .has-submenu > a i {
    float: right;
    transition: transform 0.3s ease;
}

.mobile-menu .has-submenu.active > a i {
    transform: rotate(180deg);
}

.mobile-menu .has-submenu.active .submenu {
    display: block;
}

/* ============================================
   HERO SLIDER - Full Screen
   ============================================ */

.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    margin-top: 95px; /* Header height */
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    z-index: 2;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    z-index: 3;
    width: 90%;
    max-width: 1000px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.4rem;
    margin: 0;
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* ============================================
   TAGLINE SECTION
   ============================================ */

.tagline-section {
    background: linear-gradient(135deg, #1a1d5a 0%, #2e3092 50%, #1a1d5a 100%);
    padding: 40px 0;
    color: #ffffff;
    text-align: center;
}

.tagline-text {
    font-size: 1.3rem;
    line-height: 1.8;
    margin: 0;
    padding: 0 20px;
}

.tagline-text strong {
    color: #ddc2c2;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services-section {
    background: #f5f7fa;
    padding: 80px 0;
}

.service-row {
    margin-bottom: 40px;
}

.service-row:last-child {
    margin-bottom: 0;
}

.service-card {
    display: flex;
    align-items: flex-start;
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 5px solid #1a4d8f;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a4d8f 0%, #0d5aa7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 30px;
}

.service-icon i {
    font-size: 2.5rem;
    color: #ffffff;
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 1.8rem;
    color: #1a4d8f;
    margin-bottom: 20px;
    margin-top: 0;
}

.service-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-list li {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.service-list li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: #0d5aa7;
    font-size: 1.2rem;
}

/* ============================================
   VALUES SECTION
   ============================================ */

.values-section {
    background: #ffffff;
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    color: #2e3092; 
    margin-bottom: 50px;
    text-align: center;
}

.values-row {
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-card {
    text-align: center;
    padding: 20px;
}

.value-card img {
    width: 100%;
    max-width: 150px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.value-card strong {
    display: block;
    font-size: 1.2rem;
    color: #1a4d8f;
    margin-top: 10px;
}

.project-card {
    padding: 20px;
}

/* ============================================
   PARTNERS SECTION
   ============================================ */

.partners-section {
    background: #f5f7fa;
    padding: 80px 0;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-top: 10px;
    margin-bottom: 40px;
    text-align: center;
}

.partners-slider {
    margin-top: 40px;
}

/* ============================================
   FOOTER ENHANCEMENTS
   ============================================ */

#footer {
    background: #1a2332;
    color: #ffffff;
}

#footer h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

#footer .contact li {
    margin-bottom: 10px;
    line-height: 1.6;
}

#footer .contact li p {
    color: #ddd;
}

#footer .contact li i {
    color: #0d5aa7;
    margin-right: 8px;
}

#footer a {
    color: #66b3ff;
    transition: color 0.3s ease;
}

#footer a:hover {
    color: #ffffff;
    text-decoration: none;
}

.footer-ribon {
    background: linear-gradient(135deg, #1a4d8f 0%, #0d5aa7 100%);
}

.footer-copyright {
    background: #2a2a2a;
    
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    .hero-slider,
    header,
    .social-icons,
    .footer-ribon {
        display: none;
    }
    
    .service-card {
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* ============================================
   STATISTICS SECTION
   ============================================ */

.stats-section {
    background: linear-gradient(135deg, #1a1d5a 0%, #2e3092 50%, #1a1d5a 100%);
    padding: 80px 0;
    color: #ffffff;
}

.white-title {
    color: #ffffff !important;
}

.stats-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
}

.stat-card {
    text-align: center;
    padding: 30px 15px;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.stat-icon i {
    font-size: 2.5rem;
    color: #ffffff;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

/* ============================================
   EXPERTISE SECTION
   ============================================ */

.expertise-section {
    background: #ffffff;
    padding: 80px 0;
}

.expertise-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
}

.expertise-card {
    text-align: center;
    padding: 30px 20px;
    transition: all 0.3s ease;
}

.expertise-card:hover {
    transform: translateY(-5px);
}

.expertise-icon-wrapper {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #1a1d5a 0%, #2e3092 50%, #1a1d5a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(26, 77, 143, 0.3);
}

.expertise-card:hover .expertise-icon-wrapper {
    box-shadow: 0 8px 30px rgba(26, 77, 143, 0.5);
    transform: scale(1.1);
}

.expertise-icon-wrapper i {
    font-size: 3rem;
    color: #ffffff;
}

.expertise-card h4 {
    font-size: 1.4rem;
    color: #1a4d8f;
    margin-bottom: 15px;
}

.expertise-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials-section {
    background: #f5f7fa;
    padding: 80px 0;
}

.testimonials-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 35px 25px;
    margin: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border-top: 4px solid #1a4d8f;
}

.testimonial-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.testimonial-quote {
    text-align: center;
    margin-bottom: 20px;
}

.testimonial-quote i {
    font-size: 2.5rem;
    color: #0d5aa7;
    opacity: 0.3;
}

.testimonial-text {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 25px;
}

.testimonial-author {
    border-top: 2px solid #f0f0f0;
    padding-top: 20px;
    text-align: center;
}

.testimonial-author strong {
    display: block;
    font-size: 1.1rem;
    color: #1a4d8f;
    margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: #999;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    background: linear-gradient(135deg, #1a1d5a 0%, #2e3092 50%, #1a1d5a 100%);
    padding: 80px 0;
    color: #ffffff;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-text {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #ffffff;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-cta i {
    margin-right: 8px;
}

.btn-cta.primary {
    background: #ffffff;
    color: #1a4d8f;
    font-weight: 600;
}

.btn-cta.primary:hover {
    background: #ffed4e;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.btn-cta.secondary {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.btn-cta.secondary:hover {
    background: #ffffff;
    color: #1a4d8f;
    transform: translateY(-3px);
}

/* ============================================
   ENHANCED RESPONSIVE STYLES
   ============================================ */

/* Tablet Landscape */
@media (max-width: 1024px) {
    .stats-row,
    .expertise-row,
    .testimonials-row {
        margin-top: 30px;
    }
    
    .stat-card {
        flex: 0 0 50%;
        margin-bottom: 30px;
    }
    
    .expertise-card {
        flex: 0 0 50%;
    }
    
    .testimonial-card {
        flex: 0 0 calc(50% - 30px);
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    .stats-section,
    .expertise-section,
    .testimonials-section,
    .cta-section {
        padding: 50px 0;
    }
    
    .stat-card {
        flex: 0 0 50%;
        padding: 20px 10px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .expertise-card {
        flex: 0 0 100%;
        margin-bottom: 20px;
    }
    
    .expertise-icon-wrapper {
        width: 80px;
        height: 80px;
    }
    
    .expertise-icon-wrapper i {
        font-size: 2.5rem;
    }
    
    .testimonial-card {
        flex: 0 0 100%;
        margin: 15px 0;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-text {
        font-size: 1.1rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .stats-section,
    .expertise-section,
    .testimonials-section,
    .cta-section {
        padding: 40px 0;
    }
    
    .stat-card {
        flex: 0 0 100%;
        margin-bottom: 30px;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
    }
    
    .stat-icon i {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-label {
        font-size: 0.95rem;
    }
    
    .expertise-card {
        padding: 25px 15px;
    }
    
    .expertise-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .expertise-icon-wrapper i {
        font-size: 2rem;
    }
    
    .expertise-card h4 {
        font-size: 1.2rem;
    }
    
    .expertise-card p {
        font-size: 0.95rem;
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-text {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta {
        width: 100%;
        max-width: 280px;
        padding: 14px 30px;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .stat-number {
        font-size: 2rem;
    }
    
    .expertise-card h4 {
        font-size: 1.1rem;
    }
    
    .cta-title {
        font-size: 1.6rem;
    }
    
    .btn-cta {
        font-size: 1rem;
        padding: 12px 25px;
    }
}

/* ============================================
   MOBILE HEADER IMPROVEMENTS
   ============================================ */

@media (max-width: 480px) {
    header a img {
        height: 35px !important;
    }
    
    header .social-icons ul li {
        margin: 0 5px;
    }
}
/* CONTACT INFO */
        .contact-info h4 {
            font-size: 22px;
            font-weight: 700;
            color: var(--color-gray-900);
            margin-bottom: 20px;
            margin-top: 30px;
        }
        
        .contact-info h4:first-child {
            margin-top: 0;
        }
        
        .contact-list {
            list-style: none;
        }
        
        .contact-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 15px;
            color: var(--color-gray-700);
        }
        
        .contact-list i {
            color: var(--color-primary);
            margin-top: 3px;
            width: 20px;
        }
        
        .contact-list a {
            color: var(--color-primary);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .contact-list a:hover {
            color: var(--color-primary-dark);
            text-decoration: underline;
        }
        
        .contact-divider {
            border: none;
            height: 1px;
            background: var(--color-gray-200);
            margin: 30px 0;
        }
/* ============================================
   MAPS SECTION
   ============================================ */

 /* MAPS */
        .maps {
            background: white;
        }
        
        .maps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .map-card {
            background: var(--color-gray-50);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 10px rgb(0 0 0 / 75%);
        }
        
        .map-header {
            background: var(--color-primary);
            color: white;
            padding: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .map-header h4 {
            font-size: 20px;
            font-weight: 700;
        }
        
        .map-container {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
        }
        
        .map-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }
        
        .map-info {
            padding: 25px;
        }
        
        .map-info p {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 12px;
            color: var(--color-gray-700);
        }
        
        .map-info i {
            color: var(--color-primary);
            margin-top: 3px;
        }
        
        .map-info a {
            color: var(--color-gray-700);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .map-info a:hover {
            color: var(--color-primary);
        }
        
/* ============================================
   MODERN FOOTER
   ============================================ */

.modern-footer {
    background: #2a2a2a;
    color: #d1d5db;
    margin-top: 0px;
}
.modern-footerr {
    background: #2a2a2a;
    color: #d1d5db;
    
}
.footer-main {
    padding: 60px 0 40px;
}

.footer-col {
    margin-bottom: 30px;
}

.footer-logo img {
    height: 50px;
    width: auto;
    margin-bottom: 20px;
}

.footer-about {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #9ca3af;
    margin-bottom: 20px;
}

.footer-experience {
    margin-top: 15px;
}

.footer-title {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-contact {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-contact li i {
    color: #0d5aa7;
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact li span {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #d1d5db;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links li a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-links li a i {
    margin-right: 8px;
    color: #0d5aa7;
    font-size: 0.8rem;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #ffffff;
    color: #1a4d8f;
    transform: translateY(-3px);
}

.footer-bottom {
    background: #2a2a2a;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    margin: 0;
    font-size: 0.9rem;
    color: #9ca3af;
}

.footer-copyright strong {
    color: #2e3092;
}

.footer-credits {
    margin: 0;
    font-size: 0.9rem;
    text-align: right;
}

.footer-credits a {
    color: #0d5aa7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-credits a:hover {
    color: #ffffff;
}

/* ============================================
   RESPONSIVE - HEADER
   ============================================ */

@media (max-width: 991px) {
    .header-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu.active {
        display: block;
    }
    
    .hero-slider {
        margin-top: 75px;
    }
}

@media (max-width: 768px) {
    .modern-header {
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .header-top {
        padding: 8px 0;
    }
    
    .header-info {
        flex-direction: column;
        gap: 8px;
    }
    
    .header-contact {
        font-size: 0.85rem;
    }
    
    .header-social a {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }
    
    .header-logo img {
        height: 40px;
    }
    
    .hero-slider {
        margin-top: 70px;
    }
}

@media (max-width: 480px) {
    .header-top .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .header-info {
        width: 100%;
        justify-content: center;
    }
    
    .header-social {
        width: 100%;
        justify-content: center;
    }
    
    .header-logo img {
        height: 35px;
    }
}

/* ============================================
   RESPONSIVE - MAPS
   ============================================ */

@media (max-width: 768px) {
    .maps-section {
        padding: 50px 0;
    }
    
    .map-card {
        margin: 15px 0;
    }
    
    .map-container {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .maps-section {
        padding: 40px 0;
    }
    
    .map-header {
        padding: 15px;
    }
    
    .map-header h4 {
        font-size: 1.1rem;
    }
    
    .map-container {
        height: 250px;
    }
    
    .map-info {
        padding: 15px;
    }
    
    .map-info p {
        font-size: 0.9rem;
    }
}

/* ============================================
   RESPONSIVE - FOOTER
   ============================================ */

@media (max-width: 768px) {
    .footer-main {
        padding: 40px 0 20px;
    }
    
    .footer-col {
        margin-bottom: 30px;
        text-align: center;
    }
    
    .footer-contact li {
        justify-content: center;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom .row {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .footer-credits {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-main {
        padding: 30px 0 15px;
    }
    
    .footer-title {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .footer-logo img {
        height: 40px;
    }
    
    .footer-about {
        font-size: 0.9rem;
    }
    
    .footer-contact li {
        font-size: 0.85rem;
    }
    
    .footer-links li a {
        font-size: 0.9rem;
    }
    
    .footer-social a {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
}

/* ============================================
   PRODUCT PAGE - PAGE HERO
   ============================================ */

.page-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0 80px;
    margin-top: 95px;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(21, 58, 104, 0.9) 0%, rgba(13, 35, 63, 0.85) 100%);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.breadcrumb-modern {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.breadcrumb-modern a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-modern a:hover {
    color: #ffffff;
}

.breadcrumb-modern .separator {
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-modern .current {
    color: #ffffff;
}

.page-title {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.page-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* ============================================
   PRODUCT PAGE - INTRODUCTION
   ============================================ */

.product-intro-section {
    padding: 80px 0;
    background: #ffffff;
}

.section-title-alt {
    font-size: 2rem;
    color: #1a4d8f;
    margin-bottom: 20px;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.intro-features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.intro-features li {
    font-size: 1.05rem;
    color: #333;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.intro-features li i {
    color: #0d5aa7;
    font-size: 1.3rem;
}

.info-box {
    background: linear-gradient(135deg, #f0f4f8 0%, #e8f0f7 100%);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    border: 2px solid #1a4d8f;
}

.info-box-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1a4d8f 0%, #0d5aa7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.info-box-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.info-box h4 {
    font-size: 1.3rem;
    color: #1a4d8f;
    margin-bottom: 15px;
}

.info-box p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.info-box .btn {
    background: linear-gradient(135deg, #1a4d8f 0%, #0d5aa7 100%);
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
}

.info-box .btn:hover {
    background: linear-gradient(135deg, #0d5aa7 0%, #1a4d8f 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 77, 143, 0.3);
}

/* ============================================
   PRODUCT PAGE - PRODUCTS GRID
   ============================================ */

.products-section {
    padding: 80px 0;
    background: #f5f7fa;
}

.products-grid {
    margin-top: 50px;
}

.product-item {
    margin-bottom: 40px;
}

.product-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-8px);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 250px;
    background: #f0f0f0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 77, 143, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-link {
    color: #ffffff;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.product-link i {
    font-size: 2.5rem;
}

.product-link span {
    font-size: 1rem;
}

.product-info {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: 0.85rem;
    color: #0d5aa7;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.product-title {
    font-size: 1.4rem;
    color: #1a4d8f;
    margin-bottom: 10px;
}

.product-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.btn-product-details {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1a4d8f;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-product-details:hover {
    color: #0d5aa7;
    gap: 12px;
}

.btn-product-details i {
    transition: transform 0.3s ease;
}

.btn-product-details:hover i {
    transform: translateX(3px);
}

/* ============================================
   PRODUCT PAGE - ADVANTAGES
   ============================================ */

.advantages-section {
    background: linear-gradient(135deg, #1a1d5a 0%, #2e3092 50%, #1a1d5a 100%);
    padding: 80px 0;
    color: #ffffff;
}

.advantages-row {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;      /* IMPORTANT */
    padding-right: 0;     /* supprimer */
}

.advantage-item {
    text-align: center;
    padding: 20px;
    flex: 0 0 25%;
    max-width: 25%;
}



.advantage-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.advantage-item:hover .advantage-icon {
    background: rgba(255, 255, 255, 0.25);
    border-color: #ffffff;
    transform: scale(1.1);
}

.advantage-icon i {
    font-size: 2.5rem;
    color: #ffffff;
}

.advantage-item h4 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.advantage-item p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}
@media (max-width: 576px) {
    .advantages-section {
        padding: 50px 0;
    }

    .advantages-row {
        margin-top: 30px;
    }

    .advantage-item {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .advantage-icon {
        width: 65px;
        height: 65px;
    }

    .advantage-icon i {
        font-size: 2rem;
    }

    .advantage-item h4 {
        font-size: 1.1rem;
    }

    .advantage-item p {
        font-size: 0.9rem;
    }
}

/* Section Hero */
        .about-hero {
            position: relative;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            padding: 450px 0 100px;
            margin-top: 95px;
        }
        
        .about-hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgb(21 58 104 / 0%) 0%, rgba(13, 35, 63, 0.9) 100%);
            z-index: 1;
        }
        
        .about-hero-content {
            position: relative;
            z-index: 2;
            color: #ffffff;
            text-align: center;
        }
        
        .about-hero-content h1 {
            font-size: 3rem;
            margin-bottom: 15px;
            color: #ffffff;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
        }
        
        .about-hero-content p {
            font-size: 1.4rem;
            margin: 0;
            opacity: 0.95;
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
        }
        
        /* Sections communes */
        .about-section {
            padding: 80px 0;
            background: #ffffff;
        }
        
        .about-section.gray {
            background: #f5f7fa;
        }
        
        .about-section-title {
            font-size: 2.5rem;
            color: #2e3092;
            margin-bottom: 20px;
            text-align: center;
        }
        
        .about-section-subtitle {
            font-size: 1.2rem;
            color: #666;
            margin-top: 10px;
            margin-bottom: 40px;
            text-align: center;
        }
        
        /* Section Présentation */
        .about-intro {
            display: flex;
            align-items: center;
            gap: 40px;
        }
        
        .about-intro-text {
            flex: 1;
        }
        
        .about-intro-text h2 {
            text-align: left;
        }
        
        .about-intro-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 20px;
        }
        
        .about-intro-image {
            flex: 1;
        }
        
        .about-intro-image img {
            width: 100%;
            border-radius: 12px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        }
        
        /* Grille d'expertise */
        .expertise-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 50px;
        }
        
        .expertise-card {
            background: #ffffff;
            border-radius: 12px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border-top: 4px solid #1a4d8f;
        }
        
        .expertise-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        }
        
        .expertise-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #1a4d8f 0%, #0d5aa7 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
        }
        
        .expertise-icon i {
            font-size: 2.5rem;
            color: #ffffff;
        }
        
        .expertise-card h3 {
            font-size: 1.4rem;
            color: #1a4d8f;
            margin-bottom: 15px;
        }
        
        .expertise-card p {
            font-size: 1rem;
            color: #666;
            line-height: 1.6;
        }
        
        /* Section Engagements */
        .commitments-box {
            background: linear-gradient(135deg, #f0f4f8 0%, #e8f0f7 100%);
            border-radius: 12px;
            padding: 50px;
            text-align: center;
            border: 2px solid #1a4d8f;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .commitments-box p {
            font-size: 1.2rem;
            line-height: 1.8;
            color: #333;
            margin: 0;
        }
        
        /* Section Relation client */
        .client-relations {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .client-relations-image {
            flex: 1;
        }
        
        .client-relations-image img {
            width: 100%;
            border-radius: 12px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        }
        
        .client-relations-text {
            flex: 1;
        }
        
        .client-relations-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
        }
        
        /* Section Événements */
        .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .event-card {
            background: #ffffff;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border-left: 5px solid #1a4d8f;
        }
        
        .event-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        }
        
        .event-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #1a4d8f 0%, #0d5aa7 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        
        .event-icon i {
            font-size: 1.8rem;
            color: #ffffff;
        }
        
        .event-card h3 {
            font-size: 1.3rem;
            color: #1a4d8f;
            margin-bottom: 10px;
        }
        
        .event-card h4 {
            font-size: 1.1rem;
            color: #333;
            margin-bottom: 10px;
        }
        
        .event-date {
            font-size: 0.95rem;
            color: #0d5aa7;
            display: flex;
            align-items: center;
            gap: 8px;
        }
         .services-hero-v2 {
            margin-top: 95px;
            display: flex;
            min-height: 600px;
        }
        
        .hero-left {
            flex: 1;
            background: linear-gradient(135deg, #1a1d5a 0%, #2e3092 100%);
            padding: 80px 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            color: #ffffff;
        }
        
        .hero-left h1 {
            font-size: 3.5rem;
            margin-bottom: 25px;
            color: #ffffff;
            line-height: 1.2;
        }
        
        .hero-left .highlight {
            color: #ffd700;
        }
        
        .hero-left p {
            font-size: 1.3rem;
            line-height: 1.7;
            margin-bottom: 40px;
            opacity: 0.95;
        }
        
        .hero-stats {
            display: flex;
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .hero-stat {
            text-align: left;
        }
        
        .hero-stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: #ffd700;
            display: block;
            line-height: 1;
        }
        
        .hero-stat-label {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.8);
            margin-top: 8px;
        }
        
        .hero-cta-group {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }
        
        .btn-hero-v2 {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 15px 35px;
            border-radius: 8px;
            font-size: 1.05rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .btn-hero-v2.primary {
            background: #ffd700;
            color: #1a4d8f;
        }
        
        .btn-hero-v2.primary:hover {
            background: #ffed4e;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
        }
        
        .btn-hero-v2.outline {
            background: transparent;
            color: #ffffff;
            border-color: rgba(255, 255, 255, 0.5);
        }
        
        .btn-hero-v2.outline:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: #ffffff;
        }
        
        .hero-right {
            flex: 1;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        .hero-right::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(26, 77, 143, 0.3) 0%, rgba(13, 35, 63, 0.2) 100%);
        }
        .event-date i {
            color: #ffffff;
        }
        
        /* Section Conclusion */
        .conclusion-section {
            background: linear-gradient(135deg, #1a1d5a 0%, #2e3092 50%, #1a1d5a 100%);
            padding: 80px 0;
            color: #ffffff;
            text-align: center;
        }
        
        .conclusion-box {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .conclusion-box p {
            font-size: 1.5rem;
            line-height: 1.8;
            margin: 0;
            font-weight: 500;
        }
        
        .conclusion-box strong {
            color: #ffffff;
        }
        
        /* Responsive */
        @media (max-width: 991px) {
            .about-hero {
                margin-top: 75px;
                padding: 120px 0 80px;
            }
        }
        
        @media (max-width: 768px) {
            .about-hero {
                margin-top: 70px;
                padding: 100px 0 60px;
            }
            
            .about-hero-content h1 {
                font-size: 2.2rem;
            }
            
            .about-hero-content p {
                font-size: 1.1rem;
            }
            
            .about-section {
                padding: 50px 0;
            }
            
            .about-section-title {
                font-size: 2rem;
            }
            
            .about-intro {
                flex-direction: column;
            }
            
            .expertise-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .commitments-box {
                padding: 35px 25px;
            }
            
            .client-relations {
                flex-direction: column;
            }
            
            .events-grid {
                grid-template-columns: 1fr;
            }
            
            .conclusion-section {
                padding: 50px 0;
            }
            
            .conclusion-box p {
                font-size: 1.2rem;
            }
        }
        
        @media (max-width: 480px) {
            .about-hero {
                padding: 80px 0 50px;
            }
            
            .about-hero-content h1 {
                font-size: 1.8rem;
            }
            
            .about-hero-content p {
                font-size: 1rem;
            }
            
            .about-section {
                padding: 40px 0;
            }
            
            .about-section-title {
                font-size: 1.6rem;
            }
            
            .about-intro-text p {
                font-size: 1rem;
            }
            
            .expertise-card {
                padding: 30px 20px;
            }
            
            .commitments-box {
                padding: 30px 20px;
            }
            
            .commitments-box p {
                font-size: 1.05rem;
            }
            
            .client-relations-text p {
                font-size: 1rem;
            }
            
            .event-card {
                padding: 25px 20px;
            }
            
            .conclusion-box p {
                font-size: 1.1rem;
            }
        }
/* ============================================
   RESPONSIVE - PRODUCT PAGE
   ============================================ */

@media (max-width: 991px) {
    .page-hero {
        margin-top: 75px;
        padding: 100px 0 60px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        margin-top: 70px;
        padding: 80px 0 50px;
    }
    
    .page-title {
        font-size: 2.2rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .product-intro-section {
        padding: 50px 0;
    }
    
    .section-title-alt {
        font-size: 1.8rem;
    }
    
    .info-box {
        margin-top: 30px;
    }
    
    .products-section {
        padding: 50px 0;
    }
    
    .product-item {
        margin-bottom: 30px;
    }
    
    .advantages-section {
        padding: 50px 0;
    }
    
    .advantage-item {
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 60px 0 40px;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .breadcrumb-modern {
        font-size: 0.85rem;
        flex-wrap: wrap;
    }
    
    .product-intro-section {
        padding: 40px 0;
    }
    
    .section-title-alt {
        font-size: 1.6rem;
    }
    
    .intro-text {
        font-size: 1rem;
    }
    
    .intro-features li {
        font-size: 0.95rem;
    }
    
    .info-box {
        padding: 25px 20px;
    }
    
    .info-box h4 {
        font-size: 1.2rem;
    }
    
    .products-section {
        padding: 40px 0;
    }
    
    .products-grid {
        margin-top: 30px;
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-info {
        padding: 20px;
    }
    
    .product-title {
        font-size: 1.2rem;
    }
    
    .advantages-section {
        padding: 40px 0;
    }
    
    .advantages-row {
        margin-top: 30px;
    }
    
    .advantage-icon {
        width: 60px;
        height: 60px;
    }
    
    .advantage-icon i {
        font-size: 2rem;
    }
    
    .advantage-item h4 {
        font-size: 1.1rem;
    }
    
    .advantage-item p {
        font-size: 0.9rem;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.center {
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #1a4d8f 0%, #0d5aa7 100%);
    border: none;
    color: #ffffff;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0d5aa7 0%, #1a4d8f 100%);
    color: #ffffff;
}