/* ================================
   Variables CSS
   ================================ */
:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
    --text-color: #334155;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --warning-color: #f59e0b;
}

/* ================================
   Reset & Base Styles
   ================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #ffffff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

/* ================================
   Page Header Banner
   ================================ */
.page-header-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
    margin-top: -20px;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.8), rgba(37, 99, 235, 0.6));
    z-index: 1;
}

.banner-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 25px;
    border-radius: 30px;
    margin-bottom: 25px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

.breadcrumb i.fa-chevron-right {
    font-size: 0.7rem;
    opacity: 0.7;
}

.breadcrumb span {
    opacity: 0.9;
}

.banner-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.6s ease-out;
}

.banner-description {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

.banner-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}

.banner-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

/* ================================
   Container & Layout
   ================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ================================
   Header Styles - DÉSACTIVÉ
   Les styles du header sont maintenant dans _Header.html (inline)
   ================================ */
/*
.header {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(37, 99, 235, 0.1);
    backdrop-filter: blur(10px);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo a:hover {
    transform: translateY(-2px);
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

.logo a:hover .logo-icon {
    transform: rotate(5deg) scale(1.05);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.logo-highlight {
    color: var(--dark-color);
    margin-left: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    font-weight: 500;
    color: var(--dark-color);
    transition: all 0.3s ease;
    border-radius: 10px;
    position: relative;
}

.nav-link i {
    font-size: 1rem;
    transition: all 0.3s ease;
}

.nav-link span {
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
    background: rgba(37, 99, 235, 0.05);
}

.nav-link:hover i {
    transform: scale(1.15);
}

.nav-link:hover::before {
    transform: translateX(-50%) scaleX(1);
}

.nav-link.active {
    color: white;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.nav-link.active i {
    color: white;
}

.nav-link.active::before {
    display: none;
}

.nav-link-contact {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
}

.nav-link-contact i {
    color: var(--primary-color);
}

.nav-link-contact:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
    border-color: transparent;
}

.nav-link-contact:hover i {
    color: white;
}

.nav-link-contact.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.nav-link-contact.active i {
    color: white;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-toggle:hover {
    background: rgba(37, 99, 235, 0.1);
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}
*/

/* ================================
   Hero Section - Voir hero.css
   ================================ */
/* Les styles du hero slider sont maintenant dans static/css/hero.css */


.feature-item i {
    color: #10b981;
    font-size: 1.1rem;
}

.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-large {
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.stat-box {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.3s ease, background 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-box h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 5px;
}

.stat-box p {
    font-size: 0.875rem;
    opacity: 0.9;
}

.hero-visual {
    position: relative;
    animation: fadeInRight 1s ease-out;
}

.visual-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    color: var(--dark-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.card-header i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.chart-placeholder {
    background: linear-gradient(to bottom, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 12px;
    padding: 30px 20px;
    height: 200px;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    gap: 15px;
    width: 100%;
    height: 100%;
}

.bar {
    flex: 1;
    background: linear-gradient(to top, var(--primary-color), var(--accent-color));
    border-radius: 8px 8px 0 0;
    animation: growBar 1.5s ease-out;
    box-shadow: 0 -4px 10px rgba(37, 99, 235, 0.3);
}

@keyframes growBar {
    from {
        height: 0;
    }
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.875rem;
}

.floating-card i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.floating-card.card-1 {
    top: -20px;
    left: -40px;
    animation: float 3s ease-in-out infinite;
}

.floating-card.card-2 {
    top: 50%;
    right: -50px;
    animation: float 4s ease-in-out infinite 0.5s;
}

.floating-card.card-3 {
    bottom: -30px;
    left: 20%;
    animation: float 3.5s ease-in-out infinite 1s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.hero-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-shape svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ================================
   Animations Générales
   ================================ */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: #ffffff;
    color: var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: var(--primary-color);
}

/* ================================
   Services Section
   ================================ */
.services {
    background-color: var(--light-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    background-color: #ffffff;
    padding: 35px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(37, 99, 235, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.15);
    border-color: var(--primary-color);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #ffffff;
    position: relative;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 18px;
    z-index: -1;
    opacity: 0.3;
    filter: blur(6px);
}

.service-card h3 {
    font-size: 1.4rem;
    color: var(--dark-color);
    margin-bottom: 18px;
    font-weight: 600;
    line-height: 1.3;
}

.service-card p {
    color: var(--text-color);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

/* ================================
   About Section
   ================================ */
.about-intro {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    background: var(--light-color);
    padding: 25px 35px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.about-card {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid var(--border-color);
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.12);
    border-color: var(--primary-color);
}

.card-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.6rem;
}

.about-card h3 {
    font-size: 1.4rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.about-card p {
    color: var(--text-color);
    line-height: 1.7;
    font-size: 0.95rem;
}

.about-details {
    max-width: 1000px;
    margin: 40px auto;
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.detail-section {
    background: var(--light-color);
    padding: 35px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.detail-section h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.detail-section h3 i {
    color: var(--primary-color);
}

.services-list {
    display: grid;
    gap: 20px;
}

.service-detail {
    background: #ffffff;
    padding: 20px 25px;
    border-radius: 8px;
    border-left: 3px solid var(--accent-color);
}

.service-detail h4 {
    color: var(--dark-color);
    font-size: 1.15rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-detail h4 i {
    color: var(--success-color);
    font-size: 1rem;
}

.service-detail p {
    color: var(--text-color);
    line-height: 1.7;
    margin: 0;
}

.about-actions {
    text-align: center;
    margin-top: 35px;
}

.btn-learn-more {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: #ffffff;
    border: none;
    padding: 14px 35px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-learn-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.btn-learn-more i {
    transition: transform 0.3s ease;
}

.btn-learn-more:hover i {
    transform: translateY(3px);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: start;
    margin-bottom: 20px;
}

.feature-icon {
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.feature-text h4 {
    color: var(--dark-color);
    margin-bottom: 5px;
}

.feature-text p {
    margin: 0;
    color: var(--text-color);
}

/* ================================
   Stats Section
   ================================ */
.stats {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,144C960,149,1056,139,1152,128C1248,117,1344,107,1392,101.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-item {
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fbbf24;
}

.stat-item p {
    font-size: 1.125rem;
    opacity: 0.95;
}

/* ================================
   Why Choose Us Section
   ================================ */
.why-choose-us {
    background: linear-gradient(to bottom, #ffffff 0%, var(--light-color) 100%);
    position: relative;
    overflow: hidden;
}

.why-header {
    text-align: center;
    margin-bottom: 50px;
}

.why-title-box {
    display: inline-block;
    position: relative;
}

.title-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: #ffffff;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: 0 auto;
    border-radius: 2px;
}

.why-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.why-main-card {
    background: #ffffff;
    padding: 50px 45px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.card-decorative-element {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0.05;
    border-radius: 50%;
}

.why-icon-large {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
    position: relative;
    z-index: 1;
}

.why-main-card h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.why-main-card > p {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(59, 130, 246, 0.08));
    border-left: 4px solid var(--primary-color);
    padding: 25px 30px;
    border-radius: 12px;
    display: flex;
    gap: 20px;
    align-items: start;
}

.highlight-box i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 5px;
    flex-shrink: 0;
}

.highlight-box p {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 1.05rem;
    margin: 0;
    font-weight: 500;
}

.objectives-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 50px 45px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.objectives-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.objectives-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.objectives-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.header-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fbbf24;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.objectives-header h3 {
    font-size: 2rem;
    color: #ffffff;
    margin: 0;
    font-weight: 700;
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    position: relative;
    z-index: 1;
}

.objective-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 35px 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.objective-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.objective-card:hover::before {
    transform: scaleX(1);
}

.objective-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.objective-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
}

.objective-icon {
    width: 60px;
    height: 60px;
    background: rgba(251, 191, 36, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fbbf24;
    margin-bottom: 20px;
}

.objective-card h4 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
}

.objective-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

/* ================================
   CTA Section
   ================================ */
.cta-section {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 50%, #3b82f6 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

.cta-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 40px;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 50px 60px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.cta-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }
}

.cta-text {
    color: #ffffff;
}

.cta-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.cta-text p {
    font-size: 1.1rem;
    opacity: 0.95;
    line-height: 1.6;
    margin: 0;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-cta.primary {
    background: #ffffff;
    color: var(--primary-color);
}

.btn-cta.primary:hover {
    background: #f8fafc;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-cta.secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.btn-cta.secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-cta i {
    font-size: 1.2rem;
}

/* ================================
   Contact Section
   ================================ */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 1.75rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: start;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-details h4 {
    color: var(--dark-color);
    margin-bottom: 5px;
}

.contact-details p {
    color: var(--text-color);
}

.contact-form {
    background-color: var(--light-color);
    padding: 40px;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background-color: var(--primary-color);
    color: #ffffff;
    width: 100%;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
}

/* ================================
   Footer Styles
   ================================ */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: #ffffff;
    padding: 0 0 20px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.footer-wave {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    color: var(--light-color);
    margin-bottom: 40px;
}

.footer-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-section {
    position: relative;
}

.footer-about {
    max-width: 350px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-logo i {
    font-size: 2rem;
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
    padding: 12px;
    border-radius: 12px;
    border: 2px solid rgba(59, 130, 246, 0.3);
}

.footer-section h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section h3 i {
    color: #3b82f6;
    font-size: 1.1rem;
}

.footer-section p {
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.85);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    opacity: 0.85;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.footer-links a i.fa-chevron-right {
    font-size: 0.75rem;
    color: #3b82f6;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: #3b82f6;
    transform: translateX(5px);
}

.footer-links a:hover i.fa-chevron-right {
    transform: translateX(3px);
}

.footer-contact li {
    display: flex;
    align-items: start;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-contact li i {
    color: #3b82f6;
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
    width: 20px;
}

.footer-contact li span,
.footer-contact li a {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.footer-contact li a:hover {
    color: #3b82f6;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(59, 130, 246, 0.1);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #3b82f6;
    font-size: 1.1rem;
}

.social-link:hover {
    background: #3b82f6;
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
    border-color: #3b82f6;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0;
    opacity: 0.85;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
}

.footer-bottom p i {
    color: #3b82f6;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: #3b82f6;
}

.footer-bottom-links .separator {
    color: rgba(255, 255, 255, 0.3);
}

/* ================================
   Mission Vision Values Section
   ================================ */
.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mvv-card {
    background: #ffffff;
    padding: 40px 35px;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    border-top: 4px solid var(--primary-color);
}

.mvv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.15);
}

.mvv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.2rem;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.mvv-card h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.mvv-card p {
    color: var(--text-color);
    line-height: 1.8;
    margin: 0;
}

.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.values-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-color);
    line-height: 1.7;
}

.values-list li i {
    color: var(--success-color);
    font-size: 1rem;
    flex-shrink: 0;
}

/* ================================
   Advantages Grid (Services Page)
   ================================ */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.advantage-card {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.12);
    border-color: var(--primary-color);
}

.advantage-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(59, 130, 246, 0.15));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.advantage-card h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.advantage-card p {
    color: var(--text-color);
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

/* ================================
   Alert Messages
   ================================ */
.alert-message {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 25px;
    border-radius: 10px;
    font-size: 1rem;
    animation: slideInDown 0.4s ease-out;
}

.alert-message.success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.alert-message.error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.alert-message i {
    font-size: 1.5rem;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================================
   Responsive Design
   ================================ */
@media (max-width: 1024px) and (min-width: 769px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .service-card h3 {
        font-size: 1.25rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }
}

/* ================================
   Responsive Mobile - HEADER DÉSACTIVÉ
   Les styles responsive sont maintenant dans _Header.html
   ================================ */
@media (max-width: 768px) {
    /*
    .nav-menu {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        border-radius: 0 0 16px 16px;
        gap: 5px;
    }

    .nav-menu.active {
        display: flex;
        animation: slideDown 0.3s ease-out;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-link {
        padding: 12px 20px;
        width: 100%;
        justify-content: flex-start;
    }

    .nav-toggle {
        display: flex;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    */

    .slider-container {
        height: 550px;
        min-height: 500px;
    }

    .hero-text {
        max-width: 90%;
    }

    .hero-text h1 {
        font-size: 2rem;
        margin-bottom: 15px;
        line-height: 1.2;
    }

    .hero-text p {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 12px 25px;
    }

    .hero-content,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .service-card {
        padding: 25px 15px;
    }

    .service-icon {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

    .service-card h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .service-card p {
        font-size: 0.85rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .intro-text {
        font-size: 1rem;
        padding: 20px 25px;
    }

    .detail-section {
        padding: 25px 20px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-item h3 {
        font-size: 2.5rem;
    }

    .stat-icon {
        font-size: 2rem;
    }

    .cta-content {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 35px 30px;
        text-align: center;
    }

    .cta-icon {
        margin: 0 auto;
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }

    .cta-text h2 {
        font-size: 1.8rem;
    }

    .cta-text p {
        font-size: 1rem;
    }

    .cta-actions {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .btn-cta {
        padding: 14px 28px;
        font-size: 0.95rem;
    }

    .why-main-card {
        padding: 35px 30px;
    }

    .why-icon-large {
        width: 75px;
        height: 75px;
        font-size: 2rem;
    }

    .why-main-card h3 {
        font-size: 1.6rem;
    }

    .why-main-card > p {
        font-size: 1rem;
    }

    .highlight-box {
        padding: 20px 25px;
        flex-direction: column;
        gap: 15px;
    }

    .highlight-box i {
        font-size: 1.8rem;
    }

    .highlight-box p {
        font-size: 1rem;
    }

    .objectives-section {
        padding: 40px 30px;
    }

    .objectives-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .objectives-header h3 {
        font-size: 1.6rem;
    }

    .objectives-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .objective-card {
        padding: 30px 25px;
    }

    .slider-btn {
        padding: 10px 14px;
        font-size: 18px;
    }

    .slider-btn.prev {
        left: 10px;
    }

    .slider-btn.next {
        right: 10px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-about {
        grid-column: 1 / -1;
        max-width: 100%;
    }

    .footer-wave svg {
        height: 80px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .footer-bottom-links {
        justify-content: center;
    }

    .mvv-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .references-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .banner-title {
        font-size: 2.2rem;
    }

    .banner-description {
        font-size: 1.1rem;
    }

    .banner-wave svg {
        height: 60px;
    }
}

@media (max-width: 480px) {
    .slider-container {
        height: 500px;
        min-height: 450px;
    }

    .section {
        padding: 60px 0;
    }

    .hero-text {
        max-width: 95%;
    }

    .hero-text h1 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .hero-text p {
        font-size: 0.9375rem;
        margin-bottom: 18px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .slider-btn {
        padding: 8px 12px;
        font-size: 16px;
    }

    .slider-indicators {
        bottom: 10px;
    }

    .indicator {
        width: 8px;
        height: 8px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .service-card {
        padding: 25px 20px;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .intro-text {
        font-size: 0.95rem;
        padding: 18px 20px;
    }

    .about-card {
        padding: 25px 20px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-item {
        padding: 20px;
    }

    .stat-item h3 {
        font-size: 2.2rem;
    }

    .stat-icon {
        font-size: 1.8rem;
    }

    .detail-section {
        padding: 20px 15px;
    }

    .detail-section h3 {
        font-size: 1.2rem;
    }

    .service-detail {
        padding: 15px 20px;
    }

    .service-detail h4 {
        font-size: 1rem;
    }

    .cta-content {
        padding: 30px 20px;
        gap: 20px;
    }

    .cta-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .cta-text h2 {
        font-size: 1.5rem;
    }

    .cta-text p {
        font-size: 0.9rem;
    }

    .cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-cta {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 0.9rem;
    }

    .why-main-card {
        padding: 30px 20px;
    }

    .why-icon-large {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .why-main-card h3 {
        font-size: 1.4rem;
    }

    .why-main-card > p {
        font-size: 0.95rem;
    }

    .highlight-box {
        padding: 18px 20px;
    }

    .highlight-box i {
        font-size: 1.5rem;
    }

    .highlight-box p {
        font-size: 0.95rem;
    }

    .objectives-section {
        padding: 30px 20px;
    }

    .header-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    .objectives-header h3 {
        font-size: 1.4rem;
    }

    .objectives-grid {
        gap: 15px;
    }

    .objective-card {
        padding: 25px 20px;
    }

    .objective-number {
        font-size: 2.5rem;
        top: 15px;
        right: 15px;
    }

    .objective-icon {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }

    .objective-card h4 {
        font-size: 1.15rem;
    }

    .objective-card p {
        font-size: 0.9rem;
    }

    .title-label {
        font-size: 0.75rem;
        padding: 5px 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-about {
        max-width: 100%;
    }

    .footer-wave svg {
        height: 60px;
    }

    .footer-logo {
        font-size: 1.3rem;
    }

    .footer-logo i {
        font-size: 1.5rem;
        padding: 10px;
    }

    .footer-section h3 {
        font-size: 1.1rem;
    }

    .social-links {
        justify-content: center;
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom p {
        font-size: 0.875rem;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }

    .footer-bottom-links .separator {
        display: none;
    }

    .mvv-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mvv-card {
        padding: 30px 25px;
    }

    .mvv-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .mvv-card h3 {
        font-size: 1.3rem;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .advantage-card {
        padding: 30px 25px;
    }

    .advantage-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }

    .banner-title {
        font-size: 1.8rem;
    }

    .banner-description {
        font-size: 1rem;
    }

    .breadcrumb {
        font-size: 0.85rem;
        padding: 8px 20px;
    }

    .banner-wave svg {
        height: 50px;
    }

    .page-header-banner {
        padding: 80px 0 60px;
    }

    .alert-message {
        padding: 15px 20px;
        font-size: 0.9rem;
    }

    .alert-message i {
        font-size: 1.3rem;
    }
}

/* ================================
   References Page Styles
   ================================ */
.references-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.reference-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.reference-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.reference-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.reference-header i {
    font-size: 2rem;
    color: var(--primary-color);
}

.reference-header h3 {
    font-size: 1.25rem;
    color: var(--dark-color);
    margin: 0;
}

.reference-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.reference-client,
.reference-year {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    color: var(--text-color);
}

.reference-client i,
.reference-year i {
    color: var(--accent-color);
}

.reference-description {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 20px;
}

.reference-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    background: var(--light-color);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 40px;
    text-align: center;
}

.client-logo {
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.client-logo p {
    margin-top: 15px;
    font-weight: 600;
    color: var(--dark-color);
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #ffffff;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.125rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-light {
    background: #ffffff;
    color: var(--primary-color);
}

.btn-light:hover {
    background: var(--light-color);
    transform: translateY(-2px);
}

/* ========== REFERENCES TIMELINE SECTION ========== */
.references-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.reference-item {
    position: relative;
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.reference-item:nth-child(1) { animation-delay: 0.1s; }
.reference-item:nth-child(2) { animation-delay: 0.2s; }
.reference-item:nth-child(3) { animation-delay: 0.3s; }
.reference-item:nth-child(4) { animation-delay: 0.4s; }
.reference-item:nth-child(5) { animation-delay: 0.5s; }
.reference-item:nth-child(6) { animation-delay: 0.6s; }
.reference-item:nth-child(7) { animation-delay: 0.7s; }
.reference-item:nth-child(8) { animation-delay: 0.8s; }
.reference-item:nth-child(9) { animation-delay: 0.9s; }
.reference-item:nth-child(10) { animation-delay: 1s; }

