/* ==========================================
   MODERN WARMTH & SOPHISTICATION DESIGN SYSTEM
   Maurice Yameogo - MY Patrimoine
   ========================================== */

/* CSS VARIABLES (HSL) */
:root {
    /* Couleurs principales */
    --primary: hsl(220, 55%, 18%);
    --primary-medium: hsl(220, 45%, 22%);
    --gold: hsl(38, 55%, 55%);
    --gold-light: hsl(38, 45%, 72%);
    --cream: hsl(30, 25%, 97%);
    --cream-warm: hsl(28, 35%, 93%);
    --sand: hsl(30, 25%, 85%);
    --taupe: hsl(25, 18%, 70%);
    --terracotta: hsl(18, 40%, 50%);
    --foreground: hsl(220, 25%, 15%);
    --muted: hsl(220, 12%, 50%);
    --white: hsl(0, 0%, 100%);
    
    /* Typographie */
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Outfit', sans-serif;
    
    /* Espacements */
    --section-padding: clamp(6rem, 12vw, 10rem);
    --container-padding: clamp(1.5rem, 4vw, 4rem);
    
    /* Ombres */
    --shadow-soft: 0 4px 24px -6px hsla(220, 35%, 15%, 0.06);
    --shadow-elegant: 0 12px 40px -10px hsla(220, 35%, 15%, 0.1);
    --shadow-dramatic: 0 25px 60px -15px hsla(220, 35%, 15%, 0.18);
    --shadow-glow: 0 0 40px -10px hsla(38, 55%, 55%, 0.3);
    
    /* Transitions */
    --transition-fast: 300ms ease-out;
    --transition-medium: 500ms ease-out;
    --transition-slow: 700ms ease-out;
}

/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

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

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

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
}

h2 {
    font-size: clamp(2rem, 5vw, 3.75rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
}

em, .gold-italic {
    font-style: italic;
    color: var(--gold);
}

/* LAYOUT UTILITIES */
.container-elegant {
    max-width: 80rem;
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.section-padding {
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
}

.section-cream {
    background: var(--cream);
}

.section-gradient {
    background: linear-gradient(180deg, hsl(30,30%,96%) 0%, hsl(28,25%,93%) 100%);
}

.section-dark {
    background: var(--primary);
    color: var(--white);
}

/* ANIMATIONS */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.fade-up {
    opacity: 0;
    animation: fadeUp 1s ease-out forwards;
}

.fade-up:nth-child(1) { animation-delay: 0ms; }
.fade-up:nth-child(2) { animation-delay: 150ms; }
.fade-up:nth-child(3) { animation-delay: 300ms; }
.fade-up:nth-child(4) { animation-delay: 450ms; }
.fade-up:nth-child(5) { animation-delay: 600ms; }
.fade-up:nth-child(6) { animation-delay: 750ms; }

/* HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: var(--transition-medium);
}

.header.scrolled {
    background: rgba(26, 39, 68, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-elegant);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-axa {
    filter: drop-shadow(0 0 12px hsla(38,55%,55%,0.6));
    transition: var(--transition-fast);
}

.logo-axa:hover {
    filter: drop-shadow(0 0 20px hsla(38,55%,55%,0.9));
    transform: scale(1.05);
}

.logo-divider {
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 300;
}

.logo-text {
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.05em;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--white);
    position: relative;
    opacity: 0.9;
    letter-spacing: 0.02em;
}

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

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    opacity: 1;
    color: var(--gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 0.35rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: var(--gold);
    transition: var(--transition-fast);
}

/* BUTTONS */
.btn-gold,
.btn-outline-hero,
.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, hsl(35,50%,62%) 100%);
    color: var(--primary);
    box-shadow: 
        var(--shadow-glow),
        0 4px 15px hsla(38,55%,55%,0.3);
    position: relative;
    overflow: hidden;
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, hsla(0,0%,100%,0.3) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s;
}

.btn-gold:hover::before {
    transform: scale(1);
}

.btn-gold:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 0 80px hsla(38, 55%, 55%, 0.6),
        0 8px 30px hsla(38, 55%, 55%, 0.4),
        var(--shadow-dramatic);
}

.btn-outline-hero {
    background: transparent;
    border-color: hsla(0, 0%, 100%, 0.4);
    color: var(--white);
}

.btn-outline-hero:hover {
    background: hsla(0, 0%, 100%, 0.1);
    border-color: hsla(0, 0%, 100%, 0.6);
    transform: translateY(-4px);
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 0.85rem;
}

.btn-full {
    width: 100%;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, hsla(0,0%,100%,0.2), transparent);
    transition: left 1s;
}

.btn-gold:hover .btn-shine {
    left: 100%;
}

/* HERO SECTION */
.hero {
    min-height: 100vh;
    background: linear-gradient(145deg, var(--primary) 0%, var(--primary-medium) 40%, hsl(25,30%,25%) 100%);
    color: var(--white);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    filter: grayscale(20%);
}

.hero-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, 
        hsla(220,55%,18%,0.95) 0%, 
        hsla(220,45%,22%,0.9) 40%, 
        hsla(25,30%,25%,0.85) 100%);
}

.floating-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
    opacity: 0.15;
    animation: float 8s ease-in-out infinite;
    filter: blur(40px);
}

.orb-1 {
    width: 500px;
    height: 500px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    top: 50%;
    right: 30%;
    animation-delay: 4s;
}

/* Particules dorées flottantes */
.particle-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 15s infinite;
    box-shadow: 0 0 10px var(--gold), 0 0 20px var(--gold);
}

.particle:nth-child(1) {
    left: 20%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    left: 40%;
    animation-delay: 3s;
}

.particle:nth-child(3) {
    left: 60%;
    animation-delay: 6s;
}

.particle:nth-child(4) {
    left: 80%;
    animation-delay: 9s;
}

.particle:nth-child(5) {
    left: 50%;
    animation-delay: 12s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-top: 100px;
    text-align: center;
}

.badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: hsla(0, 0%, 100%, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid hsla(38, 55%, 55%, 0.3);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
    box-shadow: 
        0 0 20px hsla(38,55%,55%,0.2),
        inset 0 0 20px hsla(38,55%,55%,0.1);
    animation: badgeGlow 3s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% {
        box-shadow: 
            0 0 20px hsla(38,55%,55%,0.2),
            inset 0 0 20px hsla(38,55%,55%,0.1);
        border-color: hsla(38, 55%, 55%, 0.3);
    }
    50% {
        box-shadow: 
            0 0 40px hsla(38,55%,55%,0.4),
            inset 0 0 30px hsla(38,55%,55%,0.2);
        border-color: hsla(38, 55%, 55%, 0.5);
    }
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 10px var(--gold);
}

.hero-title {
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: hsla(0, 0%, 100%, 0.8);
    margin-bottom: 3rem;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero Stats */
.hero-stats {
    position: relative;
    z-index: 1;
    margin-top: auto;
    padding: 3rem 0;
    background: hsla(0, 0%, 0%, 0.2);
    backdrop-filter: blur(10px);
    border-top: 1px solid hsla(38, 55%, 55%, 0.2);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: hsla(0, 0%, 100%, 0.7);
    font-weight: 500;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--gold);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    z-index: 1;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: float 2s ease-in-out infinite;
}

/* SECTION HEADERS */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.decorative-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto 2rem;
}

.section-title {
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.15rem;
    color: var(--muted);
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
}

.section-dark .section-description {
    color: hsla(0, 0%, 100%, 0.7);
}

/* CARDS */
.card-elegant {
    background: hsl(30,20%,99%);
    border: 1px solid hsla(30, 25%, 85%, 0.6);
    border-radius: 2px;
    padding: 2.5rem;
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.card-elegant::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        hsla(38,55%,55%,0.05), 
        transparent);
    transition: left 0.8s;
}

.card-elegant:hover::before {
    left: 100%;
}

.card-elegant::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 2px;
    padding: 1px;
    background: linear-gradient(135deg, 
        transparent 0%, 
        hsla(38,55%,55%,0.3) 50%, 
        transparent 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity var(--transition-slow);
}

.card-elegant:hover {
    border-color: hsla(38, 55%, 55%, 0.3);
    box-shadow: 
        0 4px 20px hsla(0,0%,0%,0.08),
        0 0 20px hsla(38,55%,55%,0.08);
    transform: translateY(-2px);
}

.card-elegant:hover::after {
    opacity: 1;
}

.card-number {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 300;
    color: hsla(38, 55%, 55%, 0.1);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: visible;
    background: transparent;
}

.gold-bg {
    background: transparent;
    color: var(--primary);
    box-shadow: none;
    position: relative;
    border: 1px solid hsla(38,45%,60%,0.2);
    transition: all 0.4s ease;
}

.gold-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle at center, hsla(38,55%,55%,0.08), transparent 70%);
    pointer-events: none;
}

.gold-bg::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 50%;
    background: linear-gradient(135deg, hsla(38,65%,65%,0.15), transparent, hsla(38,65%,65%,0.15));
    opacity: 0;
    transition: opacity 0.5s;
}

.icon-circle:hover .gold-bg::before,
.card-elegant:hover .gold-bg::before {
    opacity: 1;
}

.card-elegant:hover .gold-bg {
    border-color: hsla(38,55%,55%,0.5);
    box-shadow: 0 0 20px hsla(38,55%,55%,0.15);
}

@keyframes iconPulse {
    0%, 100% {
        border-color: hsla(38,45%,60%,0.2);
    }
    50% {
        border-color: hsla(38,55%,55%,0.35);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.icon-circle svg {
    width: 70px;
    height: 70px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-elegant:hover .icon-circle svg {
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15)) drop-shadow(0 0 12px hsla(38,55%,55%,0.2));
    transform: scale(1.05) translateY(-2px);
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.card-description {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.card-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.card-link:hover {
    gap: 1rem;
}

/* EXPERTISES GRID */
.expertises-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

/* METHODOLOGY */
.methodology-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.method-step {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--sand);
}

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

.step-number-large {
    font-family: var(--font-serif);
    font-size: 5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.step-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.step-description {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.8;
}

/* AXA TABS */
.axa-content {
    max-width: 900px;
    margin: 3rem auto 0;
}

.axa-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.tab-btn {
    padding: 0.9rem 2rem;
    background: transparent;
    border: 1px solid hsla(0, 0%, 100%, 0.2);
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
    letter-spacing: 0.05em;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--primary);
}

.tab-content {
    display: none;
    padding: 2rem;
    background: hsla(0, 0%, 100%, 0.05);
    border: 1px solid hsla(0, 0%, 100%, 0.1);
    border-radius: 4px;
}

.tab-content.active {
    display: block;
}

.tab-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.tab-content p {
    font-size: 1.05rem;
    color: hsla(0, 0%, 100%, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.check-list {
    list-style: none;
    margin-top: 2rem;
}

.check-list li {
    padding: 0.75rem 0;
    font-size: 1rem;
    color: hsla(0, 0%, 100%, 0.9);
    border-bottom: 1px solid hsla(0, 0%, 100%, 0.1);
}

/* DIRECTOR SECTION */
.director-section {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 5rem;
    align-items: start;
    margin-top: 3rem;
}

.director-frame {
    position: relative;
}

.director-frame::before,
.director-frame::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid var(--gold);
    box-shadow: 0 0 15px hsla(38,55%,55%,0.4);
    transition: all 0.5s;
}

.director-frame::before {
    top: -12px;
    left: -12px;
    border-right: none;
    border-bottom: none;
}

.director-frame::after {
    bottom: -12px;
    right: -12px;
    border-left: none;
    border-top: none;
}

.director-image-wrapper:hover .director-frame::before {
    top: -16px;
    left: -16px;
    box-shadow: 0 0 25px hsla(38,55%,55%,0.6);
}

.director-image-wrapper:hover .director-frame::after {
    bottom: -16px;
    right: -16px;
    box-shadow: 0 0 25px hsla(38,55%,55%,0.6);
}

.director-image {
    width: 100%;
    border-radius: 2px;
}

.director-badge {
    position: absolute;
    bottom: 20px;
    right: -20px;
    background: linear-gradient(135deg, hsl(30,25%,98%), hsl(30,20%,96%));
    padding: 1.5rem 2rem;
    border-radius: 2px;
    box-shadow: 
        var(--shadow-elegant),
        0 0 40px hsla(38,55%,55%,0.2);
    text-align: center;
    border: 1px solid hsla(38,55%,55%,0.2);
}

.badge-label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px hsla(38,55%,55%,0.3);
}

.badge-name {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    color: var(--foreground);
    margin-bottom: 0.25rem;
    background: linear-gradient(135deg, var(--foreground), hsl(220,25%,25%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.badge-title {
    font-size: 0.9rem;
    color: var(--muted);
}

.director-quote {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 2px;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--foreground);
    margin-bottom: 2rem;
    position: relative;
}

.quote-line {
    position: absolute;
    left: 0;
    top: 2.5rem;
    bottom: 2.5rem;
    width: 4px;
    background: var(--gold);
}

.director-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 2rem;
}

/* VALUES GRID */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.value-card {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid hsla(30, 25%, 85%, 0.5);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.value-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}

.value-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.value-card h4 {
    font-size: 1.1rem;
    font-family: var(--font-sans);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--foreground);
}

/* OFFICES GRID */
.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.office-card {
    overflow: hidden;
}

.office-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    margin-bottom: 2rem;
    border-radius: 2px;
}

.office-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
    filter: brightness(0.9);
}

.office-card:hover .office-image img {
    transform: scale(1.1);
    filter: brightness(1);
}

.office-content {
    text-align: center;
}

.office-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.office-name {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.office-address,
.office-contact,
.office-hours {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

/* EVENTS GRID */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.event-card {
    overflow: hidden;
}

.event-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    margin-bottom: 2rem;
}

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

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

.event-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 0.5rem 1rem;
    background: var(--gold);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.event-date {
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.event-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.event-description {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.7;
}

/* CONTACT */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
    margin-top: 4rem;
}

.contact-info h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: var(--white);
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: start;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.5rem;
}

.contact-label {
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.contact-value {
    font-size: 1.05rem;
    color: hsla(0, 0%, 100%, 0.9);
    line-height: 1.6;
}

/* CONTACT FORM */
.contact-form {
    background: hsla(0, 0%, 100%, 0.05);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border: 1px solid hsla(0, 0%, 100%, 0.1);
    border-radius: 4px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: hsla(0, 0%, 100%, 0.08);
    border: 1px solid hsla(0, 0%, 100%, 0.2);
    border-radius: 2px;
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: hsla(0, 0%, 100%, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: hsla(0, 0%, 100%, 0.4);
}

/* FOOTER */
.footer {
    background: var(--primary);
    color: var(--white);
    padding: 5rem 0 2rem;
    border-top: 1px solid hsla(38, 55%, 55%, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 5rem;
    margin-bottom: 4rem;
}

.footer-logo .logo-axa {
    width: 48px;
    height: 48px;
}

.footer-logo .logo-divider {
    color: var(--gold);
}

.footer-logo .logo-text {
    color: var(--white);
}

.footer-brand p {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: hsla(0, 0%, 100%, 0.7);
    line-height: 1.7;
}

.footer-agent {
    margin-top: 0.75rem !important;
    color: var(--gold) !important;
    font-weight: 500;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-column h4 {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    font-size: 0.9rem;
    color: hsla(0, 0%, 100%, 0.7);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid hsla(0, 0%, 100%, 0.1);
    font-size: 0.85rem;
    color: hsla(0, 0%, 100%, 0.6);
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

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

/* RESPONSIVE */
@media (max-width: 1024px) {
    .director-section,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--primary);
        flex-direction: column;
        padding: 6rem 2rem;
        gap: 2rem;
        transition: var(--transition-medium);
        box-shadow: var(--shadow-dramatic);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .btn-gold {
        display: none;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .method-step {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step-number-large {
        font-size: 3.5rem;
    }
    
    .values-grid,
    .form-row,
    .footer-links,
    .footer-bottom {
        grid-template-columns: 1fr;
    }
    
    .axa-tabs {
        flex-direction: column;
    }
    
    .expertises-grid,
    .offices-grid,
    .events-grid {
        grid-template-columns: 1fr;
    }
}