/* Zenith Competences - Authentic Human Resources Consulting */
:root {
    /* Color Palette - "Coffee & Cream" (Extracted from Logo) */
    --primary-color: #61442d;
    /* Dark Brown/Copper - Warm, Grounded, Text */
    --secondary-color: #8c6b4a;
    /* Lighter Brown - Accents */
    --accent-color: #d4a373;
    /* Gold/Tan - Highlights */
    --background-color: #fbf3e8;
    /* Cream/Beige - Paper, Warn, Base */
    --white: #ffffff;
    /* For contrast in cards only */
    --text-color: #4a3b32;
    /* Very Dark Brown for body text (softer than black) */

    /* Typography */
    --font-heading: 'Merriweather', serif;
    /* Classic, Literary */
    --font-body: 'Lato', sans-serif;
    /* Modern, Clean */

    /* Spacing & Layout */
    --container-width: 1200px;
    --section-padding: 100px 0;
    --card-shadow: 0 10px 30px rgba(97, 68, 45, 0.08);
    /* Warm shadow */
    --border-radius: 2px;
    /* Sharp, professional edges */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-display: swap;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.8;
    padding-top: 120px;
    /* Compensate for fixed header */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 30px;
}

/* Buttons - Modern Premium */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    /* Sharp but friendly */
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease, transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /* Smooth magnetic effect */
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    will-change: transform;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--background-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.btn-outline {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--background-color);
}

/* --- Blog 3D Postcard Layout --- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    padding: 20px 0;
}

.postcard-wrapper {
    background-color: transparent;
    width: 100%;
    height: 350px;
    /* Fixed height for consistency */
    perspective: 1000px;
    /* Essential for 3D effect */
}

.postcard {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.4, 0.2, 0.2, 1);
    transform-style: preserve-3d;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.postcard-wrapper:hover .postcard {
    transform: rotateY(180deg);
}

/* Common sides styles */
.postcard-front,
.postcard-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    /* Safari */
    backface-visibility: hidden;
    border-radius: 2px;
    overflow: hidden;
}

/* --- Front (The Photo) --- */
.postcard-front {
    background-color: #fff;
    padding: 15px 15px 50px 15px;
    /* Polaroid style bottom padding */
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.postcard-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 1px solid #eee;
    filter: sepia(20%) contrast(1.1);
    /* Subtle vintage photo look */
}

.photo-caption {
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 100%;
    text-align: center;
    font-family: 'Courier New', Courier, monospace;
    /* Typewriter style */
    font-size: 0.9rem;
    color: #555;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* --- Back (The Message) --- */
.postcard-back {
    background-color: #fcf9f2;
    /* Old paper color */
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.02) 1px, transparent 1px), linear-gradient(to bottom, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
    background-size: 20px 20px;
    /* Subtle grid texture */
    color: var(--text-color);
    transform: rotateY(180deg);
    padding: 20px;
    display: flex;
    flex-direction: column;
    border: 1px solid #e0d0b0;
    box-shadow: inset 0 0 20px rgba(166, 137, 109, 0.1);
}

.postcard-stamp {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 70px;
    border: 3px dotted var(--secondary-color);
    background-color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(5deg);
}

.stamp-inner {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.postcard-postmark {
    position: absolute;
    top: 25px;
    right: 85px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid rgba(50, 50, 50, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.6rem;
    font-weight: bold;
    color: rgba(50, 50, 50, 0.4);
    transform: rotate(-15deg);
    line-height: 1.2;
}

.postcard-content {
    margin-top: 40px;
    padding-right: 120px;
    /* Make space for stamp */
    text-align: left;
    font-family: 'Lato', sans-serif;
    position: relative;
    z-index: 2;
}

.postcard-content h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--primary-color);
    border-bottom: 1px solid var(--secondary-color);
    padding-bottom: 5px;
    display: inline-block;
}

.postcard-content p {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #666;
    margin-bottom: 15px;
    font-style: italic;
}

.postcard-link {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: bold;
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    border-bottom: 1px dashed var(--secondary-color);
}

.postcard-link:hover {
    color: var(--primary-color);
}

.postcard-divider {
    position: absolute;
    left: 50%;
    top: 10%;
    bottom: 10%;
    width: 1px;
    background-color: rgba(0, 0, 0, 0.05);
}

/* --- Preloader --- */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--background-color);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
    /* Ease-in-out-quart */
}

.preloader.finish {
    transform: translateY(-100%);
    /* Slide up like a curtain */
}

.preloader-content {
    text-align: center;
    animation: fadeOut 0.5s 2.5s forwards;
    /* Fade content before curtain lifts */
}

.preloader img {
    width: 150px;
    margin-bottom: 20px;
    animation: pulseLogo 2s infinite ease-in-out;
}

.loading-bar {
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    margin: 0 auto;
    animation: loadBar 2s ease-in-out forwards;
}

@keyframes loadBar {
    0% {
        width: 0;
    }

    100% {
        width: 100px;
    }
}

@keyframes pulseLogo {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

/* Header - Blends with body background */
/* Header - Modern Premium Consulting Style */
header {
    background-color: var(--background-color);
    /* Fallback/Base */
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(97, 68, 45, 0.05);
    padding: 0;
    box-shadow: 0 4px 20px rgba(97, 68, 45, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Texture overlay via pseudo-element for smooth transition */
header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/header_texture.jpg');
    background-repeat: repeat;
    background-size: auto;
    opacity: 1;
    z-index: -1;
    transition: opacity 0.4s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 120px;
    /* Base height */
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 30px;
    transition: height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    /* Smooth resize */
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 90px;
    width: auto;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.logo img:hover {
    transform: scale(1.05);
}

/* --- Scrolled State (Compact & Glassy) --- */
header.scrolled {
    background-color: rgba(251, 243, 232, 0.85);
    /* More transparent for glass effect */
    backdrop-filter: blur(12px);
    /* Stronger blur */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(97, 68, 45, 0.1);
}

/* Hide texture on scroll to reveal glass effect */
header.scrolled::before {
    opacity: 0;
}

header.scrolled nav {
    height: 70px;
    /* Smoothly shrinks */
}

header.scrolled .logo img {
    height: 60px;
}

.nav-links {
    display: flex;
    gap: 25px;
    /* Reduced specific gap to prevent overflow */
    align-items: center;
    margin-left: auto;
    /* Push to right */
}

.nav-links a:not(.btn) {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    /* Slightly reduced spacing to save space */
    color: var(--primary-color);
    position: relative;
    padding: 5px 0;
    opacity: 0.9;
    transition: all 0.3s;
    white-space: nowrap;
    /* CRITICAL: Prevent wrapping */
}

.nav-links a:not(.btn):hover,
.nav-links a.active {
    opacity: 1;
    color: var(--secondary-color);
}

/* Elegant Underline Animation */
.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--secondary-color);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: translateX(-50%);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Specific styling for the Contact Button in nav to stand out */
header .btn-primary {
    padding: 12px 25px;
    /* More compact padding */
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    background-color: var(--primary-color);
    color: var(--background-color);
    border: 1px solid var(--primary-color);
    box-shadow: 0 4px 10px rgba(97, 68, 45, 0.2);
    white-space: nowrap;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
    margin: 6px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 85vh;
    /* Full width background with "Coffee & Cream" overlay mask */
    background-image: linear-gradient(rgba(251, 243, 232, 0.9), rgba(251, 243, 232, 0.9)),
        url('https://images.unsplash.com/photo-1497215728101-856f4ea42174?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect for premium feel */
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Authentic Layout: Centered Focus */
.hero-content {
    max-width: 900px;
    z-index: 2;
    padding: 0 20px;
    margin: 0 auto;
    /* Center horizontally */
    text-align: center;
    /* Center text */
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    font-weight: 300;
    color: var(--text-color);
    /* Removed side border for centered layout */
    padding: 0;
}

/* --- WhatsApp Floating Button --- */
/* --- WhatsApp Floating Button --- */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    /* Standard WhatsApp Green */
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
    /* Green Shadow */
    z-index: 10000;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulseWhatsapp 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    background-color: #128C7E;
    /* Darker Green on Hover */
    color: white;
}

@keyframes pulseWhatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Hide the old side visual as we now have a full background */
.hero-visual {
    display: none;
}



/* Section Styling - Authentic "Paper" Feel */
section {
    padding: var(--section-padding);
}

.section-title {
    margin-bottom: 80px;
}

.section-title h2 {
    font-size: 3rem;
    display: inline-block;
    border-bottom: 1px solid var(--primary-color);
    padding-bottom: 20px;
}

.section-title p {
    font-style: italic;
    color: var(--secondary-color);
    margin-top: 15px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

/* Concept / Entreprise */
.concept {
    background-color: var(--white);
    /* Slight contrast */
}

.concept-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.concept-text {
    font-size: 1.15rem;
}

.concept-image img {
    border-radius: var(--border-radius);
    filter: sepia(0.2);
    /* Slight warm tone to image */
    transition: filter 0.3s;
}

.concept-image img:hover {
    filter: sepia(0);
}

/* Services - Cards */
.services {
    background-color: var(--background-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card {
    background: transparent;
    border: 1px solid rgba(97, 68, 45, 0.2);
    padding: 50px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    background: var(--white);
    border-color: transparent;
    box-shadow: var(--card-shadow);
    transform: translateY(-5px);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

/* Coaching Section - Detailed */
.coaching-section {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Coaching Detail Block - Float Layout */
.coaching-detail-block {
    overflow: hidden;
}

.coaching-detail-img {
    float: right;
    width: 35%;
    margin-left: 40px;
    margin-bottom: 20px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(97, 68, 45, 0.15);
}

.coaching-detail-img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.coaching-detail-img:hover img {
    transform: scale(1.02);
}

.coaching-detail-block p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
    text-align: justify;
}

.coaching-subtitle {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-weight: 700;
    margin: 30px 0 15px 0;
}

.coaching-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
}

.coaching-checklist li {
    font-size: 1.05rem;
    color: var(--text-light);
    padding: 8px 0;
    line-height: 1.6;
}

.coaching-checklist li i {
    color: var(--secondary-color);
    margin-right: 10px;
}

/* Conseils RH Block */
.coaching-rh-block {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid rgba(97, 68, 45, 0.1);
    overflow: hidden;
}

.coaching-rh-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-family: var(--font-heading);
    margin-bottom: 25px;
    font-weight: 700;
}

.coaching-rh-img {
    float: left;
    width: 30%;
    margin-right: 40px;
    margin-bottom: 20px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(97, 68, 45, 0.15);
}

.coaching-rh-img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.coaching-rh-img:hover img {
    transform: scale(1.02);
}

.coaching-rh-block p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
    text-align: justify;
}

.coaching-rh-img-right {
    float: right;
    width: 30%;
    margin-left: 40px;
    margin-bottom: 20px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(97, 68, 45, 0.15);
}

.coaching-rh-img-right img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.coaching-rh-img-right:hover img {
    transform: scale(1.02);
}

/* Responsiveness for Coaching */
@media screen and (max-width: 960px) {
    .coaching-detail-img {
        float: none;
        width: 100%;
        margin-left: 0;
        margin-bottom: 30px;
    }

    .coaching-detail-block p {
        text-align: left;
    }

    .coaching-rh-img,
    .coaching-rh-img-right {
        float: none;
        width: 100%;
        margin-right: 0;
        margin-left: 0;
        margin-bottom: 30px;
    }

    .coaching-rh-block p {
        text-align: left;
    }
}

/* --- About Section (Redesigned) --- */
.about-modern {
    background-color: var(--background-color);
    padding: 120px 0;
    overflow: hidden;
}

/* About Content - Float Layout */
.about-content {
    overflow: hidden;
    /* Clear floats */
}

.about-section-title {
    font-size: 2rem;
    color: var(--primary-color);
    font-family: var(--font-heading);
    margin-bottom: 25px;
    font-weight: 600;
}

.about-float-img {
    float: left;
    width: 22%;
    margin-right: 40px;
    margin-bottom: 20px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(97, 68, 45, 0.15);
}

.about-float-img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-float-img:hover img {
    transform: scale(1.02);
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
    text-align: justify;
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 30px;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-color);
}

/* --- Service Detail Block --- */
.service-detail-block {
    overflow: hidden;
    margin-bottom: 60px;
    padding-top: 20px;
}

.service-intro {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: center;
}

.service-detail-img {
    float: left;
    width: 28%;
    margin-right: 40px;
    margin-bottom: 20px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(97, 68, 45, 0.15);
}

.service-detail-img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-detail-img:hover img {
    transform: scale(1.02);
}

.service-detail-block p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
    text-align: justify;
}

.service-phases-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 25px 0;
}

.service-phases-list li {
    font-size: 1.1rem;
    color: var(--text-color);
    padding: 8px 0;
    line-height: 1.6;
}

.service-phases-list li i {
    color: var(--secondary-color);
    margin-right: 10px;
}

/* Service Card List */
.service-card-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.service-card-list li {
    font-size: 1rem;
    color: var(--text-light);
    padding: 6px 0;
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
}

.service-card-list li::before {
    content: "•";
    color: var(--secondary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Service Financing Block */
.service-financing {
    margin-top: 50px;
    padding: 35px 40px;
    background: rgba(97, 68, 45, 0.06);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--secondary-color);
}

.service-financing h4 {
    font-size: 1.25rem;
    color: var(--primary-color);
    font-family: var(--font-heading);
    margin-bottom: 20px;
    font-weight: 700;
}

.service-financing ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.service-financing ul li {
    font-size: 1.05rem;
    color: var(--text-light);
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.service-financing ul li::before {
    content: "•";
    color: var(--secondary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.financing-cta {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.financing-cta a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.financing-cta a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* ============================================
   Mobile Responsiveness for About Section
   ============================================ */
@media screen and (max-width: 960px) {
    .about-modern {
        padding: 60px 0;
    }

    .about-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    /* Reset the visuals container completely */
    .about-visuals {
        position: relative;
        height: auto !important;
        /* Override desktop 600px */
        width: 100%;
        order: -1;
        margin-bottom: 0;
    }

    /* Slideshow wrapper */
    .about-visuals .slideshow-container {
        position: relative;
        width: 100%;
        height: 300px;
        overflow: hidden;
        border-radius: 12px;
    }

    /* Reset ALL img-wrapper properties from desktop */
    .about-visuals .slideshow-container .img-wrapper {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: auto !important;
        bottom: auto !important;
        width: 100% !important;
        height: 100% !important;
        margin: 0 !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        transform: none !important;
        transition: opacity 1.5s ease-in-out;
    }

    .about-visuals .slideshow-container .img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    /* Slide 1 (Main): visible first */
    .about-visuals .slideshow-container .img-wrapper.main-img {
        opacity: 1;
        z-index: 2;
        animation: aboutSlide1 30s ease-in-out infinite;
    }

    /* Slide 2 (Small): hidden first, fades in at 15s */
    .about-visuals .slideshow-container .img-wrapper.small-img {
        display: block !important;
        opacity: 0;
        z-index: 3;
        animation: aboutSlide2 30s ease-in-out infinite;
    }

    /* Hide decorative circle */
    .about-visuals .circle-decoration {
        display: none !important;
    }

    /* Full-width text */
    .about-text {
        padding: 0 20px;
        text-align: center;
        width: 100%;
    }

    .display-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .display-title .highlight {
        transform: none;
        display: inline-block;
    }

    .about-divider {
        margin: 20px auto;
        width: 100px;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .about-text p {
        text-align: justify;
        text-align-last: center;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        justify-items: center;
        margin-top: 25px;
        padding-top: 20px;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* Slideshow Animation Keyframes */
@keyframes aboutSlide1 {
    0% {
        opacity: 1;
    }

    45% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    95% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes aboutSlide2 {
    0% {
        opacity: 0;
    }

    45% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    95% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.about p {
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1.8;
}

/* Contact */
.contact {
    background-color: var(--background-color);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
}

.contact-info {
    padding: 40px;
    background-color: var(--white);
    box-shadow: var(--card-shadow);
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.contact-decoration {
    flex-grow: 1;
    display: flex;
    align-items: flex-end;
    margin: 30px -40px -40px -40px;
    /* Negative margin to cover padding */
}

.contact-decoration img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-item {
    margin-bottom: 30px;
    font-family: var(--font-heading);
}

.contact-form form {
    display: grid;
    gap: 30px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 20px;
    border: none;
    border-bottom: 2px solid rgba(97, 68, 45, 0.2);
    background: transparent;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--primary-color);
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-intro {
    margin-bottom: 25px;
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
}

.contact-intro p {
    margin-bottom: 10px;
}

.form-section-title {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 1.1rem;
    margin: 25px 0 15px 0;
    font-weight: 600;
    border-bottom: 1px solid rgba(97, 68, 45, 0.1);
    padding-bottom: 5px;
}

.form-note {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 5px;
    margin-bottom: 0;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-color);
    cursor: pointer;
}

.radio-group input[type="radio"] {
    accent-color: var(--secondary-color);
    width: auto;
    margin: 0;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0 20px;
    font-size: 0.95rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 0.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
    /* Make logo white if it's not */
}

.footer-brand p {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-family: 'Merriweather', serif;
    font-size: 1.1rem;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--white);
    opacity: 0.8;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--secondary-color);
    opacity: 1;
    padding-left: 5px;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    opacity: 0.8;
}

.footer-contact i {
    color: var(--secondary-color);
    margin-right: 10px;
    min-width: 20px;
}

/* Zones d'intervention */
.footer-zones {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 30px;
}

.footer-zones h4 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-family: 'Merriweather', serif;
    font-size: 1.1rem;
}

.zones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 10px 20px;
}

.coaching-rh-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-family: var(--font-heading);
    margin-bottom: 20px;
    font-weight: 700;
}

.zones-grid span {
    color: var(--white);
    opacity: 0.7;
    font-size: 0.85rem;
    transition: opacity 0.3s;
    cursor: default;
}

.zones-grid span:hover {
    opacity: 1;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s;
}

.social-icons a:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 30px;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.6;
}

/* Mobile Footer */
@media screen and (max-width: 960px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-brand,
    .footer-links,
    .footer-contact,
    .footer-social {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-contact li {
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
    }
}

/* Blog Page */
.page-header {
    background-color: var(--background-color);
    color: var(--primary-color);
    padding: 100px 0 50px;
    border-bottom: 1px solid rgba(97, 68, 45, 0.1);
}

.page-header h1 {
    color: var(--primary-color);
}

.breadcrump {
    color: var(--secondary-color);
}

.blog-card {
    background: transparent;
    border: none;
    box-shadow: none;
}

.blog-img {
    height: 250px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    filter: sepia(0.1);
    transition: all 0.3s;
}

.blog-card:hover .blog-img {
    filter: sepia(0);
    transform: scale(1.02);
}

.blog-card:hover {
    transform: none;
    /* Reset distinct hover transform */
    box-shadow: none;
}

.blog-title {
    font-size: 1.5rem;
    margin-top: 15px;
}

.blog-meta {
    color: var(--secondary-color);
    font-style: italic;
    font-family: var(--font-heading);
}

/* Mobile */
/* Mobile Navigation & Responsive Styles */
@media screen and (max-width: 960px) {
    body {
        padding-top: 100px;
        /* Adjust for smaller header */
        /* Prevent horizontal scroll */
        overflow-x: hidden;
    }

    .nav-links {
        position: fixed;
        right: 0px;
        height: 92vh;
        top: 8vh;
        background-color: var(--background-color);
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 50%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        z-index: 998;
        padding-top: 50px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        gap: 30px;
    }

    .nav-links li {
        opacity: 0;
    }

    .burger {
        display: block;
        cursor: pointer;
    }

    .nav-active {
        transform: translateX(0%);
    }

    /* Hero Adjustments */
    .hero {
        flex-direction: column;
        padding-top: 50px;
        text-align: center;
        height: auto;
        min-height: 100vh;
        justify-content: center;
    }

    .hero-content {
        max-width: 100%;
        padding: 0 20px;
        margin-bottom: 50px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    /* Contact Form on Mobile */
    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-info {
        order: 2;
        /* Put info after form on mobile if preferred, or keep as is */
    }

    /* Adjust 3D Postcards for Mobile */
    .blog-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    /* Disable some 3D effects on mobile for performance */
    .service-card {
        transform: none !important;
        margin-bottom: 30px;
    }

    /* About section float layout on mobile */
    .about-float-img {
        float: none;
        width: 100%;
        margin-right: 0;
        margin-bottom: 30px;
    }

    .about-section-title {
        text-align: center;
    }

    .about-content p {
        text-align: left;
    }

    /* Service detail float layout on mobile */
    .service-detail-img {
        float: none;
        width: 100%;
        margin-right: 0;
        margin-bottom: 30px;
    }

    .service-detail-block p {
        text-align: left;
    }
}

/* Very Small Screens */
@media screen and (max-width: 480px) {
    .nav-links {
        width: 80%;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* --- Scroll Reveal Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Blur Reveal (for distinctive text) */
.reveal-blur {
    opacity: 0;
    filter: blur(10px);
    transform: scale(0.95);
    transition: all 1s ease-out;
}

.reveal-blur.active {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
}

/* Side Reveals */
.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s ease-out;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s ease-out;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered delays */
.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

/* 3D Tilt Card Base Styles */
.service-card {
    background: transparent;
    border: 1px solid rgba(97, 68, 45, 0.2);
    padding: 50px;
    transition: transform 0.1s;
    /* Fast for mouse movement */
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* Magnetic Button Base */
.btn-magnetic {
    display: inline-block;
    transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* -------------------------------------------
   Pricing Section
------------------------------------------- */
/* -------------------------------------------
   FAQ Section
------------------------------------------- */
.faq-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.faq-container {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    background-color: var(--white);
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(97, 68, 45, 0.1);
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(97, 68, 45, 0.1);
    transform: translateY(-2px);
}

.faq-item[open] {
    box-shadow: 0 8px 25px rgba(97, 68, 45, 0.15);
    border-color: var(--secondary-color);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    position: relative;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
    font-family: var(--font-heading);
    padding-right: 20px;
    line-height: 1.4;
}

.faq-icon {
    font-size: 1rem;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
    min-width: 20px;
    text-align: center;
}

.faq-item[open] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px 30px 30px;
    color: var(--text-color);
    line-height: 1.8;
    font-size: 1.05rem;
    animation: fadeIn 0.5s ease;
}

.faq-answer p {
    margin-bottom: 15px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    margin: 15px 0 15px 20px;
    padding-left: 0;
    list-style: none;
}

.faq-answer li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}

.faq-answer li::before {
    content: "•";
    color: var(--secondary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.faq-answer h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin: 25px 0 15px 0;
    font-weight: 600;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile FAQ */
@media screen and (max-width: 768px) {
    .faq-container {
        padding: 0 20px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question h3 {
        font-size: 1.1rem;
    }

    .faq-answer {
        padding: 0 20px 20px 20px;
    }
}