/* css/style.css - Feuille de style commune à tout le site */

:root {
    --primary: #091432;
    --primary-dark: #060d24;
    --primary-light: #1a2d5a;
    --gold: #b88e31;
    --gold-light: #d4a94a;
    --gold-dark: #9a7629;
    --dark: #1a1a1a;
    --text: #333333;
    --text-light: #666666;
    --light-bg: #f5f5f5;
    --white: #ffffff;
    --cream: #faf8f5;
    --transition: all 0.3s ease;
    --header-height: 80px;
    --header-shrink-height: 65px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: calc(var(--top-bar-height, 37px) + var(--header-height));
    transition: padding-top 0.3s ease;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
}

.serif {
    font-family: 'Playfair Display', serif;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============ BOUTONS ============ */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
    border: 2px solid var(--gold);
}

.btn-primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(184, 142, 49, 0.3);
}

.btn-gold {
    background: var(--gold);
    color: var(--white);
    border: 2px solid var(--gold);
}

.btn-gold:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--white);
}

.btn-white:hover {
    background: transparent;
    color: var(--white);
}

/* ============ TOP BAR - COULEUR DORÉE ============ */
.top-bar {
    background: var(--gold);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.75rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.top-bar.hidden {
    transform: translateY(-100%);
    opacity: 0;
}

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

.top-bar-left {
    display: flex;
    gap: 20px;
    align-items: center;
}

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

.top-bar-left i {
    color: var(--white);
    font-size: 0.8rem;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-bar-right a {
    color: var(--white);
    transition: var(--transition);
    font-size: 0.75rem;
}

.top-bar-right a:hover {
    color: var(--primary);
}

/* ============ ICÔNES PNG (avec repli Font Awesome) ============ */
.icon-png {
    width: 14px;
    height: 14px;
    object-fit: contain;
    display: inline-block;
    vertical-align: -2px;
}

.footer-contact .icon-png {
    width: 16px;
    height: 16px;
    margin-top: 3px;
    vertical-align: top;
}

/* Quand le fallback Font Awesome est utilisé (PNG absent), l'icône <i> reprend
   son comportement normal et n'a pas besoin des dimensions fixes du PNG. */
.icon-png.icon-fallback {
    width: auto;
    height: auto;
    vertical-align: middle;
}

@media (max-width: 1024px) {
    .top-bar-right a span.tiktok-handle {
        display: none;
    }
}

@media (max-width: 768px) {
    .top-bar {
        font-size: 0.7rem;
    }

    .top-bar .container {
        flex-wrap: wrap;
        gap: 6px;
        justify-content: center;
    }

    .top-bar-left,
    .top-bar-right {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
}

/* ============ HEADER - COULEUR BLEU ============ */
.header {
    background: var(--primary);
    padding: 15px 0;
    position: fixed;
    top: var(--top-bar-height, 37px);
    left: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    transition: transform 0.4s ease, opacity 0.4s ease, top 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.header.hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.header.shrink {
    top: 0;
    padding: 8px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.header.shrink .logo-text {
    font-size: 1rem;
}

.header.shrink .logo-icon {
    width: 40px;
    height: 40px;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ============ LOGO HEADER ============ */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
    flex-shrink: 0;
    transition: var(--transition);
}

.logo-text {
    display: none;
}

/* Logo Image - TAILLE FIXE POUR HEADER */
.logo-image {
    height: 90px;
    width: auto;
    display: block;
    max-height: 90px;
    transition: var(--transition);
}

/* Quand le header se rétrécit au scroll */
.header.shrink .logo-image {
    height: 60px;
    max-height: 60px;
}

/* ============ FOOTER LOGO - PAS D'OMBRE ============ */
.footer-logo-image {
    height: 90px;
    width: auto;
    display: block;
    max-height: 90px;
    filter: none !important;
    transition: var(--transition);
}

.footer-logo-image:hover {
    filter: none !important;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

/* ============ NAVIGATION DESKTOP ============ */
.nav-desktop ul {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-desktop a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--white);
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
    width: 100%;
}

.nav-desktop a:hover,
.nav-desktop a.active {
    color: var(--gold);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--primary);
    min-width: 220px;
    padding: 10px 0;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 8px 20px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.85);
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background: rgba(184, 142, 49, 0.15);
    color: var(--gold);
}

.dropdown-menu a::after {
    display: none;
}

/* ============ DRAPEAUX PAYS (Twemoji) ============ */
.dropdown-menu a img.flag-emoji,
.footer-col a img.flag-emoji,
.offcanvas a img.flag-emoji {
    height: 1em;
    width: 1.4em;
    vertical-align: -0.1em;
    margin-right: 4px;
    display: inline-block;
}

/* ============ DRAPEAUX PNG ============ */
.flag-png {
    width: 1.3em;
    height: 1.3em;
    object-fit: cover;
    border-radius: 0;
    vertical-align: -0.25em;
    display: inline-block;
}

.destination-flag .flag-png {
    width: 100%;
    height: 100%;
    border-radius: 0;
}

/* Bouton RDV fixe */
.btn-rdv-fixed {
    background: var(--gold);
    color: var(--white);
    padding: 10px 22px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: 2px solid var(--gold);
}

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

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 110;
    background: none;
    border: none;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2.5px;
    background: var(--white);
    transition: var(--transition);
}

/* ============ OFF-CANVAS ============ */
.offcanvas {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--white);
    z-index: 2000;
    transition: var(--transition);
    padding: 80px 30px 30px;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    overflow-y: auto;
}

.offcanvas.active {
    right: 0;
}

.offcanvas-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.offcanvas-overlay.active {
    opacity: 1;
    visibility: visible;
}

.offcanvas-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
}

.offcanvas ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.offcanvas a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark);
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.offcanvas a:hover {
    color: var(--gold);
}

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

/* ============ HERO ============ */
.hero {
    position: relative;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(9, 20, 50, 0.7) 0%, rgba(9, 20, 50, 0.3) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-text {
    max-width: 650px;
    color: var(--white);
}

.hero-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    display: block;
    opacity: 0.9;
    color: var(--gold);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-title .serif {
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 35px;
    opacity: 0.9;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* ============ HERO NAVIGATION ============ */
.hero-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 3;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.hero-nav button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255,255,255,0.3);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 1.2rem;
    pointer-events: auto;
}

.hero-nav button:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.1);
}

/* ============ HERO DOTS ============ */
.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.hero-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-dots .dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.1);
}

.hero-dots .dot.active {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(184, 142, 49, 0.4);
}

/* ============ PAGE HERO ============ */
.page-hero {
    padding: 80px 0 60px;
    background: var(--primary);
    color: var(--white);
    text-align: center;
    margin-top: 0;
}

.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 30px;
}

.page-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    display: block;
}

.page-hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============ SECTIONS ============ */
.page-section {
    padding: 80px 0;
}

.page-section h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
    text-align: center;
}

.page-section h2 + p {
    text-align: center;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* ============ SERVICES ============ */
.services {
    padding: 80px 0 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
    padding-top: 30px;
}

.services-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.services-header p {
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.8;
}

.services-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10rem;
    font-weight: 700;
    color: rgba(9, 20, 50, 0.03);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 15px;
    pointer-events: none;
    font-family: 'Montserrat', sans-serif;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
    z-index: 2;
}

.service-card {
    background: var(--cream);
    padding: 45px 30px;
    text-align: center;
    border: 1px solid #f0ede8;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 280px;
}

.service-card:hover {
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    z-index: 2;
}

.service-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--gold);
    background: rgba(184, 142, 49, 0.1);
    border-radius: 50%;
}

.service-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 10px;
    display: block;
}

.service-card h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.service-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.7;
}

.service-link {
    margin-top: 15px;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--gold-dark);
    transform: translateX(5px);
}

.service-image {
    height: 100%;
    min-height: 280px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============ DESTINATIONS ============ */
.destinations {
    padding: 80px 0;
    background: var(--light-bg);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.destination-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.destination-flag {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.destination-card h3 {
    color: var(--primary);
    margin-bottom: 8px;
}

.destination-card p {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ============ PROCESS ============ */
.process {
    padding: 80px 0;
    background: var(--white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    background: var(--cream);
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.process-step::after {
    content: '→';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: var(--gold);
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 10px;
}

.process-step h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ============ RDV ============ */
.rdv {
    padding: 80px 0;
    background: var(--primary);
    color: var(--white);
}

.rdv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.rdv-left h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--white);
}

.rdv-left > p {
    opacity: 0.85;
    margin-bottom: 25px;
    line-height: 1.8;
}

.rdv-arguments {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rdv-arguments li {
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0.9;
}

.rdv-arguments i {
    color: var(--gold);
    font-size: 1.1rem;
}

/* Formulaire RDV */
.rdv-form {
    background: var(--white);
    padding: 35px;
    border-radius: 8px;
    color: var(--text);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(184, 142, 49, 0.1);
}

.rdv-form .btn {
    width: 100%;
    margin-top: 10px;
}

/* ============ SOCIAL ============ */
.social {
    padding: 80px 0;
    background: var(--light-bg);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.social-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.social-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.social-card h3 {
    color: var(--primary);
    margin-bottom: 5px;
}

.social-account {
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 10px;
}

.social-stats {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.social-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

.social-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--gold);
    font-weight: 600;
    transition: var(--transition);
}

.social-link:hover {
    color: var(--gold-dark);
}

/* ============ STATS ============ */
.stats {
    padding: 60px 0;
    background: var(--primary);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item .stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
}

.stat-item .stat-label {
    font-size: 1rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============ FOOTER ============ */
.footer {
    background: var(--primary);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--white);
    font-weight: 600;
}

.footer-col p,
.footer-col li {
    font-size: 0.85rem;
    line-height: 1.8;
    opacity: 0.85;
    margin-bottom: 8px;
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--gold);
}

.footer-contact li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.footer-contact i {
    margin-top: 5px;
    color: var(--gold);
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
}

.footer-copyright {
    font-size: 0.8rem;
    opacity: 0.7;
    text-align: center;
}

.footer-links {
    display: flex;
    gap: 10px;
    font-size: 0.8rem;
    opacity: 0.7;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--gold);
}

/* ============ PAGE - VISA TRAVAIL ============ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.feature-card h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

.steps-list {
    max-width: 800px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

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

.step-item .step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    font-weight: 700;
    flex-shrink: 0;
}

.step-item h3 {
    color: var(--primary);
    margin-bottom: 5px;
}

.step-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Packs */
.packs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.pack-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 2px solid #eee;
    transition: var(--transition);
}

.pack-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.pack-card.featured {
    border-color: var(--gold);
    background: var(--cream);
}

.pack-card.vip {
    border-color: var(--gold);
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
}

.pack-card.vip h3 {
    color: var(--gold);
}

.pack-card.vip ul {
    color: rgba(255,255,255,0.85);
}

.pack-card h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 15px;
    text-align: center;
}

.pack-card ul {
    margin-bottom: 20px;
}

.pack-card ul li {
    padding: 5px 0;
    font-size: 0.85rem;
    line-height: 1.6;
}

.pack-card .btn {
    width: 100%;
    text-align: center;
}

.recommended {
    text-align: center;
    color: var(--gold);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.notice-box {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--gold);
    max-width: 800px;
    margin: 0 auto;
}

.notice-box h3 {
    margin-bottom: 10px;
}

/* ============ PAGE - ÉTUDES ============ */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.partner-card {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.partner-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.partner-card h3 {
    color: var(--primary);
    margin-bottom: 5px;
}

.partner-card p {
    font-size: 0.85rem;
    color: var(--text-light);
}

.destinations-study {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.study-dest {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.study-dest i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.study-dest h3 {
    color: var(--primary);
    margin-bottom: 5px;
}

.study-dest p {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ============ PAGE - MOBILITE FAMILIALE ============ */
.services-list {
    max-width: 800px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    align-items: flex-start;
}

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

.service-item i {
    font-size: 1.5rem;
    margin-top: 5px;
}

.service-item h3 {
    color: var(--primary);
    margin-bottom: 5px;
}

.service-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ============ PAGE - ENTRETIENS ============ */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.case-card {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.case-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.case-card i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.case-card p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.formats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.format-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.format-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.format-card h3 {
    color: var(--primary);
    margin: 10px 0 5px;
}

.format-card p {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ============ PAGE - FORMATIONS ============ */
.training-card {
    background: var(--white);
    padding: 25px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 20px;
    border-left: 4px solid var(--gold);
    transition: var(--transition);
}

.training-card:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.training-card h3 {
    color: var(--primary);
    margin-bottom: 8px;
}

.training-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ============ PAGE - ANALYSE PROFIL ============ */
.analyse-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.analyse-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.analyse-content li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    padding: 8px 0;
}

.analyse-content i {
    font-size: 1.2rem;
}

.analyse-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.analyse-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.analyse-step .step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    font-weight: 700;
    flex-shrink: 0;
}

.analyse-step h3 {
    color: var(--primary);
    margin-bottom: 3px;
}

.analyse-step p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Formulaire analyse */
.analyse-form {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* ============ PAGE - CONTACT ============ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-details li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-details i {
    width: 20px;
    text-align: center;
    margin-top: 4px;
}

.contact-form {
    background: var(--white);
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.contact-form h2 {
    text-align: left;
}

/* ============ PAGE - FAQ ============ */
.faq-section {
    margin-bottom: 40px;
}

.faq-section h2 {
    text-align: left;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.faq-item {
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 18px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    transition: var(--transition);
    font-weight: 600;
}

.faq-question:hover {
    background: var(--cream);
}

.faq-question i {
    transition: var(--transition);
}

.faq-answer {
    display: none;
    padding: 0 25px 20px;
    background: var(--cream);
    line-height: 1.8;
    color: var(--text-light);
}

/* ============ PAGE - TEMOIGNAGES ============ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: center;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 auto 15px;
}

.testimonial-card h3 {
    color: var(--primary);
    margin-bottom: 3px;
}

.testimonial-dest {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.85rem;
}

.testimonial-service {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    font-style: italic;
}

.testimonial-date {
    margin-top: 15px;
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ============ PAGE - BLOG ============ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.blog-content {
    padding: 20px;
}

.blog-category {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 8px;
}

.blog-content h3 {
    color: var(--primary);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.blog-date {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.blog-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 15px;
}

.blog-link {
    color: var(--gold);
    font-weight: 600;
    transition: var(--transition);
}

.blog-link:hover {
    color: var(--gold-dark);
}

/* ============ PAGE - LEGAL ============ */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    text-align: left;
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 20px;
}

.legal-content ul li {
    color: var(--text-light);
    line-height: 1.8;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .destinations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .packs-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }
    
    .top-bar {
        display: none;
    }
    
    .header {
        top: 0;
        padding: 10px 0;
    }
    
    .header.hidden {
        transform: translateY(-100%);
    }
    
    .nav-desktop {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .btn-rdv-fixed {
        display: none;
    }
    
    /* ===== LOGO RESPONSIVE ===== */
    .logo-image {
        height: 50px;
        max-height: 50px;
    }
    
    .header.shrink .logo-image {
        height: 40px;
        max-height: 40px;
    }
    
    .hero {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .hero-nav button {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .hero-nav {
        padding: 0 10px;
    }
    
    .hero-dots {
        bottom: 20px;
        gap: 8px;
    }
    
    .hero-dots .dot {
        width: 10px;
        height: 10px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .services-bg-text {
        font-size: 4rem;
    }
    
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .process-step::after {
        display: none;
    }
    
    .rdv-grid {
        grid-template-columns: 1fr;
    }
    
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .page-section {
        padding: 50px 0;
    }
    
    .page-section h2 {
        font-size: 1.6rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .packs-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .destinations-study {
        grid-template-columns: 1fr;
    }
    
    .cases-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .formats-grid {
        grid-template-columns: 1fr;
    }
    
    .analyse-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .analyse-form {
        padding: 20px;
    }
    
    .rdv-form {
        padding: 20px;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-item .stat-number {
        font-size: 2.5rem;
    }
    
    /* Footer logo responsive */
    .footer-logo-image {
        height: 60px;
        max-height: 60px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-nav button {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
    
    .hero-nav {
        padding: 0 5px;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .cases-grid {
        grid-template-columns: 1fr;
    }
    
    .page-hero-buttons {
        flex-direction: column;
    }
    
    .page-hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    /* Logo mobile */
    .logo-image {
        height: 40px;
        max-height: 40px;
    }
    
    .header.shrink .logo-image {
        height: 35px;
        max-height: 35px;
    }
    
    .footer-logo-image {
        height: 50px;
        max-height: 50px;
    }
}

/* ============ ANIMATION FADE IN ============ */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============ BADGE ============ */
.badge-gold {
    background: var(--gold);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

/* ============ LISTE AVEC ICÔNES ============ */
.list-check {
    list-style: none;
    padding: 0;
}

.list-check li {
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.list-check li i {
    color: var(--gold);
    margin-top: 4px;
    flex-shrink: 0;
}

/* ============ GRILLE 2 COLONNES ============ */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

/* ============ ESPACEMENTS ============ */
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-primary { color: var(--primary); }

/* ============ DESTINATION HERO ============ */
.destination-hero {
    padding: 100px 0 60px;
    background: var(--primary);
    color: var(--white);
    text-align: center;
    margin-top: 0;
}

.destination-hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.destination-hero p {
    font-size: 1.1rem;
    opacity: 0.85;
    max-width: 700px;
    margin: 0 auto;
}

.destination-hero .breadcrumb {
    margin-top: 20px;
    font-size: 0.85rem;
    opacity: 0.7;
}

.destination-hero .breadcrumb a {
    color: var(--gold);
}

/* ============ BG PRIMARY LIGHT ============ */
.bg-primary-light {
    background: var(--cream);
}

/* ============ CARD GOLD BORDER ============ */
.card-gold-border {
    border: 2px solid var(--gold);
    border-radius: 8px;
    padding: 30px;
    background: var(--white);
}

/* ============ FORM MESSAGE ============ */
.form-message {
    padding: 12px 20px;
    border-radius: 4px;
    margin-top: 15px;
    display: none;
}

.form-message.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ============ SPINNER ============ */
.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: var(--gold);
    animation: spin 0.8s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============ PAGE - À PROPOS ============ */

/* Grille des fondateurs */
.founders-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.founder-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
    border-top: 4px solid var(--gold);
}

.founder-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.founder-card h3 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.founder-card h3::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--gold);
    margin-top: 8px;
}

.founder-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 12px;
}

.founder-card p:last-child {
    margin-bottom: 0;
}

/* Grille des valeurs */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.value-card {
    background: var(--white);
    padding: 30px 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.value-card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.value-card h3 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.value-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

/* Partenaires - amélioration */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.partner-card {
    background: var(--white);
    padding: 20px 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70px;
}

.partner-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid var(--gold);
}

/* Responsive pour la page À Propos */
@media (max-width: 1024px) {
    .founders-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .founders-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .founder-card {
        padding: 25px 20px;
    }
    
    .values-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .value-card {
        padding: 25px 20px;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .partner-card {
        padding: 15px 20px;
        font-size: 0.85rem;
        min-height: 60px;
    }
}

@media (max-width: 480px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .partners-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .partner-card {
        padding: 12px 15px;
        font-size: 0.8rem;
        min-height: 50px;
    }
    
    .founder-card h3 {
        font-size: 1.1rem;
    }
}

/* Widget GTranslate (dropdown) : sélecteur de langue visible, intégré sobrement
   dans la top-bar à droite. */
.gtranslate_wrapper {
    display: inline-flex;
    align-items: center;
}
body { top: 0 !important; }

/* ============================================
   NOUVEAUX STYLES - Mise à jour 2026
   ============================================ */

/* --- Horaires --- */
.hours {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hours i {
    color: var(--white);
}

/* --- Amélioration contraste footer logo --- */
.footer-logo-image {
    filter: none !important;
    transition: var(--transition);
}

.footer-logo-image:hover {
    filter: none !important;
}

/* --- Grille des fondateurs améliorée --- */
.founders-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.founder-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
    border-top: 4px solid var(--gold);
}

.founder-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.founder-card h3 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.founder-card h3::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--gold);
    margin-top: 8px;
}

.founder-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 12px;
}

.founder-card p:last-child {
    margin-bottom: 0;
}

/* --- Responsive fondateurs --- */
@media (max-width: 768px) {
    .founders-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .founder-card {
        padding: 25px 20px;
    }
}

/* Partners Grid */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.partner-card {
    background: var(--white);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 150px;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.partner-card img {
    max-width: 80%;
    max-height: 80px;
    object-fit: contain;
    margin-bottom: 12px;
}

.partner-card span {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--primary);
    text-align: center;
}