/* =========================================================
   AWARDS DE LA SOUDURE – CÔTE D'IVOIRE
   Palette tirée du logo : #0d1b2e (bleu marine) + #c9a227 (or)
   ========================================================= */

:root {
    --color-primary:        #1a3a5c;
    --color-primary-dark:   #0d1b2e;
    --color-accent:         #c9a227;
    --color-accent-light:   #e0bb4a;
    --color-gold-bright:    #f0d060;
    --color-bg-light:       #f5f3ee;
    --color-text-dark:      #1a1a2e;
    --color-text-light:     #FFFFFF;
    --color-text-muted:     #8A8A8A;
    --font-heading: 'Playfair Display', serif;
    --font-body:    'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

ul { list-style: none; }

/* =========================================================
   HERO LOGO (grand logo centré qui se réduit au scroll)
   ========================================================= */
.hero-logo-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1100;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    /* Transition douce pour height et opacity */
    transition: height 0.5s cubic-bezier(.4,0,.2,1), opacity 0.5s ease;
    height: 220px;
    opacity: 1;
}

.hero-logo-wrap.scrolled {
    height: 0;
    opacity: 0;
}

#heroLogoImg {
    width: auto;
    max-width: 340px;
    height: 180px;
    object-fit: contain;
    filter: drop-shadow(0 8px 40px rgba(201,162,39,0.55));
    transition: height 0.5s cubic-bezier(.4,0,.2,1), max-width 0.5s ease, opacity 0.5s ease;
    pointer-events: none;
}

/* =========================================================
   HEADER
   ========================================================= */
.header {
    background-color: rgba(13, 27, 46, 0.0);
    padding: 18px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: background-color 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}

/* Header visible après scroll */
.header.visible {
    background-color: var(--color-primary-dark);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
    padding: 12px 0;
}

/* Logo header caché au départ, visible au scroll */
.header-logo {
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.header.visible .header-logo {
    opacity: 1;
    pointer-events: auto;
}

/* Nav menu links cachés au départ */
.nav-menu a:not(.cta) {
    opacity: 0;
    transition: opacity 0.4s ease, color 0.3s;
}

.header.visible .nav-menu a:not(.cta) {
    opacity: 1;
}

.nav-menu a.cta {
    opacity: 0;
    transition: opacity 0.4s ease, background-color 0.3s, transform 0.2s;
}

.header.visible .nav-menu a.cta {
    opacity: 1;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.logo-icon i {
    color: white;
    font-size: 16px;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-text {
    color: white;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.1;
    display: block;
}

.logo-sub {
    color: rgba(255,255,255,0.6);
    font-size: 9px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-top: 3px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu a {
    color: rgba(255,255,255,0.85);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--color-accent);
}

.nav-menu a.cta {
    color: var(--color-primary-dark) !important;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
    padding: 10px 18px;
    border-radius: 4px;
    font-weight: 700;
}

.nav-menu a.cta:hover {
    background: linear-gradient(135deg, var(--color-accent-light), var(--color-gold-bright));
    transform: translateY(-2px);
}

/* Bouton hamburger mobile */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 22px;
    cursor: pointer;
    padding: 6px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.header.visible .menu-toggle {
    opacity: 1;
}

/* =========================================================
   OFF-CANVAS MENU MOBILE
   ========================================================= */
.offcanvas {
    position: fixed;
    top: 0;
    right: -340px;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: var(--color-primary-dark);
    z-index: 2000;
    transition: right 0.35s ease;
    overflow-y: auto;
    padding: 24px 0;
    border-left: 1px solid rgba(201,162,39,0.2);
}

.offcanvas.active { right: 0; }

.offcanvas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.offcanvas-close {
    background: transparent;
    border: none;
    color: white;
    font-size: 26px;
    cursor: pointer;
    line-height: 1;
}

.offcanvas-nav {
    padding: 16px 0;
}

.offcanvas-nav li {
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.offcanvas-nav a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 24px;
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.25s;
}

.offcanvas-nav a i {
    color: var(--color-accent);
    width: 20px;
    font-size: 14px;
}

.offcanvas-nav a:hover {
    background: rgba(201, 162, 39, 0.1);
    color: white;
    padding-left: 32px;
}

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

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

/* =========================================================
   HERO SECTION
   ========================================================= */
.hero {
    background: linear-gradient(155deg, #0d1b2e 0%, #1a3a5c 60%, #0d1b2e 100%);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    min-height: 650px;
}

/* Étoile décorative subtile en fond */
.hero::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201,162,39,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero-wave-top {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    z-index: 1;
}

.hero-wave-top svg {
    width: 100%;
    height: 100%;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px 120px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 520px;
}

.hero-label {
    color: var(--color-accent);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-label::before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 1px;
    background: var(--color-accent);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-desc {
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 30px;
}

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

/* =========================================================
   BOUTONS
   ========================================================= */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
    color: var(--color-primary-dark) !important;
    padding: 14px 28px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
    font-family: var(--font-body);
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(201,162,39,0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-accent-light), var(--color-gold-bright));
    color: var(--color-primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201,162,39,0.4);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: transparent;
    color: white !important;
    padding: 14px 28px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(201,162,39,0.5);
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-outline:hover {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
    border-color: var(--color-accent);
    color: var(--color-primary-dark) !important;
}

.btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--color-primary);
    color: white !important;
    padding: 14px 28px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-dark:hover {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
    color: var(--color-primary-dark) !important;
}

/* Hero image */
.hero-image-wrap {
    position: relative;
    height: 450px;
}

.hero-image {
    position: absolute;
    right: -40px;
    top: 0;
    width: 600px;
    height: 420px;
    border-radius: 200px 0 0 200px;
    overflow: hidden;
    border: 2px solid rgba(201,162,39,0.3);
}

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

.hero-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
    color: rgba(255,255,255,0.2);
    overflow: hidden;
}

.hero-image-placeholder img.real-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    filter: none;
}

/* Images de remplacement */
.placeholder-img {
    width: 110px;
    height: 110px;
    object-fit: contain;
    opacity: 0.85;
    display: block;
    margin: 0 auto;
    filter: brightness(0) invert(1);
}

.placeholder-img-sm {
    width: 60px;
    height: 60px;
}

/* Images réelles dans les sections */
img.real-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    filter: none;
    display: block;
}

/* Avatar témoignage */
.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(201,162,39,0.4);
}

/* =========================================================
   PAGE HEADER (titres de pages internes)
   ========================================================= */
.page-header {
    background: linear-gradient(155deg, #0d1b2e 0%, #1a3a5c 100%);
    padding: 140px 0 80px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at center top, rgba(201,162,39,0.1) 0%, transparent 60%);
    pointer-events: none;
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
    position: relative;
}

.page-header p {
    color: rgba(255,255,255,0.75);
    font-size: 15px;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.7;
    position: relative;
}

/* =========================================================
   SECTIONS GÉNÉRIQUES
   ========================================================= */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.about,
.contact,
.about-extended,
.faq,
.why-choose {
    padding: 100px 0;
    background: white;
}

.services,
.strengths,
.approach {
    padding: 100px 0;
    background: var(--color-bg-light);
}

.history,
.testimonial {
    padding: 100px 0;
    background: linear-gradient(155deg, #0d1b2e 0%, #1a3a5c 100%);
}

.testimonial { padding: 80px 0; }

.section-label {
    color: var(--color-accent);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-label::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 1px;
    background: var(--color-accent);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--color-primary-dark);
    line-height: 1.3;
    margin-bottom: 20px;
}

.section-text {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
}

/* =========================================================
   ABOUT SECTION
   ========================================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    width: 85%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-accent {
    position: absolute;
    bottom: -30px;
    right: 20px;
    width: 200px;
    height: 180px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
    border-radius: 8px;
    z-index: 1;
    opacity: 0.7;
}

.about-img-small {
    position: absolute;
    bottom: -50px;
    right: 0;
    width: 160px;
    height: 140px;
    border-radius: 8px;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
}

.about-img-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content {
    padding-left: 20px;
}

.about-content .section-text {
    margin-bottom: 14px;
}

/* =========================================================
   SERVICES / CATÉGORIES
   ========================================================= */
.services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.services-header .section-label {
    justify-content: center;
}

.services-header .section-title,
.services-header .section-text {
    text-align: center;
}

.services-header .section-text {
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.services-row2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #ede8d8;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(13, 27, 46, 0.15);
}

.service-img {
    height: 200px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.service-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.4);
    font-size: 60px;
}

.service-body {
    padding: 24px;
    position: relative;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

.service-desc {
    font-size: 13px;
    color: #777;
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    color: white;
    font-size: 15px;
}

/* =========================================================
   WHY CHOOSE
   ========================================================= */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-images {
    position: relative;
}

.why-img-main {
    width: 90%;
    height: 380px;
    border-radius: 8px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
}

.why-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-experience {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
    color: var(--color-primary-dark);
    padding: 24px 32px;
    border-radius: 8px;
    text-align: center;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(201,162,39,0.35);
}

.why-experience .years {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.why-experience .label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.95;
    margin-top: 4px;
}

/* =========================================================
   STRENGTHS / POINTS FORTS
   ========================================================= */
.strengths-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.strengths-header .section-label {
    justify-content: center;
}

.strengths-header .section-title {
    text-align: center;
}

.strengths-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.strengths-img {
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
}

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

.strengths-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

.strengths-list li::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

/* =========================================================
   TESTIMONIAL
   ========================================================= */
.testimonial-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.quote-icon {
    font-size: 80px;
    color: var(--color-accent);
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 20px;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-size: 20px;
    color: rgba(255,255,255,0.95);
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 30px;
}

.testimonial-nav button {
    background: none;
    border: none;
    color: rgba(255,255,255,0.5);
    font-size: 22px;
    cursor: pointer;
    transition: color 0.3s;
}

.testimonial-nav button:hover {
    color: var(--color-accent);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

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

.testimonial-author .name {
    color: var(--color-accent-light);
    font-weight: 600;
    font-size: 14px;
}

.testimonial-author .role {
    color: rgba(255,255,255,0.6);
    font-size: 12px;
}

/* =========================================================
   ABOUT EXTENDED
   ========================================================= */
.about-ext-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-ext-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.about-ext-img {
    border-radius: 8px;
    overflow: hidden;
    height: 220px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
}

.about-ext-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================================================
   HISTORY (section foncée)
   ========================================================= */
.history-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.history-img {
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    border: 1px solid rgba(201,162,39,0.25);
}

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

.history-content .section-label {
    color: var(--color-accent-light);
}

.history-content .section-label::before {
    background: var(--color-accent-light);
}

.history-content .section-title {
    color: white;
}

.history-content .section-text {
    color: rgba(255,255,255,0.75);
}

/* =========================================================
   FAQ
   ========================================================= */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.faq-left {
    max-width: 420px;
}

.faq-item {
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-primary-dark);
    cursor: pointer;
    transition: color 0.25s;
}

.faq-question:hover {
    color: var(--color-accent);
}

.faq-question i {
    color: var(--color-accent);
    font-size: 12px;
    transition: transform 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding-top 0.3s ease;
}

.faq-answer.open {
    max-height: 400px;
    padding-top: 12px;
}

.faq-answer p {
    font-size: 13px;
    color: #777;
    line-height: 1.7;
}

/* =========================================================
   APPROACH
   ========================================================= */
.approach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.approach-images {
    position: relative;
}

.approach-img-main {
    width: 90%;
    height: 380px;
    border-radius: 8px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
}

.approach-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.approach-experience {
    position: absolute;
    bottom: -30px;
    left: -10px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
    color: var(--color-primary-dark);
    padding: 24px 36px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(201,162,39,0.3);
}

.approach-experience .years {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}

.approach-experience .label {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.95;
    margin-top: 4px;
}

.approach-content h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--color-primary-dark);
    margin: 24px 0 12px;
}

/* =========================================================
   PARTENAIRES (grille de logos)
   ========================================================= */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.partner-logo {
    background: white;
    border: 1px solid #ede8d8;
    border-radius: 8px;
    padding: 30px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    transition: all 0.3s;
}

.partner-logo:hover {
    border-color: var(--color-accent);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(201,162,39,0.15);
}

.partner-logo img {
    max-height: 70px;
    max-width: 100%;
    object-fit: contain;
}

.partner-logo span {
    color: var(--color-primary-dark);
    font-weight: 600;
    font-size: 14px;
    text-align: center;
}

/* Packs de sponsoring */
.packs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.pack-card {
    background: white;
    border-radius: 8px;
    padding: 30px 22px;
    text-align: center;
    border: 1px solid #ede8d8;
    transition: all 0.3s;
}

.pack-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(13,27,46,0.1);
    border-color: var(--color-accent);
}

.pack-card .pack-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
    border-radius: 6px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.pack-card h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--color-primary-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.pack-card p {
    font-size: 13px;
    color: #777;
    margin-bottom: 16px;
    line-height: 1.6;
    min-height: 48px;
}

.pack-card .price {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
    color: var(--color-primary-dark);
    padding: 8px 18px;
    border-radius: 30px;
    display: inline-block;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* =========================================================
   ACTUALITÉS
   ========================================================= */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.news-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #ede8d8;
    transition: all 0.3s;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(13,27,46,0.12);
}

.news-card-img {
    height: 200px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 50px;
    overflow: hidden;
}

.news-card-img img.real-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card-img img:not(.real-img) {
    width: 80px;
    height: 80px;
    object-fit: contain;
    opacity: 0.8;
    filter: brightness(0) invert(1);
}

.news-card-body {
    padding: 26px;
}

.news-card-body h4 {
    font-family: var(--font-heading);
    font-size: 17px;
    color: var(--color-primary-dark);
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.4;
}

.news-card-body p {
    font-size: 13px;
    color: #777;
    line-height: 1.7;
    margin-bottom: 14px;
}

.news-card-date {
    color: var(--color-accent);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

/* =========================================================
   CONTACT & CANDIDATURE
   ========================================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

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

.form-group label {
    font-size: 11px;
    font-weight: 500;
    color: #888;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 13px 14px;
    border: 1px solid #e0d8c8;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 13px;
    color: #333;
    background: #FAFAF8;
    transition: border-color 0.3s, background 0.3s;
    width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-accent);
    background: white;
    box-shadow: 0 0 0 3px rgba(201,162,39,0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.contact-map-wrap {
    position: relative;
}

.contact-map {
    height: 380px;
    border-radius: 8px;
    overflow: hidden;
    background: #eee;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-info-card {
    background: linear-gradient(155deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    color: white;
    padding: 26px;
    border-radius: 8px;
    margin-top: 16px;
    border: 1px solid rgba(201,162,39,0.2);
}

.contact-info-card h4 {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
}

.contact-info-card h4::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 1px;
    background: var(--color-accent);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 13px;
    color: rgba(255,255,255,0.85);
}

.contact-info-item i {
    color: var(--color-accent);
    font-size: 13px;
    margin-top: 4px;
    width: 16px;
    flex-shrink: 0;
}

/* Alerts */
.alert {
    grid-column: span 2;
    padding: 14px 18px;
    border-radius: 6px;
    margin-bottom: 8px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background: #e6f7ec;
    color: #1d6b3a;
    border-left: 3px solid #28a745;
}

.alert-error {
    background: #fdecee;
    color: #842029;
    border-left: 3px solid #dc3545;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
    background: linear-gradient(180deg, #0d1b2e 0%, #060d17 100%);
    padding: 70px 0 30px;
    border-top: 1px solid rgba(201,162,39,0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo {
    margin-bottom: 18px;
}

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

.footer-logo-img-wrap {
    margin-bottom: 18px;
}

.footer-logo-img {
    width: auto;
    max-width: 180px;
    height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 6px 30px rgba(201,162,39,0.5));
    display: block;
}

.footer-col h4 {
    color: white;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.65);
    font-size: 13px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--color-accent-light);
}

.footer-hours p {
    color: rgba(255,255,255,0.65);
    font-size: 13px;
    margin-bottom: 6px;
}

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

.social-links a {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-dark);
    font-size: 13px;
    font-weight: 700;
    transition: background 0.3s, transform 0.2s;
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--color-accent-light), var(--color-gold-bright));
    transform: translateY(-3px);
}

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

.footer-bottom p {
    color: rgba(255,255,255,0.45);
    font-size: 12px;
}

.footer-logo-mark {
    color: var(--color-accent);
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
}

/* =========================================================
   COUNTDOWN BADGE
   ========================================================= */
.countdown-badge {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
    color: var(--color-primary-dark);
    padding: 16px 22px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 700;
    margin-top: 24px;
    box-shadow: 0 8px 25px rgba(201,162,39,0.35);
}

.countdown-badge i {
    font-size: 18px;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 992px) {
    .hero-container,
    .about-grid,
    .why-grid,
    .strengths-grid,
    .about-ext-grid,
    .history-grid,
    .faq-grid,
    .approach-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content { padding-left: 0; }

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

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

    .hero-title {
        font-size: 32px;
    }

    .hero-image-wrap {
        display: none;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .section-title {
        font-size: 26px;
    }

    #heroLogoImg {
        max-width: 220px;
        height: 120px;
    }

    .hero-logo-wrap {
        height: 140px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .services-grid,
    .services-row2 {
        grid-template-columns: 1fr;
    }

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

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

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

    .about-ext-images {
        grid-template-columns: 1fr;
    }

    .hero-container {
        padding: 60px 24px 80px;
    }

    .hero-title {
        font-size: 28px;
    }

    .page-header {
        padding: 110px 0 60px;
    }

    .page-header h1 {
        font-size: 26px;
    }

    .section-title {
        font-size: 22px;
    }

    .about,
    .services,
    .why-choose,
    .strengths,
    .testimonial,
    .about-extended,
    .history,
    .faq,
    .approach,
    .contact {
        padding: 70px 0;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline {
        justify-content: center;
    }

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

    .logo-text { font-size: 15px; }
    .logo-sub { font-size: 8px; }

    #heroLogoImg {
        max-width: 180px;
        height: 100px;
    }

    .hero-logo-wrap {
        height: 120px;
    }
}

@media (max-width: 480px) {
    .hero-title { font-size: 24px; }
    .section-title { font-size: 20px; }
    .page-header h1 { font-size: 22px; }
}
