/* === Reset et Base === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Scrollbar visible */
html,
body {
    overflow-x: hidden;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #34495e;
    --accent-color: #95a5a6;
    --text-color: #2c3e50;
    --light-bg: #ecf0f1;
    --white: #ffffff;
    --border-color: #bdc3c7;
    --shadow: 0 2px 15px rgba(44, 62, 80, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

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

/* === Header et Navigation === */
header {
    background-color: #ffffff;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 99999;
}

/* Suppression du pseudo-élément potentiellement problématique */
header::before {
    display: none;
}

.navbar {
    padding: 0;
    background: #ffffff;
    position: relative;
    z-index: 10000;
}

.navbar * {
    background-color: #ffffff;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 5rem;
    text-decoration: none;
    padding: 0.3rem 0;
    padding-right: 1.5rem;
}

.logo-img {
    height: 80px;
    width: auto;
    display: block;
    background: transparent;
    object-fit: contain;
}

.logo-text {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 700;
    text-shadow: 0 3px 10px rgba(44, 62, 80, 0.2),
                 0 2px 5px rgba(44, 62, 80, 0.15);
    letter-spacing: 0.3px;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-menu,
.nav-menu *,
.nav-menu *::before,
.nav-menu *::after {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    text-decoration: none !important;
    transition: none !important;
    animation: none !important;
}

.nav-menu {
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    overflow: hidden;
    font-size: 0; /* Éliminer les espaces blancs */
}

.nav-menu li {
    float: left;
    display: block;
    margin: 0;
    padding: 0;
    border: none;
    background: #ffffff;
    margin-right: -1px; /* Chevauchement pour éviter les gaps */
}

.nav-menu a {
    display: block;
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 1.5rem 2rem;
    background: #ffffff;
    border: none;
    outline: none;
    position: relative;
    z-index: 1;
}

.nav-menu a:hover {
    color: var(--secondary-color);
    background: #ffffff;
    z-index: 2;
}

/* === Section Hero === */
section {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
}

.hero {
    background: url('../images/Fonds2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 180px 0;
    text-align: center;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    /* overflow: hidden; Pas nécessaire si pas de blur */
}

/* Suppression du pseudo-élément flou */
.hero::before {
    display: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content p {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-content {
    background-color: rgba(44, 62, 80, 0.9);
    padding: 2.5rem;
    border-radius: 15px;
    backdrop-filter: blur(5px);
}

.hero-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: #f8f9fa;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* === Section Bénéfices === */
.benefices {
    padding: 80px 0;
    background-color: var(--white);
    margin-top: 3rem;
}

.benefices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefice-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background-color: var(--light-bg);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.benefice-card:hover {
    transform: translateY(-5px);
}

.benefice-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.benefice-card p {
    color: #555;
    line-height: 1.6;
}

/* === Section Services & Process (regroupée) === */
.about {
    background-color: var(--light-bg);
    padding: 80px 0;
    border-top: 4px solid #d5dade;
}

.service-intro {
    margin-bottom: 4rem;
}

.pour-qui-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 2.5rem 3rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(44, 62, 80, 0.15);
}

.pour-qui-box h3 {
    color: var(--white);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.pour-qui-box p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.subsection-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 4rem 0 2rem 0;
    text-align: left;
    font-weight: 700;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--secondary-color);
    display: inline-block;
}

/* === Section Ce que je fais === */
.what-i-do {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 4rem;
}

.what-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(44, 62, 80, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--light-bg);
}

.what-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(44, 62, 80, 0.15);
}

.what-card h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.what-card p {
    color: #555;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* === Section Processus (Comment ça se passe) === */
.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    counter-reset: step-counter;
}

.step {
    position: relative;
    background-color: var(--light-bg);
    padding: 2rem 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.step:hover {
    transform: scale(1.05);
}

.step::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 2px 10px rgba(44, 62, 80, 0.2);
}

.step-number {
    display: none;
}

.step-content h3 {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    margin-top: 1rem;
    font-weight: 600;
}

.step-content p {
    color: #555;
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

/* === Section Pour qui === */
.pour-qui {
    background-color: var(--white);
    padding: 80px 0;
}

.pour-qui-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.pour-qui-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.pour-qui-examples {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.example-badge {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

/* === Section Hero (old) === */    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* === Boutons === */
.btn-primary {
    display: inline-block;
    background-color: var(--white);
    color: var(--primary-color);
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* === Sections === */
section {
    padding: 80px 0;
}

section h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-weight: 700;
}

/* === Section À propos === */
.about {
    background-color: var(--light-bg);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.about-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #555;
}

/* === Section Services === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    font-weight: 300;
    letter-spacing: 0.1em;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* === Section Contact === */
.contact {
    background-color: var(--white);
    padding: 80px 0;
    border-top: 4px solid #d5dade;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
}

.info-item {
    margin-bottom: 1rem;
    color: #555;
}

/* === Formulaire === */
.contact-form-wrapper {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-group textarea {
    resize: vertical;
}

/* === Services Extra === */
.services-extra {
    text-align: center;
    margin-top: 3rem;
    padding: 1.5rem;
    background-color: var(--light-bg);
    border-radius: 8px;
}

.services-extra p {
    color: #555;
    font-size: 1.05rem;
}

/* === Section Tarifs === */
.tarifs {
    background-color: var(--white);
}

.tarifs-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: #666;
}

.tarifs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.tarif-card {
    background-color: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tarif-card.featured {
    border-color: var(--secondary-color);
    transform: scale(1.05);
}

.tarif-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.tarif-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.tarif-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--light-bg);
}

.tarif-header h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.tarif-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.tarif-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tarif-body ul {
    list-style: none;
    padding: 0;
    flex-grow: 1;
}

.tarif-body li {
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--light-bg);
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.tarif-body li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.tarif-body li:last-child {
    border-bottom: none;
}

.tarifs-note {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
}

.tarifs-note p {
    margin-bottom: 0.8rem;
    line-height: 1.7;
    color: #555;
}

.tarifs-note p:last-child {
    margin-bottom: 0;
}

.tarifs-note a {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* === Footer === */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: var(--white);
}

.footer-section p {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

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

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-links a {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(255,255,255,0.1);
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: rgba(255,255,255,0.2);
}

.footer-copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    margin: 0;
}

/* === Page CGV === */
.cgv-content {
    padding: 60px 0;
    background-color: var(--light-bg);
}

.cgv-content h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.cgv-date {
    text-align: center;
    color: #555;
    font-style: italic;
    margin-bottom: 3rem;
}

.cgv-section {
    background-color: var(--white);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.cgv-section h2 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 0.5rem;
}

.cgv-section h3 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.cgv-section p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

.cgv-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.cgv-section li {
    line-height: 1.8;
    color: #555;
    margin-bottom: 0.5rem;
}

.cgv-footer {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 10px;
}

.cgv-footer p {
    margin-bottom: 1rem;
}

/* === Page À propos === */
.about-hero {
    background: url('../images/Fonds2.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 80px 0;
}

.about-hero-content {
    background-color: rgba(44, 62, 80, 0.85);
    padding: 2.5rem;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: center;
}

.about-photo-section {
    text-align: center;
}

.about-photo-placeholder {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 5px solid rgba(255,255,255,0.3);
    font-size: 1.2rem;
    color: rgba(255,255,255,0.7);
    overflow: hidden;
}

.about-photo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-tagline {
    font-size: 1.3rem;
    font-style: italic;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.about-intro h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.about-intro h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #f8f9fa;
}

.about-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    line-height: 1.6;
}

.about-details {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.about-content-main {
    max-width: 900px;
    margin: 0 auto;
}

.about-section {
    background-color: var(--white);
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.about-section h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid var(--secondary-color);
    padding-bottom: 0.5rem;
}

.about-section p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.about-section p:last-child {
    margin-bottom: 0;
}

.why-work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.why-card {
    background-color: var(--light-bg);
    padding: 1.5rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.why-card:hover {
    transform: translateX(5px);
}

.why-card h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.why-card p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

.about-cta {
    background: url('../images/Fonds2.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(44, 62, 80, 0.85);
}

.about-cta .container {
    position: relative;
    z-index: 1;
}

.cta-content {
    color: var(--white);
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #f8f9fa;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* === Page Offres === */
.offres-hero {
    background: url('../images/Fonds2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.offres-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(44, 62, 80, 0.8);
    z-index: 0;
}

.offres-hero .container {
    position: relative;
    z-index: 1;
}

.offres-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.offres-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.offres-packs {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.packs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pack-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 2px solid var(--border-color);
    position: relative;
}

.pack-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.pack-featured {
    border-color: var(--secondary-color);
    transform: scale(1.05);
}

.pack-featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pack-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.pack-header {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
    padding: 2rem;
    text-align: center;
    border-bottom: 3px solid var(--secondary-color);
}

.pack-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.pack-header h2 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.pack-tagline {
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.pack-ideal {
    color: #666;
    font-size: 0.95rem;
    font-style: italic;
}

.pack-body {
    padding: 2rem;
    flex-grow: 1;
}

.pack-body h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.pack-includes {
    list-style: none;
    padding: 0;
}

.pack-includes li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--light-bg);
    color: #555;
    position: relative;
    padding-left: 1.8rem;
}

.pack-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.pack-includes li:last-child {
    border-bottom: none;
}

.pack-footer {
    padding: 2rem;
    background-color: var(--light-bg);
    text-align: center;
}

.btn-pack {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-pack:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-pack-featured {
    background-color: var(--secondary-color);
}

.btn-pack-featured:hover {
    background-color: var(--primary-color);
}

/* Option Embauche */
.option-section {
    margin-top: 3rem;
}

.option-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 2px solid var(--accent-color);
    display: grid;
    grid-template-columns: 1fr 1fr 200px;
    gap: 2rem;
    align-items: center;
}

.option-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.option-icon {
    font-size: 3rem;
}

.option-text h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.option-text p {
    color: #666;
    margin: 0;
}

.option-body h3 {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.option-includes {
    list-style: none;
    padding: 0;
    margin: 0;
}

.option-includes li {
    padding: 0.5rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
}

.option-includes li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.option-footer {
    text-align: center;
}

.btn-option {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-option:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Livrables */
.livrables-section {
    padding: 80px 0;
    background-color: var(--white);
}

.livrables-section h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.livrables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.livrable-card {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.livrable-card:hover {
    transform: translateX(8px);
}

.livrable-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.livrable-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* CTA Offres */
.offres-cta {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.cta-box {
    text-align: center;
    color: var(--text-color);
}

.cta-box h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
}

/* === Page Tarifs === */
.tarifs-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.tarifs-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.tarifs-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.tarifs-table-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.tarifs-intro-text {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.tarifs-intro-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.table-wrapper {
    background-color: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
    overflow-x: auto;
}

.tarifs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.tarifs-table thead {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.tarifs-table th {
    padding: 1.2rem 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
}

.tarifs-table tbody tr {
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.3s ease;
}

.tarifs-table tbody tr:hover {
    background-color: var(--light-bg);
}

.tarifs-table tbody tr.featured-row {
    background-color: rgba(15, 52, 96, 0.05);
}

.tarifs-table td {
    padding: 1.5rem 1rem;
    vertical-align: top;
}

.offer-name {
    min-width: 200px;
}

.offer-name strong {
    display: block;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.offer-subtitle {
    display: block;
    color: #666;
    font-size: 0.85rem;
    font-style: italic;
}

.price-range {
    color: #666;
    font-weight: 500;
    min-width: 130px;
}

.price-starting {
    min-width: 150px;
}

.price-highlight {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1.1rem;
}

.conditions {
    color: #555;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Version mobile des tarifs */
.tarifs-cards-mobile {
    display: none;
}

.tarif-card-mobile {
    background-color: var(--white);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
}

.tarif-card-mobile.featured-card-mobile {
    background-color: rgba(15, 52, 96, 0.03);
}

.tarif-card-mobile h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.card-subtitle {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.card-prices {
    background-color: var(--light-bg);
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.card-range {
    color: #666;
    margin-bottom: 0.5rem;
}

.card-starting {
    font-size: 1.1rem;
}

.card-starting strong {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.card-conditions {
    color: #555;
    line-height: 1.6;
    font-size: 0.9rem;
}

.card-conditions strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

/* Section Règles */
.tarifs-rules {
    padding: 60px 0;
    background-color: var(--white);
}

.rules-box {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--light-bg), var(--white));
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.rules-box h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.rules-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
    text-align: center;
}

.rule-emphasis {
    background-color: rgba(15, 52, 96, 0.05);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.rule-emphasis strong {
    color: var(--secondary-color);
}

/* Section Modalités */
.tarifs-modalites {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.tarifs-modalites h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.modalites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.modalite-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.modalite-card:hover {
    transform: translateY(-5px);
}

.modalite-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.modalite-card p {
    color: #666;
    line-height: 1.6;
}

/* CTA Tarifs */
.tarifs-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

/* === Responsive === */
@media (max-width: 768px) {
    .nav-menu {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
        font-size: 0.9rem;
    }
    
    .nav-menu li {
        float: none;
        margin: 0;
    }
    
    .nav-menu a {
        padding: 0.8rem 1.2rem;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }

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

    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    section {
        padding: 60px 0;
    }
    
    section h2 {
        font-size: 1.7rem;
    }
    
    .services-grid, .process-steps {
        grid-template-columns: 1fr;
    }

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

    .what-i-do {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }

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

    .tarif-card.featured {
        transform: scale(1);
    }

    .about-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-photo-placeholder {
        width: 200px;
        height: 200px;
    }

    .why-work-grid {
        grid-template-columns: 1fr;
    }

    .about-intro h1 {
        font-size: 2rem;
    }

    .about-intro h2 {
        font-size: 1.6rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

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

    .pack-featured {
        transform: scale(1);
    }

    .option-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .option-header {
        flex-direction: column;
        text-align: center;
    }

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

    .offres-hero h1 {
        font-size: 2rem;
    }

    .cta-box h2 {
        font-size: 1.8rem;
    }

    /* Tarifs responsive */
    .table-wrapper {
        display: none;
    }

    .tarifs-cards-mobile {
        display: block;
    }

    .tarifs-hero h1 {
        font-size: 2rem;
    }

    .rules-box {
        padding: 1.5rem;
    }

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

@media (max-width: 480px) {
    .navbar .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .example-badge {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
    }
}

/* === Bouton retour en haut === */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
