/* Variables CSS pour la nouvelle palette de couleurs avec gris et anthracite */
:root {
    --primary-color: #6B6B6B;      /* Gris moyen */
    --primary-light: #8A8A8A;      /* Gris clair */
    --primary-dark: #205967;       /* Vert foncé */
    --secondary-color: #67BCD5;   /* Bleu clair */
    --secondary-light: #4A90A4;   /* Bleu moyen */
    --secondary-dark: #205967;     /* Vert foncé */
    --accent-color: #4A90A4;       /* Bleu moyen */
    --accent-light: #DCDAD2;      /* Gris clair */
    --neutral-900: #205967;       /* Vert foncé */
    --neutral-800: #2C2C2C;        /* Anthracite */
    --neutral-700: #6B6B6B;        /* Gris moyen */
    --neutral-600: #2C2C2C;        /* Anthracite */
    --neutral-500: #2C2C2C;        /* Anthracite */
    --neutral-400: #DCDAD2;        /* Gris clair */
    --neutral-300: #DCDAD2;        /* Gris clair */
    --neutral-200: #DCDAD2;        /* Gris clair */
    --neutral-100: #DCDAD2;        /* Gris clair */
    --neutral-50: #DCDAD2;         /* Gris clair */
    --white: #ffffff;              /* Blanc pur */
}

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

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--secondary-color) var(--neutral-100);
}

/* Personnalisation de la barre de scroll */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--neutral-100);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 4px;
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
}

body {
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--neutral-800);
    background-color: var(--white);
    font-feature-settings: "liga" 1, "kern" 1;
    text-rendering: optimizeLegibility;
}

/* Typography avec support des caractères spéciaux */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-feature-settings: "liga" 1, "kern" 1;
    text-rendering: optimizeLegibility;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #ffffff !important;
    opacity: 1 !important;
    z-index: 1000;
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--neutral-200);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

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

.nav-logo .logo {
    height: 50px;
    width: auto;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    height: 50px;
    display: none; /* Masqué car le logo contient déjà le texte */
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.nav-item:nth-last-child(3) {
    margin-right: 1.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--neutral-700);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

/* Pas de soulignement pour les boutons */
.nav-button::after {
    display: none;
}

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

.nav-link.active {
    color: var(--secondary-color) !important;
}

.nav-link.active::after {
    width: 100% !important;
}

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

.bar {
    width: 25px;
    height: 3px;
    background: var(--neutral-700);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--neutral-900);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(32, 89, 103, 0.7) 0%, rgba(32, 89, 103, 0.9) 100%);
    z-index: 2;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 3;
    text-align: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    color: var(--white);
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--neutral-100);
}

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

.btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.btn-primary:hover {
    background: var(--secondary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(103, 188, 213, 0.3);
}

.btn-secondary {
    background: var(--neutral-200);
    color: var(--neutral-700);
    border: 2px solid var(--neutral-300);
}

.btn-secondary:hover {
    background: var(--neutral-300);
    color: var(--neutral-800);
    border-color: var(--neutral-400);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Activity Cards Section */
.activity-cards {
    padding: 6rem 0;
    background: var(--neutral-50);
}

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

.activity-card {
    background: var(--white);
    padding: 3rem;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.activity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(32, 89, 103, 0.02) 0%, rgba(103, 188, 213, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.activity-card:hover::before {
    opacity: 1;
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(32, 89, 103, 0.15);
    border-left-color: var(--primary-color);
}

.card-content h3 {
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--neutral-800);
}

.card-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    position: relative;
    transition: color 0.3s ease;
}

.card-link::after {
    content: '→';
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

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

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

/* Sections communes */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--neutral-800);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--neutral-600);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* Journey Timeline Section */
.journey {
    background: var(--neutral-50);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

/* Ancienne timeline supprimée */

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

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: #000;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 0;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    min-width: 120px;
    text-align: center;
}

.timeline-item:nth-child(odd) .timeline-year {
    margin-right: 2rem;
}

.timeline-item:nth-child(even) .timeline-year {
    margin-left: 2rem;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    flex: 1;
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 2rem;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: 2rem;
}

.timeline-content p {
    margin: 0;
    line-height: 1.6;
    color: #666;
}

.timeline-item.current .timeline-year {
    background: var(--secondary-color);
    color: var(--white);
}

.timeline-item.current .timeline-content {
    color: var(--primary-color);
    font-weight: 600;
}

/* Ancienne timeline supprimée */

/* Buildings Section */
.buildings {
    background: var(--neutral-50);
    padding: 6rem 0;
}

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

.building-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--neutral-200);
}

.building-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

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

.building-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    filter: sepia(20%) saturate(80%) hue-rotate(15deg) brightness(0.9) contrast(1.1);
}

.building-card:hover .building-img {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.building-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(32, 89, 103, 0.6) 0%, rgba(103, 188, 213, 0.3) 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.building-card:hover .building-overlay {
    opacity: 1;
}

.building-info h3 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.building-info p {
    color: var(--secondary-light);
    font-size: 1rem;
    font-weight: 500;
}

.building-content {
    padding: 2rem;
}

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

.building-address {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.building-description {
    color: var(--neutral-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.rental-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--neutral-200);
}

.rental-count {
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

.rental-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.rental-link:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* About Section */
.about {
    background: var(--white);
}

.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    filter: sepia(20%) saturate(80%) hue-rotate(15deg) brightness(0.9) contrast(1.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-img:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Coworking Section */
.coworking {
    background: var(--neutral-50);
}

.coworking-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: stretch;
    min-height: 500px;
}

.coworking-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.coworking-image {
    display: flex;
    align-items: stretch;
}

.coworking-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.coworking-img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

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

.coworking-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--neutral-600);
    line-height: 1.8;
}

.coworking-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    flex-shrink: 0;
}

.feature h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--neutral-800);
}

.feature p {
    font-size: 0.9rem;
    color: var(--neutral-600);
    margin: 0;
}

.coworking-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.coworking-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 400px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.gallery-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.3s ease;
    filter: sepia(20%) saturate(80%) hue-rotate(15deg) brightness(0.9) contrast(1.1);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 1rem;
    text-align: center;
}

.gallery-overlay span {
    font-weight: 600;
    font-size: 0.9rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--neutral-600);
    line-height: 1.8;
}

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

.stat {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat h4 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--neutral-600);
    font-weight: 500;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 4rem;
}

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

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--neutral-200);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--neutral-800);
}

.service-card p {
    color: var(--neutral-600);
    line-height: 1.6;
}

/* Portfolio Section */
.portfolio {
    background: var(--neutral-50);
}

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

.portfolio-item {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
}

.portfolio-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    filter: sepia(20%) saturate(80%) hue-rotate(15deg) brightness(0.9) contrast(1.1);
}

.portfolio-item:hover .portfolio-img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(32, 89, 103, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-content {
    padding: 1.5rem;
}

.portfolio-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--neutral-800);
}

.portfolio-content p {
    color: var(--neutral-600);
    margin-bottom: 1rem;
}

.portfolio-tag {
    background: var(--neutral-100);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Contact Section */
.contact {
    background: var(--neutral-50);
}
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

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

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    color: var(--neutral-800);
}

.contact-item p {
    color: var(--neutral-600);
    line-height: 1.6;
}

.contact-form {
    background: var(--neutral-50);
    padding: 2rem;
    border-radius: 20px;
}

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

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

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--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,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.footer-section p {
    color: var(--neutral-300);
    margin-bottom: 1rem;
}

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

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

.footer-section ul li a {
    color: var(--neutral-300);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--neutral-700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--neutral-700);
    color: var(--neutral-300);
}

/* 10mercoeur Section */
.mercoeur-section {
    padding: 100px 0;
    background: var(--white);
}

.mercoeur-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.mercoeur-text h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.mercoeur-text p {
    color: var(--neutral-700);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.mercoeur-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.mercoeur-features .feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.mercoeur-features .feature i {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.mercoeur-features .feature h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.mercoeur-features .feature p {
    color: var(--neutral-600);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.mercoeur-visual {
    position: relative;
}

.mercoeur-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mercoeur-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    filter: sepia(20%) saturate(80%) hue-rotate(15deg) brightness(0.9) contrast(1.1);
}

.mercoeur-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(32, 89, 103, 0.8) 0%, rgba(138, 138, 138, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mercoeur-image:hover .mercoeur-overlay {
    opacity: 1;
}

.mercoeur-image:hover .mercoeur-img {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.mercoeur-info {
    text-align: center;
    color: var(--white);
}

.mercoeur-info h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.mercoeur-info p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.mercoeur-tag {
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Nouvelle structure harmonieuse et vendeuse */
.mercoeur-presentation {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 3rem;
}

/* Hero de l'espace */
.space-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 3rem;
    background: linear-gradient(135deg, var(--neutral-50) 0%, var(--white) 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-content h3 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    color: var(--secondary-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}


.main-space-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
}

.main-space-img:hover {
    transform: scale(1.02);
}

/* Espaces de travail */
.workspace-showcase {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.workspace-showcase h4 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 600;
    text-align: center;
}

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

.workspace-item {
    background: var(--neutral-50);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.workspace-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.workspace-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.workspace-info {
    padding: 1.5rem;
}

.workspace-info h5 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.workspace-info p {
    color: var(--neutral-700);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Salles de réunion */
.meeting-showcase {
    background: var(--neutral-50);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.meeting-showcase h4 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: center;
}

.meeting-intro {
    color: var(--neutral-700);
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 2rem;
    font-style: italic;
}

.meeting-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.meeting-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.meeting-item:hover {
    transform: scale(1.02);
}

.meeting-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.meeting-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 1.5rem 1rem 1rem;
    font-size: 1rem;
    font-weight: 600;
}

/* Services inclus - pleine largeur */
.services-section {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.services-section h4 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 600;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--neutral-50);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.service-item i {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
}

.service-item:hover i {
    color: var(--white);
}

.service-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--neutral-700);
    line-height: 1.3;
}

.service-item:hover span {
    color: var(--white);
}

/* Espaces communs */
.common-spaces {
    background: var(--neutral-50);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.common-spaces h4 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 600;
    text-align: center;
}

.common-spaces-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.common-space-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.common-space-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.common-space-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.common-space-info {
    padding: 1.5rem;
}

.common-space-info h5 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.common-space-info p {
    color: var(--neutral-700);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.common-space-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.common-space-features span {
    color: var(--neutral-600);
    font-size: 0.9rem;
}

/* Boutons Réserver */
.workspace-cta {
    text-align: center;
    margin-top: 2rem;
}

.btn-reserve {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.btn-reserve:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.btn-reserve i {
    font-size: 1.2rem;
}

.meeting-reserve {
    margin-top: 1rem;
    text-align: center;
}

.btn-reserve-small {
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-reserve-small:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-reserve-small i {
    font-size: 0.9rem;
}

.transport-access h4 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 600;
    text-align: center;
}

.transports-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.transport-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--neutral-50);
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.transport-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.transport-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.metro-9 {
    background: #cec92b;
}

.metro-number {
    color: #000;
    font-weight: bold;
    font-size: 1.3rem;
}

.transport-icons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.bus-line {
    padding: 0.5rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    min-width: 40px;
    text-align: center;
}

.bus-46 { background: #F68D4B; }
.bus-56 { background: #87D3DF; }
.bus-61 { background: #7ECFDB; }
.bus-69 { background: #F59EB3; }
.bus-n16 { background: #652C90; }

.transport-info h5 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.transport-info p {
    color: var(--neutral-600);
    font-size: 0.9rem;
    margin: 0;
}

.mercoeur-main-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mercoeur-description h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.mercoeur-description p {
    color: var(--neutral-700);
    line-height: 1.6;
    font-size: 1.1rem;
}

.mercoeur-contact {
    background: var(--neutral-50);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--secondary-color);
}

.contact-phone {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.contact-phone i {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

/* Section transports */
.mercoeur-transports {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.mercoeur-transports h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}


.transport-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Icône métro ligne 9 */
.transport-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.metro-9 {
    background: #cec92b; /* Couleur officielle ligne 9 RATP selon OpenStreetMap */
}

.metro-number {
    color: #000; /* Noir pour meilleur contraste sur fond jaune */
    font-weight: bold;
    font-size: 1.2rem;
}

/* Icônes bus */
.transport-icons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.bus-line {
    padding: 0.5rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    min-width: 40px;
    text-align: center;
}

.bus-46 { background: #F68D4B; } /* Bus 46 - Orange selon OpenStreetMap */
.bus-56 { background: #87D3DF; } /* Bus 56 - Bleu clair selon OpenStreetMap */
.bus-61 { background: #7ECFDB; } /* Bus 61 - Bleu turquoise selon OpenStreetMap */
.bus-69 { background: #F59EB3; } /* Bus 69 - Rose selon OpenStreetMap */
.bus-n16 { background: #652C90; } /* Bus N16 - Violet selon OpenStreetMap */

.transport-info h5 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

/* Sections rénovation et caractéristiques */
.renovation-highlights {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--neutral-50);
    border-radius: 15px;
    border-left: 4px solid var(--secondary-color);
}

.renovation-highlights h4 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

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

.renovation-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.renovation-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.renovation-item i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.renovation-item h5 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.renovation-item p {
    color: var(--neutral-700);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.space-features {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.space-features h4 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--neutral-50);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateX(5px);
}

.feature-item i {
    font-size: 1.2rem;
    color: var(--secondary-color);
    min-width: 20px;
}

.feature-item:hover i {
    color: var(--white);
}

.feature-item span {
    font-weight: 500;
    color: var(--neutral-700);
}

/* Section concept et équipements */
.space-concept {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--primary-color);
}

.space-concept h4 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.concept-highlight {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.concept-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.concept-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.concept-text h5 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.concept-text p {
    color: var(--neutral-700);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

.space-equipment {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--neutral-50);
    border-radius: 15px;
    border-left: 4px solid var(--secondary-color);
}

.space-equipment h4 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

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

.equipment-category {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.equipment-category h5 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: center;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--neutral-200);
}

.equipment-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.equipment-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: var(--neutral-50);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.equipment-item:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateX(5px);
}

.equipment-item i {
    font-size: 1.1rem;
    color: var(--secondary-color);
    min-width: 20px;
}

.equipment-item:hover i {
    color: var(--white);
}

.equipment-item span {
    font-weight: 500;
    color: var(--neutral-700);
    font-size: 0.95rem;
}

.equipment-item:hover span {
    color: var(--white);
}

.space-description {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Images des espaces */
.concept-image {
    margin-top: 1.5rem;
    text-align: center;
}

.space-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.space-img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.equipment-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.equipment-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.equipment-img:hover {
    transform: scale(1.05);
}

.meeting-rooms {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.meeting-rooms h5 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.meeting-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.meeting-item {
    position: relative;
    text-align: center;
}

.meeting-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.meeting-img:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.meeting-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 1rem 0.5rem 0.5rem;
    border-radius: 0 0 12px 12px;
    font-size: 0.9rem;
    font-weight: 600;
}

.mercoeur-history {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 6px solid var(--secondary-color);
    margin-top: 4rem;
}

.mercoeur-history h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.mercoeur-history p {
    color: var(--neutral-700);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.mercoeur-history p:last-child {
    margin-bottom: 0;
}

/* Layout en deux colonnes pour histoire du lieu */
.history-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

/* Images avant/après */
.before-after-images {
    margin: 0;
    padding: 0;
    border: none;
}

.before-after-images h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
    text-align: left;
}

.image-pair {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.image-item {
    position: relative;
    text-align: center;
}

.history-img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.history-img:hover {
    transform: scale(1.02);
}

.image-label {
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Timeline verticale simple */
.history-timeline {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.history-timeline h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
    text-align: left;
}

.timeline {
    max-width: none;
    margin: 0;
}

/* Timeline simple et propre */
.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 1.5rem;
}

.timeline-year {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    min-width: 80px;
    text-align: center;
    flex-shrink: 0;
}

.timeline-year-highlight {
    background: var(--secondary-color) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transform: scale(1.1);
}

.timeline-content {
    flex: 1;
}

.timeline-content h5 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.timeline-content p {
    color: var(--neutral-700);
    line-height: 1.5;
    margin: 0;
    font-size: 0.95rem;
}
.legal-section {
    padding: 120px 0 80px;
    background: var(--neutral-50);
    min-height: 100vh;
}

.legal-header {
    text-align: center;
    margin-bottom: 4rem;
}

.legal-header h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-subtitle {
    font-size: 1.2rem;
    color: var(--neutral-600);
    max-width: 600px;
    margin: 0 auto;
}

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

.legal-card {
    background: var(--white);
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--secondary-color);
}

.legal-card h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.legal-card h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 1.5rem 0 1rem;
    font-weight: 600;
}

.legal-card p {
    color: var(--neutral-700);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-card ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-card li {
    color: var(--neutral-700);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-card a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
}

.legal-card a:hover {
    color: var(--secondary-dark);
    text-decoration: underline;
}

.legal-card strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Coworking Key Points */
.coworking-key-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.key-point {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--neutral-50);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.key-point i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    min-width: 2rem;
}

.key-point h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--neutral-800);
}

/* Services Band */
.services-band {
    background: var(--neutral-50);
    padding: 3rem 0;
    margin-top: 3rem;
    border-radius: 12px;
}

.services-band h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

/* Responsive pour les services */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

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

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.service-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    background: var(--secondary-color);
    color: var(--white);
}

.service-item:hover i {
    color: var(--white);
}

.service-item:hover span {
    color: var(--white);
}

.service-item i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.service-item span {
    font-size: 0.9rem;
    color: var(--neutral-700);
    line-height: 1.4;
    font-weight: 500;
}

/* Hero Mercoeur Page */
.hero-mercoeur {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: var(--neutral-900);
    color: var(--white);
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.hero-mercoeur .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-mercoeur .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: sepia(20%) saturate(80%) hue-rotate(15deg) brightness(0.7) contrast(1.1);
    transition: transform 0.6s ease;
}

.hero-mercoeur:hover .hero-image {
    transform: scale(1.02);
}

.hero-mercoeur .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(32, 89, 103, 0.8) 0%, rgba(32, 89, 103, 0.9) 100%);
    z-index: 2;
}

.hero-mercoeur .hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 3;
    text-align: center;
}

.hero-mercoeur .hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    color: var(--white);
}

.hero-mercoeur .hero-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--neutral-100);
}


/* Boutons spéciaux dans la navigation */
.nav-button {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 0.5rem 1rem !important;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.nav-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.nav-button-client {
    background: var(--secondary-color);
}

.nav-button-client:hover {
    background: var(--secondary-dark);
}

.nav-button-employee {
    background: var(--neutral-700);
}

.nav-button-employee:hover {
    background: var(--neutral-900);
}

/* Widget de réservation amélioré */
.reservation-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 320px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    overflow: hidden;
    border: 1px solid var(--neutral-200);
    transition: all 0.3s ease;
    animation: pulse-attention 3s infinite;
}

.reservation-widget:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.2);
}

.reservation-widget.collapsed {
    width: 280px;
}

.reservation-widget.collapsed .reservation-widget-body {
    display: none;
}

.reservation-widget-content {
    position: relative;
}

.reservation-widget-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    user-select: none;
}

.reservation-widget-header i:first-child {
    font-size: 1.2rem;
    animation: bounce-gentle 2s infinite;
}

.reservation-widget-title {
    font-weight: 600;
    font-size: 1rem;
    flex: 1;
}

.reservation-widget-toggle {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.reservation-widget-toggle:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.reservation-widget-toggle i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.reservation-widget.collapsed .reservation-widget-toggle i {
    transform: rotate(0deg);
}

.reservation-widget-body {
    padding: 1.25rem;
    background: var(--white);
}

.reservation-widget-description {
    font-size: 0.9rem;
    color: var(--neutral-600);
    line-height: 1.5;
    margin: 0 0 1rem 0;
}

.reservation-widget-actions {
    display: flex;
    gap: 0.5rem;
}

.reservation-widget-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Animations discrètes */
@keyframes pulse-attention {
    0%, 100% {
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    }
    50% {
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25), 0 0 0 4px rgba(255, 193, 7, 0.1);
    }
}

@keyframes bounce-gentle {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-2px);
    }
}

.business-model-content {
    max-width: 1200px;
    margin: 0 auto;
}

.positioning-section,
.concept-section {
    margin-bottom: 5rem;
}

.positioning-section h3,
.concept-section h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.positioning-section h3::after,
.concept-section h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 2px;
}

.positioning-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 3rem;
}

.concept-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

.positioning-text p,
.concept-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--neutral-700);
    margin-bottom: 2rem;
}

.positioning-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.feature-item {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 0.5rem 1rem;
    padding: 1.5rem;
    background: var(--neutral-50);
    border-radius: 12px;
    border-left: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
    align-items: center;
}

.feature-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    grid-row: 1 / 3;
    align-self: center;
    transition: transform 0.6s ease;
}

.feature-item:hover i {
    transform: rotateY(180deg);
}

.feature-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
    display: flex;
    align-items: center;
    height: 1.5rem;
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--neutral-600);
    margin: 0;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
}

.positioning-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cost-comparison {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--neutral-200);
    width: 100%;
    max-width: 500px;
}

.cost-comparison h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.cost-bar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
}

.cost-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cost-label {
    font-size: 0.9rem;
    color: var(--neutral-700);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.cost-bar-container {
    position: relative;
    height: 30px;
    background: var(--neutral-200);
    border-radius: 15px;
    overflow: hidden;
}

.cost-bar-fill {
    height: 100%;
    border-radius: 15px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 15px;
    transition: width 1.5s ease-out;
    width: 0;
}

.cost-bar-fill.traditional {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
}

.cost-bar-fill.our-model {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
}

.cost-bar-fill.animate {
    width: 100%;
}

.cost-bar-fill.our-model.animate {
    width: 40%;
}

.cost-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
}

.cost-details {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cost-detail-item {
    padding: 1.5rem;
    background: var(--neutral-50);
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cost-detail-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cost-detail-item h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.cost-detail-item p {
    font-size: 0.95rem;
    color: var(--neutral-600);
    line-height: 1.5;
    margin: 0;
}

.target-audience {
    margin-top: 2rem;
}

.target-audience h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.audience-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: var(--neutral-50);
    border-radius: 8px;
    border-left: 3px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.audience-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.audience-item i {
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.audience-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--neutral-700);
}

.concept-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.value-proposition {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--neutral-200);
    width: 100%;
    max-width: 400px;
}

.value-proposition h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.value-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--neutral-50);
    border-radius: 8px;
    border-left: 3px solid var(--secondary-color);
}

.value-point i {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-top: 0.2rem;
}

.value-point h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.value-point p {
    font-size: 0.85rem;
    color: var(--neutral-600);
    margin: 0;
    line-height: 1.4;
}

.model-advantages {
    background: var(--neutral-50);
    padding: 4rem 2rem;
    border-radius: 20px;
    margin-top: 3rem;
}

.model-advantages h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.model-advantages h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 2px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.advantage-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--neutral-200);
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(32, 89, 103, 0.02) 0%, rgba(103, 188, 213, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.advantage-card:hover::before {
    opacity: 1;
}

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

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
    position: relative;
    z-index: 2;
    transition: transform 0.6s ease;
}

.advantage-card:hover .advantage-icon {
    transform: rotateY(180deg);
}

.advantage-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.advantage-card p {
    font-size: 1rem;
    color: var(--neutral-600);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

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

    .nav-button {
        padding: 0.8rem 1.2rem !important;
        margin: 0.5rem 0;
        display: block;
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }

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

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

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .activity-card {
        padding: 2rem;
    }

    .coworking-key-points {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .service-item {
        padding: 1rem 0.5rem;
    }

    .service-item i {
        font-size: 1.5rem;
    }

    .service-item span {
        font-size: 0.8rem;
    }

    .timeline::before {
        left: 2rem;
    }

    .timeline-item {
        flex-direction: column !important;
        margin-left: 3rem;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        flex-direction: column !important;
    }

    .timeline-year {
        margin: 0 0 1rem 0 !important;
        align-self: flex-start;
        min-width: auto;
    }

    .timeline-content {
        margin: 0 !important;
    }

    /* Ancienne timeline responsive supprimée */

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .coworking-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        min-height: auto;
    }

    .coworking-image {
        order: -1;
    }

    .coworking-img {
        height: 300px;
    }

    .coworking-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .coworking-gallery {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .buildings-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .building-image {
        height: 250px;
    }

    .rental-info {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .rental-link {
        text-align: center;
    }

    .logo-text {
        font-size: 1rem;
    }

    /* Legal Pages Responsive */
    .legal-section {
        padding: 100px 0 60px;
    }

    .legal-header h1 {
        font-size: 2.5rem;
    }

    .legal-card {
        padding: 2rem;
        margin-bottom: 1.5rem;
    }

    .legal-card h2 {
        font-size: 1.3rem;
    }

    .legal-card h3 {
        font-size: 1.1rem;
    }

    /* 10mercoeur Section Responsive */
    .mercoeur-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mercoeur-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .mercoeur-img {
        height: 300px;
    }

    .mercoeur-history {
        padding: 2rem;
        margin-top: 2rem;
    }
    
    .mercoeur-presentation {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .btn-reserve {
        font-size: 1rem;
        padding: 0.8rem 2rem;
    }
    
    .btn-reserve-small {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    /* Nouvelle structure responsive */
    .space-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .hero-content h3 {
        font-size: 2rem;
        text-align: center;
    }
    
    .hero-subtitle {
        text-align: center;
    }
    
    .hero-description {
        text-align: center;
    }
    
    .main-space-img {
        height: 250px;
    }
    
    .workspace-showcase,
    .meeting-showcase,
    .transport-access {
        padding: 2rem;
    }
    
    .workspace-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .meeting-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .meeting-img {
        height: 200px;
    }
    
    .services-equipment {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-section,
    .equipment-section {
        padding: 2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .common-spaces-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .common-space-img {
        height: 150px;
    }
    
    .equipment-transport-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .equipment-section,
    .transport-access {
        padding: 2rem;
    }
    
    .equipment-main-img {
        height: 150px;
    }
    
    .transports-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 600px;
    }
    
    .transport-item {
        height: auto;
    }
    
    .renovation-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .features-list {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .renovation-item,
    .space-features,
    .space-concept,
    .space-equipment {
        padding: 1.5rem;
    }
    
    .concept-highlight {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .equipment-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .equipment-category {
        padding: 1rem;
    }
    
    .equipment-images {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .meeting-images {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .meeting-img {
        height: 150px;
    }
    
    .equipment-img {
        height: 100px;
    }
    
    .history-timeline h4,
    .before-after-images h4 {
        text-align: center;
    }

    /* Business Model Section Responsive */
    .positioning-content,
    .concept-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .positioning-visual,
    .concept-visual {
        order: -1;
    }

    .cost-details {
        gap: 1rem;
    }

    .cost-detail-item {
        padding: 1rem;
    }

    .cost-detail-item h5 {
        font-size: 1rem;
    }

    .cost-bar-container {
        height: 25px;
    }

    .cost-bar-fill {
        padding-right: 10px;
    }

    .cost-value {
        font-size: 0.8rem;
    }

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .advantage-card {
        padding: 2rem;
    }

    .cost-comparison,
    .value-proposition {
        max-width: 100%;
    }

    .model-advantages {
        padding: 3rem 1rem;
    }

    .feature-item {
        padding: 1rem;
    }

    .feature-item i {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    /* Hero Mercoeur Responsive */
    .hero-mercoeur .hero-title {
        font-size: 2.5rem;
    }

    .hero-mercoeur .hero-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .service-card,
    .contact-form {
        padding: 1.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Scrollbar personnalisée */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #2563eb;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1d4ed8;
}

/* Styles pour très petits écrans */
@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .service-item {
        padding: 1rem 0.5rem;
    }
    
    .service-item i {
        font-size: 1.5rem;
    }
    
    .service-item span {
        font-size: 0.8rem;
    }
    
    .common-spaces-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .coming-soon-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .coming-soon-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    .coming-soon-content h2 {
        font-size: 2rem;
    }
    
    .coming-soon-description {
        font-size: 1.1rem;
    }
    
    .hero-seine-premiere .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-seine-premiere .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-seine-premiere .hero-description {
        font-size: 1rem;
    }
}

/* Hero Seine Première */
.hero-seine-premiere {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: var(--neutral-900);
    color: var(--white);
    overflow: hidden;
    margin-top: 80px;
}

.hero-seine-premiere .hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 3;
    text-align: center;
}

.hero-seine-premiere .hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    color: var(--white);
}

.hero-seine-premiere .hero-subtitle {
    color: var(--secondary-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-seine-premiere .hero-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--neutral-100);
}

.hero-seine-premiere .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-seine-premiere .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: sepia(20%) saturate(80%) hue-rotate(15deg) brightness(0.7) contrast(1.1);
    transition: transform 0.6s ease;
}

.hero-seine-premiere:hover .hero-image {
    transform: scale(1.02);
}

.hero-seine-premiere .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(32, 89, 103, 0.8) 0%, rgba(32, 89, 103, 0.9) 100%);
    z-index: 2;
}

/* Section À venir */
.coming-soon {
    padding: 6rem 0;
    background: var(--neutral-50);
}

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

.coming-soon-icon {
    width: 120px;
    height: 120px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--white);
    font-size: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.coming-soon-content h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.coming-soon-description {
    color: var(--neutral-700);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 3rem;
}

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

.coming-soon-features .feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.coming-soon-features .feature-item:hover {
    transform: translateY(-5px);
}

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

.coming-soon-features .feature-item span {
    color: var(--neutral-700);
    font-size: 1rem;
    font-weight: 500;
}

.coming-soon-cta {
    margin-top: 2rem;
}

.coming-soon-cta .btn {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.coming-soon-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

/* Désactiver toutes les animations sur les sous-titres des sections */
.mercoeur-section .hero-subtitle,
.space-hero .hero-subtitle {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

/* Section 10Mercœur */
.mercoeur-section {
    padding: 4rem 0;
    background: var(--white);
}

.mercoeur-presentation {
    max-width: 1200px;
    margin: 0 auto;
}

/* Space Hero */
.space-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 3rem 0 4rem 0;
    padding: 3rem 2rem;
    background: var(--neutral-50);
    border-radius: 20px;
}

.space-hero .hero-content h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
}

.space-hero .hero-subtitle {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-weight: 500;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    visibility: visible !important;
    display: block !important;
}

.space-hero .hero-description {
    font-size: 1.1rem;
    color: var(--neutral-700);
    line-height: 1.6;
    margin-bottom: 0;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
}

.space-hero .hero-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.space-hero .main-space-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.space-hero .hero-image:hover .main-space-img {
    transform: scale(1.05);
}

/* Responsive Space Hero */
@media (max-width: 768px) {
    .space-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .space-hero .hero-content h3 {
        font-size: 2rem;
    }
    
    .space-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .space-hero .hero-description {
        font-size: 1rem;
    }
    
    .space-hero .main-space-img {
        height: 250px;
    }
}

/* ===== PAGE DE RÉSERVATION ===== */

/* Steps Indicator */
.reservation-steps {
    padding: 2rem 0;
    background: var(--white);
    border-bottom: 1px solid var(--neutral-200);
    margin-top: 80px;
}

.steps-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.step.active {
    opacity: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--neutral-300);
    color: var(--neutral-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background: var(--secondary-color);
    color: var(--white);
}

.step-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--neutral-600);
}

.step.active .step-label {
    color: var(--primary-color);
}

/* Reservation Steps */
.reservation-step {
    padding: 4rem 0;
    display: none;
}

.reservation-step.active {
    display: block;
}

.step-header {
    text-align: center;
    margin-bottom: 3rem;
}

.step-header h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.step-header p {
    color: var(--neutral-600);
    font-size: 1.1rem;
}

/* Space Selection */
.space-selection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.space-option {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.space-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.space-option.selected {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
}

.space-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.space-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.space-option:hover .space-img {
    transform: scale(1.05);
}

.space-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.space-content {
    padding: 2rem;
}

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

.space-location {
    color: var(--neutral-600);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.space-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--neutral-700);
}

.feature i {
    color: var(--secondary-color);
    width: 20px;
    height: 20px;
    text-align: center;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(103, 188, 213, 0.1);
    border-radius: 50%;
    font-size: 0.8rem;
}

.space-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.price-label {
    color: var(--neutral-600);
    font-size: 0.9rem;
}

.price-amount {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
}

.price-unit {
    color: var(--neutral-600);
    font-size: 1rem;
}

/* Duration Selection */
.duration-selection {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.duration-option {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.duration-option:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.duration-option.selected {
    border-color: var(--secondary-color);
    background: rgba(103, 188, 213, 0.05);
}

.duration-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

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

.duration-option p {
    color: var(--neutral-600);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.duration-price {
    margin-bottom: 1.5rem;
}

.duration-price .price-amount {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
}

.duration-price .price-unit {
    color: var(--neutral-600);
    font-size: 0.9rem;
}

/* Reservation Summary */
.reservation-summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.summary-details {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.summary-details h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.summary-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--neutral-200);
}

.summary-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.summary-item h4 {
    color: var(--neutral-700);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summary-item p {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 500;
}

.user-form {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.user-form h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

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

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

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

.form-group input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid var(--neutral-300);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.checkbox-group {
    margin-top: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    color: var(--neutral-700);
    font-size: 0.95rem;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--neutral-300);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: bold;
}

/* Calendar Section */
.calendar-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--neutral-200);
}

.calendar-section h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.date-time-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.date-picker, .time-picker {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.date-picker h4, .time-picker h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.date-input, .time-input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid var(--neutral-300);
    border-radius: 8px;
    font-size: 1rem;
    color: var(--neutral-800);
    transition: border-color 0.3s ease;
    background: var(--white);
}

.date-input:focus, .time-input:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.time-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
    margin-top: 1rem;
}

.time-slot {
    padding: 0.6rem 1rem;
    border: 2px solid var(--neutral-300);
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--neutral-700);
}

.time-slot:hover {
    border-color: var(--secondary-color);
    background: rgba(103, 188, 213, 0.05);
}

.time-slot.selected {
    border-color: var(--secondary-color);
    background: var(--secondary-color);
    color: var(--white);
}

/* Différenciation visuelle pour les heures de fin */
.time-picker:last-child .time-slot {
    border-color: var(--primary-color);
}

.time-picker:last-child .time-slot:hover {
    border-color: var(--primary-color);
    background: rgba(51, 51, 51, 0.05);
}

.time-picker:last-child .time-slot.selected {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: var(--white);
}

/* Choose Button Container */
.choose-button-container {
    text-align: center;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--neutral-200);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-large:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.btn-large:disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Checkbox Styles */
.checkbox-group {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
    color: var(--neutral-700);
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 0;
    padding: 0;
    border: none;
    background: none;
}

.checkbox-label input[type="checkbox"] {
    display: none;
    opacity: 0;
    position: absolute;
    left: -9999px;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--neutral-400);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 1px;
    background: var(--white);
    display: inline-block;
}

.checkbox-label:hover .checkmark {
    border-color: var(--secondary-color);
    background: rgba(103, 188, 213, 0.05);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: bold;
    line-height: 1;
}

.checkbox-label input[type="checkbox"]:focus + .checkmark {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

/* Step Actions */
.step-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 3rem auto 0;
    gap: 1rem;
}

.step-actions .btn {
    min-width: 150px;
    padding: 0.8rem 1.5rem;
}

/* Payment Section */
.payment-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.payment-summary {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.payment-summary h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--neutral-200);
}

.summary-line.total {
    border-bottom: 2px solid var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.payment-form {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.payment-form h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.btn-large {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* Success Message */
.reservation-success {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--neutral-50) 0%, var(--white) 100%);
}

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

.success-icon {
    width: 100px;
    height: 100px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--white);
    font-size: 3rem;
}

.success-content h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.success-content p {
    color: var(--neutral-600);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.success-details {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.detail-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--neutral-200);
}

.detail-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Responsive Reservation */
@media (max-width: 768px) {
    .hero-reservation .hero-title {
        font-size: 2.5rem;
    }
    
    .steps-indicator {
        gap: 1rem;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .space-selection {
        grid-template-columns: 1fr;
    }
    
    .duration-selection {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .date-time-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .time-options {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reservation-summary {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .payment-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .step-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .success-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .duration-selection {
        grid-template-columns: 1fr;
    }
    
    .time-options {
        grid-template-columns: 1fr;
    }
}
