/* ========================================
   VARIABLES ET RESET
   ======================================== */
:root {
    /* Couleurs principales */
    --bleu-marine: #1A365D;
    --blanc: #FFFFFF;
    
    /* Couleurs secondaires */
    --gris-anthracite: #2D3748;
    --bleu-clair: #E6F2FF;
    --vert-succes: #22C55E;
    
    /* Typography */
    --font-titre: 'Playfair Display', serif;
    --font-texte: 'Inter', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-texte);
    color: var(--gris-anthracite);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
.header {
    background: var(--blanc);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-family: var(--font-titre);
    font-size: 1.8rem;
    color: var(--bleu-marine);
    font-weight: 700;
    letter-spacing: 1px;
}

/* Navigation Desktop */
.nav-desktop {
    display: flex;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: var(--gris-anthracite);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    display: block;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--bleu-marine);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--blanc);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    list-style: none;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 1rem 0;
    margin-top: 0.5rem;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    padding: 0.8rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--gris-anthracite);
    font-weight: 500;
}

.dropdown-menu a:hover {
    background: var(--bleu-clair);
    color: var(--bleu-marine);
}

.dropdown-menu i {
    font-size: 1.1rem;
    width: 20px;
}

/* CTA Button Header */
.cta-header .btn-cta {
    background: var(--gris-anthracite);
    color: var(--blanc);
    padding: 0.8rem 1.8rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
    letter-spacing: 0.5px;
}

.cta-header .btn-cta:hover {
    background: var(--bleu-marine);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 54, 93, 0.3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--gris-anthracite);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Mobile Navigation */
.nav-mobile {
    display: none;
    background: var(--blanc);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.nav-menu-mobile {
    list-style: none;
    padding: 1rem 0;
}

.nav-menu-mobile li {
    border-bottom: 1px solid var(--bleu-clair);
}

.nav-menu-mobile a {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--gris-anthracite);
    text-decoration: none;
    font-weight: 600;
}

.nav-menu-mobile a:hover {
    background: var(--bleu-clair);
    color: var(--bleu-marine);
}

.dropdown-menu-mobile {
    list-style: none;
    background: var(--bleu-clair);
    display: none;
}

.dropdown-menu-mobile a {
    padding-left: 2.5rem;
    font-weight: 500;
}

.dropdown-menu-mobile i {
    margin-right: 0.5rem;
}

.btn-cta-mobile {
    background: var(--gris-anthracite);
    color: var(--blanc) !important;
    text-align: center;
    margin: 1rem 1.5rem;
    border-radius: 5px;
    font-weight: 700;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    background: linear-gradient(135deg, var(--bleu-marine) 0%, #2c5282 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--blanc);
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

.hero::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 1200 600"><path fill="rgba(255,255,255,0.05)" d="M0,100 Q300,200 600,100 T1200,100 L1200,0 L0,0 Z"/></svg>');
    background-size: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 54, 93, 0.85);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-family: var(--font-titre);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: var(--vert-succes);
    color: var(--blanc);
}

.btn-primary:hover {
    background: #1ea049;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--blanc);
    border: 2px solid var(--blanc);
}

.btn-secondary:hover {
    background: var(--blanc);
    color: var(--bleu-marine);
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services {
    padding: var(--spacing-xl) 0;
    background: var(--blanc);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-header h2 {
    font-family: var(--font-titre);
    font-size: 2.5rem;
    color: var(--bleu-marine);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gris-anthracite);
    opacity: 0.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--blanc);
    padding: 2.5rem 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(26, 54, 93, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--bleu-clair);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bleu-marine);
    font-size: 2rem;
}

.service-card h3 {
    font-family: var(--font-titre);
    font-size: 1.5rem;
    color: var(--bleu-marine);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--gris-anthracite);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.btn-link {
    color: var(--bleu-marine);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-link:hover {
    gap: 0.8rem;
}

.btn-link i {
    font-size: 0.9rem;
}

/* ========================================
   WHY US SECTION
   ======================================== */
.why-us {
    padding: var(--spacing-xl) 0;
    background: var(--bleu-clair);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.why-card {
    text-align: center;
}

.why-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--bleu-marine);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blanc);
    font-size: 1.8rem;
}

.why-card h3 {
    font-family: var(--font-titre);
    font-size: 1.3rem;
    color: var(--bleu-marine);
    margin-bottom: 0.8rem;
}

.why-card p {
    color: var(--gris-anthracite);
    line-height: 1.7;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    padding: var(--spacing-lg) 0;
    background: linear-gradient(135deg, var(--bleu-marine) 0%, #2c5282 100%);
    color: var(--blanc);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-titre);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-cta-large {
    background: var(--vert-succes);
    color: var(--blanc);
    padding: 1.2rem 3rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    background: #1ea049;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
    gap: 1.2rem;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--gris-anthracite);
    color: var(--blanc);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: var(--spacing-md);
}

.footer-col h3 {
    font-family: var(--font-titre);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--blanc);
}

.footer-col h4 {
    font-family: var(--font-titre);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--blanc);
}

.footer-col p {
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: var(--blanc);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blanc);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--bleu-marine);
    transform: translateY(-3px);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-contact i {
    color: var(--vert-succes);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: var(--spacing-md);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-legal a {
    color: var(--blanc);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-legal a:hover {
    opacity: 1;
}

/* ========================================
   BENTO GRID SECTION (About & Why Us)
   ======================================== */
.bento-section {
    padding: var(--spacing-xl) 0;
    background: var(--blanc);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
    margin-top: var(--spacing-lg);
}

.bento-card {
    background: var(--blanc);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--bleu-marine), var(--vert-succes));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.bento-card:hover::before {
    transform: scaleX(1);
}

.bento-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(26, 54, 93, 0.15);
}

.bento-large {
    grid-column: span 6;
    grid-row: span 2;
    background: linear-gradient(135deg, var(--bleu-marine) 0%, #2c5282 100%);
    color: var(--blanc);
}

.bento-medium {
    grid-column: span 6;
}

.bento-small {
    grid-column: span 3;
}

.bento-icon {
    width: 60px;
    height: 60px;
    background: var(--bleu-clair);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--bleu-marine);
    font-size: 1.8rem;
}

.bento-large .bento-icon {
    background: rgba(255, 255, 255, 0.15);
    color: var(--blanc);
}

.bento-card h3 {
    font-family: var(--font-titre);
    font-size: 1.5rem;
    color: var(--bleu-marine);
    margin-bottom: 1rem;
}

.bento-large h3 {
    color: var(--blanc);
    font-size: 2rem;
}

.bento-card p {
    color: var(--gris-anthracite);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.bento-large p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.bento-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--blanc);
    text-decoration: none;
    font-weight: 600;
    transition: gap 0.3s ease;
    margin-top: 1rem;
}

.bento-link:hover {
    gap: 1rem;
}

/* ========================================
   CTA BANNER SECTION
   ======================================== */
.cta-banner {
    position: relative;
    padding: var(--spacing-lg) 0;
    background: linear-gradient(135deg, var(--bleu-marine) 0%, #2c5282 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 54, 93, 0.88);
}

.cta-banner-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.cta-banner-text {
    flex: 1;
    color: var(--blanc);
}

.cta-banner-text h2 {
    font-family: var(--font-titre);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-banner-text p {
    font-size: 1.2rem;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-banner-button {
    flex-shrink: 0;
}

.btn-cta-banner {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--vert-succes);
    color: var(--blanc);
    padding: 1.3rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-cta-banner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-cta-banner:hover::before {
    width: 300px;
    height: 300px;
}

.btn-cta-banner:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(34, 197, 94, 0.5);
    gap: 1.5rem;
}

.btn-cta-banner span,
.btn-cta-banner i {
    position: relative;
    z-index: 1;
}

/* ========================================
   EXPANDABLE COLUMNS SECTION
   ======================================== */
.expandable-section {
    padding: var(--spacing-xl) 0;
    background: var(--bleu-clair);
}

.expandable-grid {
    display: flex;
    gap: 1rem;
    margin-top: var(--spacing-lg);
}

.expandable-column {
    flex: 1;
    background: var(--blanc);
    border-radius: 12px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

.expandable-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px 12px 0 0;
    transition: height 0.5s ease;
}

.expandable-column:hover .expandable-image {
    height: 250px;
}

.expandable-wrapper {
    padding: 2rem;
    background: var(--blanc);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.expandable-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--bleu-marine);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.expandable-column:hover::before {
    transform: scaleX(1);
}

.expandable-column:hover {
    flex: 1.8;
    box-shadow: 0 8px 30px rgba(26, 54, 93, 0.15);
}

.expandable-column:not(:hover) {
    flex: 0.7;
}

.expandable-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--bleu-marine) 0%, #2c5282 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blanc);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.expandable-column:hover .expandable-icon {
    transform: scale(1.1) rotate(5deg);
}

.expandable-column h3 {
    font-family: var(--font-titre);
    font-size: 1.4rem;
    color: var(--bleu-marine);
    margin-bottom: 1.5rem;
    transition: font-size 0.4s ease;
}

.expandable-column:hover h3 {
    font-size: 1.6rem;
}

.expandable-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.expandable-column:hover .expandable-content {
    opacity: 1;
    max-height: 500px;
    margin-top: 1.5rem;
}

.expandable-content ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.expandable-content ul li {
    display: flex;
    align-items: start;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: var(--gris-anthracite);
    line-height: 1.6;
}

.expandable-content ul li i {
    color: var(--vert-succes);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.btn-expand {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--bleu-marine);
    text-decoration: none;
    font-weight: 600;
    transition: gap 0.3s ease;
    padding: 0.8rem 1.5rem;
    background: var(--bleu-clair);
    border-radius: 8px;
}

.btn-expand:hover {
    gap: 1rem;
    background: var(--bleu-marine);
    color: var(--blanc);
}

/* ========================================
   ABOUT US SECTION (Two Columns)
   ======================================== */
.about-us-section {
    padding: var(--spacing-xl) 0;
    background: var(--blanc);
}

.about-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-us-image {
    position: relative;
}

.about-us-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.about-stats {
    position: absolute;
    bottom: -30px;
    left: 20px;
    right: 20px;
    background: var(--blanc);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    display: flex;
    justify-content: space-around;
    gap: 1rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-titre);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--bleu-marine);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gris-anthracite);
    font-weight: 500;
}

.about-us-content {
    padding-right: 2rem;
}

.section-tag {
    display: inline-block;
    background: var(--bleu-clair);
    color: var(--bleu-marine);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-us-content h2 {
    font-family: var(--font-titre);
    font-size: 2.5rem;
    color: var(--bleu-marine);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.about-us-content .lead {
    font-size: 1.2rem;
    color: var(--gris-anthracite);
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-us-content p {
    color: var(--gris-anthracite);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-features {
    margin: 2.5rem 0;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    align-items: start;
}

.feature-item i {
    color: var(--vert-succes);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.feature-item h4 {
    font-family: var(--font-titre);
    font-size: 1.2rem;
    color: var(--bleu-marine);
    margin-bottom: 0.5rem;
}

.feature-item p {
    margin: 0;
    color: var(--gris-anthracite);
    line-height: 1.6;
}

.about-contact-info {
    background: var(--bleu-clair);
    padding: 2rem;
    border-radius: 12px;
    margin: 2.5rem 0;
}

.info-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    align-items: start;
}

.info-row:last-child {
    margin-bottom: 0;
}

.info-row i {
    color: var(--bleu-marine);
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.info-row strong {
    color: var(--bleu-marine);
}

.info-row a {
    color: var(--gris-anthracite);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-row a:hover {
    color: var(--bleu-marine);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    /* Header Mobile */
    .nav-desktop,
    .cta-header {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-mobile.active {
        display: block;
    }
    
    .dropdown-mobile.active .dropdown-menu-mobile {
        display: block;
    }
    
    /* Hero */
    .hero {
        padding: var(--spacing-lg) 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
    
    /* Sections */
    .section-header h2 {
        font-size: 2rem;
    }
    
    .services,
    .why-us,
    .cta-section {
        padding: var(--spacing-lg) 0;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    /* Footer */
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.4rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    /* Bento Grid */
    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .bento-large,
    .bento-medium,
    .bento-small {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    /* CTA Banner */
    .cta-banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-banner-text h2 {
        font-size: 1.8rem;
    }
    
    /* Expandable Columns */
    .expandable-grid {
        flex-direction: column;
    }
    
    .expandable-column,
    .expandable-column:hover,
    .expandable-column:not(:hover) {
        flex: 1;
    }
    
    .expandable-content {
        opacity: 1;
        max-height: none;
        margin-top: 1.5rem;
    }
    
    /* About Us Section */
    .about-us-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-us-content {
        padding-right: 0;
    }
    
    .about-us-image img {
        height: 400px;
    }
    
    .about-stats {
        position: relative;
        bottom: 0;
        left: 0;
        right: 0;
        margin-top: 2rem;
    }
}

/* ========================================
   NOS CREDITS SECTION
   ======================================== */
.nos-credits-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, var(--blanc) 0%, var(--bleu-clair) 100%);
}

.credits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: var(--spacing-lg);
}

.credit-card {
    background: var(--blanc);
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.credit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--bleu-marine), var(--vert-succes));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.credit-card:hover::before {
    transform: scaleX(1);
}

.credit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(26, 54, 93, 0.2);
    border-color: var(--bleu-marine);
}

/* Featured Card */
.credit-featured {
    border-color: var(--vert-succes);
    box-shadow: 0 6px 30px rgba(34, 197, 94, 0.15);
}

.credit-featured:hover {
    border-color: var(--vert-succes);
    box-shadow: 0 15px 50px rgba(34, 197, 94, 0.25);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--vert-succes);
    color: var(--blanc);
    padding: 0.4rem 2.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    transform: rotate(45deg);
    box-shadow: 0 2px 10px rgba(34, 197, 94, 0.3);
    z-index: 10;
}

/* Credit Header */
.credit-header {
    padding: 2rem 2rem 1.5rem;
    text-align: center;
}

.credit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--bleu-marine) 0%, #2c5282 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blanc);
    font-size: 2rem;
    transition: all 0.4s ease;
}

.credit-card:hover .credit-icon {
    transform: scale(1.1) rotate(5deg);
}

.credit-featured .credit-icon {
    background: linear-gradient(135deg, var(--vert-succes) 0%, #1ea049 100%);
}

.credit-header h3 {
    font-family: var(--font-titre);
    font-size: 1.4rem;
    color: var(--bleu-marine);
    margin: 0;
}

/* Credit Body */
.credit-body {
    padding: 0 2rem 2rem;
    flex: 1;
}

.credit-price {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bleu-clair);
    border-radius: 12px;
}

.price-amount {
    display: block;
    font-family: var(--font-titre);
    font-size: 3rem;
    font-weight: 700;
    color: var(--bleu-marine);
    line-height: 1;
}

.price-period {
    display: block;
    font-size: 0.95rem;
    color: var(--gris-anthracite);
    margin-top: 0.5rem;
}

.credit-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.credit-features li {
    display: flex;
    align-items: start;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: var(--gris-anthracite);
    line-height: 1.6;
    font-size: 0.95rem;
}

.credit-features li i {
    color: var(--vert-succes);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* Credit Footer */
.credit-footer {
    padding: 0 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.btn-credit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: var(--bleu-marine);
    color: var(--blanc);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-credit:hover {
    background: var(--gris-anthracite);
    gap: 1.2rem;
    transform: translateX(2px);
}

.credit-featured .btn-credit {
    background: var(--vert-succes);
}

.credit-featured .btn-credit:hover {
    background: #1ea049;
}

.btn-credit-secondary {
    display: inline-block;
    text-align: center;
    color: var(--bleu-marine);
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 8px;
    font-size: 0.9rem;
}

.btn-credit-secondary:hover {
    background: var(--bleu-clair);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .credits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .credits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .credits-grid {
        grid-template-columns: 1fr;
    }
    
    .credit-header h3 {
        font-size: 1.3rem;
    }
}

/* ========================================
   BANNIERE EQUIPE SECTION
   ======================================== */
.equipe-banner {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.equipe-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.equipe-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--blanc);
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.equipe-banner-content h2 {
    font-family: var(--font-titre);
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.equipe-banner-content p {
    font-size: 1.8rem;
    font-weight: 300;
}

/* ========================================
   SIMULATEUR SECTION
   ======================================== */
.simulateur-section {
    padding: var(--spacing-xl) 0;
    background: var(--blanc);
}

.simulateur-card {
    max-width: 900px;
    margin: 0 auto;
    background: var(--blanc);
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    padding: 3rem;
    border: 2px solid var(--bleu-clair);
}

.simulateur-form {
    margin-bottom: 2rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    position: relative;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--bleu-marine);
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.form-group label i {
    color: var(--vert-succes);
}

.form-group input {
    width: 100%;
    padding: 1rem 3rem 1rem 1rem;
    border: 2px solid var(--bleu-clair);
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gris-anthracite);
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--bleu-marine);
    box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
}

.form-group input.input-disabled {
    background: var(--bleu-clair);
    color: var(--bleu-marine);
    cursor: not-allowed;
}

.input-suffix {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    font-weight: 600;
    color: var(--gris-anthracite);
    pointer-events: none;
}

.btn-simuler {
    width: 100%;
    padding: 1.3rem 2rem;
    background: linear-gradient(135deg, var(--bleu-marine) 0%, #2c5282 100%);
    color: var(--blanc);
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

.btn-simuler:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 54, 93, 0.3);
}

.btn-simuler i {
    font-size: 1.3rem;
}

/* Résultat Simulateur */
.resultat-simulateur {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--bleu-clair);
}

.resultat-content {
    text-align: center;
}

.resultat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--vert-succes);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blanc);
    font-size: 2.5rem;
}

.resultat-content h3 {
    font-family: var(--font-titre);
    font-size: 1.5rem;
    color: var(--bleu-marine);
    margin-bottom: 1rem;
}

.mensualite-amount {
    font-family: var(--font-titre);
    font-size: 4rem;
    font-weight: 700;
    color: var(--bleu-marine);
    margin-bottom: 2rem;
    line-height: 1;
}

.currency {
    font-size: 1.5rem;
    color: var(--gris-anthracite);
    font-weight: 400;
}

.resultat-details {
    background: var(--bleu-clair);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.detail {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(26, 54, 93, 0.1);
}

.detail:last-child {
    border-bottom: none;
    font-weight: 700;
    font-size: 1.1rem;
}

.detail-label {
    color: var(--gris-anthracite);
}

.detail-value {
    color: var(--bleu-marine);
    font-weight: 600;
}

.btn-demande {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--vert-succes);
    color: var(--blanc);
    padding: 1.2rem 3rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-demande:hover {
    background: #1ea049;
    gap: 1.2rem;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.3);
}

/* ========================================
   TEMOIGNAGES SECTION
   ======================================== */
.temoignages-section {
    padding: var(--spacing-xl) 0;
    background: var(--bleu-clair);
}

.temoignages-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: var(--spacing-lg);
}

.temoignages-image {
    position: relative;
}

.temoignages-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.google-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: var(--blanc);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.google-badge .fab.fa-google {
    font-size: 3rem;
    color: #4285F4;
}

.badge-content {
    flex: 1;
}

.badge-content .stars {
    color: #FBBC04;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.badge-content p {
    margin: 0.3rem 0;
    color: var(--gris-anthracite);
}

.badge-content strong {
    color: var(--bleu-marine);
    font-size: 1.2rem;
}

.reviews-count {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Avis Grid */
.avis-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.avis-card {
    background: var(--blanc);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.avis-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.avis-header {
    display: flex;
    align-items: start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.avis-info {
    flex: 1;
}

.avis-info h4 {
    font-family: var(--font-titre);
    font-size: 1.1rem;
    color: var(--bleu-marine);
    margin: 0 0 0.3rem 0;
}

.stars-small {
    color: #FBBC04;
    font-size: 0.9rem;
}

.google-icon {
    color: #4285F4;
    font-size: 1.5rem;
}

.avis-text {
    color: var(--gris-anthracite);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .equipe-banner-content h2 {
        font-size: 2.5rem;
    }
    
    .equipe-banner-content p {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .equipe-banner {
        height: 300px;
    }
    
    .equipe-banner-content h2 {
        font-size: 2rem;
    }
    
    .equipe-banner-content p {
        font-size: 1.1rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .simulateur-card {
        padding: 2rem 1.5rem;
    }
    
    .mensualite-amount {
        font-size: 3rem;
    }
    
    .temoignages-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .temoignages-image img {
        height: 400px;
    }
    
    .google-badge {
        flex-direction: column;
        text-align: center;
    }
    
    .avis-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   PAGE HERO SECTION
   ======================================== */
.page-hero {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 54, 93, 0.75);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--blanc);
}

.page-hero-content h1 {
    font-family: var(--font-titre);
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-hero-content p {
    font-size: 1.3rem;
    font-weight: 300;
}

/* ========================================
   BREADCRUMB
   ======================================== */
.breadcrumb-section {
    background: var(--bleu-clair);
    padding: 1rem 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.breadcrumb a {
    color: var(--bleu-marine);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--vert-succes);
}

.breadcrumb .separator {
    color: var(--gris-anthracite);
}

.breadcrumb .current {
    color: var(--gris-anthracite);
}

/* ========================================
   INTRODUCTION SECTION
   ======================================== */
.intro-section {
    padding: var(--spacing-xl) 0;
    background: var(--blanc);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-content .section-tag {
    display: inline-block;
    background: var(--bleu-clair);
    color: var(--bleu-marine);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.intro-content h2 {
    font-family: var(--font-titre);
    font-size: 2.5rem;
    color: var(--bleu-marine);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.intro-content .lead {
    font-size: 1.2rem;
    color: var(--gris-anthracite);
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.intro-content p {
    color: var(--gris-anthracite);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.intro-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

/* ========================================
   VALEURS SECTION
   ======================================== */
.valeurs-section {
    padding: var(--spacing-xl) 0;
    background: var(--bleu-clair);
}

.valeurs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: var(--spacing-lg);
}

.valeur-card {
    background: var(--blanc);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.valeur-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(26, 54, 93, 0.15);
}

.valeur-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--bleu-marine) 0%, #2c5282 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blanc);
    font-size: 2rem;
}

.valeur-card h3 {
    font-family: var(--font-titre);
    font-size: 1.4rem;
    color: var(--bleu-marine);
    margin-bottom: 1rem;
}

.valeur-card p {
    color: var(--gris-anthracite);
    line-height: 1.7;
}

/* ========================================
   CHIFFRES CLES SECTION
   ======================================== */
.chiffres-section {
    padding: var(--spacing-lg) 0;
    background: linear-gradient(135deg, var(--bleu-marine) 0%, #2c5282 100%);
    color: var(--blanc);
}

.chiffres-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.chiffre-item {
    text-align: center;
}

.chiffre-number {
    font-family: var(--font-titre);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1rem;
    color: var(--blanc);
}

.chiffre-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ========================================
   EQUIPE SECTION
   ======================================== */
.equipe-section {
    padding: var(--spacing-xl) 0;
    background: var(--blanc);
}

.equipe-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: var(--spacing-lg);
}

.membre-card {
    background: var(--blanc);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.membre-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(26, 54, 93, 0.15);
}

.membre-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.membre-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.membre-card:hover .membre-image img {
    transform: scale(1.1);
}

.membre-info {
    padding: 1.5rem;
    text-align: center;
}

.membre-info h3 {
    font-family: var(--font-titre);
    font-size: 1.3rem;
    color: var(--bleu-marine);
    margin-bottom: 0.5rem;
}

.membre-role {
    color: var(--vert-succes);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.membre-desc {
    color: var(--gris-anthracite);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* ========================================
   LEGAL INFO SECTION
   ======================================== */
.legal-info-section {
    padding: var(--spacing-xl) 0;
    background: var(--bleu-clair);
}

.legal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.legal-card {
    background: var(--blanc);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.legal-card h3 {
    font-family: var(--font-titre);
    font-size: 1.3rem;
    color: var(--bleu-marine);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.legal-card h3 i {
    color: var(--vert-succes);
}

.legal-card ul {
    list-style: none;
}

.legal-card ul li {
    padding: 0.6rem 0;
    color: var(--gris-anthracite);
    line-height: 1.6;
}

.legal-card ul li strong {
    color: var(--bleu-marine);
}

.legal-card a {
    color: var(--bleu-marine);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-card a:hover {
    color: var(--vert-succes);
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    padding: var(--spacing-lg) 0;
    background: linear-gradient(135deg, var(--bleu-marine) 0%, #2c5282 100%);
    color: var(--blanc);
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-titre);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .page-hero-content h1 {
        font-size: 2.8rem;
    }
    
    .equipe-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .chiffres-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-hero {
        height: 300px;
    }
    
    .page-hero-content h1 {
        font-size: 2rem;
    }
    
    .page-hero-content p {
        font-size: 1.1rem;
    }
    
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .intro-image img {
        height: 350px;
    }
    
    .valeurs-grid {
        grid-template-columns: 1fr;
    }
    
    .chiffres-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .equipe-grid {
        grid-template-columns: 1fr;
    }
    
    .legal-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-section {
    padding: var(--spacing-xl) 0;
    background: var(--blanc);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    margin-top: var(--spacing-lg);
}

/* ========================================
   FORMULAIRE DE CONTACT
   ======================================== */
.contact-form-wrapper .section-tag {
    display: inline-block;
    background: var(--bleu-clair);
    color: var(--bleu-marine);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-form-wrapper h2 {
    font-family: var(--font-titre);
    font-size: 2.5rem;
    color: var(--bleu-marine);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.form-intro {
    color: var(--gris-anthracite);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-form {
    background: var(--blanc);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid var(--bleu-clair);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--bleu-marine);
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.form-group label i {
    color: var(--vert-succes);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--bleu-clair);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-texte);
    color: var(--gris-anthracite);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--bleu-marine);
    box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, var(--bleu-marine) 0%, #2c5282 100%);
    color: var(--blanc);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 54, 93, 0.3);
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ========================================
   INFORMATIONS DE CONTACT
   ======================================== */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    background: var(--bleu-clair);
    padding: 2.5rem;
    border-radius: 12px;
}

.contact-info-card h3 {
    font-family: var(--font-titre);
    font-size: 1.8rem;
    color: var(--bleu-marine);
    margin-bottom: 1rem;
}

.contact-info-card > p {
    color: var(--gris-anthracite);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    align-items: start;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--bleu-marine);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blanc);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.info-content h4 {
    font-family: var(--font-titre);
    font-size: 1.1rem;
    color: var(--bleu-marine);
    margin-bottom: 0.5rem;
}

.info-content p {
    color: var(--gris-anthracite);
    line-height: 1.7;
    margin: 0.3rem 0;
}

.info-content .closed {
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: italic;
}

.info-content a {
    color: var(--bleu-marine);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: var(--vert-succes);
}

/* Social Media Card */
.social-card {
    background: var(--blanc);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
}

.social-card h4 {
    font-family: var(--font-titre);
    font-size: 1.3rem;
    color: var(--bleu-marine);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blanc);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.3rem;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.social-link.facebook {
    background: #1877f2;
}

.social-link.linkedin {
    background: #0077b5;
}

.social-link.twitter {
    background: #1da1f2;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

/* ========================================
   FAQ CONTACT SECTION
   ======================================== */
.faq-contact-section {
    padding: var(--spacing-xl) 0;
    background: var(--bleu-clair);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: var(--spacing-lg);
}

.faq-item {
    background: var(--blanc);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(26, 54, 93, 0.15);
}

.faq-item h4 {
    font-family: var(--font-titre);
    font-size: 1.1rem;
    color: var(--bleu-marine);
    margin-bottom: 1rem;
    display: flex;
    align-items: start;
    gap: 0.8rem;
}

.faq-item h4 i {
    color: var(--vert-succes);
    margin-top: 0.2rem;
}

.faq-item p {
    color: var(--gris-anthracite);
    line-height: 1.7;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .contact-grid {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper h2 {
        font-size: 2rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .social-links {
        flex-wrap: wrap;
    }
}

/* ========================================
   INTRO CONTENT CENTER
   ======================================== */
.intro-content-center {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-content-center .section-tag {
    display: inline-block;
    background: var(--bleu-clair);
    color: var(--bleu-marine);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.intro-content-center h2 {
    font-family: var(--font-titre);
    font-size: 2.8rem;
    color: var(--bleu-marine);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.intro-content-center .lead {
    font-size: 1.2rem;
    color: var(--gris-anthracite);
    line-height: 1.8;
}

/* ========================================
   CREDITS TYPES SECTION
   ======================================== */
.credits-types-section {
    padding: var(--spacing-xl) 0;
    background: var(--bleu-clair);
}

.credits-types-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.credit-type-card {
    background: var(--blanc);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.credit-type-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(26, 54, 93, 0.15);
    border-color: var(--bleu-marine);
}

.credit-type-header {
    background: linear-gradient(135deg, var(--bleu-marine) 0%, #2c5282 100%);
    padding: 2rem;
    text-align: center;
    color: var(--blanc);
}

.credit-type-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.credit-type-header h3 {
    font-family: var(--font-titre);
    font-size: 1.8rem;
    margin: 0;
}

.credit-type-body {
    padding: 2rem;
}

.credit-type-body > p {
    color: var(--gris-anthracite);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.credit-type-list {
    list-style: none;
    margin-bottom: 2rem;
}

.credit-type-list li {
    display: flex;
    align-items: start;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: var(--gris-anthracite);
    line-height: 1.6;
}

.credit-type-list li i {
    color: var(--vert-succes);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.credit-type-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 2px solid var(--bleu-clair);
}

.credit-rate {
    text-align: left;
}

.rate-number {
    display: block;
    font-family: var(--font-titre);
    font-size: 2rem;
    font-weight: 700;
    color: var(--bleu-marine);
    line-height: 1;
}

.rate-label {
    display: block;
    font-size: 0.9rem;
    color: var(--gris-anthracite);
    margin-top: 0.3rem;
}

.btn-credit-type {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--bleu-marine);
    color: var(--blanc);
    padding: 0.9rem 1.8rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-credit-type:hover {
    background: var(--gris-anthracite);
    gap: 1rem;
}

/* ========================================
   AVANTAGES SECTION
   ======================================== */
.avantages-section {
    padding: var(--spacing-xl) 0;
    background: var(--blanc);
}

.avantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: var(--spacing-lg);
}

.avantage-card {
    background: var(--blanc);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid var(--bleu-clair);
}

.avantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(26, 54, 93, 0.12);
}

.avantage-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--bleu-clair);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bleu-marine);
    font-size: 1.8rem;
}

.avantage-card h3 {
    font-family: var(--font-titre);
    font-size: 1.3rem;
    color: var(--bleu-marine);
    margin-bottom: 1rem;
}

.avantage-card p {
    color: var(--gris-anthracite);
    line-height: 1.7;
}

/* ========================================
   PROCESSUS SECTION
   ======================================== */
.processus-section {
    padding: var(--spacing-xl) 0;
    background: var(--bleu-clair);
}

.processus-timeline {
    max-width: 1000px;
    margin: var(--spacing-lg) auto 0;
    position: relative;
}

.processus-timeline::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--bleu-marine);
    z-index: 0;
}

.processus-step {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: start;
    gap: 2rem;
}

.processus-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--bleu-marine) 0%, #2c5282 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blanc);
    font-family: var(--font-titre);
    font-size: 2.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(26, 54, 93, 0.3);
    position: relative;
    z-index: 1;
    border: 4px solid var(--blanc);
}

.step-content {
    background: var(--blanc);
    padding: 2rem;
    border-radius: 12px;
    flex: 1;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.step-content h3 {
    font-family: var(--font-titre);
    font-size: 1.5rem;
    color: var(--bleu-marine);
    margin-bottom: 0.8rem;
}

.step-content p {
    color: var(--gris-anthracite);
    line-height: 1.7;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .credits-types-grid {
        gap: 2rem;
    }
    
    .avantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .intro-content-center h2 {
        font-size: 2rem;
    }
    
    .credits-types-grid {
        grid-template-columns: 1fr;
    }
    
    .avantages-grid {
        grid-template-columns: 1fr;
    }
    
    .processus-timeline::before {
        display: none;
    }
    
    .processus-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .step-number {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
}