/* ============================================================
   FORIPEX — Feuille de style commune
   Palette : Bleu nuit (#0A2540) + Or (#B89047)
   ============================================================ */

/* --- Reset & Variables --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary-blue: #0A2540;
    --primary-blue-hover: #12375C;
    --accent-gold: #B89047;
    --accent-gold-hover: #9E7934;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #F8F9FA;
    --white: #FFFFFF;
    --border-color: #E2E8F0;
    --footer-dark: #0d2137;
    --footer-darker: #0a1b2b;
    --max-width: 1200px;
    --font: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* Image de contenu (placeholder brandé — remplaçable par une vraie photo) */
.img-ph {
    background: linear-gradient(135deg, #123a5c 0%, #0A2540 100%);
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    padding: 20px;
    font-size: 13px;
    letter-spacing: 0.5px;
    min-height: 200px;
    width: 100%;
    height: 100%;
}

.img-ph .ph-emoji {
    font-size: 40px;
    line-height: 1;
}

.img-ph .ph-label {
    text-transform: uppercase;
    font-size: 11px;
    opacity: 0.8;
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    gap: 15px;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 800;
    font-size: 24px;
    color: #0C3060; /* navy exact du logo */
    letter-spacing: 1px;
    flex-shrink: 0;
}

.logo span {
    color: #97A0AC; /* gris du logo (au lieu du doré) */
}

.logo-icon {
    width: 32px;
    height: 32px;
    margin-right: 10px;
    background: var(--primary-blue);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
    font-size: 18px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 22px;
}

.main-nav a {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    transition: color 0.3s;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--accent-gold);
    border-bottom-color: var(--accent-gold);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.lang-select {
    font-weight: 600;
    font-size: 14px;
    color: var(--primary-blue);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.btn-quote {
    background-color: var(--accent-gold);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    transition: background-color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    text-transform: uppercase;
}

.btn-quote:hover {
    background-color: var(--accent-gold-hover);
}

/* Bouton burger (masqué sur desktop) */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--primary-blue);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

body.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   BOUTONS GÉNÉRIQUES
   ============================================================ */
.btn-more,
.btn-cta-gold,
.btn-categories {
    display: inline-block;
    background-color: var(--accent-gold);
    color: var(--white);
    padding: 12px 25px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 4px;
    transition: background-color 0.3s;
    text-transform: uppercase;
    white-space: nowrap;
}

.btn-more:hover,
.btn-cta-gold:hover,
.btn-categories:hover {
    background-color: var(--accent-gold-hover);
}

/* ============================================================
   HERO (bannière) — fond dégradé bleu
   ============================================================ */
.hero {
    position: relative;
    background: linear-gradient(to right, rgba(10, 37, 64, 0.92) 40%, rgba(10, 37, 64, 0.55) 100%),
        radial-gradient(circle at 80% 30%, #1b4b74 0%, #0A2540 60%);
    background-size: cover;
    background-position: center;
    min-height: 480px;
    display: flex;
    align-items: center;
    color: var(--white);
    padding: 60px 20px;
}

.hero-content {
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
}

.hero-text {
    max-width: 560px;
}

.breadcrumbs {
    font-size: 12px;
    text-transform: uppercase;
    color: #94A3B8;
    margin-bottom: 18px;
    letter-spacing: 1px;
}

.breadcrumbs span {
    color: var(--accent-gold);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--accent-gold);
}

.hero h1 {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.hero h1 span {
    color: var(--accent-gold);
}

.hero .subtitle {
    font-size: 18px;
    color: var(--accent-gold);
    margin-bottom: 22px;
    font-weight: 600;
}

.hero .subtitle.light {
    color: #E2E8F0;
}

.hero-divider {
    width: 60px;
    height: 3px;
    background-color: var(--accent-gold);
    margin-bottom: 22px;
}

.hero p.description,
.hero-description {
    font-size: 15px;
    color: #CBD5E1;
    margin-bottom: 22px;
    line-height: 1.7;
    max-width: 560px;
}

.hero-bullets {
    list-style: none;
}

.hero-bullets li {
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #F1F5F9;
}

.hero-bullets li::before {
    content: "\2713";
    color: var(--accent-gold);
    font-weight: bold;
}

.hero-commitment {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white);
    letter-spacing: 1px;
    border-left: 2px solid var(--accent-gold);
    padding-left: 15px;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 25px 20px;
    border-bottom: 4px solid var(--accent-gold);
}

.stats-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    font-size: 32px;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.stat-info h3,
.stat-text h3 {
    font-size: 24px;
    font-weight: 700;
}

.stat-info p,
.stat-text p {
    font-size: 12px;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Variante encadrée (page À propos) */
.stats-section {
    padding: 0 20px;
    margin: 60px auto;
}

.stats-box {
    max-width: var(--max-width);
    margin: 0 auto;
    background-color: var(--primary-blue);
    border-radius: 8px;
    padding: 30px 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stats-box .stat-item {
    color: var(--white);
}

.stats-box .stat-icon {
    font-size: 28px;
}

/* ============================================================
   SECTIONS GÉNÉRIQUES
   ============================================================ */
.section {
    padding: 80px 20px;
}

.section-title-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.section-title-center h2 {
    font-size: 24px;
    color: var(--primary-blue);
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.section-title-center p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
}

/* --- Engagement Qualité (accueil) --- */
.quality-section {
    padding: 80px 20px;
}

.quality-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.quality-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.quality-left h2 {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
    padding-bottom: 15px;
}

.quality-left h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent-gold);
}

.quality-left p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.btn-more {
    align-self: flex-start;
}

.quality-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.quality-card {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--border-color);
    transition: transform 0.3s, border-left-color 0.3s;
}

.quality-card:hover {
    transform: translateY(-5px);
    border-left-color: var(--accent-gold);
}

.card-icon {
    width: 50px;
    height: 50px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    font-size: 20px;
}

.quality-card h4 {
    font-size: 16px;
    color: var(--primary-blue);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.quality-card p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

/* --- Bandeau accent (accueil bas) --- */
.footer-bar {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 30px 20px;
}

.footer-bar-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bar-container h3 {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

/* ============================================================
   PAGE À PROPOS
   ============================================================ */
.history-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 60px;
    align-items: start;
}

.history-left h2 {
    font-size: 26px;
    color: var(--primary-blue);
    margin-bottom: 25px;
    text-transform: uppercase;
}

.history-left h2 span,
.block-title span,
.history-left span {
    color: var(--accent-gold);
}

.history-left p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.history-right {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.history-badge {
    background-color: var(--bg-light);
    padding: 30px 15px;
    border-radius: 8px;
    transition: transform 0.3s;
    border: 1px solid var(--border-color);
}

.history-badge:hover {
    transform: translateY(-5px);
}

.badge-icon {
    font-size: 28px;
    margin-bottom: 15px;
}

.history-badge h4 {
    font-size: 13px;
    color: var(--primary-blue);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.history-badge p {
    font-size: 11px;
    color: var(--text-light);
    line-height: 1.5;
}

/* Mission / Vision / Valeurs */
.mission-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
}

.gallery-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.gallery-grid .main-img .img-ph {
    height: 280px;
    border-radius: 6px;
}

.thumb-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.thumb-row .img-ph {
    height: 100px;
    border-radius: 6px;
    min-height: 0;
}

.thumb-row .img-ph .ph-emoji {
    font-size: 24px;
}

.mission-right {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.block-title {
    font-size: 16px;
    color: var(--primary-blue);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.block-divider {
    width: 40px;
    height: 2px;
    background-color: var(--accent-gold);
    margin-bottom: 12px;
}

.mission-right p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
}

.values-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 15px;
}

.value-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--bg-light);
    padding: 10px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

.value-tag .v-icon {
    color: var(--accent-gold);
    font-size: 14px;
}

.value-tag .v-text {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-blue);
    text-transform: uppercase;
}

/* ============================================================
   CTA BOX (bas de page interne)
   ============================================================ */
.cta-footer-section {
    padding: 20px 20px 70px 20px;
}

.cta-box {
    max-width: var(--max-width);
    margin: 0 auto;
    background: linear-gradient(rgba(10, 37, 64, 0.92), rgba(10, 37, 64, 0.92)),
        radial-gradient(circle at 70% 50%, #1b4b74 0%, #0A2540 70%);
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    padding: 50px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cta-text h2 {
    color: var(--white);
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.cta-text p {
    color: #94A3B8;
    font-size: 14px;
    max-width: 600px;
}

/* ============================================================
   PAGE SERVICES
   ============================================================ */
.services-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-row {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 40px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s;
}

.service-row:hover {
    transform: translateY(-2px);
}

.service-img,
.service-img .img-ph {
    min-height: 100%;
}

.service-details {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

.service-header {
    display: flex;
    align-items: start;
    gap: 20px;
    margin-bottom: 20px;
}

.service-num-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.service-title h3 {
    font-size: 18px;
    color: var(--primary-blue);
    text-transform: uppercase;
    margin-bottom: 5px;
}

.service-title p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

.breeds-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 25px 0;
    border-top: 1px solid #EDF2F7;
    padding-top: 20px;
}

.breed-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.breed-icon {
    font-size: 24px;
    line-height: 1;
}

.breed-name {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
}

.breed-desc {
    font-size: 10px;
    color: var(--text-light);
}

.service-badge-note {
    background-color: var(--bg-light);
    padding: 12px 15px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-left: 3px solid var(--accent-gold);
}

.service-badge-note .icon {
    font-size: 16px;
    flex-shrink: 0;
}

.service-badge-note p {
    font-size: 12px;
    color: var(--primary-blue);
    font-weight: 600;
}

/* Engagement */
.engagement-section {
    background-color: var(--bg-light);
    padding: 70px 20px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.engagement-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.engagement-title {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-blue);
    text-transform: uppercase;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.engagement-content {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 40px;
    align-items: center;
}

.engagement-img .img-ph {
    border-radius: 8px;
    min-height: 280px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

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

.engagement-card {
    background-color: var(--white);
    padding: 25px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
}

.eng-card-icon {
    font-size: 22px;
    margin-bottom: 15px;
}

.engagement-card h4 {
    font-size: 13px;
    color: var(--primary-blue);
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.engagement-card p {
    font-size: 11px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================================
   PAGE TRANSPORT
   ============================================================ */
.features-bar {
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
    padding: 30px 20px;
}

.features-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.feature-box {
    display: flex;
    align-items: start;
    gap: 15px;
}

.feat-icon {
    font-size: 20px;
    margin-top: 3px;
    flex-shrink: 0;
}

.feat-text h4 {
    font-size: 12px;
    color: var(--primary-blue);
    text-transform: uppercase;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.feat-text p {
    font-size: 11px;
    color: var(--text-light);
    line-height: 1.5;
}

.methods-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.method-row {
    display: grid;
    grid-template-columns: 380px 1fr 240px;
    gap: 30px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s;
    text-align: left;
}

.method-row:hover {
    transform: translateY(-2px);
}

.method-img .img-ph {
    min-height: 100%;
}

.method-details {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.method-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.method-num {
    width: 32px;
    height: 32px;
    background-color: var(--primary-blue);
    color: var(--white);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.method-header h3 {
    font-size: 16px;
    color: var(--primary-blue);
    text-transform: uppercase;
}

.method-details .desc {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.bullets-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bullets-list li {
    font-size: 11px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.bullets-list li::before {
    content: "\2713";
    color: var(--accent-gold);
    font-weight: bold;
    font-size: 13px;
}

.method-sidebar {
    background-color: var(--bg-light);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    border-left: 1px solid var(--border-color);
}

.side-block {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.side-icon {
    font-size: 20px;
    margin-bottom: 3px;
}

.side-block h5 {
    font-size: 10px;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.side-block p {
    font-size: 11px;
    color: var(--text-light);
    line-height: 1.4;
}

/* ============================================================
   PAGE NOTRE RÉSEAU
   ============================================================ */
.presence-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.presence-row {
    display: grid;
    grid-template-columns: 350px 1fr;
    background-color: var(--primary-blue);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
    color: var(--white);
}

.presence-sidebar {
    padding: 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-title-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.sidebar-icon {
    font-size: 30px;
}

.sidebar-title h3 {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sidebar-title p {
    font-size: 11px;
    color: var(--accent-gold);
    text-transform: uppercase;
    font-weight: 700;
}

.countries-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.countries-list.single-col {
    grid-template-columns: 1fr;
}

.countries-list li {
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.flag {
    font-size: 16px;
}
.countries-list .fi {
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.presence-map-area {
    background: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.03) 0 12px, transparent 12px 24px),
        radial-gradient(circle at 50% 50%, #123a5c 0%, #0A2540 70%);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.2);
    font-size: 60px;
}

.ambition-section {
    padding: 70px 20px;
    background-color: var(--bg-light);
    text-align: center;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.ambition-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.ambition-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 160px;
    gap: 20px;
    text-align: left;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.ambition-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.ambition-icon {
    font-size: 24px;
}

.ambition-header h3 {
    font-size: 14px;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ambition-header h3 span {
    color: var(--accent-gold);
}

.ambition-details .desc {
    font-size: 11px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.ambition-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ambition-bullets li {
    font-size: 11px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.ambition-bullets li::before {
    content: "\2713";
    color: var(--accent-gold);
    font-weight: bold;
}

.ambition-map .img-ph {
    border-radius: 6px;
    min-height: 140px;
}

.qualities-bar {
    background-color: var(--white);
    padding: 50px 20px;
}

.qualities-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.quality-item {
    display: flex;
    align-items: start;
    gap: 15px;
    text-align: left;
}

.q-icon {
    font-size: 22px;
    margin-top: 3px;
    flex-shrink: 0;
}

.q-text h4 {
    font-size: 12px;
    color: var(--primary-blue);
    text-transform: uppercase;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.q-text p {
    font-size: 11px;
    color: var(--text-light);
    line-height: 1.5;
}

/* ============================================================
   PAGE CONTACT
   ============================================================ */
.contact-hero {
    background: linear-gradient(rgba(10, 37, 64, 0.9), rgba(10, 37, 64, 0.9)),
        radial-gradient(circle at 20% 30%, #1b4b74 0%, #0A2540 70%);
    background-size: cover;
    background-position: center;
    padding: 60px 20px;
}

.contact-hero-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

.info-col {
    color: var(--white);
}

.info-col h1 {
    font-size: 32px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.info-col .subtitle {
    font-size: 18px;
    color: var(--accent-gold);
    margin-bottom: 25px;
}

.p-intro {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
    font-size: 14px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 22px;
}

.info-icon {
    width: 30px;
    text-align: center;
    margin-right: 15px;
    font-size: 18px;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 3px;
}

.info-content p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.highlight-time {
    color: var(--accent-gold);
    font-weight: 600;
}

.social-follow {
    margin-top: 35px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-follow p {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 13px;
}

.social-follow a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: background-color 0.3s, transform 0.3s;
}

.social-follow a:hover {
    background-color: var(--accent-gold);
    transform: translateY(-2px);
}

.form-col {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.form-col h2 {
    font-size: 18px;
    margin-bottom: 25px;
    text-transform: uppercase;
    color: var(--primary-blue);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 25px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / span 2;
}

.form-col label {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    color: #555;
    margin-bottom: 5px;
}

.form-col label span {
    color: #d33;
}

.form-col input,
.form-col select,
.form-col textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #e2e2e2;
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
}

.form-col input:focus,
.form-col select:focus,
.form-col textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
}

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

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 11px;
    color: #555;
    margin-bottom: 25px;
}

.checkbox-container input {
    width: auto;
    margin-top: 2px;
}

.submit-container {
    text-align: right;
}

.btn-send {
    background-color: var(--accent-gold);
    color: var(--white);
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
}

.btn-send:hover {
    background-color: var(--accent-gold-hover);
}

.form-note {
    margin-top: 15px;
    font-size: 12px;
    padding: 10px;
    border-radius: 4px;
    display: none;
}

.form-note.success {
    display: block;
    background: #e6f4ea;
    color: #1e7e34;
}

.form-note.error {
    display: block;
    background: #fdecea;
    color: #c0392b;
}

/* Avantages */
.advantages-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.advantage-item {
    padding: 25px 20px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: transform 0.3s;
}

.advantage-item:hover {
    transform: translateY(-5px);
}

.adv-icon {
    font-size: 24px;
    margin-bottom: 15px;
}

.advantage-item h3 {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--primary-blue);
}

.advantage-item p {
    font-size: 12px;
    color: var(--text-light);
}

/* ============================================================
   FOOTER GLOBAL
   ============================================================ */
.site-footer {
    background-color: var(--footer-dark);
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.2fr 1.3fr 1fr 1fr;
    gap: 40px;
    padding: 60px 20px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.footer-col h3 {
    color: var(--accent-gold);
    text-transform: uppercase;
    font-size: 16px;
    margin-bottom: 22px;
    font-weight: 700;
}

.footer-col .logo {
    color: var(--white);
    margin-bottom: 15px;
}

.footer-about {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

.contact-list,
.footer-links {
    list-style: none;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
    line-height: 1.6;
    font-size: 13px;
    gap: 12px;
}

.contact-list li .ic {
    color: var(--accent-gold);
    font-size: 16px;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s;
    font-size: 13px;
}

.footer-links a::before {
    content: "\203A";
    color: var(--accent-gold);
    font-weight: bold;
}

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

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 5px;
}

.social-icons a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: background-color 0.3s, transform 0.3s;
}

.social-icons a:hover {
    background-color: var(--accent-gold);
    transform: translateY(-2px);
}

.social-icons svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-bottom {
    background-color: var(--footer-darker);
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    margin-left: 20px;
    transition: color 0.3s;
}

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

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .quality-container,
    .history-container,
    .mission-container,
    .engagement-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

    .service-row,
    .method-row,
    .presence-row,
    .ambition-card {
        grid-template-columns: 1fr;
    }

    .service-img .img-ph,
    .method-img .img-ph {
        min-height: 250px;
    }

    .method-sidebar {
        border-left: none;
        border-top: 1px solid var(--border-color);
        flex-direction: row;
        justify-content: space-between;
    }

    .presence-sidebar {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .ambition-grid,
    .qualities-container,
    .features-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .ambition-map {
        display: none;
    }

    .contact-hero-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Navigation mobile */
    .nav-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 78%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--white);
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
        transform: translateX(100%);
        transition: transform 0.3s ease;
        padding: 90px 30px 170px;
        z-index: 1200;
        overflow-y: auto;
    }

    body.nav-open .main-nav {
        transform: translateX(0);
    }

    .main-nav ul {
        flex-direction: column;
        gap: 5px;
    }

    .main-nav a {
        display: block;
        padding: 14px 0;
        border-bottom: 1px solid var(--border-color);
        font-size: 15px;
    }

    .main-nav a:hover,
    .main-nav a.active {
        border-bottom-color: var(--border-color);
    }

    /* Actions ancrées en bas du panneau mobile */
    .header-actions {
        position: fixed;
        bottom: 0;
        right: 0;
        width: 78%;
        max-width: 320px;
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
        padding: 20px 30px 30px;
        background-color: var(--white);
        border-top: 1px solid var(--border-color);
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 1250;
        pointer-events: none;
    }

    body.nav-open .header-actions {
        transform: translateX(0);
        pointer-events: auto;
    }

    .btn-quote {
        justify-content: center;
    }

    /* Overlay */
    .nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s;
        z-index: 1100;
    }

    body.nav-open .nav-overlay {
        opacity: 1;
        visibility: visible;
    }

    .nav-toggle {
        position: relative;
        z-index: 1300;
    }

    /* L'en-tête (qui contient le menu) doit passer AU-DESSUS de l'overlay
       quand le menu est ouvert, sinon les liens ne sont pas cliquables. */
    body.nav-open header {
        z-index: 1300;
    }

    body.nav-open {
        overflow: hidden;
    }

    /* Contenu */
    .hero h1 {
        font-size: 32px;
    }

    .hero {
        min-height: 420px;
    }

    .stats-container,
    .stats-box,
    .history-right,
    .quality-right,
    .engagement-grid,
    .features-container,
    .ambition-grid,
    .qualities-container,
    .advantages-container,
    .form-grid,
    .footer-main {
        grid-template-columns: 1fr;
    }

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

    .countries-list {
        grid-template-columns: 1fr;
    }

    .form-group.full-width,
    .form-col textarea {
        grid-column: auto;
    }

    .method-sidebar {
        flex-direction: column;
    }

    .footer-bar-container,
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-bottom-links a {
        margin: 0 10px;
    }

    .service-details {
        padding: 30px 25px;
    }

    .cta-box,
    .form-col {
        padding: 35px 25px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }

    .values-list {
        grid-template-columns: 1fr;
    }

    .breeds-row {
        justify-content: space-around;
    }
}

/* ============================================================
   IMAGES DU CAHIER DES CHARGES — bannières & fonds
   ============================================================ */
.hero--accueil {
    background-image: linear-gradient(to right, rgba(10, 37, 64, 0.9) 38%, rgba(10, 37, 64, 0.45) 100%),
        url('../img/hero-accueil.jpg');
}
.hero--apropos {
    background-image: linear-gradient(to right, rgba(10, 37, 64, 0.92) 35%, rgba(10, 37, 64, 0.5) 100%),
        url('../img/hero-apropos.jpg');
}
.hero--services {
    background-image: linear-gradient(to right, rgba(10, 37, 64, 0.92) 35%, rgba(10, 37, 64, 0.5) 100%),
        url('../img/hero-services.jpg');
}
.hero--transport {
    background-image: linear-gradient(to right, rgba(10, 37, 64, 0.92) 35%, rgba(10, 37, 64, 0.5) 100%),
        url('../img/hero-transport.jpg');
}
.hero--reseau {
    background-image: linear-gradient(to right, rgba(10, 37, 64, 0.94) 40%, rgba(10, 37, 64, 0.7) 100%),
        url('../img/hero-reseau.jpg');
}

/* Bannière contact — calque allégé pour voir la photo */
.contact-hero {
    background-image: linear-gradient(rgba(10, 37, 64, 0.78), rgba(10, 37, 64, 0.78)),
        url('../img/hero-contact.jpg');
}

/* Encadrés CTA (carte du monde) — calque allégé pour voir la carte */
.cta-box {
    background-image: linear-gradient(rgba(10, 37, 64, 0.7), rgba(10, 37, 64, 0.7)),
        url('../img/world-map.jpg');
}

/* Photos de contenu (remplacent les placeholders) */
.content-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 200px;
}
.gallery-grid .main-img .content-img { height: 280px; border-radius: 6px; min-height: 0; }
.service-img .content-img,
.method-img .content-img { min-height: 250px; }
.engagement-img .content-img { border-radius: 8px; min-height: 280px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.ambition-map .content-img { border-radius: 6px; min-height: 140px; max-height: 200px; }

/* Cartes de présence (Europe / Afrique) en fond */
.presence-map-area {
    font-size: 0;
    color: transparent;
    background-size: cover;
    background-position: center;
}
.presence-map-area.map-europe  { background-image: url('../img/map-europe.jpg'); }
.presence-map-area.map-afrique { background-image: url('../img/map-afrique.jpg'); }

/* ============================================================
   VRAI LOGO (icône FORIPEX) dans l'en-tête et le pied de page
   ============================================================ */
.logo-mark {
    height: 32px;
    width: auto;
    margin-right: 10px;
    display: block;
    flex-shrink: 0;
}
/* Version blanche sur le pied de page sombre */
.site-footer .logo-mark {
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

/* ============================================================
   MOD-11 — Races : nom en grand, sans icône de vache
   ============================================================ */
.breed-icon { display: none; }
.breeds-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}
.breed-item {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 2px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-left: 3px solid var(--accent-gold);
    border-radius: 6px;
    padding: 10px 16px;
}
.breed-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-blue);
    text-transform: none;
    letter-spacing: 0.3px;
}
.breed-desc { font-size: 11px; color: var(--text-light); }

/* ============================================================
   MOD-06 — Sélecteur de langue (FR / EN / EE) avec drapeau
   ============================================================ */
.lang-switch { position: relative; }
.lang-current {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    color: var(--primary-blue);
    font-family: inherit;
    padding: 4px 2px;
}
.lang-current .caret { font-size: 10px; transition: transform 0.2s; }
.lang-switch.open .lang-current .caret { transform: rotate(180deg); }
.lang-flag {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    object-fit: cover;
    display: inline-block;
    vertical-align: middle;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}
.lang-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    list-style: none;
    min-width: 160px;
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    z-index: 1400;
}
.lang-switch.open .lang-menu { opacity: 1; visibility: visible; transform: none; }
.lang-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 4px;
    font-size: 14px;
    color: var(--primary-blue);
}
.lang-menu a:hover { background: var(--bg-light); }
.lang-menu a.active { font-weight: 700; }

/* ============================================================
   MOD-02 — Page Politique de confidentialité
   ============================================================ */
.legal-hero {
    background: var(--primary-blue);
    color: var(--white);
    padding: 50px 20px;
    border-bottom: 4px solid var(--accent-gold);
}
.legal-hero .breadcrumbs { margin-bottom: 12px; }
.legal-hero h1 { font-size: 32px; text-transform: uppercase; }
.legal-updated { color: #94A3B8; font-size: 13px; margin-top: 6px; }
.legal-content { max-width: 860px; }
.legal-content h2 {
    color: var(--primary-blue);
    font-size: 19px;
    margin: 32px 0 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--border-color);
}
.legal-content p { color: var(--text-light); margin-bottom: 12px; font-size: 14px; line-height: 1.8; }
.legal-content ul { margin: 0 0 16px 22px; color: var(--text-light); font-size: 14px; line-height: 1.8; }
.legal-content li { margin-bottom: 4px; }
.legal-content a { color: var(--accent-gold-hover); text-decoration: underline; }
.legal-content strong { color: var(--text-dark); }

/* ============================================================
   MOD-06 — Sous-menu « Nos Services » (dropdown)
   ============================================================ */
.has-dropdown { position: relative; }
.dd-caret { font-size: 10px; margin-left: 3px; }
.dropdown-menu {
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.2s, transform 0.2s;
    z-index: 1400;
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu,
.has-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
}
.dd-toggle { cursor: pointer; }
.dropdown-menu li a {
    display: block;
    padding: 10px 12px;
    border-radius: 4px;
    text-transform: none;
    border-bottom: none;
    font-size: 14px;
    white-space: nowrap;
    letter-spacing: 0;
}
.dropdown-menu li a:hover,
.dropdown-menu li a.active {
    background: var(--bg-light);
    border-bottom: none;
    color: var(--accent-gold);
}

@media (max-width: 768px) {
    .main-nav .dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        transition: none !important;
        box-shadow: none;
        border: none;
        padding: 0 0 0 16px;
        min-width: 0;
    }
    .main-nav .dropdown-menu li a {
        padding: 12px 0;
        border-bottom: 1px solid var(--border-color);
    }
    .dd-caret { display: none; }
}
