/* =====================================================
   BGFI Services - Design System
   Basé sur les couleurs du Groupe BGFIBank
===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Open+Sans:wght@400;500;600;700&display=swap');

:root {
    /* Couleurs principales BGFI */
    --bgfi-blue-dark: #003366;
    --bgfi-blue: #0056A4;
    --bgfi-blue-light: #E8F4FC;
    --bgfi-green: #00A859;
    --bgfi-green-dark: #008A4A;
    --bgfi-gold: #C5A572;
    --bgfi-gold-dark: #A68B5B;

    /* Neutres */
    --bgfi-white: #FFFFFF;
    --bgfi-gray-light: #F5F7FA;
    --bgfi-gray-100: #EBEFF3;
    --bgfi-gray-200: #D1D9E0;
    --bgfi-gray: #6C757D;
    --bgfi-gray-dark: #333333;
    --bgfi-black: #1A1A1A;

    /* Sémantiques */
    --success: #00A859;
    --warning: #F5A623;
    --danger: #DC3545;
    --info: #0056A4;

    /* Typographie */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Open Sans', sans-serif;

    /* Espacements */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 80px;

    /* Rayons */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-full: 30px;

    /* Ombres */
    --shadow-sm: 0 2px 4px rgba(0,51,102,0.06);
    --shadow-md: 0 4px 15px rgba(0,51,102,0.08);
    --shadow-lg: 0 8px 25px rgba(0,51,102,0.12);
    --shadow-xl: 0 12px 35px rgba(0,51,102,0.15);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Legacy compatibility */
    --primary: var(--bgfi-blue);
    --secondary: var(--bgfi-green);
    --bgfi-primary: var(--bgfi-blue);
}

/* ===== Base Reset ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    font-size: 15px;
    line-height: 1.6;
    color: var(--bgfi-gray-dark);
    background: var(--bgfi-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.3;
    color: var(--bgfi-gray-dark);
    margin-bottom: var(--space-md);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

a {
    color: var(--bgfi-blue);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--bgfi-blue-dark);
}

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

/* ===== Top Bar - BGFI Style ===== */
.top-bar {
    background: var(--bgfi-blue-dark);
    padding: 10px 0;
    font-size: 13px;
    color: white;
    display: none;
}

@media (min-width: 992px) {
    .top-bar {
        display: block;
    }
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-slogan {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.slogan-text {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px;
}

.slogan-text::before {
    content: '"';
    color: var(--bgfi-gold);
}

.slogan-text::after {
    content: '"';
    color: var(--bgfi-gold);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.top-bar-contact {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.top-bar-contact a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 12px;
    transition: color var(--transition-fast);
}

.top-bar-contact a:hover {
    color: white;
}

.top-bar-contact a i {
    color: var(--bgfi-green);
    font-size: 11px;
}

.top-bar-social {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 12px;
    transition: all var(--transition-fast);
}

.top-bar-social a:hover {
    background: var(--bgfi-green);
    transform: translateY(-2px);
}

.top-bar-lang .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    color: white;
    font-size: 12px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.1);
    transition: background var(--transition-fast);
    text-decoration: none;
}

.top-bar-lang .dropdown-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
}

.top-bar-lang .dropdown-toggle::after {
    font-size: 10px;
}

.top-bar-lang .dropdown-menu {
    min-width: 140px;
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: var(--space-sm);
    margin-top: 8px;
}

.top-bar-lang .dropdown-item {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    font-size: 13px;
    border-radius: var(--radius-sm);
}

.top-bar-lang .dropdown-item:hover {
    background: var(--bgfi-blue-light);
}

.top-bar-lang .dropdown-item.active {
    background: var(--bgfi-blue);
    color: white;
}

/* Mobile Top Bar */
.mobile-top-bar {
    background: var(--bgfi-blue-dark);
    padding: 8px 0;
    font-size: 12px;
}

.mobile-contact {
    color: white;
    font-weight: 500;
}

.mobile-contact i {
    color: var(--bgfi-green);
    margin-right: 6px;
}

.mobile-lang .dropdown-toggle {
    color: white;
    font-size: 12px;
    text-decoration: none;
}

.mobile-lang .dropdown-toggle::after {
    margin-left: 4px;
}

.mobile-lang .dropdown-menu {
    min-width: 120px;
    font-size: 13px;
}

/* ===== Navigation Principale - BGFI Style ===== */
.navbar,
.navbar-bgfi {
    background: var(--bgfi-white);
    padding: 12px 0;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all var(--transition-normal);
}

.navbar.scrolled,
.navbar-bgfi.scrolled {
    padding: 8px 0;
    box-shadow: var(--shadow-lg);
}

.navbar-brand img,
.navbar-brand .logo-img {
    height: 50px;
    max-height: 50px;
    width: auto;
    transition: all var(--transition-normal);
}

.navbar.scrolled .navbar-brand img,
.navbar-bgfi.scrolled .navbar-brand img {
    height: 42px;
    max-height: 42px;
}

/* Logo text fallback */
.logo-text,
.footer-logo-text {
    display: flex;
    align-items: center;
    gap: 4px;
}

.logo-text .logo-bgfi,
.footer-logo-text .logo-bgfi {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 24px;
    color: var(--bgfi-blue-dark);
}

.logo-text .logo-services,
.footer-logo-text .logo-services {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 24px;
    color: var(--bgfi-green);
}

.footer-logo-text .logo-bgfi,
.footer-logo-text .logo-services {
    color: white;
}

.navbar .nav-link {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 14px;
    color: var(--bgfi-gray-dark);
    padding: 10px 16px;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    position: relative;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--bgfi-blue);
}

.navbar .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--bgfi-green);
    border-radius: 2px;
}

.navbar .dropdown-menu {
    border: none;
    box-shadow: var(--shadow-xl);
    border-radius: var(--radius-md);
    padding: var(--space-sm);
    margin-top: 10px;
    border-top: 3px solid var(--bgfi-green);
    min-width: 240px;
}

.dropdown-menu-expertises {
    min-width: 280px;
}

.navbar .dropdown-item {
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: var(--bgfi-gray-dark);
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
}

.navbar .dropdown-item i {
    width: 20px;
    color: var(--bgfi-blue);
}

.navbar .dropdown-item:hover {
    background: var(--bgfi-blue-light);
    color: var(--bgfi-blue);
    padding-left: 20px;
}

.navbar .dropdown-item-all {
    font-weight: 600;
    color: var(--bgfi-blue);
    border-bottom: 1px solid var(--bgfi-gray-100);
    margin-bottom: var(--space-sm);
    padding-bottom: 12px;
}

.navbar .dropdown-item-all:hover {
    background: var(--bgfi-blue);
    color: white;
}

/* Navbar CTA Button */
.navbar-cta {
    margin-left: var(--space-md);
}

.btn-navbar-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bgfi-green);
    color: white;
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition-fast);
    border: 2px solid var(--bgfi-green);
}

.btn-navbar-cta:hover {
    background: var(--bgfi-green-dark);
    border-color: var(--bgfi-green-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Navbar Toggler */
.navbar-toggler {
    border: none;
    padding: 8px;
    border-radius: var(--radius-sm);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    width: 24px;
    height: 24px;
}

/* ===== Boutons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.btn-primary,
.btn-bgfi-primary {
    background: var(--bgfi-blue);
    border-color: var(--bgfi-blue);
    color: white;
}

.btn-primary:hover,
.btn-bgfi-primary:hover {
    background: var(--bgfi-blue-dark);
    border-color: var(--bgfi-blue-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary,
.btn-bgfi-secondary {
    background: var(--bgfi-green);
    border-color: var(--bgfi-green);
    color: white;
}

.btn-secondary:hover,
.btn-bgfi-secondary:hover {
    background: var(--bgfi-green-dark);
    border-color: var(--bgfi-green-dark);
    color: white;
}

.btn-gold {
    background: var(--bgfi-gold);
    border-color: var(--bgfi-gold);
    color: white;
}

.btn-gold:hover {
    background: var(--bgfi-gold-dark);
    border-color: var(--bgfi-gold-dark);
    color: white;
}

.btn-outline-primary {
    background: transparent;
    border-color: var(--bgfi-blue);
    color: var(--bgfi-blue);
}

.btn-outline-primary:hover {
    background: var(--bgfi-blue);
    color: white;
}

.btn-outline-light {
    background: transparent;
    border-color: rgba(255,255,255,0.5);
    color: white;
}

.btn-outline-light:hover {
    background: white;
    border-color: white;
    color: var(--bgfi-blue-dark);
}

.btn-white {
    background: white;
    border-color: white;
    color: var(--bgfi-blue-dark);
}

.btn-white:hover {
    background: var(--bgfi-gray-light);
    border-color: var(--bgfi-gray-light);
    color: var(--bgfi-blue-dark);
}

.btn-light {
    background: var(--bgfi-gray-light);
    border-color: var(--bgfi-gray-light);
    color: var(--bgfi-gray-dark);
}

.btn-lg {
    padding: 15px 35px;
    font-size: 14px;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 12px;
}

/* ===== Page Header / Hero Intérieur ===== */
.page-header {
    background: linear-gradient(135deg, var(--bgfi-blue-dark) 0%, var(--bgfi-blue) 100%);
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 1;
}

.page-header-content {
    position: relative;
    z-index: 1;
    color: white;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: var(--space-md);
    display: inline-block;
    border-bottom: 3px solid var(--bgfi-green);
    padding-bottom: var(--space-sm);
}

.page-header p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-lg);
    max-width: 700px;
}

.page-header .breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
}

.page-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
}

.page-header .breadcrumb-item a:hover {
    color: white;
}

.page-header .breadcrumb-item.active {
    color: var(--bgfi-green);
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* ===== Sections ===== */
.section {
    padding: var(--space-4xl) 0;
}

.section.bg-light {
    background: var(--bgfi-gray-light);
}

.section.bg-blue-light {
    background: var(--bgfi-blue-light);
}

.section-header {
    margin-bottom: var(--space-3xl);
}

.section-subtitle {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--bgfi-blue);
    margin-bottom: var(--space-md);
}

.section-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--bgfi-gray-dark);
    margin-bottom: var(--space-lg);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--bgfi-green);
}

.section-header.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-description {
    font-size: 16px;
    color: var(--bgfi-gray);
    max-width: 600px;
}

.section-header.text-center .section-description {
    margin: 0 auto;
}

/* ===== Actualités Cards ===== */
.actu-card,
.actualite-card {
    background: var(--bgfi-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.actu-card:hover,
.actualite-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.actu-card-img,
.actualite-card .card-img-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.actu-card-img img,
.actualite-card .card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.actu-card:hover .actu-card-img img,
.actualite-card:hover .card-img-top {
    transform: scale(1.08);
}

.actualite-card .badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    background: var(--bgfi-blue);
    color: white;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-full);
    z-index: 2;
}

.actu-card-body,
.actualite-card .card-body {
    padding: var(--space-lg);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.actu-card-title,
.actualite-card .card-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--bgfi-gray-dark);
    margin-bottom: var(--space-sm);
    line-height: 1.4;
}

.actu-card-title a,
.actualite-card .card-title a {
    color: var(--bgfi-gray-dark);
    text-decoration: none;
}

.actu-card-title a:hover,
.actualite-card .card-title a:hover {
    color: var(--bgfi-blue);
}

.actualite-card .card-text {
    color: var(--bgfi-gray);
    font-size: 14px;
    flex: 1;
    margin-bottom: var(--space-md);
}

/* ===== Expertise Cards ===== */
.expertise-card {
    position: relative;
    height: 300px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bgfi-gray-light);
}

.expertise-card-img,
.expertise-card > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.expertise-card:hover .expertise-card-img,
.expertise-card:hover > img {
    transform: scale(1.1);
}

.expertise-card-overlay,
.expertise-card .expertise-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,51,102,0.9));
    padding: var(--space-xl) var(--space-lg) var(--space-lg);
    color: white;
}

.expertise-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: var(--bgfi-green);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-bottom: var(--space-md);
}

.expertise-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    margin-bottom: var(--space-sm);
}

.expertise-description {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    margin-bottom: var(--space-md);
}

.expertise-services {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-md);
}

.expertise-services li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 4px 0;
    font-size: 13px;
    color: rgba(255,255,255,0.9);
}

.expertise-services li i {
    color: var(--bgfi-green);
    font-size: 10px;
}

.expertise-card-btn {
    display: inline-flex;
    padding: 8px 20px;
    background: var(--bgfi-green);
    color: white;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition-fast);
}

.expertise-card-btn:hover {
    background: var(--bgfi-gold);
    color: white;
}

/* ===== Stats Section ===== */
.stats-section {
    padding: var(--space-3xl) 0;
    background: var(--bgfi-gray-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--space-lg);
    text-align: center;
}

.stat-item {
    text-align: center;
    padding: var(--space-md);
}

.stat-item .number,
.stat-number {
    font-family: var(--font-primary);
    font-size: 42px;
    font-weight: 300;
    color: var(--bgfi-blue-dark);
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.stat-item .label,
.stat-label {
    font-size: 13px;
    color: var(--bgfi-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Stats section avec fond coloré */
.stats-section.colored {
    background: linear-gradient(135deg, var(--bgfi-blue-dark) 0%, var(--bgfi-blue) 100%);
}

.stats-section.colored .stat-number,
.stats-section.colored .stat-item .number {
    color: white;
}

.stats-section.colored .stat-label,
.stats-section.colored .stat-item .label {
    color: rgba(255,255,255,0.8);
}

/* ===== Advantage Cards ===== */
.advantage-card {
    background: var(--bgfi-white);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    height: 100%;
    border-left: 3px solid transparent;
}

.advantage-card:hover {
    box-shadow: var(--shadow-lg);
    border-left-color: var(--bgfi-green);
    transform: translateY(-3px);
}

.advantage-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--bgfi-blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    color: var(--bgfi-blue);
    font-size: 22px;
}

.advantage-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--bgfi-gray-dark);
}

.advantage-card p {
    color: var(--bgfi-gray);
    font-size: 14px;
    margin-bottom: 0;
    line-height: 1.6;
}

/* ===== MVV Cards (Mission, Vision, Valeurs) ===== */
.mvv-card {
    background: var(--bgfi-white);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    box-shadow: var(--shadow-sm);
    height: 100%;
    text-align: center;
    transition: all var(--transition-normal);
    border-top: 3px solid var(--bgfi-green);
}

.mvv-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.mvv-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bgfi-blue-dark) 0%, var(--bgfi-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    color: white;
    font-size: 28px;
}

.mvv-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--bgfi-gray-dark);
}

.mvv-card p {
    color: var(--bgfi-gray);
    line-height: 1.7;
}

.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.values-list li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 6px 0;
    color: var(--bgfi-gray-dark);
}

.values-list li i {
    color: var(--bgfi-green);
}

/* ===== Job Cards ===== */
.job-card {
    background: var(--bgfi-white);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    transition: all var(--transition-normal);
    border-left: 3px solid transparent;
}

.job-card:hover {
    box-shadow: var(--shadow-md);
    border-left-color: var(--bgfi-green);
}

.job-content {
    flex: 1;
}

.job-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--space-md);
    margin-bottom: var(--space-sm);
}

.job-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.job-title a {
    color: var(--bgfi-gray-dark);
}

.job-title a:hover {
    color: var(--bgfi-blue);
}

.job-type {
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
    font-size: 13px;
    color: var(--bgfi-gray);
    margin-bottom: var(--space-sm);
}

.job-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.job-meta i {
    color: var(--bgfi-blue);
}

.job-description {
    color: var(--bgfi-gray);
    font-size: 14px;
    margin-bottom: var(--space-sm);
    line-height: 1.6;
}

.job-deadline {
    font-size: 13px;
    color: var(--danger);
    font-weight: 500;
}

.job-action {
    flex-shrink: 0;
}

/* ===== CTA Section ===== */
.cta-section {
    background: linear-gradient(135deg, var(--bgfi-blue-dark) 0%, var(--bgfi-blue) 100%);
    padding: var(--space-4xl) 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: var(--space-md);
}

.cta-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* ===== Newsletter Section - BGFI Style ===== */
.newsletter-section {
    background: linear-gradient(135deg, var(--bgfi-blue) 0%, var(--bgfi-blue-dark) 100%);
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.newsletter-content {
    position: relative;
    z-index: 1;
}

.newsletter-text {
    color: white;
}

.newsletter-text h3 {
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
}

.newsletter-text h3 i {
    color: var(--bgfi-gold);
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    margin: 0;
}

.newsletter-form .input-group {
    background: white;
    border-radius: var(--radius-full);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.newsletter-form .input-group-text {
    background: transparent;
    border: none;
    padding-left: 20px;
    color: var(--bgfi-gray);
}

.newsletter-form .form-control {
    border: none;
    padding: 16px 12px;
    font-size: 14px;
    box-shadow: none;
}

.newsletter-form .form-control:focus {
    box-shadow: none;
}

.btn-newsletter {
    background: var(--bgfi-gold);
    color: white;
    border: none;
    padding: 16px 28px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    transition: background var(--transition-fast);
}

.btn-newsletter:hover {
    background: var(--bgfi-gold-dark);
    color: white;
}

/* ===== Contact Section ===== */
.contact-section {
    background: var(--bgfi-gray-light);
}

.contact-info {
    background: var(--bgfi-white);
    padding: var(--space-xl);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    height: 100%;
}

.contact-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--bgfi-gray-dark);
    margin-bottom: var(--space-md);
}

.contact-info-items {
    margin-top: var(--space-lg);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--bgfi-gray-100);
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-item .icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: var(--radius-md);
    background: var(--bgfi-blue);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.contact-info-item .content h5 {
    font-size: 13px;
    font-weight: 700;
    color: var(--bgfi-gray-dark);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info-item .content p {
    color: var(--bgfi-gray);
    margin: 0;
    line-height: 1.5;
    font-size: 14px;
}

.contact-info-item .content p a {
    color: var(--bgfi-gray);
}

.contact-info-item .content p a:hover {
    color: var(--bgfi-blue);
}

.contact-social h5 {
    font-size: 13px;
    font-weight: 700;
    color: var(--bgfi-gray-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-md);
}

.contact-social .social-links {
    display: flex;
    gap: var(--space-sm);
}

.contact-social .social-links a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: var(--bgfi-blue-light);
    color: var(--bgfi-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all var(--transition-fast);
}

.contact-social .social-links a:hover {
    background: var(--bgfi-blue);
    color: white;
    transform: translateY(-2px);
}

.contact-form-wrapper {
    background: var(--bgfi-white);
    padding: var(--space-xl);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.contact-form-wrapper h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--bgfi-gray-dark);
    margin-bottom: var(--space-md);
}

/* ===== Forms ===== */
.form-control,
.form-select {
    padding: 12px 16px;
    border: 1px solid var(--bgfi-gray-200);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-family: var(--font-secondary);
    transition: all var(--transition-fast);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--bgfi-blue);
    box-shadow: 0 0 0 3px rgba(0, 86, 164, 0.1);
    outline: none;
}

.form-label {
    font-weight: 500;
    font-size: 14px;
    color: var(--bgfi-gray-dark);
    margin-bottom: 6px;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* ===== FAQ Accordion ===== */
.faq-section .accordion {
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-section .accordion-item {
    border: none;
    border-bottom: 1px solid var(--bgfi-gray-200);
    background: var(--bgfi-white);
}

.faq-section .accordion-item:last-child {
    border-bottom: none;
}

.faq-section .accordion-button {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 15px;
    color: var(--bgfi-gray-dark);
    background: var(--bgfi-white);
    padding: var(--space-lg);
    box-shadow: none;
}

.faq-section .accordion-button:not(.collapsed) {
    background: var(--bgfi-blue-light);
    color: var(--bgfi-blue);
}

.faq-section .accordion-button:focus {
    box-shadow: none;
}

.faq-section .accordion-body {
    padding: var(--space-lg);
    color: var(--bgfi-gray);
    line-height: 1.7;
    background: var(--bgfi-gray-light);
}

/* ===== Map ===== */
.map-section {
    position: relative;
}

.map-container {
    height: 400px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(20%);
}

/* ===== Filters ===== */
.filters-bar,
.search-filter-card {
    background: var(--bgfi-white);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: var(--space-xl);
}

.filter-tabs {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.filter-tab {
    padding: 10px 25px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: 1px solid var(--bgfi-gray-200);
    background: var(--bgfi-white);
    color: var(--bgfi-gray-dark);
}

.filter-tab:hover {
    border-color: var(--bgfi-blue);
    color: var(--bgfi-blue);
}

.filter-tab.active {
    background: var(--bgfi-blue);
    border-color: var(--bgfi-blue);
    color: white;
}

/* ===== About Page ===== */
.about-page .about-content {
    padding: var(--space-lg) 0;
}

.about-page .about-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--space-lg);
    color: var(--bgfi-blue-dark);
}

.about-page .about-content p {
    color: var(--bgfi-gray);
    margin-bottom: var(--space-md);
    line-height: 1.8;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* ===== Team Cards ===== */
.team-card {
    background: var(--bgfi-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.team-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.team-image {
    height: 280px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-placeholder {
    width: 100%;
    height: 100%;
    background: var(--bgfi-gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bgfi-gray-200);
    font-size: 64px;
}

.team-content {
    padding: var(--space-lg);
    text-align: center;
}

.team-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.team-position {
    color: var(--bgfi-blue);
    font-size: 13px;
    font-weight: 500;
}

.team-social {
    margin-top: var(--space-md);
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
}

.team-social a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bgfi-blue-light);
    color: var(--bgfi-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.team-social a:hover {
    background: var(--bgfi-blue);
    color: white;
}

/* ===== Partner Logos ===== */
.partner-logo {
    background: var(--bgfi-white);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    box-shadow: var(--shadow-sm);
}

.partner-logo img {
    max-height: 60px;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all var(--transition-normal);
}

.partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ===== Spontaneous Content ===== */
.spontaneous-content {
    padding: var(--space-lg) 0;
}

.spontaneous-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--space-lg);
    color: var(--bgfi-blue-dark);
}

.spontaneous-content p {
    color: var(--bgfi-gray);
    margin-bottom: var(--space-lg);
    line-height: 1.8;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-xl);
}

.check-list li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 8px 0;
    color: var(--bgfi-gray-dark);
}

.spontaneous-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* ===== Modern Card (Sidebar) ===== */
.modern-card {
    background: var(--bgfi-white);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: var(--space-lg);
}

/* ===== Pagination ===== */
.pagination {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.pagination .page-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    border: none;
    background: var(--bgfi-gray-light);
    color: var(--bgfi-gray-dark);
    transition: all var(--transition-fast);
}

.pagination .page-link:hover {
    background: var(--bgfi-blue-light);
    color: var(--bgfi-blue);
}

.pagination .page-item.active .page-link {
    background: var(--bgfi-blue);
    color: white;
}

.pagination .page-item.disabled .page-link {
    background: var(--bgfi-gray-100);
    color: var(--bgfi-gray-200);
}

/* ===== Alerts ===== */
.alert {
    border-radius: var(--radius-md);
    border: none;
    padding: var(--space-md) var(--space-lg);
}

.alert-success {
    background: rgba(0, 168, 89, 0.1);
    color: var(--bgfi-green-dark);
}

.alert-danger {
    background: rgba(220, 53, 69, 0.1);
    color: var(--danger);
}

.alert-info {
    background: var(--bgfi-blue-light);
    color: var(--bgfi-blue);
}

/* ===== Badges ===== */
.badge {
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge.bg-success {
    background: var(--bgfi-green) !important;
}

.badge.bg-warning {
    background: var(--warning) !important;
    color: white;
}

.badge.bg-info {
    background: var(--bgfi-blue) !important;
}

/* ===== No Image Placeholder ===== */
.no-image-placeholder {
    height: 200px;
    background: linear-gradient(135deg, var(--bgfi-gray-light) 0%, var(--bgfi-gray-100) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bgfi-gray-200);
    font-size: 48px;
}

/* ===== Footer - BGFI Style ===== */
.footer-main {
    background: var(--bgfi-blue-dark);
    color: white;
    padding-top: var(--space-4xl);
}

.footer-content {
    padding-bottom: var(--space-3xl);
}

/* Footer Brand */
.footer-brand {
    padding-right: var(--space-xl);
}

.footer-logo img {
    height: 50px;
    margin-bottom: var(--space-lg);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 16px;
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--bgfi-green);
    color: white;
    transform: translateY(-3px);
}

/* Footer Widget */
.footer-widget {
    padding-top: var(--space-sm);
}

.footer-title {
    color: white;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--bgfi-green);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: all var(--transition-fast);
}

.footer-links a i {
    font-size: 8px;
    margin-right: 10px;
    color: var(--bgfi-green);
    opacity: 0;
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-links a:hover i {
    opacity: 1;
}

/* Footer Contact */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.footer-contact .contact-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bgfi-green);
    font-size: 14px;
}

.footer-contact .contact-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-contact .contact-text span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

.footer-contact .contact-text a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    transition: color var(--transition-fast);
}

.footer-contact .contact-text a:hover {
    color: white;
}

/* Footer Certifications */
.footer-certifications {
    padding: var(--space-lg) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cert-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cert-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.cert-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    color: white;
    font-size: 11px;
    font-weight: 600;
}

.cert-badge i {
    color: var(--bgfi-gold);
    margin-right: 4px;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: var(--space-lg) 0;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin: 0;
}

.copyright strong {
    color: white;
}

.footer-bottom-links {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

.footer-bottom-links a {
    color: var(--bgfi-gold);
    font-weight: 500;
    margin-left: 4px;
}

.footer-bottom-links a:hover {
    color: white;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bgfi-blue);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-normal);
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--bgfi-green);
    transform: translateY(-3px);
}

/* Legacy footer support */
footer,
.footer {
    background: var(--bgfi-blue-dark);
    color: white;
    padding: var(--space-3xl) 0 0;
}

footer h5 {
    color: white;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-lg);
}

footer a {
    color: rgba(255, 255, 255, 0.7);
}

footer a:hover {
    color: white;
}

/* ===== Hero Carousel - BGFI Style ===== */
.hero-slider .carousel-item {
    height: 80vh;
    min-height: 550px;
    background-size: cover;
    background-position: center;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,51,102,0.85) 0%, rgba(0,86,164,0.7) 100%);
    display: flex;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: var(--bgfi-green);
    color: white;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-lg);
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: var(--space-lg);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-xl);
    max-width: 600px;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--bgfi-green);
    color: white;
    border: 2px solid var(--bgfi-green);
    border-radius: var(--radius-full);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition-fast);
}

.btn-hero:hover {
    background: white;
    border-color: white;
    color: var(--bgfi-blue-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Carousel Controls */
.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
    width: 60px;
    opacity: 0.7;
    transition: opacity var(--transition-fast);
}

.hero-slider .carousel-control-prev:hover,
.hero-slider .carousel-control-next:hover {
    opacity: 1;
}

.hero-slider .carousel-control-prev-icon,
.hero-slider .carousel-control-next-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    background-size: 40%;
}

.hero-slider .carousel-indicators {
    margin-bottom: 30px;
}

.hero-slider .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 6px;
    opacity: 0.5;
    transition: all var(--transition-fast);
}

.hero-slider .carousel-indicators button.active {
    opacity: 1;
    background: var(--bgfi-green);
    transform: scale(1.2);
}

/* ===== About Home Section ===== */
.about-home-section {
    background: var(--bgfi-white);
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--bgfi-blue);
    color: white;
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-experience-badge .years {
    display: block;
    font-family: var(--font-primary);
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.about-experience-badge .text {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.about-text {
    color: var(--bgfi-gray);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

.about-features {
    display: flex;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.about-feature .feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: var(--radius-md);
    background: var(--bgfi-blue-light);
    color: var(--bgfi-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.about-feature .feature-content h5 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 2px;
    color: var(--bgfi-gray-dark);
}

.about-feature .feature-content span {
    font-size: 13px;
    color: var(--bgfi-gray);
}

/* ===== Expertises Home Section ===== */
.expertise-home-card {
    background: var(--bgfi-white);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    height: 100%;
    border-bottom: 3px solid transparent;
}

.expertise-home-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-bottom-color: var(--bgfi-green);
}

.expertise-home-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    color: white;
    font-size: 26px;
}

.expertise-home-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--bgfi-gray-dark);
}

.expertise-home-desc {
    color: var(--bgfi-gray);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.expertise-home-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--bgfi-blue);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: gap var(--transition-fast);
}

.expertise-home-link:hover {
    gap: 12px;
    color: var(--bgfi-blue-dark);
}

/* ===== Testimonials Section ===== */
.testimonials-section {
    background: linear-gradient(135deg, var(--bgfi-blue-dark) 0%, var(--bgfi-blue) 100%);
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.testimonials-section .section-header {
    position: relative;
    z-index: 1;
}

.testimonials-section .section-title::after {
    background: var(--bgfi-gold);
}

.testimonial-card {
    background: var(--bgfi-white);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    height: 100%;
    position: relative;
}

.testimonial-quote {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    color: var(--bgfi-blue-light);
    font-size: 32px;
}

.testimonial-rating {
    margin-bottom: var(--space-md);
}

.testimonial-rating i {
    color: var(--bgfi-gold);
    font-size: 14px;
}

.testimonial-content {
    color: var(--bgfi-gray);
    font-size: 14px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: var(--space-lg);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    border-top: 1px solid var(--bgfi-gray-100);
    padding-top: var(--space-md);
}

.testimonial-author .author-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author .author-photo-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bgfi-blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bgfi-blue);
}

.testimonial-author .author-info strong {
    display: block;
    font-size: 14px;
    color: var(--bgfi-gray-dark);
}

.testimonial-author .author-info span {
    font-size: 12px;
    color: var(--bgfi-gray);
}

/* ===== Partners Section ===== */
.partners-section {
    background: var(--bgfi-gray-light);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-name {
    font-weight: 600;
    color: var(--bgfi-gray);
}

/* Stats suffix */
.stat-suffix {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 300;
    color: inherit;
}

/* ===== Link Arrow ===== */
.link-arrow {
    color: var(--bgfi-blue);
    font-weight: 600;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: gap var(--transition-fast);
}

.link-arrow:hover {
    gap: 12px;
    color: var(--bgfi-blue-dark);
}

/* ===== Utilities ===== */
.bg-light {
    background: var(--bgfi-gray-light) !important;
}

.bg-blue-light {
    background: var(--bgfi-blue-light) !important;
}

.bg-bgfi-primary {
    background: var(--bgfi-blue) !important;
}

.bg-bgfi-dark {
    background: var(--bgfi-blue-dark) !important;
}

.text-primary {
    color: var(--bgfi-blue) !important;
}

.text-muted {
    color: var(--bgfi-gray) !important;
}

.text-success {
    color: var(--bgfi-green) !important;
}

.shadow {
    box-shadow: var(--shadow-md) !important;
}

.shadow-lg {
    box-shadow: var(--shadow-lg) !important;
}

.rounded {
    border-radius: var(--radius-md) !important;
}

.rounded-lg {
    border-radius: var(--radius-lg) !important;
}

/* ===== Responsive ===== */
@media (max-width: 1199.98px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .partners-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-features {
        flex-direction: column;
        gap: var(--space-md);
    }
}

@media (max-width: 991.98px) {
    .page-header {
        padding: 80px 0 50px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .section {
        padding: var(--space-3xl) 0;
    }

    .stat-item .number,
    .stat-number {
        font-size: 32px;
    }

    .stat-suffix {
        font-size: 22px;
    }

    .hero-slider .carousel-item {
        height: 65vh;
        min-height: 450px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 16px;
    }

    .navbar-collapse {
        background: white;
        padding: var(--space-lg);
        border-radius: var(--radius-md);
        margin-top: var(--space-md);
        box-shadow: var(--shadow-lg);
        border-top: 3px solid var(--bgfi-green);
    }

    .navbar-cta {
        margin: var(--space-md) 0 0;
    }

    .btn-navbar-cta {
        width: 100%;
        justify-content: center;
    }

    .about-experience-badge {
        bottom: 20px;
        right: 20px;
        padding: var(--space-md);
    }

    .about-experience-badge .years {
        font-size: 28px;
    }

    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-certifications .cert-badges {
        justify-content: center;
        margin-top: var(--space-sm);
    }
}

@media (max-width: 767.98px) {
    .page-header {
        padding: 60px 0 40px;
    }

    .page-header h1 {
        font-size: 1.75rem;
    }

    .page-header p {
        font-size: 14px;
    }

    .section {
        padding: var(--space-2xl) 0;
    }

    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }

    .cta-content h2 {
        font-size: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item .number,
    .stat-number {
        font-size: 28px;
    }

    .stat-suffix {
        font-size: 18px;
    }

    .job-card {
        flex-direction: column;
        text-align: center;
    }

    .job-header {
        flex-direction: column;
        align-items: center;
    }

    .job-meta {
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links a {
        justify-content: center;
    }

    .footer-contact li {
        flex-direction: column;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-slider .carousel-item {
        height: 60vh;
        min-height: 400px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-badge {
        font-size: 10px;
        padding: 6px 14px;
    }

    .btn-hero {
        padding: 12px 24px;
        font-size: 12px;
    }

    .expertise-card,
    .advantage-card,
    .mvv-card {
        padding: var(--space-lg);
    }

    .newsletter-form .input-group {
        flex-direction: column;
        border-radius: var(--radius-md);
    }

    .newsletter-form .input-group-text {
        display: none;
    }

    .newsletter-form .form-control {
        border-radius: var(--radius-md) var(--radius-md) 0 0;
    }

    .btn-newsletter {
        border-radius: 0 0 var(--radius-md) var(--radius-md);
        justify-content: center;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-experience-badge {
        position: static;
        margin-top: var(--space-md);
        display: inline-block;
    }

    .cert-badges {
        justify-content: center;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}

/* ===== Animations ===== */
[data-aos] {
    transition-duration: 600ms;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* ===== Print Styles ===== */
@media print {
    .navbar,
    .top-bar,
    footer,
    .cta-section {
        display: none;
    }

    .page-header {
        background: var(--bgfi-gray-light);
        color: var(--bgfi-gray-dark);
    }

    .page-header h1,
    .page-header p {
        color: var(--bgfi-gray-dark);
    }
}
