/* ================================
   MICRO-INTERACTIONS MODERNES
   ================================ */

/* Service Cards Hover Effects */
.service-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(242, 169, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.service-card:hover .service-img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.service-img {
    transition: all 0.4s ease;
}

/* Zone Cards Advanced Hover */
.zone-card {
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
}

.zone-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 0 30px 60px rgba(242, 169, 0, 0.2);
}

.zone-card:hover .zone-icon-bg {
    transform: rotate(360deg) scale(1.2);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.zone-icon-bg {
    transition: all 0.6s ease;
}

/* Feature Cards Micro-interactions */
.feature-card-modern {
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card-modern::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(242, 169, 0, 0.1);
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.feature-card-modern:hover::after {
    width: 300px;
    height: 300px;
}

.feature-card-modern:hover {
    transform: translateX(10px);
    border-left: 4px solid var(--primary-color);
}

/* Button Ripple Effect */
.btn-modern {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-modern::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-modern:active::before {
    width: 300px;
    height: 300px;
}

.btn-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(242, 169, 0, 0.3);
}

/* Testimonial Cards Hover */
.testimonial-card {
    transition: all 0.4s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-8px) rotateY(5deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-card:hover .stars {
    transform: scale(1.2);
    color: var(--primary-color);
}

.stars {
    transition: all 0.3s ease;
}

/* Stats Counter Animation */
.stat-number {
    transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
    transform: scale(1.2);
    color: var(--primary-color);
}

/* Navigation Links Micro-interactions */
.nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link:hover {
    transform: translateY(-2px);
}

/* ================================
   LOADING STATES MODERNES
   ================================ */

/* Skeleton Loaders */
.skeleton-loader {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeletonLoading 1.5s infinite;
    border-radius: 8px;
    margin: 10px 0;
}

.skeleton-line {
    height: 20px;
    width: 100%;
    margin: 8px 0;
}

.skeleton-text {
    height: 12px;
    width: 80%;
    margin: 6px 0;
}

.skeleton-title {
    height: 28px;
    width: 60%;
    margin: 10px 0;
}

@keyframes skeletonLoading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Loading Spinners */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(242, 169, 0, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s ease-in-out infinite;
}

.loading-spinner-lg {
    width: 40px;
    height: 40px;
    border-width: 4px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Pulse Loading Effect */
.pulse-loading {
    display: inline-block;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 8px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

/* Button Loading States */
.btn-loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
}

.btn-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    margin: -8px 0 0 -8px;
    border: 2px solid transparent;
    border-radius: 50%;
    border-top-color: currentColor;
    animation: spin 0.8s linear infinite;
}

/* Form Loading States */
.form-loading .form-control {
    background: linear-gradient(90deg, #f8f9fa 25%, #e9ecef 50%, #f8f9fa 75%);
    background-size: 200% 100%;
    animation: skeletonLoading 1.5s infinite;
    color: transparent;
}

/* Image Loading Placeholder */
.img-loading {
    background: linear-gradient(45deg, #f0f0f0 25%, #e0e0e0 25%, #e0e0e0 50%, #f0f0f0 50%, #f0f0f0 75%, #e0e0e0 75%, #e0e0e0);
    background-size: 20px 20px;
    animation: imgLoading 1s linear infinite;
}

@keyframes imgLoading {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 20px 20px;
    }
}

/* ================================
   NOTIFICATIONS TOAST MODERNES
   ================================ */

/* Toast Container */
.toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 350px;
}

/* Toast Styles */
.toast-modern {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: 15px;
    overflow: hidden;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-left: 4px solid var(--primary-color);
}

.toast-modern.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-modern.hide {
    transform: translateX(400px);
    opacity: 0;
}

/* Toast Header */
.toast-header-modern {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.toast-title {
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.toast-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.toast-close:hover {
    opacity: 1;
}

/* Toast Body */
.toast-body-modern {
    padding: 15px 20px;
    color: #333;
    font-size: 14px;
    line-height: 1.5;
}

/* Toast Types */
.toast-success {
    border-left-color: #28a745;
}

.toast-success .toast-header-modern {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.toast-error {
    border-left-color: #dc3545;
}

.toast-error .toast-header-modern {
    background: linear-gradient(135deg, #dc3545, #f86c6b);
}

.toast-warning {
    border-left-color: #ffc107;
}

.toast-warning .toast-header-modern {
    background: linear-gradient(135deg, #ffc107, #ff9800);
}

.toast-info {
    border-left-color: #17a2b8;
}

.toast-info .toast-header-modern {
    background: linear-gradient(135deg, #17a2b8, #20c997);
}

/* Toast Progress Bar */
.toast-progress {
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.toast-progress-bar {
    height: 100%;
    background: white;
    width: 100%;
    animation: toastProgress 5s linear;
}

@keyframes toastProgress {
    from {
        width: 100%;
    }

    to {
        width: 0%;
    }
}

/* Notification Badge */
.notification-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Floating Action Button */
.fab-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    box-shadow: 0 10px 30px rgba(242, 169, 0, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.fab-notification:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 15px 40px rgba(242, 169, 0, 0.5);
}

.fab-notification.ring {
    animation: fabRing 1s ease;
}

@keyframes fabRing {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
    }

    10%,
    30% {
        transform: scale(1.1) rotate(-10deg);
    }

    20%,
    40% {
        transform: scale(1.1) rotate(10deg);
    }

    50% {
        transform: scale(1) rotate(0deg);
    }
}




.social-links {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

/* Facebook - Official Blue */
.social-links a[title="Facebook"] {
    background: #1877f2;
    color: white;
}

.social-links a[title="Facebook"]:hover {
    background: #166fe5;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.4);
}

/* Email/Gmail - Official Red */
.social-links a[title="Email"] {
    background: #ea4335;
    color: white;
}

.social-links a[title="Email"]:hover {
    background: #d33b2c;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(234, 67, 53, 0.4);
}

/* WhatsApp - Official Green */
.social-links a[title="WhatsApp"] {
    background: #25d366;
    color: white;
}

.social-links a[title="WhatsApp"]:hover {
    background: #20b954;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Ripple Effect for Social Icons */
.social-links a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.social-links a:active::before {
    width: 80px;
    height: 80px;
}

/* Social Links Responsive */
@media (max-width: 576px) {
    .social-links {
        justify-content: center;
        gap: 8px;
    }

    .social-links a {
        width: 36px;
        height: 36px;
    }

    .social-links a i {
        font-size: 16px !important;
    }
}

/* Footer Social Links Specific */
.footer .social-links a {
    border: 2px solid transparent;
}

.footer .social-links a:hover {
    border-color: rgba(255, 255, 255, 0.3);
}

/* Social Icons Animation */
.social-links a i {
    transition: transform 0.3s ease;
}

.social-links a:hover i {
    transform: scale(1.1);
}

/* ================================
   ANAPHIE BUSINESS - STYLE CSS
   ================================ */

/* ---- VARIABLES & IMPORTS ---- */
:root {
    --primary-color: #F2A900;
    --secondary-color: #F5B041;
    --accent-color: #E6A700;
    --text-dark: #000000;
    --text-muted: #555555;
    --text-light: #333333;
    --light-gray: #f8f9fa;
    --border-color: #e2e8f0;
    --white: #FFFFFF;
    --spacing-unit: 1rem;
}

/* ---- GLOBAL STYLES ---- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

p {
    text-align: justify;
    margin-bottom: 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--text-light);
    font-weight: 600;
}

a {
    transition: all 0.3s ease;
    color: var(--text-dark);
}

a:hover {
    color: var(--primary-color);
}

/* ---- NAVBAR ---- */
.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-color: var(--white) !important;
}

.navbar-brand {
    font-size: 1.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--text-light) !important;
}

.navbar-brand:hover {
    color: var(--primary-color) !important;
}

.nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
    color: #000000 !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.dropdown-menu {
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background-color: var(--white);
}

.dropdown-item {
    color: #000000 !important;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Mobile Dropdown Menu Fix */
@media (max-width: 991.98px) {

    /* Rendre le dropdown invisible par défaut */
    .navbar-nav .dropdown-menu {
        position: absolute;
        background: white;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin-top: 10px;
        min-width: 200px;
        z-index: 1000;
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }

    /* Afficher le dropdown uniquement au clic */
    .navbar-nav .dropdown-menu.show {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        transform: translateY(0);
    }

    /* Cacher le dropdown quand on clique ailleurs */
    .navbar-nav .dropdown-menu.hide {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        transform: translateY(-10px);
    }

    /* S'assurer que le dropdown est visible au-dessus du menu mobile */
    .navbar-nav .dropdown-menu {
        position: absolute !important;
        z-index: 1001 !important;
    }

    .navbar-nav .dropdown-item {
        padding: 8px 16px;
        color: #333 !important;
        transition: all 0.2s ease;
    }

    .navbar-nav .dropdown-item:hover {
        background-color: var(--primary-color);
        color: white !important;
    }

    .navbar-nav .dropdown-toggle {
        position: relative;
        display: flex !important;
        align-items: center;
        justify-content: space-between;
    }

    .navbar-nav .dropdown-toggle::after {
        content: '\f107';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        margin-left: 8px;
        transition: transform 0.2s ease;
    }

    .navbar-nav .dropdown-toggle[aria-expanded="true"]::after {
        transform: rotate(180deg);
    }

    /* S'assurer que le dropdown est invisible au-dessus du menu mobile */
    .navbar-collapse {
        position: relative;
    }

    .navbar-collapse.show .dropdown-menu {
        position: absolute;
        background: white;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin-top: 10px;
        min-width: 200px;
        z-index: 1000;
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }

    .navbar-collapse.show .dropdown-menu.show {
        display: block !important;
        visibility: visible !important;
    }
}

/* ---- BUTTONS ---- */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(242, 169, 0, 0.3);
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(242, 169, 0, 0.3);
}

.btn {
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.btn-light:hover {
    background-color: #e9ecef !important;
}

/* ---- PAGE HEADER À PROPOS AVEC BACKGROUND ---- */
.page-header-about {
    background-image: url('../img/apropos-page-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 400px;
    display: flex;
    align-items: center;
    position: relative;
}

.page-header-about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.2) 50%,
            rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.page-header-about .container {
    position: relative;
    z-index: 2;
}

.page-header-about h1 {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin-bottom: 1rem;
    animation: fadeInDown 1s ease-out;
}

.page-header-about .lead {
    font-size: 1.3rem;
    font-weight: 400;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1s ease-out 0.3s both;
}

/* Header overlay pour effet de profondeur */
.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg,
            rgba(0, 0, 0, 0.1) 0%,
            transparent 50%,
            rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Responsive design pour le header */
@media (max-width: 768px) {
    .page-header-about {
        min-height: 300px;
        padding: 3rem 0;
    }

    .page-header-about h1 {
        font-size: 2.2rem;
    }

    .page-header-about .lead {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .page-header-about {
        min-height: 250px;
        padding: 2rem 0;
    }

    .page-header-about h1 {
        font-size: 1.8rem;
    }

    .page-header-about .lead {
        font-size: 1rem;
    }
}

/* ---- PAGE HEADERS AVEC IMAGES ---- */
.page-header-contact {
    background-image: url('../img/contact page hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 400px;
    display: flex;
    align-items: center;
    position: relative;
}

.page-header-faq {
    background-image: url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 400px;
    display: flex;
    align-items: center;
    position: relative;
}

.page-header-pourquoi {
    background-image: url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 400px;
    display: flex;
    align-items: center;
    position: relative;
}

.page-header-zones {
    background-image: url('../img/zone page hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 400px;
    display: flex;
    align-items: center;
    position: relative;
}

.page-header-fret-aerien {
    background-image: url('../img/Fret Aérien Express.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 400px;
    display: flex;
    align-items: center;
    position: relative;
}

.page-header-fret-maritime {
    background-image: url('../img/Fret Maritime.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 400px;
    display: flex;
    align-items: center;
    position: relative;
}

.page-header-import {
    background-image: url('../img/buy car.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 400px;
    display: flex;
    align-items: center;
    position: relative;
}

.page-header-materiaux {
    background-image: url('../img/worker-cuts-iron-with-tool.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 400px;
    display: flex;
    align-items: center;
    position: relative;
}

.page-header-dedouanement {
    background-image: url('../img/Dédouanement.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 400px;
    display: flex;
    align-items: center;
    position: relative;
}

/* Styles communs pour tous les headers avec images */
.page-header-contact .container,
.page-header-faq .container,
.page-header-pourquoi .container,
.page-header-zones .container,
.page-header-fret-aerien .container,
.page-header-fret-maritime .container,
.page-header-import .container,
.page-header-materiaux .container,
.page-header-dedouanement .container {
    position: relative;
    z-index: 2;
}

.page-header-contact h1,
.page-header-faq h1,
.page-header-pourquoi h1,
.page-header-zones h1,
.page-header-fret-aerien h1,
.page-header-fret-maritime h1,
.page-header-import h1,
.page-header-materiaux h1,
.page-header-dedouanement h1 {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    animation: fadeInDown 1s ease-out;
}

.page-header-contact .lead,
.page-header-faq .lead,
.page-header-pourquoi .lead,
.page-header-zones .lead,
.page-header-fret-aerien .lead,
.page-header-fret-maritime .lead,
.page-header-import .lead,
.page-header-materiaux .lead,
.page-header-dedouanement .lead {
    font-size: 1.3rem;
    font-weight: 400;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1s ease-out;
}

/* ---- PAGE HEADER ---- */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 4rem 0;
}

/* Supprimer le gradient orange des pages de services */
.page-header-fret-aerien,
.page-header-fret-maritime,
.page-header-import,
.page-header-materiaux,
.page-header-dedouanement {
    background: none !important;
}

.page-header h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-header .lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
}

/* ---- ICONS ---- */
.text-primary {
    color: var(--primary-color) !important;
}

.service-icon,
.hero-icon-box i,
.video-play-icon {
    color: var(--primary-color);
}

.service-icon {
    background: rgba(242, 169, 0, 0.1);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.service-icon:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

/* ---- NEW HERO SECTION WITH CAROUSEL BACKGROUND ---- */
.hero-section-new {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: -76px;
    /* Compense la hauteur de la navbar */
    padding-top: 76px;
    /* Réserve l'espace pour la navbar */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.hero-content {
    position: relative;
    z-index: 10;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
    border-radius: 20px;
    padding: 3rem;
}

.hero-section-new h1 {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-section-new .lead {
    font-size: 1.3rem;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    margin-bottom: 1rem;
}

.hero-section-new .text-white-50 {
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 15;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.indicator:hover {
    opacity: 1;
    transform: scale(1.2);
}

.indicator.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    opacity: 1;
    transform: scale(1.3);
}

/* Hero Stats */
.hero-stats {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    text-align: center;
    padding: 1rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(242, 169, 0, 0.2);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Hero Buttons */
.hero-section-new .btn-warning {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(242, 169, 0, 0.3);
}

.hero-section-new .btn-warning:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(242, 169, 0, 0.4);
}

.hero-section-new .btn-outline-light {
    border-color: var(--white);
    color: var(--white);
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.hero-section-new .btn-outline-light:hover {
    background: var(--white);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section-new {
        margin-top: -56px;
        /* Navbar mobile height */
        padding-top: 56px;
    }

    .hero-section-new h1 {
        font-size: 2.5rem;
    }

    .hero-section-new .lead {
        font-size: 1.1rem;
    }

    .hero-section-new .text-white-50 {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .hero-stats {
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .carousel-indicators {
        bottom: 20px;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }

    .hero-content {
        padding: 2rem;
    }
}

/* ---- MODERN WHY US SECTION - DESIGN AMÉLIORÉ ---- */
.why-us-modern {
    background: #0B2333;
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

/* Formes décoratives */
.why-bg-shape {
    position: absolute;
    opacity: 0.05;
    z-index: 1;
}

.why-bg-shape.shape-1 {
    width: 300px;
    height: 300px;
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    animation: rotate 25s linear infinite;
}

.why-bg-shape.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--primary-color);
    transform: rotate(45deg);
    bottom: -50px;
    left: -50px;
    animation: pulse 4s ease-in-out infinite;
}

.why-bg-shape.shape-3 {
    width: 150px;
    height: 150px;
    border: 3px solid var(--secondary-color);
    border-radius: 20px;
    top: 50%;
    right: 10%;
    animation: rotate 20s linear infinite reverse;
}

/* Badge de section */
.section-badge {
    display: inline-block;
    animation: pulse 2s infinite;
}

.section-badge .badge-content {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(242, 169, 0, 0.2);
}

/* Titre amélioré */
.why-us-modern h2 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.why-us-modern .text-highlight {
    background: linear-gradient(45deg, #ffffff, #f8f9fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.why-us-modern .text-highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* Cartes de fonctionnalités modernes */
.feature-card-modern {
    display: flex;
    align-items: flex-start;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.feature-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.feature-card-modern:hover::before {
    left: 100%;
}

.feature-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.98);
}

/* Icônes améliorées */
.feature-icon-wrapper {
    position: relative;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 8px 20px rgba(242, 169, 0, 0.3);
    transition: all 0.3s ease;
}

.feature-card-modern:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 25px rgba(242, 169, 0, 0.4);
}

.feature-number {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 30px;
    height: 30px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.8rem;
    box-shadow: 0 4px 10px rgba(255, 140, 0, 0.3);
}

/* Contenu amélioré */
.feature-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.feature-title {
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.feature-card-modern:hover .feature-title {
    color: var(--primary-color);
}

.feature-description {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

/* Statistiques améliorées */
.feature-stats {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.stat-badge {
    background: linear-gradient(45deg, rgba(242, 169, 0, 0.1), rgba(255, 140, 0, 0.1));
    color: var(--primary-color);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(242, 169, 0, 0.2);
    transition: all 0.3s ease;
}

.feature-card-modern:hover .stat-badge {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(242, 169, 0, 0.3);
}

/* Bouton CTA amélioré */
.btn-why-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    box-shadow: 0 8px 25px rgba(242, 169, 0, 0.3);
}

.btn-why-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
    z-index: 1;
}

.btn-why-cta:hover::before {
    left: 100%;
}

.btn-why-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(242, 169, 0, 0.4);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-25deg);
    transition: left 0.6s;
}

.btn-why-cta:hover .btn-shine {
    left: 150%;
}

/* Animations */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.05;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.08;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .why-us-modern {
        padding: 4rem 0;
    }

    .feature-card-modern {
        padding: 1.5rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
    }
}

@media (max-width: 992px) {
    .why-us-modern {
        padding: 3rem 0;
    }

    .feature-card-modern {
        padding: 1.25rem;
        flex-direction: column;
        text-align: center;
    }

    .feature-icon-wrapper {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .feature-stats {
        justify-content: center;
    }

    .why-bg-shape.shape-1 {
        width: 200px;
        height: 200px;
    }

    .why-bg-shape.shape-2 {
        width: 150px;
        height: 150px;
    }

    .why-bg-shape.shape-3 {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    .why-us-modern {
        padding: 2.5rem 0;
    }

    .feature-card-modern {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }

    .feature-number {
        width: 25px;
        height: 25px;
        font-size: 0.7rem;
    }

    .feature-title {
        font-size: 1rem;
    }

    .feature-description {
        font-size: 0.85rem;
    }

    .stat-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }

    .btn-why-cta {
        padding: 0.875rem 2rem;
        font-size: 0.9rem;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .why-us-modern {
        padding: 2rem 0;
    }

    .feature-card-modern {
        padding: 0.8rem;
        border-radius: 15px;
    }

    .feature-icon {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .feature-title {
        font-size: 0.95rem;
    }

    .feature-description {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .stat-badge {
        font-size: 0.65rem;
        padding: 0.25rem 0.5rem;
    }

    .btn-why-cta {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }
}

/* Visual Section */
.why-visual {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    background: var(--white);
    margin-bottom: 2rem;
}

.why-image {
    width: 100%;
    height: auto;
    display: block;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    padding: 2rem;
}

.overlay-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.overlay-stat {
    text-align: center;
    color: var(--white);
}

.stat-number-large {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--primary-color);
}

.stat-label-large {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: var(--white);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-light);
    z-index: 3;
}

.floating-card i {
    font-size: 1.25rem;
}

.floating-card-1 {
    top: 10%;
    right: -10%;
    transform: rotate(5deg);
}

.floating-card-2 {
    top: 30%;
    left: -15%;
    transform: rotate(-8deg);
}

.floating-card-3 {
    bottom: 20%;
    right: -5%;
    transform: rotate(3deg);
}

/* Button Styling */
.why-us-modern .btn-warning {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
    color: var(--white);
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(242, 169, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.why-us-modern .btn-warning::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.why-us-modern .btn-warning:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(242, 169, 0, 0.4);
}

.why-us-modern .btn-warning:hover::before {
    left: 100%;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .why-us-modern {
        padding: 4rem 0;
    }

    .feature-card {
        padding: 1.75rem;
        min-height: 160px;
    }

    .floating-card {
        font-size: 0.8rem;
        padding: 0.75rem 1.25rem;
    }
}

@media (max-width: 992px) {
    .why-us-modern {
        padding: 3rem 0;
    }

    .feature-icon-wrapper {
        flex-direction: column;
        text-align: center;
        margin-bottom: 1rem;
    }

    .feature-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .feature-number {
        position: static;
        margin-bottom: 0.5rem;
    }

    .why-visual {
        margin-top: 3rem;
    }

    .feature-card {
        min-height: 140px;
    }
}

@media (max-width: 768px) {
    .why-us-modern {
        padding: 2.5rem 0;
    }

    .feature-card {
        padding: 1.5rem;
        margin-bottom: 1.25rem;
        min-height: 120px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
    }

    .feature-icon i {
        font-size: 1.25rem;
    }

    .feature-number {
        font-size: 1.5rem;
    }

    .feature-title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .feature-description {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    .stat-badge {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }

    .floating-card {
        display: none;
    }

    .why-visual {
        padding: 1.5rem 0;
    }

    .image-container {
        margin-bottom: 1.5rem;
    }

    .overlay-content {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }

    .stat-number-large {
        font-size: 1.5rem;
    }

    .stat-label-large {
        font-size: 0.75rem;
    }

    .why-us-modern .btn-warning {
        padding: 0.875rem 2rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .why-us-modern {
        padding: 2rem 0;
    }

    .feature-card {
        padding: 1.25rem;
        margin-bottom: 1rem;
        min-height: 110px;
    }

    .feature-icon {
        width: 45px;
        height: 45px;
    }

    .feature-icon i {
        font-size: 1.1rem;
    }

    .feature-title {
        font-size: 1rem;
    }

    .feature-description {
        font-size: 0.85rem;
    }

    .stat-badge {
        font-size: 0.65rem;
        padding: 0.15rem 0.5rem;
    }

    .overlay-content {
        padding: 1rem;
    }

    .stat-number-large {
        font-size: 1.25rem;
    }

    .stat-label-large {
        font-size: 0.7rem;
    }

    .why-us-modern .btn-warning {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }
}

/* ---- SERVICE CARDS ---- */

.services-preview {
    background: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(242, 169, 0, 0.15);
    border-color: var(--primary-color);
}

.service-card:hover::before {
    transform: scaleX(1);
}

/* Service Images - Design identique pour toutes les cartes */
.service-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 200px;
    margin-bottom: 1.5rem;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
    display: block;
    border-radius: 12px;
}

.service-card:hover .service-img {
    transform: scale(1.05);
}

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(242, 169, 0, 0.1) 0%,
            rgba(74, 74, 74, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: 12px;
}

.service-card:hover .service-image::after {
    opacity: 1;
}

/* Titres uniformes pour toutes les cartes */
.service-card h3 {
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
    font-size: 1.25rem;
    line-height: 1.3;
    text-align: center;
}

.service-card:hover h3 {
    color: var(--primary-color);
}

/* Textes uniformes pour toutes les cartes */
.service-card p {
    color: var(--text-muted);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    text-align: center;
}

.service-card strong {
    color: var(--text-light);
    font-weight: 600;
}

/* Boutons uniformes pour toutes les cartes */
.btn-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    background: rgba(242, 169, 0, 0.05);
    border: 1px solid rgba(242, 169, 0, 0.2);
}

.btn-link:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
    background: rgba(242, 169, 0, 0.1);
    border-color: var(--primary-color);
}

.btn-link i {
    transition: transform 0.3s ease;
    margin-left: 0.5rem;
}

.btn-link:hover i {
    transform: translateX(3px);
}

/* Responsive Design */
@media (max-width: 991px) {
    .services-preview .row {
        max-width: 700px;
    }

    .service-card {
        margin-bottom: 1.5rem;
    }

    .service-image {
        height: 180px;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .service-card p {
        font-size: 0.85rem;
    }
}

@media (max-width: 767px) {
    .services-preview .row {
        max-width: 100%;
    }

    .services-preview .container {
        padding: 0 1rem;
    }

    .service-card {
        padding: 1.5rem !important;
        margin-bottom: 1rem;
    }

    .service-image {
        height: 160px;
        margin-bottom: 1rem;
    }

    .service-card h3 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .service-card p {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .services-preview {
        padding: 3rem 0;
    }

    .service-card {
        padding: 1.25rem !important;
        border-radius: 12px;
    }

    .service-image {
        height: 140px;
        margin-bottom: 1rem;
    }

    .service-card h3 {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .service-card p {
        font-size: 0.75rem;
        line-height: 1.5;
        margin-bottom: 0.75rem;
    }

    .btn-link {
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem;
    }
}

/* ---- TESTIMONIALS ---- */

.stars {
    color: #ffc107;
    font-size: 1rem;
}

.stars i {
    margin-right: 0.3rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.8;
}

.testimonial-author strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.3rem;
}

/* ---- CTA SECTIONS ---- */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--text-light) 100%);
    color: white;
    padding: 5rem 0;
}

/* CTA FINAL SECTION - DESIGN AMÉLIORÉ */
.cta-final {
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('img/shipping-container-being-loaded-onto-truck-port.jpg') center/cover;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: -2;
}

.cta-final::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0B2333;
    z-index: -1;
}

.cta-final .container {
    position: relative;
    z-index: 2;
}

.cta-content {
    position: relative;
    z-index: 3;
}

/* Badge CTA */
.cta-badge {
    display: inline-block;
    animation: pulse 2s infinite;
}

.cta-badge .badge-content {
    background: linear-gradient(45deg, #fff, #f8f9fa);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(242, 169, 0, 0.3);
}

/* Titre CTA */
.cta-title {
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-title .text-highlight {
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.cta-title .text-highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* Sous-titre CTA */
.cta-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-subtitle .text-light {
    color: #fff;
}

/* Boutons CTA modernes */
.cta-buttons {
    margin-bottom: 2rem;
}

.btn-modern {
    position: relative;
    overflow: hidden;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.btn-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
    z-index: 1;
}

.btn-modern:hover::before {
    left: 100%;
}

.btn-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.btn-cta-primary {
    background: linear-gradient(45deg, #fff, #f8f9fa);
    color: var(--primary-color);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-cta-primary:hover {
    background: linear-gradient(45deg, #fff, #e9ecef);
    color: var(--secondary-color);
}

.btn-cta-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}

/* Effet shine sur boutons */
.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-final .btn-outline-light:hover::before {
    left: 100%;
}

/* Floating elements */
.cta-final .floating-element {
    position: absolute;
    animation: float 6s ease-in-out infinite;
    opacity: 0.1;
    z-index: 1;
}

.cta-final .floating-element:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.cta-final .floating-element:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}

.cta-final .floating-element:nth-child(3) {
    bottom: 15%;
    left: 20%;
    animation-delay: 4s;
}

.cta-final .floating-element i {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Indicateurs de confiance */
.trust-indicators {
    margin-top: 3rem;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    height: 100%;
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.trust-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    background: rgba(255, 255, 255, 0.9);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.trust-text {
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    margin-top: 0.5rem;
}

/* Éléments flottants améliorés */
.floating-element-1 {
    position: absolute;
    top: 10%;
    left: 5%;
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.6);
    animation: float1 6s ease-in-out infinite;
    z-index: 1;
}

.floating-element-2 {
    position: absolute;
    top: 20%;
    right: 10%;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.5);
    animation: float2 8s ease-in-out infinite;
    z-index: 1;
}

.floating-element-3 {
    position: absolute;
    bottom: 15%;
    left: 8%;
    font-size: 2.2rem;
    color: rgba(255, 255, 255, 0.7);
    animation: float3 7s ease-in-out infinite;
    z-index: 1;
}

/* Particules décoratives */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: particleFloat 10s infinite linear;
}

.particle-1 {
    width: 4px;
    height: 4px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle-2 {
    width: 6px;
    height: 6px;
    top: 60%;
    left: 80%;
    animation-delay: 2s;
}

.particle-3 {
    width: 3px;
    height: 3px;
    top: 30%;
    left: 60%;
    animation-delay: 4s;
}

.particle-4 {
    width: 5px;
    height: 5px;
    top: 80%;
    left: 20%;
    animation-delay: 6s;
}

.particle-5 {
    width: 4px;
    height: 4px;
    top: 50%;
    left: 40%;
    animation-delay: 8s;
}

/* Formes géométriques */
.geometric-shape {
    position: absolute;
    opacity: 0.1;
    z-index: 1;
}

.shape-1 {
    width: 200px;
    height: 200px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    top: 10%;
    right: 5%;
    animation: rotate 20s linear infinite;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: rgba(242, 169, 0, 0.2);
    transform: rotate(45deg);
    bottom: 15%;
    right: 15%;
    animation: pulse 3s ease-in-out infinite;
}

.shape-3 {
    width: 100px;
    height: 100px;
    border: 2px solid rgba(255, 140, 0, 0.3);
    border-radius: 15px;
    top: 60%;
    left: 5%;
    animation: rotate 15s linear infinite reverse;
}

/* Animations */
@keyframes float1 {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes float2 {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(-5deg);
    }
}

@keyframes float3 {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-25px) rotate(3deg);
    }
}

@keyframes particleFloat {
    0% {
        transform: translateY(0px) translateX(0px);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.2;
    }
}

/* Responsive CTA */
@media (max-width: 768px) {
    .cta-title {
        font-size: 2rem;
    }

    .cta-subtitle {
        font-size: 1rem;
    }

    .btn-modern {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }

    .trust-item {
        padding: 1rem 0.5rem;
    }

    .trust-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .floating-element-1,
    .floating-element-2,
    .floating-element-3 {
        font-size: 1.5rem;
    }

    .shape-1 {
        width: 150px;
        height: 150px;
    }

    .shape-2 {
        width: 100px;
        height: 100px;
    }

    .shape-3 {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 576px) {
    .cta-final {
        min-height: 700px;
        padding: 3rem 0;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-subtitle {
        font-size: 0.95rem;
    }

    .btn-modern {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .trust-item {
        padding: 0.8rem 0.3rem;
    }

    .trust-text {
        font-size: 0.8rem;
    }
}

/* ---- PROCESS TIMELINE ---- */
.process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 3rem 0;
    flex-wrap: wrap;
    gap: 1rem;
}

.process-step {
    flex: 1;
    min-width: 150px;
    text-align: center;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 12px;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -0.8rem;
    top: 50%;
    width: 1.6rem;
    height: 2px;
    background-color: var(--primary-color);
    transform: translateY(-50%);
    display: none;
}

@media (min-width: 768px) {
    .process-step:not(:last-child)::after {
        display: block;
    }
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-left: auto;
    margin-right: auto;
}

.process-step h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.85rem;
}

/* ---- FOOTER ---- */
.footer {
    background-color: var(--text-light);
    color: var(--white);
    padding: 3rem 0 1rem;
    margin-top: 5rem;
}

.footer h5 {
    color: var(--white);
    font-size: 1.1rem;
}

.footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--primary-color);
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.1);
}

.footer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.5);
}

.social-links a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

/* ---- À PROPOS VIDEO STYLES ---- */
.about-video-wrapper {
    position: relative;
}

.video-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    background: #000;
}

.about-video {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.video-container:hover .about-video {
    transform: scale(1.02);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.video-container:hover .video-overlay {
    opacity: 0;
}

/* Responsive Video */
@media (max-width: 768px) {
    .play-button {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }

    .video-caption p {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .play-button {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }

    .video-caption p {
        font-size: 0.8rem;
    }
}

/* ---- ZONES CARDS - DESIGN 2026 ---- */
.zones-preview {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

/* Badge moderne */
.zone-badge {
    display: inline-block;
    animation: zone-float 3s ease-in-out infinite;
}

.zone-badge-content {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 8px 25px rgba(242, 169, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
}

/* Éléments flottants */
.zone-floating-element {
    position: absolute;
    font-size: 3rem;
    color: rgba(242, 169, 0, 0.1);
    animation: zone-float 6s ease-in-out infinite;
    z-index: 1;
}

.zone-float-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.zone-float-2 {
    top: 20%;
    right: 8%;
    animation-delay: 2s;
}

.zone-float-3 {
    bottom: 15%;
    left: 10%;
    animation-delay: 4s;
}

/* Particules */
.zone-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.zone-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: zone-particle-float 8s linear infinite;
}

.zone-particle-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.zone-particle-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.zone-particle-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.zone-particle-4 {
    top: 40%;
    right: 25%;
    animation-delay: 6s;
}

/* Cartes modernes */
.zone-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    border: 1px solid rgba(242, 169, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.zone-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(242, 169, 0, 0.2);
    border-color: var(--primary-color);
}

/* Icônes avancées */
.zone-icon-wrapper {
    position: relative;
    display: inline-block;
}

.zone-icon-bg {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.zone-card:hover .zone-icon-bg {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(242, 169, 0, 0.4);
}

.zone-icon-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: zone-pulse 2s ease-in-out infinite;
    z-index: 1;
}

/* Flags et titres */
.zone-flag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.flag-emoji {
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.zone-card h4 {
    color: var(--text-light);
    font-weight: 700;
    margin: 0;
    transition: color 0.3s ease;
}

.zone-card:hover h4 {
    color: var(--primary-color);
}

/* Features modernes */
.zone-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.zone-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(242, 169, 0, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.zone-feature-item:hover {
    background: rgba(242, 169, 0, 0.1);
    transform: translateX(5px);
}

/* Effet shine sur cartes */
.zone-card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.zone-card:hover .zone-card-shine {
    left: 100%;
}

/* Bouton CTA moderne */
.btn-zone-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 50px;
    padding: 18px 40px;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 10px 30px rgba(242, 169, 0, 0.3);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-zone-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(242, 169, 0, 0.4);
}

.btn-zone-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
}

.btn-zone-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-zone-cta:hover .btn-zone-shine {
    left: 100%;
}

.btn-zone-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.btn-zone-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: white;
    border-radius: 50%;
    opacity: 0;
    animation: btn-particle-float 3s ease-out infinite;
}

.btn-zone-particle:nth-child(1) {
    left: 20%;
    animation-delay: 0s;
}

.btn-zone-particle:nth-child(2) {
    left: 50%;
    animation-delay: 1s;
}

.btn-zone-particle:nth-child(3) {
    left: 80%;
    animation-delay: 2s;
}

.btn-zone-cta:hover .btn-zone-particle {
    opacity: 1;
}

/* Animations 2026 */
@keyframes zone-float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes zone-pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

@keyframes zone-particle-float {
    0% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.3;
    }

    90% {
        opacity: 0.3;
    }

    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes btn-particle-float {
    0% {
        transform: translateY(0px);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-30px);
        opacity: 0;
    }
}

/* Responsive Design 2026 */
@media (max-width: 768px) {
    .zone-floating-element {
        font-size: 2rem;
    }

    .zone-icon-bg {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .zone-icon-pulse {
        width: 60px;
        height: 60px;
    }

    .flag-emoji {
        font-size: 1.5rem;
    }

    .zone-feature-item {
        font-size: 0.8rem;
        padding: 6px 10px;
    }
}

@media (max-width: 576px) {
    .zone-floating-element {
        font-size: 1.5rem;
    }

    .zone-icon-bg {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .zone-icon-pulse {
        width: 50px;
        height: 50px;
    }

    .flag-emoji {
        font-size: 1.2rem;
    }

    .zone-feature-item {
        font-size: 0.75rem;
        padding: 5px 8px;
        gap: 6px;
    }

    .btn-zone-cta {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

/* ---- VALUE CARDS ---- */
.value-card {
    border-radius: 12px;
    background: white;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.value-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
}

/* ---- FORMS ---- */
.form-control,
.form-select {
    border-radius: 6px;
    border: 1px solid var(--border-color);
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 61, 122, 0.25);
    outline: none;
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.section-title {
    color: var(--primary-color);
    font-size: 1.2rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--accent-color);
}

/* ---- ACCORDION ---- */
.accordion-button {
    border-radius: 8px;
    border: 1px solid var(--border-color);
    padding: 1.25rem !important;
    color: var(--text-dark);
    background-color: white;
}

.accordion-button:not(.collapsed) {
    background-color: var(--light-gray);
    color: var(--primary-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 61, 122, 0.25);
    border-color: var(--primary-color);
}

.accordion-body {
    padding: 1.5rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ---- TABLES ---- */
.table {
    border-collapse: collapse;
    margin: 0;
}

.table thead {
    background-color: var(--primary-color);
    color: white;
}

.table-hover tbody tr:hover {
    background-color: var(--light-gray);
    border-left: 4px solid var(--primary-color);
}

.table td {
    vertical-align: middle;
    padding: 1rem;
}

/* ---- ABOUT SECTION ---- */
.about-image-box {
    font-size: 12rem;
    color: var(--accent-color);
    opacity: 0.1;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

/* ---- NETWORK CARDS ---- */
.network-card {
    transition: all 0.3s ease;
    border-color: var(--border-color);
}

.network-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 16px rgba(0, 61, 122, 0.1);
}

.network-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* ---- ZONE CARDS ---- */
.zone-card {
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.zone-card:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.zone-icon {
    font-size: 4rem;
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 1rem;
}

.zone-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* ---- ADVANTAGE CARDS ---- */
.advantage-card {
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    padding-left: 80px !important;
}

.advantage-card:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.advantage-number {
    position: absolute;
    left: 20px;
    top: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.advantage-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

/* ---- CONTACT FORM ---- */
.contact-form {
    background: white;
}

.contact-info {
    background: white;
}

.contact-item {
    padding-bottom: 1.5rem;
}

.contact-item h5 {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.contact-item p {
    margin: 0.3rem 0;
}

.agency-card {
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.agency-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.agency-flag {
    font-size: 3rem;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .process-timeline {
        flex-direction: column;
    }

    .process-step:not(:last-child)::after {
        display: none;
    }

    .process-step:not(:last-child) {
        margin-bottom: 1rem;
    }

    .hero-icon-box,
    .about-image-box,
    .why-us-image {
        min-height: 250px;
        font-size: 8rem;
    }

    .footer {
        padding: 2rem 0 1rem;
    }

    .footer h5 {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {

    .hero-section h1,
    .page-header h1 {
        font-size: 1.5rem;
    }

    .hero-section .lead,
    .page-header .lead {
        font-size: 1rem;
    }

    .d-grid {
        gap: 0.5rem;
    }

    .btn-lg {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* ---- ANIMATIONS ---- */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.service-card,
.testimonial-card,
.value-card {
    animation: slideIn 0.6s ease-out;
}

/* ---- UTILITIES ---- */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-light {
    background-color: var(--light-gray) !important;
}

.rounded {
    border-radius: 8px;
}

.shadow-sm {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Hero Video Styles */
.hero-video-box {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px;
}

.video-container:hover .video-overlay {
    opacity: 1;
}

.video-play-icon {
    font-size: 4rem;
    color: white;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-play-icon:hover {
    transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .video-container {
        padding-bottom: 65%;
        /* Slightly adjusted for mobile */
    }

    .video-play-icon {
        font-size: 3rem;
    }
}