/* ===== VARIABLES CSS ===== */
:root {
    --primary-color: #1a1a1a;
    --secondary-color: #dc143c;
    --accent-color: #cc0000;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f5f5f5;
    --bg-white: #ffffff;
    --border-color: #cccccc;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 5px 20px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

ul {
    list-style: none;
}

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

/* ===== NAVIGATION ===== */
.navbar {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

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

.logo h1 {
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
}

.tagline {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 300;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    background-color: rgba(255, 255, 255, 0.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    border-radius: 3px;
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,144C960,149,1056,139,1152,122.7C1248,107,1344,85,1392,74.7L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    opacity: 0.3;
}

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

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

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

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

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

.btn-link {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
}

.btn-link:hover {
    color: var(--secondary-color);
}

/* ===== SECTIONS ===== */
section {
    padding: 60px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 3rem;
}

.lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.95;
}

/* ===== SERVICES GRID ===== */
.services-overview {
    background-color: var(--bg-light);
}

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

/* Grille à 4 colonnes pour services */
.services-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1200px) {
    .services-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid-4 {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background-color: white;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(220, 20, 60, 0.3);
}

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

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

.service-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== FEATURES GRID ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

/* Grille à 4 colonnes pour features */
.features-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1200px) {
    .features-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .features-grid-4 {
        grid-template-columns: 1fr;
    }
}

.feature {
    text-align: center;
    padding: 1.5rem;
}

.feature-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1a1a1a, #333);
    color: white;
    border-radius: 50%;
    font-size: 1.3rem;
    font-weight: bold;
    line-height: 50px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.feature h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.feature p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== PROCESS STEPS ===== */
.process {
    background-color: var(--bg-light);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Process inline - 5 étapes sur une ligne */
.process-steps-inline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.step-inline {
    flex: 1;
    min-width: 140px;
    text-align: center;
    padding: 1.5rem 1rem;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.step-inline:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.step-inline .step-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}

.step-inline h3 {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.step-arrow-inline {
    font-size: 1.5rem;
    color: var(--text-light);
    font-weight: bold;
    flex-shrink: 0;
}

@media (max-width: 1200px) {
    .process-steps-inline {
        flex-wrap: wrap;
        justify-content: center;
    }
    .step-inline {
        min-width: 120px;
    }
    .step-arrow-inline {
        display: none;
    }
}

@media (max-width: 600px) {
    .step-inline {
        min-width: 100%;
    }
}

.step {
    flex: 1;
    min-width: 150px;
    text-align: center;
    padding: 1.5rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.step p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.step-arrow {
    font-size: 2rem;
    color: var(--accent-color);
    font-weight: bold;
}

/* ===== CTA SECTION ===== */
.cta {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #c0392b 100%);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

/* CTA Premium - Blanc avec texte noir */
.cta-premium {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: var(--text-dark);
    text-align: center;
    padding: 60px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.cta-premium h2 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
}

.cta-premium p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.btn-dark {
    background-color: var(--primary-color);
    color: white;
    padding: 14px 35px;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.btn-dark:hover {
    background-color: #333;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

/* ===== COMPOSITION SECTION ===== */
.composition-section {
    background-color: var(--bg-light);
}

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

.composition-item {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.composition-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

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

.composition-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.composition-item p {
    color: var(--text-light);
}

/* ===== TIMELINE ===== */
.timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 29px;
    top: 60px;
    width: 2px;
    height: calc(100% + 3rem);
    background-color: var(--accent-color);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: var(--shadow);
}

.timeline-content {
    flex: 1;
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-light);
}

/* ===== EQUIPMENT SECTION ===== */
.equipment-section {
    background-color: var(--bg-light);
}

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

.equipment-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

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

.equipment-card p {
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.support-list {
    list-style: none;
    margin: 1rem 0;
}

.support-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--bg-light);
    color: var(--text-dark);
}

.support-list li:last-child {
    border-bottom: none;
}

.note {
    font-style: italic;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===== TIMING SECTION ===== */
.timing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.timing-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

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

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

.timing-card p {
    color: var(--text-dark);
    font-size: 1.1rem;
}

.small-text {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

/* ===== PORTRAIT SECTIONS ===== */
.portrait-hero {
    background-color: var(--bg-light);
}

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

.portrait-placeholder {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    color: white;
    padding: 4rem 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
}

.placeholder-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
}

/* ===== CUSTOMIZATION OPTIONS ===== */
.customization-section {
    background-color: var(--bg-light);
}

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

.option-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

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

.option-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.option-choices {
    text-align: left;
}

.choice-item {
    padding: 0.8rem;
    margin-bottom: 0.5rem;
    background-color: var(--bg-light);
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.check {
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* ===== PROCESS FLOW ===== */
.process-flow {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 1rem;
}

.flow-step {
    flex: 1;
    min-width: 200px;
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
}

.flow-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.flow-icon {
    font-size: 3rem;
    margin: 1.5rem 0 1rem;
}

.flow-step h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.flow-step p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.flow-arrow {
    font-size: 2rem;
    color: var(--accent-color);
    font-weight: bold;
    display: flex;
    align-items: center;
}

/* ===== PRICING SECTION ===== */
.pricing-section {
    background-color: var(--bg-light);
}

.pricing-highlight {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

.price-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.pricing-highlight h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.pricing-highlight p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* ===== OFFER BANNER ===== */
.offer-section {
    background: linear-gradient(135deg, var(--accent-color) 0%, #2980b9 100%);
    color: white;
}

.offer-banner {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.offer-icon {
    font-size: 5rem;
}

.offer-content {
    flex: 1;
    min-width: 300px;
}

.offer-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.offer-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

/* ===== BENEFITS GRID ===== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

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

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

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

.benefit-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.benefit-card p {
    color: var(--text-light);
}

/* ===== GALLERY ===== */
.gallery-intro {
    text-align: center;
}

.edition-info {
    background-color: var(--bg-light);
}

.info-banner {
    display: flex;
    align-items: center;
    gap: 2rem;
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    flex-wrap: wrap;
}

.info-icon {
    font-size: 4rem;
}

.info-content {
    flex: 1;
    min-width: 300px;
}

.info-content h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.info-content p {
    color: var(--text-dark);
    line-height: 1.8;
}

/* ===== QUALITY PROCESS ===== */
.quality-process {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 1rem;
}

.quality-step {
    flex: 1;
    min-width: 200px;
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
}

.quality-step .step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.quality-step h3 {
    color: var(--primary-color);
    margin: 1.5rem 0 0.5rem;
}

.quality-step p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.quality-arrow {
    font-size: 2rem;
    color: var(--accent-color);
    font-weight: bold;
    display: flex;
    align-items: center;
}

/* ===== PHOTO GALLERY ===== */
.photo-gallery {
    background-color: var(--bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.gallery-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.placeholder-gallery {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.placeholder-gallery .placeholder-icon {
    font-size: 4rem;
    margin-bottom: 0.5rem;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), transparent);
}

.edition-badge {
    background-color: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.gallery-info {
    padding: 1.5rem;
}

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

.artist {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.price {
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

/* ===== MASTERS SECTION ===== */
.masters-section {
    text-align: center;
}

.coming-soon-banner {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    flex-wrap: wrap;
}

.coming-icon {
    font-size: 5rem;
}

.coming-content {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.coming-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.coming-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

/* ===== ALL INCLUSIVE ===== */
.all-inclusive {
    background-color: var(--bg-light);
}

.inclusive-features {
    max-width: 800px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: white;
    margin-bottom: 1rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    align-items: flex-start;
}

.feature-check {
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.feature-text h3 {
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.feature-text p {
    color: var(--text-light);
}

/* ===== REPRODUCTIONS SECTIONS ===== */
.repro-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.intro-cta {
    margin-top: 2rem;
}

.audience-section {
    background-color: var(--bg-light);
}

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

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

.audience-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

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

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

.audience-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ===== SERVICE DETAILS ===== */
.services-details {
    background-color: var(--bg-light);
}

.service-list {
    max-width: 900px;
    margin: 0 auto;
}

.service-detail {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.service-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.service-content {
    flex: 1;
}

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

.service-content p {
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.service-content ul {
    list-style: disc;
    margin-left: 1.5rem;
    color: var(--text-light);
}

.service-content ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* ===== RESTORATION BANNER ===== */
.restoration-banner {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: linear-gradient(135deg, var(--accent-color), #2980b9);
    color: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    flex-wrap: wrap;
}

.restoration-icon {
    font-size: 5rem;
}

.restoration-content {
    flex: 1;
    min-width: 300px;
}

.restoration-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.restoration-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.95;
}

/* ===== FORMATS SECTION ===== */
.formats-section {
    background-color: var(--bg-light);
}

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

.format-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

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

.format-card p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.format-card strong {
    color: var(--secondary-color);
}

/* ===== CERTIFICATE ===== */
.certificate-details {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background-color: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    flex-wrap: wrap;
}

.certificate-icon {
    font-size: 5rem;
}

.certificate-text {
    flex: 1;
    min-width: 300px;
}

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

.certificate-text h4 {
    color: var(--text-dark);
    margin: 1.5rem 0 1rem;
    font-size: 1.1rem;
}

.certificate-text p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.certificate-text ul {
    list-style: none;
}

.certificate-text ul li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    line-height: 1.6;
}

/* ===== ARTIST CONTROL ===== */
.artist-control {
    background-color: var(--bg-light);
}

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

.control-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* ===== LEGAL SECTION ===== */
.legal-content {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background-color: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    max-width: 900px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.legal-icon {
    font-size: 5rem;
}

.legal-text {
    flex: 1;
    min-width: 300px;
}

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

.legal-text p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-text ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-text ul li {
    color: var(--text-dark);
    padding: 0.3rem 0;
}

.legal-ref {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

/* ===== COVERAGE SECTION ===== */
.coverage-section {
    background-color: var(--bg-light);
}

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

.coverage-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

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

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

.coverage-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ===== TIMELINE BOXES ===== */
.timeline-boxes {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-box {
    flex: 1;
    min-width: 250px;
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

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

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

.timeline-delay {
    font-size: 1.5rem;
    color: var(--secondary-color);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.timeline-box p {
    color: var(--text-light);
}

.timeline-arrow {
    font-size: 2rem;
    color: var(--accent-color);
    font-weight: bold;
    display: flex;
    align-items: center;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 60px 0;
}

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

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

.contact-info h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.info-items {
    margin: 2rem 0;
}

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

.info-icon {
    font-size: 2.5rem;
}

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

.info-text p {
    color: var(--text-dark);
    line-height: 1.8;
}

.services-list {
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
}

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

.services-list ul li {
    padding: 0.5rem 0;
    color: var(--text-dark);
}

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

.contact-form-wrapper h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2rem;
}

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

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

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

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
    cursor: pointer;
}

.checkbox-label span {
    color: var(--text-dark);
    line-height: 1.6;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 5px;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    background-color: var(--bg-light);
}

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

.faq-item {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: var(--text-dark);
    line-height: 1.8;
}

/* ===== COVERAGE INFO ===== */
.coverage-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.coverage-box {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

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

.coverage-box p {
    color: var(--text-light);
}

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

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

.footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-section p {
    opacity: 0.9;
    line-height: 1.8;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    opacity: 0.9;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
    opacity: 0.8;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--primary-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        gap: 0;
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 0.5rem 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

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

@media (max-width: 600px) {
    .hero {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    section {
        padding: 40px 0;
    }

    .process-steps,
    .process-flow,
    .quality-process {
        flex-direction: column;
    }

    .step-arrow,
    .flow-arrow,
    .quality-arrow {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}

/* ===== ZONES IMAGES ===== */
.image-zone {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow);
    object-fit: cover;
}

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--shadow);
    background-color: #f5f5f5;
}

.image-placeholder {
    width: 100%;
    padding-top: 66.66%; /* Ratio 3:2 */
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.image-placeholder-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #999;
}

.image-placeholder-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    opacity: 0.5;
}

.image-caption {
    padding: 1rem;
    background-color: white;
    text-align: center;
    font-style: italic;
    color: var(--text-light);
}

/* Zone hero avec image de fond */
.hero-with-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-with-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 26, 0.7);
    z-index: 0;
}

/* Galerie d'images */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.image-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.image-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.image-gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* Zone pour logo/image d'en-tête */
.logo-image {
    max-width: 200px;
    height: auto;
}

/* Section avec image de fond */
.section-with-bg {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.section-with-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    z-index: 0;
}

.section-with-bg .container {
    position: relative;
    z-index: 1;
}

/* Bannière avec image */
.banner-with-image {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 26, 0.6);
}

.banner-content {
    position: relative;
    z-index: 1;
    color: white;
}

/* ===== EXAMPLES SECTION ===== */
.examples-section {
    background-color: var(--bg-light);
    padding: 80px 0;
}

/* ===== PORTRAIT EXAMPLES ===== */
.portrait-examples {
    background-color: var(--bg-white);
    padding: 80px 0;
}

.portrait-examples .image-gallery {
    margin-top: 3rem;
}

/* ===== PREMIUM ENHANCEMENTS ===== */

/* Typographie premium */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    letter-spacing: -0.02em;
}

.section-title {
    font-weight: 700;
    letter-spacing: -0.03em;
}

/* Ombres plus douces et élégantes */
.service-card,
.feature,
.composition-item,
.benefit-card,
.gallery-item,
.audience-card {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-card:hover,
.benefit-card:hover,
.gallery-item:hover,
.audience-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Boutons premium */
.btn {
    letter-spacing: 0.5px;
    font-weight: 600;
    border-radius: 8px;
    padding: 14px 32px;
}

.btn-primary {
    background: linear-gradient(135deg, #dc143c 0%, #cc0000 100%);
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.4);
}

.btn-secondary {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

/* Cards avec bordure subtile */
.image-container,
.equipment-card,
.format-card,
.timing-card {
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Section backgrounds plus élégants */
.services-overview,
.process,
.examples-section,
.customization-section,
.quality-section,
.equipment-section,
.formats-section,
.audience-section,
.services-details,
.coverage-section,
.faq-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

/* Navbar premium */
.navbar {
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Hero premium */
.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.hero::before {
    opacity: 0.5;
}

/* Page headers premium */
.page-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
}

/* Espacements optimisés */
section {
    padding: 50px 0;
}

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

.section-intro {
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

/* Liens premium */
.btn-link {
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

/* Footer premium */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Options grid à 3 colonnes */
.options-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 968px) {
    .options-grid-3 {
        grid-template-columns: 1fr;
    }
}

/* Benefits grid à 4 colonnes */
.benefits-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1200px) {
    .benefits-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .benefits-grid-4 {
        grid-template-columns: 1fr;
    }
}

/* Inclusive features compact - 3 colonnes */
.inclusive-features-compact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.feature-item-compact {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-item-compact .feature-check {
    width: 35px;
    height: 35px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    flex-shrink: 0;
}

.feature-item-compact .feature-text h3 {
    color: var(--primary-color);
    font-size: 0.95rem;
    margin: 0;
    font-weight: 600;
}

@media (max-width: 968px) {
    .inclusive-features-compact {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .inclusive-features-compact {
        grid-template-columns: 1fr;
    }
}

/* Audience grid à 4 colonnes */
.audience-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1200px) {
    .audience-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .audience-grid-4 {
        grid-template-columns: 1fr;
    }
}

/* Coverage grid à 4 colonnes */
.coverage-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1200px) {
    .coverage-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .coverage-grid-4 {
        grid-template-columns: 1fr;
    }
}

/* Composition grid à 5 colonnes */
.composition-grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1200px) {
    .composition-grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .composition-grid-5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .composition-grid-5 {
        grid-template-columns: 1fr;
    }
}

/* Equipment grid à 4 colonnes */
.equipment-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1200px) {
    .equipment-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .equipment-grid-4 {
        grid-template-columns: 1fr;
    }
}

/* Composition items plus compacts */
.composition-grid-5 .composition-item {
    padding: 1.5rem 1rem;
}

.composition-grid-5 .composition-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.composition-grid-5 .composition-item p {
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Equipment cards plus compacts */
.equipment-grid-4 .equipment-card {
    padding: 1.5rem;
}

.equipment-grid-4 .equipment-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.equipment-grid-4 .equipment-card p {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===== GRILLES HORIZONTALES FORCÉES - 4 COLONNES ===== */

/* Composition grid - 4 colonnes STRICTEMENT horizontales */
.composition-grid-4-horizontal {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    gap: 1.5rem;
    flex-wrap: nowrap;
}

.composition-grid-4-horizontal .composition-item {
    flex: 1;
    min-width: 0;
    max-width: calc(25% - 1.125rem);
}

/* Equipment grid - 4 colonnes STRICTEMENT horizontales */
.equipment-grid-4-horizontal {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    gap: 1.5rem;
    flex-wrap: nowrap;
}

.equipment-grid-4-horizontal .equipment-card {
    flex: 1;
    min-width: 0;
    max-width: calc(25% - 1.125rem);
}

/* Responsive - Passage en vertical sur petits écrans */
@media (max-width: 1200px) {
    .composition-grid-4-horizontal,
    .equipment-grid-4-horizontal {
        flex-wrap: wrap;
    }
    
    .composition-grid-4-horizontal .composition-item,
    .equipment-grid-4-horizontal .equipment-card {
        max-width: calc(50% - 0.75rem);
        min-width: calc(50% - 0.75rem);
    }
}

@media (max-width: 768px) {
    .composition-grid-4-horizontal,
    .equipment-grid-4-horizontal {
        flex-direction: column;
    }
    
    .composition-grid-4-horizontal .composition-item,
    .equipment-grid-4-horizontal .equipment-card {
        max-width: 100%;
        min-width: 100%;
    }
}
