/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500&family=Noto+Sans+SC:wght@300;400&display=swap');

/* ===== VARIABLES ===== */
:root {
    --gold: #c9a84c;
    --gold-light: #e2c27d;
    --gold-dim: #8b6e2e;
    --dark-900: #0a0a0a;
    --dark-800: #111111;
    --dark-700: #171717;
    --dark-600: #1e1e1e;
    --dark-500: #282828;
    --dark-400: #333333;
    --text-100: #f5f0e8;
    --text-200: #d4ccba;
    --text-300: #9e9480;
    --text-400: #6b6356;
    --radius: 4px;
    --transition: .3s cubic-bezier(.4, 0, .2, 1);
}

/* ===== RESET ===== */
*, *:before, *:after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    background: var(--dark-900);
    color: var(--text-100);
    font-family: Jost, sans-serif;
    font-weight: 300;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ===== UTILITIES ===== */
.fh-gold {
    color: var(--gold);
    font-style: italic;
}

.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .75s ease, transform .75s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== CONTAINER ===== */
.fh-root {
    overflow-x: hidden;
}

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

.fh-section {
    padding: 120px 0;
}

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

.fh-label {
    font-family: Jost, sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.fh-section-title {
    font-family: Cormorant Garamond, serif;
    font-size: clamp(2.4rem, 4vw, 3.5rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--text-100);
    margin-bottom: 20px;
}

.fh-section-sub {
    font-size: 1rem;
    color: var(--text-300);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.75;
}

/* ===== BUTTONS ===== */
.fh-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: Jost, sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: .15em;
    text-transform: uppercase;
    transition: background var(--transition), color var(--transition), transform var(--transition);
    position: relative;
    overflow: hidden;
}

.fh-cta-primary:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
    z-index: 0;
}

.fh-cta-primary span, .fh-cta-primary {
    position: relative;
    z-index: 1;
}

.fh-cta-primary:hover:before {
    transform: scaleX(1);
}

.fh-cta-primary:hover {
    color: var(--dark-900);
}

.fh-cta-primary:active {
    transform: scale(.98);
}

.fh-cta-primary.full {
    width: 100%;
    justify-content: center;
}

.fh-cta-secondary {
    display: inline-flex;
    align-items: center;
    padding: 14px 36px;
    background: var(--gold);
    color: var(--dark-900);
    font-family: Jost, sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .15em;
    text-transform: uppercase;
    transition: background var(--transition), transform var(--transition);
}

.fh-cta-secondary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

/* ===== HEADER ===== */
.fh-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0;
    transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.fh-header.scrolled {
    background: #0a0a0af0;
    backdrop-filter: blur(12px);
    box-shadow: 0 1px #c9a84c26;
}

.fh-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fh-logo-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    color: inherit;
    text-decoration: none;
}

.fh-logo-mark {
    font-family: Cormorant Garamond, serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--dark-900);
    background: var(--gold);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: .05em;
    flex-shrink: 0;
}

.fh-logo-text {
    font-family: Cormorant Garamond, serif;
    font-size: 17px;
    font-weight: 400;
    color: var(--text-100);
    letter-spacing: .04em;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
}

.fh-logo-text span {
    font-size: 10px;
    font-family: Jost, sans-serif;
    font-weight: 300;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
}

.fh-nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

.fh-nav button {
    font-family: Jost, sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--text-200);
    transition: color var(--transition);
    position: relative;
    padding-bottom: 2px;
}

.fh-nav button:after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.fh-nav button:hover {
    color: var(--gold);
}

.fh-nav button:hover:after {
    transform: scaleX(1);
}

.fh-header-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.fh-lang-switcher {
    display: flex;
    align-items: center;
    gap: 2px;
    border: 1px solid var(--dark-500);
    padding: 2px;
}

.fh-lang-btn {
    font-family: Jost, sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: .08em;
    color: var(--text-400);
    padding: 5px 10px;
    transition: background var(--transition), color var(--transition);
    white-space: nowrap;
}

.fh-lang-btn:hover {
    color: var(--text-200);
}

.fh-lang-btn.active {
    background: var(--gold);
    color: var(--dark-900);
    font-weight: 500;
}

.fh-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.fh-burger span {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--text-100);
    transition: transform var(--transition), opacity var(--transition);
}

/* ===== HERO ===== */
.fh-hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.fh-hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.fh-hero-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(135deg, #050505d1, #0a0a0aa6, #000000b8);
    z-index: 1;
}

.fh-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 72px 40px 0;
}

.fh-hero-eyebrow {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
}

.fh-hero-title {
    font-family: Cormorant Garamond, serif;
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--text-100);
    margin-bottom: 28px;
    max-width: 820px;
}

.fh-hero-title em {
    font-style: italic;
    font-weight: 300;
}

.fh-hero-sub {
    font-size: 1rem;
    color: var(--text-200);
    margin-bottom: 48px;
    max-width: 440px;
    line-height: 1.7;
}

.fh-hero-sub strong {
    color: var(--gold-light);
    font-weight: 500;
}

.fh-hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 64px;
    border: 1px solid rgba(201, 168, 76, .35);
    border-radius: 20px;
    transition: border-color var(--transition);
}

.fh-hero-scroll:hover {
    border-color: var(--gold);
}

.fh-hero-scroll span {
    width: 4px;
    height: 12px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(-4px); opacity: .4; }
    50% { transform: translateY(4px); opacity: 1; }
}

/* ===== CONCEPT SECTION ===== */
.fh-concept {
    background: var(--dark-800);
}

.fh-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.fh-step {
    background: var(--dark-700);
    padding: 56px 40px;
    position: relative;
    transition: background var(--transition), transform var(--transition);
    border-top: 1px solid transparent;
}

.fh-step:hover {
    background: var(--dark-600);
    transform: translateY(-4px);
    border-top-color: var(--gold);
}

.fh-step-num {
    font-family: Cormorant Garamond, serif;
    font-size: 4rem;
    font-weight: 300;
    color: #c9a84c1f;
    line-height: 1;
    margin-bottom: 24px;
    transition: color var(--transition);
}

.fh-step:hover .fh-step-num {
    color: #c9a84c40;
}

.fh-step-title {
    font-family: Cormorant Garamond, serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--text-100);
    margin-bottom: 16px;
}

.fh-step-desc {
    font-size: .875rem;
    color: var(--text-300);
    line-height: 1.8;
}

/* ===== CHIFFRES SECTION ===== */
.fh-chiffres {
    background: var(--dark-900);
    position: relative;
    overflow: hidden;
}

.fh-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--dark-500);
    border: 1px solid var(--dark-500);
    margin-bottom: 48px;
}

.fh-stat {
    background: var(--dark-800);
    padding: 48px 32px;
    text-align: center;
    transition: background var(--transition);
}

.fh-stat:hover {
    background: var(--dark-700);
}

.fh-stat-val {
    font-family: Cormorant Garamond, serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    color: var(--gold);
    margin-bottom: 12px;
    line-height: 1;
}

.fh-stat-label {
    font-size: .8rem;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text-200);
    margin-bottom: 10px;
}

.fh-stat-note {
    font-size: .8rem;
    color: var(--text-400);
    line-height: 1.5;
}

.fh-disclaimer {
    text-align: center;
    font-size: .75rem;
    color: var(--text-400);
    max-width: 640px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid var(--dark-500);
    line-height: 1.7;
}

/* ===== REALISATIONS SECTION ===== */
.fh-real {
    background: var(--dark-800);
}

.fh-projects {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.fh-project-slider {
    position: relative;
    margin-bottom: 0px;
    border-radius: 8px;
    overflow: hidden;
}

.fh-project-slider img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.fh-slider-labels {
    position: absolute;
    top: 16px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 16px;
    pointer-events: none;
    z-index: 10;
}

.fh-img-tag {
    background: #0a0a0ad9;
    color: var(--text-300);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
    padding: 6px 12px;
    backdrop-filter: blur(4px);
}

.fh-img-tag.gold {
    background: #c9a84ce6;
    color: var(--dark-900);
}

.fh-project-info {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 0 4px;
}

.fh-project-info h3 {
    font-family: Cormorant Garamond, serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--text-100);
    flex: 1;
}

.fh-project-info p {
    font-size: .8rem;
    color: var(--text-400);
    letter-spacing: .08em;
    text-transform: uppercase;
}

.fh-project-yield {
    font-family: Cormorant Garamond, serif;
    font-size: 1.4rem;
    color: var(--gold);
    font-weight: 400;
    white-space: nowrap;
}

.fh-projects-more {
    text-align: center;
    margin-top: 64px;
    padding: 48px;
    border: 1px solid var(--dark-500);
    background: var(--dark-700);
}

.fh-projects-more p {
    font-family: Cormorant Garamond, serif;
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--text-200);
    margin-bottom: 24px;
}

/* ===== PROCESS SECTION ===== */
.fh-process {
    background: var(--dark-900);
}

.fh-timeline {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.fh-timeline-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 32px;
    padding-bottom: 48px;
}

.fh-timeline-item:last-child {
    padding-bottom: 0;
}

.fh-timeline-track {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.fh-timeline-dot {
    width: 48px;
    height: 48px;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: Cormorant Garamond, serif;
    font-size: 1.1rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--dark-900);
    position: relative;
    z-index: 1;
    transition: background var(--transition), color var(--transition);
}

.fh-timeline-item:hover .fh-timeline-dot {
    background: var(--gold);
    color: var(--dark-900);
}

.fh-timeline-line {
    width: 1px;
    flex: 1;
    min-height: 40px;
    background: linear-gradient(to bottom, var(--gold-dim), transparent);
    margin-top: 4px;
}

.fh-timeline-content {
    padding-top: 10px;
    padding-bottom: 40px;
}

.fh-timeline-content h3 {
    font-family: Cormorant Garamond, serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-100);
    margin-bottom: 12px;
}

.fh-timeline-content p {
    font-size: .9rem;
    color: var(--text-300);
    line-height: 1.8;
    max-width: 560px;
}

/* ===== CONTACT SECTION ===== */
.fh-contact {
    background: var(--dark-800);
    border-top: 1px solid var(--dark-500);
}

.fh-contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.fh-contact-left .fh-section-title {
    text-align: left;
    margin-bottom: 24px;
}

.fh-contact-text {
    font-size: .925rem;
    color: var(--text-300);
    line-height: 1.8;
    margin-bottom: 40px;
}

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

.fh-contact-detail {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: .875rem;
    color: var(--text-200);
}

.fh-cd-icon {
    color: var(--gold);
    font-size: .75rem;
    flex-shrink: 0;
}

.fh-form {
    background: var(--dark-700);
    padding: 48px;
    border: 1px solid var(--dark-500);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.fh-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fh-form-group label {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--text-300);
}

.fh-form-group input,
.fh-form-group select {
    background: var(--dark-600);
    border: 1px solid var(--dark-400);
    color: var(--text-100);
    font-family: Jost, sans-serif;
    font-size: .925rem;
    font-weight: 300;
    padding: 14px 18px;
    outline: none;
    transition: border-color var(--transition);
    width: 100%;
}

.fh-form-group input:focus,
.fh-form-group select:focus {
    border-color: var(--gold);
}

.fh-form-privacy {
    font-size: .75rem;
    color: var(--text-400);
    text-align: center;
    line-height: 1.6;
}

/* ===== FOOTER ===== */
.fh-footer {
    background: var(--dark-900);
    border-top: 1px solid var(--dark-500);
    padding: 48px 0;
}

.fh-footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

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

.fh-footer-copy {
    font-size: .8rem;
    color: var(--text-400);
    letter-spacing: .05em;
}

.fh-footer-disc {
    font-size: .72rem;
    color: var(--text-400);
    max-width: 560px;
    line-height: 1.6;
    opacity: .7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .fh-stats { grid-template-columns: repeat(2, 1fr); }
    .fh-steps { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
    .fh-container { padding: 0 24px; }
    .fh-section { padding: 80px 0; }
    .fh-header-inner { padding: 0 24px; }
    
    .fh-nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: #0a0a0af7;
        backdrop-filter: blur(16px);
        flex-direction: column;
        gap: 0;
        padding: 16px 0 32px;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: transform .4s ease, opacity .4s ease;
        border-bottom: 1px solid var(--dark-500);
    }
    
    .fh-nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .fh-nav button { padding: 16px 32px; font-size: 13px; }
    .fh-burger { display: flex; }
    .fh-lang-switcher { display: none; }
    .fh-hero-content { padding: 72px 24px 0; }
    .fh-contact-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 640px) {
    .fh-section { padding: 64px 0; }
    .fh-section-header { margin-bottom: 48px; }
    .fh-stats { grid-template-columns: 1fr 1fr; }
    .fh-timeline-item { grid-template-columns: 56px 1fr; gap: 20px; }
    .fh-form { padding: 32px 24px; }
    .fh-hero-title { font-size: clamp(2.2rem, 8vw, 3.2rem); }
}

/* ===== COMPARE SLIDER ===== */
.compare-slider {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    cursor: ew-resize;
    user-select: none;
}

/* Image AVANT (en dessous) - visible complètement */
.compare-img-before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.compare-img-before img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.compare-img-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* IMPORTANT */
    height: 100%;
    z-index: 2;
    overflow: hidden;

    /* masque initial */
    clip-path: inset(0 50% 0 0);
}

.compare-img-after img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Le curseur */
.compare-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: var(--gold);
    z-index: 10;
    cursor: ew-resize;
    transform: translateX(-50%);
}

.handle-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--gold);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

.handle-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-900);
    cursor: ew-resize;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s;
}

.handle-circle:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.handle-circle svg {
    width: 24px;
    height: 24px;
}

/* ===== SLIDER LABELS ===== */
.fh-slider-labels {
    position: absolute;
    top: 16px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 16px;
    pointer-events: none;
    z-index: 15;
}

.fh-img-tag {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(4px);
    color: var(--text-300);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 4px;
}

.fh-img-tag.gold {
    background: rgba(201, 168, 76, 0.9);
    color: var(--dark-900);
}

/* ===== CAROUSEL CONTROLS ===== */
.fh-carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 16px;
    margin-bottom: 0px;
    padding: 8px 0;
}

.fh-carousel-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fh-carousel-btn:hover {
    background: var(--gold);
    color: var(--dark-900);
}

.fh-carousel-btn i {
    font-size: 14px;
}

.fh-carousel-counter {
    font-size: 14px;
    color: var(--text-300);
    font-family: Jost, sans-serif;
    min-width: 50px;
    text-align: center;
    font-weight: 500;
}

.img-container {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.compare-img img {
    display: none;
}

.handle-circle i {
    font-size: 20px;
    color: var(--dark-900);
}

/* Pour l'option 7 (deux icônes) */
.handle-circle .fa-arrow-right,
.handle-circle .fa-arrow-left {
    font-size: 14px;
    margin: 0 2px;
}

/* Error messages */
.error-message {
    display: block;
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
}

.form-group.error input,
.form-group.error select {
    border-color: #dc3545;
}

/* Success message */
.form-success {
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid var(--gold);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
}

.form-success i {
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 15px;
}

/* Turnstile */
.cf-turnstile {
    margin: 0px;
    display: flex;
    justify-content: center;
}

/* Loading button */
.fh-cta-primary.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.fh-cta-primary.loading:before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-left: 10px;
}

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

/* Supprimer le soulignement des boutons Voir Détails */
.fh-cta-secondary {
    text-decoration: none !important;
}

.fh-cta-secondary:hover {
    text-decoration: none !important;
}

/* Masquer les sous-projets supplémentaires par défaut */
.sub-project.hidden {
    display: none;
}

/* Bouton Voir plus / Voir moins */
.toggle-projects-btn {
    display: inline-block;
    margin-top: 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-projects-btn:hover {
    transform: translateY(-2px);
}

/* Transition pour l'apparition/disparition des sous-projets */
.sub-project {
    transition: opacity 0.4s ease, transform 0.4s ease;
    opacity: 1;
    transform: translateY(0);
}

/* État caché */
.sub-project.hidden {
    display: none;
    opacity: 0;
    transform: translateY(20px);
}

/* Animation d'apparition */
.sub-project:not(.hidden) {
    display: block;
    animation: fadeSlideUp 0.5s ease forwards;
}

@keyframes fadeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Empêcher l'animation au chargement de la page */
.sub-project {
    animation: none;
}

/* Style spécifique pour le bouton toggle (Voir plus / Voir moins) */
.toggle-btn {
    background: transparent !important;
    border: 3px solid var(--gold) !important;
    color: var(--gold) !important;
    padding: 12px 32px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    transition: all 0.3s ease !important;
    cursor: pointer;
}

.toggle-btn:hover {
    /* background: var(--gold) !important;
    color: var(--dark-900) !important; */
    transform: translateY(-2px);
}

/* Conteneur du bouton - centré */
.toggle-projects-btn {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    /* margin-top: 30px !important; */
}