/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cinema-900: #0f172a;
    --cinema-800: #1e293b;
    --cinema-gold: #fbbf24;
    --cinema-red: #ef4444;
    --blue-400: #60a5fa;
    --red-500: #ef4444;
    --slate-400: #94a3b8;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-700: #374151;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--cinema-900);
    color: #f8fafc;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
#header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 1.5rem 0;
}

#header.scrolled,
#header.mobile-menu-open {
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.75rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-image {
    height: 40px;
    width: auto;
}

.logo-icon {
    background-color: var(--cinema-gold);
    color: var(--cinema-900);
    padding: 0.375rem;
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.logo:hover .logo-icon {
    transform: rotate(12deg);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: white;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.logo:hover .logo-text {
    color: var(--cinema-gold);
}

.desktop-nav {
    display: none;
    gap: 2rem;
}

.desktop-nav a {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-300);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    transition: color 0.3s ease;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--cinema-gold);
    transition: width 0.3s ease;
}

.desktop-nav a:hover {
    color: var(--cinema-gold);
}

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

.mobile-menu-toggle {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
}

.mobile-menu {
    display: none;
    background-color: var(--cinema-900);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
}

.mobile-menu.active {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu a {
    font-size: 1.125rem;
    font-weight: 500;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--cinema-gold);
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--cinema-900), rgba(15, 23, 42, 0.8), transparent);
}

.hero-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 1rem;
    max-width: 80rem;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    color: var(--cinema-gold);
    font-size: 1.125rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.hero-title-gradient {
    background: linear-gradient(to right, white, #d1d5db, #9ca3af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    color: var(--gray-300);
    font-size: 1.25rem;
    max-width: 48rem;
    margin: 0 auto 3rem;
    font-weight: 300;
}

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

.btn-primary {
    padding: 1rem 2rem;
    background-color: var(--cinema-gold);
    color: var(--cinema-900);
    font-weight: 700;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.2);
}

.btn-primary:hover {
    background-color: white;
    transform: scale(1.05);
}

.btn-secondary {
    padding: 1rem 2rem;
    border: 1px solid white;
    color: white;
    font-weight: 700;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.5);
    animation: bounce 2s infinite;
}

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

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

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
    
    .hero-description {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 6rem;
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    color: var(--cinema-gold);
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 0.875rem;
}

.section-title {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    color: white;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.section-divider {
    width: 6rem;
    height: 0.25rem;
    background-color: var(--cinema-gold);
    margin: 0 auto;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

/* Offers Section */
.offers {
    padding: 6rem 0;
    background-color: var(--cinema-900);
    position: relative;
}

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

@media (min-width: 768px) {
    .offers-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
}

.offer-card {
    background-color: var(--cinema-800);
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}

.offer-card:hover {
    border-color: rgba(251, 191, 36, 0.3);
    transform: translateY(-8px);
}

.offer-image {
    height: 14rem;
    overflow: hidden;
    position: relative;
}

.offer-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
    z-index: 10;
}

.offer-card:hover .offer-overlay {
    background-color: transparent;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.offer-card:hover .offer-image img {
    transform: scale(1.1);
}

.offer-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: rgba(15, 23, 42, 0.9);
    width: 3rem;              /* largeur fixe */
    height: 3rem;             /* hauteur fixe = cercle parfait */
    border-radius: 9999px;    /* cercle */
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    z-index: 20;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--cinema-gold);
}

/* pour adapter la taille des icônes à l’intérieur */
.offer-icon svg {
    width: 1.6rem;
    height: 1.6rem;
}


.offer-icon-blue {
    color: var(--blue-400);
}

.offer-icon-red {
    color: var(--red-500);
}

.offer-content {
    padding: 2rem;
    flex: 1;
}

.offer-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    transition: color 0.3s ease;
}

.offer-card:hover .offer-title {
    color: var(--cinema-gold);
}

.offer-description {
    color: var(--gray-400);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.offer-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.offer-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--gray-300);
    font-size: 0.875rem;
}

.offer-features svg {
    color: var(--cinema-gold);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.offer-cta {
    padding: 1.5rem;
    padding-top: 0;
    margin-top: auto;
}

.offer-button {
    display: block;
    width: 100%;
    padding: 0.75rem;
    text-align: center;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.offer-button:hover {
    background-color: var(--cinema-gold);
    color: var(--cinema-900);
}

/* Inventory Section */
.inventory {
    padding: 6rem 0;
    background-color: var(--cinema-800);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.inventory-header {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.inventory-description {
    color: var(--gray-400);
    margin-top: 1rem;
    max-width: 40rem;
}

.inventory-stats {
    display: flex;
    gap: 2rem;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    display: block;
    font-size: 1.875rem;
    font-weight: 700;
    color: white;
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--gray-500);
    letter-spacing: 0.05em;
}

@media (min-width: 768px) {
    .inventory-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }
}

.search-container {
    position: relative;
    max-width: 28rem;
    margin-bottom: 3rem;
}

.search-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-500);
    pointer-events: none;
}

.search-input {
    display: block;
    width: 100%;
    padding: 1rem 1rem 1rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    background-color: var(--cinema-900);
    color: var(--gray-300);
    font-size: 0.875rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.search-input::placeholder {
    color: var(--gray-500);
}

.search-input:focus {
    outline: none;
    border-color: var(--cinema-gold);
    box-shadow: 0 0 0 1px var(--cinema-gold);
}

/* Filters container */
.filters-container {
    max-width: 28rem;
    margin-bottom: 2rem;
}

.filters-label {
    color: var(--gray-400);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    display: block;
}

.filters-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    background: var(--cinema-900);
    color: var(--gray-400);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.filter-btn:hover {
    border-color: rgba(255, 215, 0, 0.4);
    background: rgba(255, 215, 0, 0.05);
    transform: translateY(-2px);
}

.filter-btn.active {
    border-color: var(--cinema-gold);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 165, 0, 0.1));
    color: var(--cinema-gold);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.filter-btn svg {
    width: 18px;
    height: 18px;
}

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

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

@media (min-width: 1024px) {
    .cinema-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.cinema-card {
    background-color: var(--cinema-900);
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cinema-card:hover {
    border-color: rgba(251, 191, 36, 0.3);
    transform: translateY(-4px);
}

.cinema-image {
    height: 12rem;
    overflow: hidden;
    position: relative;
}

.cinema-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--cinema-900), transparent);
    opacity: 0.8;
    z-index: 10;
}

.cinema-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cinema-card:hover .cinema-image img {
    transform: scale(1.1);
}

.cinema-location {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    z-index: 20;
    display: flex;
    align-items: center;
    color: white;
    font-weight: 500;
}

.cinema-location svg {
    color: var(--cinema-gold);
    margin-right: 0.25rem;
}

.cinema-content {
    padding: 1.25rem;
}

.cinema-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.cinema-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.cinema-card:hover .cinema-name {
    color: var(--cinema-gold);
}

/* Nouveau badge premium version “droite” */
.deluxe-rooms {
    background-color: var(--cinema-800);            /* fond bleu nuit */
    color: white;                                   /* texte blanc */
    display: flex;
    flex-direction: column;                         /* 12 / SALLES en colonne */
    align-items: center;
    justify-content: center;
    padding: 0.4rem 0.75rem;
    border-radius: 0.5rem;                          /* arrondi plus premium */
    min-width: 48px;
    line-height: 1.1;
    text-align: center;
}

.deluxe-rooms .rooms-number {
    font-size: 1rem;                                 /* plus gros */
    font-weight: 700;
    margin-bottom: 2px;
}

.deluxe-rooms .rooms-label {
    font-size: 0.6rem;                               /* petit label */
    font-weight: 600;
    letter-spacing: 0.04em;
    opacity: 0.85;
    text-transform: uppercase;
}


.cinema-supports {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    margin-top: 0.5rem;
}

.supports-label {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.supports-icons {
    display: flex;
    gap: 1rem;
}

.support-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.support-icon.active {
    color: var(--cinema-gold);
}

.support-icon.inactive {
    color: #374151;
    opacity: 0.5;
}

.support-icon.blue {
    color: var(--blue-400);
}

.support-icon.red {
    color: var(--red-500);
}

.support-icon span {
    font-size: 0.625rem;
}

.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: var(--gray-500);
}

.no-results svg {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
    opacity: 0.2;
}

/* Impact Section */
.impact {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--cinema-900), black);
    color: white;
}

.arguments-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 6rem;
}

@media (min-width: 768px) {
    .arguments-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.argument-card {
    text-align: center;
    padding: 1.5rem;
    border-radius: 0.75rem;
    transition: background-color 0.3s ease;
}

.argument-card:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.argument-icon {
    color: var(--cinema-gold);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.argument-card:hover .argument-icon {
    transform: scale(1.1);
}

.argument-title {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    color: white;
}

.argument-text {
    color: var(--gray-400);
    line-height: 1.6;
}

.data-viz-container {
    background-color: var(--cinema-800);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) {
    .data-viz-container {
        padding: 3rem;
    }
}

.data-viz-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .data-viz-content {
        flex-direction: row;
        align-items: center;
    }
}

.data-viz-text {
    flex: 1;
}

.data-viz-title {
    font-size: 1.875rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .data-viz-title {
        font-size: 2.25rem;
    }
}

.highlight {
    color: var(--cinema-gold);
}

.data-viz-description {
    color: var(--gray-300);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.data-viz-quote {
    border-left: 4px solid var(--cinema-gold);
    padding-left: 1.5rem;
    font-style: italic;
    color: var(--gray-400);
}

.data-viz-chart {
    flex: 1;
}

.chart-title {
    text-align: center;
    color: var(--gray-400);
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.chart-container {
    height: 400px;
}

.chart-source {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.75rem;
    color: var(--gray-500);
    line-height: 1.6;
    text-align: center;
}

/* Attention Stats Cards */
.attention-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.attention-stat-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.attention-stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.15);
}

.attention-stat-card.highlight-stat {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 165, 0, 0.1));
    border-color: rgba(255, 215, 0, 0.4);
}

.attention-stat-card .stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--cinema-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.attention-stat-card .stat-label {
    font-size: 1rem;
    color: var(--gray-300);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.attention-stat-card .stat-subtitle {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.data-viz-source {
    margin-top: 2rem;
    font-size: 0.75rem;
    color: var(--gray-500);
    font-style: italic;
}

/* Audience Profiles Section */
.audience-profiles-section {
    margin-top: 2rem;  
    padding-top: 2rem; 
}

.section-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: white;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: var(--gray-400);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.profiles-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .profiles-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

.profile-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.profile-card:hover {
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(-5px);
}

.profile-header {
    margin-bottom: 2rem;
    text-align: center;
}

.circuit-badge-pathe,
.circuit-badge-megarama {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0;
    border-radius: 0;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: transparent;
}

.circuit-badge-pathe img,
.circuit-badge-megarama img {
    height: 40px;
    width: auto;
    display: block;
}

.circuit-badge-pathe img {
    height: 60px; /* Logo Pathé plus grand pour meilleure visibilité */
}

.profile-section {
    margin-bottom: 2.5rem;
}

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

.profile-section-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--cinema-gold);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.profile-bar-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.profile-bar-item {
    display: grid;
    grid-template-columns: 80px 1fr 60px;
    align-items: center;
    gap: 1rem;
}

.profile-label {
    font-size: 0.875rem;
    color: var(--gray-400);
    font-weight: 500;
}

.profile-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.profile-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 10px;
    transition: width 0.6s ease;
}

.profile-value {
    font-size: 0.875rem;
    color: white;
    font-weight: 600;
    text-align: right;
}

@media (max-width: 768px) {
    .attention-stats {
        grid-template-columns: 1fr;
    }
    
    .attention-stat-card .stat-number {
        font-size: 2.5rem;
    }
    
    .section-main-title {
        font-size: 2rem;
    }
    
    .profile-card {
        padding: 1.5rem;
    }
    
    .profile-bar-item {
        grid-template-columns: 70px 1fr 50px;
        gap: 0.75rem;
    }
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background-color: black;
    color: white;
}

.contact-layout {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

@media (min-width: 768px) {
    .contact-layout {
        flex-direction: row;
    }
    
    .contact-info,
    .contact-form-container {
        flex: 1;
    }
}

.contact-title {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 2rem;
    color: white;
}

.contact-description {
    color: var(--gray-400);
    margin-bottom: 3rem;
    font-size: 1.125rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.contact-icon {
    padding: 0.75rem;
    background-color: var(--cinema-800);
    border-radius: 9999px;
    color: var(--cinema-gold);
}

.contact-item-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
}

.contact-item-text {
    color: var(--gray-400);
}

.contact-form-container {
    background-color: var(--cinema-800);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    color: var(--gray-400);
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    background-color: var(--cinema-900);
    border: 1px solid var(--gray-700);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    color: var(--gray-300);
    transition: border-color 0.3s ease;
}

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

textarea.form-input {
    resize: vertical;
    min-height: 100px;
}

.form-submit {
    width: 100%;
    padding: 1rem;
    background-color: var(--cinema-gold);
    color: var(--cinema-900);
    font-weight: 700;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background-color: white;
}

/* Footer */
.footer {
    background-color: black;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0;
    color: var(--gray-400);
    font-size: 0.875rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        margin-bottom: 2rem;
    }
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-brand svg {
    color: var(--cinema-gold);
}

.footer-logo-image {
    height: 32px;
    width: auto;
}

.footer-brand-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: white;
    letter-spacing: 0.05em;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--cinema-gold);
}

.footer-copyright {
    text-align: center;
    opacity: 0.5;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: block;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.modal-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    background-color: var(--cinema-800);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translate(-50%, -45%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 10;
    background-color: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background-color: var(--cinema-gold);
    color: var(--cinema-900);
    transform: rotate(90deg);
}

.modal-header {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.modal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-header-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95), transparent);
}

.modal-header-content {
    max-width: 100%;
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.modal-city {
    display: flex;
    align-items: center;
    color: var(--gray-300);
    font-size: 1rem;
}

.modal-city::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 0.5rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23fbbf24' stroke-width='2'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'%3E%3C/path%3E%3Ccircle cx='12' cy='10' r='3'%3E%3C/circle%3E%3C/svg%3E");
}

.modal-body {
    padding: 2rem;
    max-height: calc(90vh - 300px);
    overflow-y: auto;
}

.modal-body::-webkit-scrollbar {
    width: 8px;
}

.modal-body::-webkit-scrollbar-track {
    background-color: var(--cinema-900);
    border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb {
    background-color: var(--cinema-gold);
    border-radius: 4px;
}

.modal-section {
    margin-bottom: 2rem;
}

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

.modal-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
}

.modal-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .modal-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.modal-info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background-color: var(--cinema-900);
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.modal-info-item svg {
    color: var(--cinema-gold);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.modal-info-item > div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.modal-info-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-500);
    font-weight: 600;
}

.modal-info-value {
    font-size: 0.875rem;
    color: white;
    font-weight: 500;
}

.modal-equipment {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-equipment-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background-color: var(--cinema-900);
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.modal-equipment-item.active {
    opacity: 1;
    border-color: var(--cinema-gold);
    background-color: rgba(251, 191, 36, 0.05);
}

.equipment-icon {
    width: 48px;
    height: 48px;
    border-radius: 0.5rem;
    background-color: var(--cinema-800);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    flex-shrink: 0;
}

.modal-equipment-item.active .equipment-icon {
    background-color: var(--cinema-gold);
    color: var(--cinema-900);
}

.equipment-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.equipment-name {
    font-size: 1rem;
    font-weight: 700;
    color: white;
}

.equipment-tariff {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--cinema-gold);
}

.led-screen-info {
    margin-top: 0.5rem;
    padding: 0.75rem;
    background-color: var(--cinema-800);
    border-radius: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-300);
}

.led-screen-info + .led-screen-info {
    margin-top: 0.5rem;
}

.led-screen-spec {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.25rem;
}

.led-screen-spec span:first-child {
    color: var(--gray-500);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.led-screen-spec span:last-child {
    color: white;
    font-weight: 600;
}

.modal-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-300);
}

.modal-footer {
    padding: 1.5rem 2rem;
    background-color: var(--cinema-900);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: flex-end;
}

.modal-cta {
    padding: 1rem 2rem;
    background-color: var(--cinema-gold);
    color: var(--cinema-900);
    font-weight: 700;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-cta:hover {
    background-color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 95vh;
    }

    .modal-header {
        height: 200px;
    }

    .modal-title {
        font-size: 1.5rem;
    }

    .modal-body {
        padding: 1.5rem;
        max-height: calc(95vh - 200px);
    }

    .modal-footer {
        padding: 1rem 1.5rem;
    }

    .modal-close {
        top: 1rem;
        right: 1rem;
        width: 36px;
        height: 36px;
    }
    
    .modal-circuit {
        top: 1rem;
        left: 1rem;
        width: 36px;
        height: 36px;
    }
}

/* Cursor pointer for cinema cards */
.cinema-card {
    cursor: pointer;
}

.cinema-card:hover {
    transform: translateY(-4px) scale(1.02);
}

/* Circuit Badges */
.cinema-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    z-index: 10;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.cinema-badge.circuit-badge-pathe,
.cinema-badge.circuit-badge-megarama {
    background: transparent;
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 0.8rem;
    backdrop-filter: none;
    box-shadow: none;
    border-radius: 0;
}

.cinema-badge img {
    height: 32px;
    width: auto;
    display: block;
    border-radius: 6px; /* Coins arrondis style iOS/Google */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.cinema-card:hover .cinema-badge {
    transform: none;
    box-shadow: none;
}

/* Modal Circuit Badge */
.modal-circuit {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.modal-circuit:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.modal-circuit img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 6px;
}

.modal-circuit.modal-circuit-pathe,
.modal-circuit.modal-circuit-megarama {
    background-color: rgba(255, 255, 255, 0.95);
}

/* LED Screen Item */
.led-screen-item {
    margin-top: 8px;
}
/* Styles additionnels pour la modale améliorée */

/* Adresse du cinéma */
.cinema-address {
    color: #B8B8B8;
    font-size: 15px;
    margin: 0 30px 30px 30px;
    line-height: 1.6;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Section titles with underline */
.modal-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 15px 0;
    position: relative;
    padding-bottom: 12px;
}

.modal-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    border-radius: 2px;
}

/* Description */
.cinema-description {
    color: #B8B8B8;
    font-size: 15px;
    line-height: 1.8;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.info-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.1);
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.info-icon {
    width: 24px;
    height: 24px;
    color: #FFD700;
    flex-shrink: 0;
}

.info-label {
    color: #9CA3AF;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    text-align: right;
}

/* Info card centrée pour les campagnes */
.info-card-centered .info-value {
    text-align: center;
    width: 100%;
}

.info-card-centered .info-card-header {
    justify-content: center;
}

/* Campaign intro box */
.campaign-intro {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-left: 4px solid #667eea;
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
    color: #B8B8B8;
    font-size: 14px;
    line-height: 1.8;
}

/* Digital Section */
.digital-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px;
    margin: 20px 0;
}

.subsection-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 30px 0 20px 0;
}

.subsection-header:first-child {
    margin-top: 0;
}

.subsection-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    flex-shrink: 0;
}

.subsection-icon svg {
    width: 100%;
    height: 100%;
    color: white;
}

.subsection-title {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
}

/* Specs List */
.specs-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.spec-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
}

.spec-label {
    color: #FFD700;
    font-weight: 600;
    font-size: 13px;
    min-width: 140px;
    flex-shrink: 0;
}

.spec-value {
    color: #B8B8B8;
    font-size: 13px;
    line-height: 1.6;
}

/* Highlight Cards */
.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 25px 0 0 0;
}

.highlight-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 165, 0, 0.1));
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.highlight-label {
    color: #FFD700;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.highlight-value {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
}

.highlight-subtext {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 8px;
    font-weight: 400;
}

/* LED Gallery */
.led-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.led-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.led-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.led-thumbnail {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: #2a2a3e;
    display: block;
}

.led-info {
    padding: 20px;
}

.led-name {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

.led-specs {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.led-spec {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    align-items: center;
}

.led-spec-label {
    color: #9CA3AF;
}

.led-spec-value {
    color: #FFD700;
    font-weight: 600;
}

/* Image Modal for LED enlargement */
.image-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
    padding: 40px;
}

.image-modal-overlay.active {
    display: flex;
}

.image-modal-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    object-fit: contain;
}

.image-modal-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.image-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

/* Modal footer CTA */
.modal-footer {
    margin-top: 40px;
    padding: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.modal-cta {
    display: inline-block;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1e293b;
    text-decoration: none;
    padding: 16px 40px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.modal-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.5);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .info-grid,
    .highlight-grid {
        grid-template-columns: 1fr;
    }

    .specs-list {
        grid-template-columns: 1fr;
    }

    .led-gallery {
        grid-template-columns: 1fr;
    }

    .cinema-address {
        margin: 0 20px 20px 20px;
    }

    .modal-section {
        padding: 20px;
    }

    .digital-section {
        padding: 20px;
    }

    .modal-section-title {
        font-size: 20px;
    }

    .subsection-title {
        font-size: 18px;
    }

    .info-value {
        font-size: 24px;
    }

    .highlight-value {
        font-size: 24px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
/* ---- Carte Cinemap ---- */

.inventory-map-wrapper {
    margin: 3rem 0;
    adding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
}

.inventory-map-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .inventory-map-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.inventory-map-legend {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.legend-title {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gray-400);
    font-weight: 600;
}

.legend-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.75rem;
    color: var(--gray-400);
}

.legend-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.3);
}

.marker-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.9),
                0 0 0 4px rgba(15, 23, 42, 0.7);
}

.marker-dot-pathe {
    background: linear-gradient(135deg, #f97373, #ef4444);
}

.marker-dot-megarama {
    background: linear-gradient(135deg, #a855f7, #7c3aed);
}

.marker-dot-mediavision {
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
}

.inventory-map-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    background: rgba(15, 23, 42, 0.85);
    color: var(--gray-100);
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.25s ease;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.inventory-map-toggle:hover {
    border-color: var(--cinema-gold);
    background: rgba(30, 64, 175, 0.9);
    transform: translateY(-1px);
}

.inventory-map-toggle.active {
    border-color: var(--cinema-gold);
    background: linear-gradient(
        135deg,
        rgba(56, 189, 248, 0.18),
        rgba(250, 204, 21, 0.2)
    );
    color: var(--cinema-gold);
}

.inventory-map {
    width: 100%;
    height: 600px;
    border-radius: 1.25rem;
    overflow: hidden;
    margin-top: 0.75rem;
    border: 1px solid rgba(148, 163, 184, 0.3);
}

/* Popups & contrôles Leaflet harmonisés avec le site */

.leaflet-container {
    background: #1a1f2e; /* Fond par défaut pour cartes sombres */
}

/* Fond clair pour cartes OSM standard et claires */
.leaflet-container.light-map {
    background: #f5f5f5;
}

/* Fond très sombre pour cartes dark */
.leaflet-container.dark-map {
    background: #0a0e1a;
}

.leaflet-popup-content-wrapper {
    background: #0f172a !important; /* bleu nuit */
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 14px 40px rgba(0,0,0,0.55);
    color: #e2e8f0;
}

.leaflet-popup-tip {
    background: #0f172a !important;
    border: none;
}

.popup-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #e5e7eb;
    margin-bottom: 0.25rem;
}

.popup-info {
    margin: 0.15rem 0;
    color: #94a3b8;
    font-size: 0.8rem;
}

.popup-circuit {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

.popup-circuit.pathe {
    background-color: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid #ef4444;
}

.popup-circuit.megarama {
    background-color: rgba(139, 92, 246, 0.2);
    color: #8b5cf6;
    border: 1px solid #8b5cf6;
}

.popup-circuit.mediavision {
    background-color: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    border: 1px solid #3b82f6;
}

/* Zoom controls */
.leaflet-control-zoom a {
    background-color: #020617 !important;
    color: #e5e7eb !important;
    border: 1px solid rgba(148, 163, 184, 0.6) !important;
}

.leaflet-control-zoom a:hover {
    background-color: #030712 !important;
}

.leaflet-bar a {
    border-bottom: 1px solid rgba(15, 23, 42, 0.9) !important;
}

/* ===== FILTRES DE CARTE OPTIONNELS ===== */

/* Pour Option 4 : Légère désaturation du Voyager */
.map-tiles-desaturated {
    filter: saturate(0.75) brightness(0.95);
}

/* Pour Option 5 : Teinte bleue sur fond minimaliste */
.map-tiles-blue-minimal {
    filter: sepia(0.2) hue-rotate(180deg) saturate(0.8);
}

/* Pour Option 2B : OSM France avec style Voyager */
.map-tiles-voyager-style {
    filter: 
        saturate(0.65)           /* Désaturation importante pour couleurs douces */
        brightness(1.05)         /* Légèrement plus lumineux */
        contrast(0.92);          /* Moins de contraste pour look doux */
}

/* ============================================
   DOOH SECTION STYLES
   ============================================ */

        .dooh-section {
            min-height: auto;
            padding: 4rem 0 5rem;
            position: relative;
        }

        .dooh-header {
            text-align: center;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 2;
        }

        .dooh-label {
            display: inline-block;
            padding: 8px 20px;
            background: linear-gradient(135deg, var(--cinema-gold) 0%, #f59e0b 100%);
            color: var(--cinema-900);
            font-size: 0.875rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            border-radius: 50px;
            margin-bottom: 20px;
        }

        .dooh-title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 15px;
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .dooh-subtitle {
            font-size: 1.25rem;
            color: #94a3b8;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Navigation */
        .dooh-navigation {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }

        .nav-btn {
            background: rgba(251, 191, 36, 0.1);
            border: 1px solid var(--cinema-gold);
            color: var(--cinema-gold);
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.5rem;
            font-weight: bold;
        }

        .nav-btn:hover {
            background: var(--cinema-gold);
            color: var(--cinema-900);
            transform: scale(1.1);
        }

        .nav-btn:disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }

        .nav-dots {
            display: flex;
            gap: 10px;
            transform: scale(0.8);
        }

        .nav-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(251, 191, 36, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .nav-dot.active {
            background: var(--cinema-gold);
            transform: scale(1.3);
        }

        /* Container slides */
        .dooh-slides-container {
            position: relative;
            overflow: hidden;
            max-width: 1200px;
            margin: 0 auto;
            z-index: 5;
            background: var(--cinema-900) !important;
        }

        .dooh-slides {
            display: flex;
            background: var(--cinema-900) !important;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .dooh-slide {
            min-width: 100%;
            padding: 20px;
            background: var(--cinema-900) !important;
        }

        /* Triptyque (3 écrans 9:16) */
        .triptyque {
            display: flex;
            gap: 20px;
            justify-content: center;
            align-items: flex-start;
            flex-wrap: nowrap; /* Ne jamais passer à la ligne */
            overflow-x: auto; /* Scroll horizontal si nécessaire sur très petits écrans */
            padding: 0 10px;
        }

        .screen {
            flex: 0 0 calc(33.333% - 14px);
            min-width: 120px; /* Largeur minimale pour rester lisible */
            max-width: 260px;
            padding: 20px;
            aspect-ratio: 9/16;
            background: var(--cinema-800);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: none;
            position: relative;
            border: 2px solid rgba(251, 191, 36, 0.1);
            transition: all 0.3s ease;
        }

        .screen-content {
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 40px 30px;
            text-align: center;
            padding: 25px 20px;
        }

        /* Styles spécifiques par type de slide */
        .stat-number {
            font-size: 5rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--cinema-gold) 0%, #f59e0b 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
            margin-bottom: 20px;
        }

        .stat-label {
            font-size: 1.125rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #e2e8f0;
        }

        .stat-description {
            font-size: 0.875rem;
            color: #94a3b8;
            margin-top: 10px;
            line-height: 1.4;
        }

        .advantage-icon {
            width: 80px;
            height: 80px;
            margin-bottom: 30px;
            background: linear-gradient(135deg, var(--cinema-gold) 0%, #f59e0b 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
        }

        .advantage-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--cinema-gold);
        }

        .advantage-text {
            font-size: 1rem;
            color: #cbd5e1;
            line-height: 1.6;
        }

        .video-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .video-icon {
            font-size: 4rem;
            color: var(--cinema-gold);
            opacity: 0.5;
        }

       /* ==== DOOH : cartes vidéo plein cadre ==== */

/* Seulement les rectangles qui contiennent une vidéo */
.triptyque .screen.screen-video {
    padding: 0;                  /* on enlève le padding qui créait le cadre */
    background: transparent;     /* pas de fond sombre derrière la vidéo */
    border: none;                /* pas de bordure dorée */
    box-shadow: none;
    overflow: hidden;            /* pour que l'arrondi coupe bien la vidéo */
    border-radius: 16px;         /* même arrondi que les autres cartes */
}

/* La vidéo = le panneau DOOH complet */
.triptyque .screen.screen-video video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;           /* remplit le 9/16 sans bandes */
    border-radius: inherit;      /* garde l'arrondi du parent */
    background: #000;            /* sécurité au chargement */
}


        .perception-stat {
            text-align: center;
        }

        .perception-number {
            font-size: 3.5rem;
            font-weight: 900;
            color: var(--cinema-gold);
            line-height: 1;
            margin-bottom: 10px;
        }

        .perception-label {
            font-size: 1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #e2e8f0;
        }

        .perception-description {
            font-size: 0.813rem;
            color: #94a3b8;
            margin-top: 8px;
            line-height: 1.4;
        }

        .study-source {
            text-align: center;
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid rgba(251, 191, 36, 0.1);
            color: #64748b;
            font-size: 0.875rem;
            font-style: italic;
        }

        .study-source strong {
            color: #94a3b8;
            font-weight: 600;
        }

        /* Slide titre */
        .slide-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .slide-title h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--cinema-gold);
            margin-bottom: 10px;
        }

        .slide-title p {
            font-size: 1.125rem;
            color: #94a3b8;
        }

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

            .screen {
                max-width: 300px;
            }

            .stat-number {
                font-size: 4rem;
            }

            .advantage-icon {
                width: 60px;
                height: 60px;
                font-size: 2rem;
            }

            .advantage-title {
                font-size: 1.25rem;
            }

            .advantage-text {
                font-size: 0.875rem;
            }

            .perception-number {
                font-size: 3rem;
            }
        }

        @media (max-width: 768px) {
            .dooh-section {
                padding: 60px 15px;
            }

            .dooh-title {
                font-size: 1.5rem;
            }

            .dooh-subtitle {
                font-size: 1rem;
            }

            .screen {
                max-width: 250px;
                padding: 20px 15px;
            }

            .stat-number {
                font-size: 3rem;
            }

            .stat-label {
                font-size: 0.875rem;
            }

            .stat-description {
                font-size: 0.75rem;
            }

            .advantage-icon {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
                margin-bottom: 20px;
            }

            .advantage-title {
                font-size: 1rem;
            }

            .advantage-text {
                font-size: 0.75rem;
            }

            .perception-number {
                font-size: 2.5rem;
            }

            .perception-label {
                font-size: 0.875rem;
            }

            .perception-description {
                font-size: 0.75rem;
            }

            .slide-title h2 {
                font-size: 1.75rem;
            }

            .slide-title p {
                font-size: 1rem;
            }

            .study-source {
                font-size: 0.75rem;
                margin-top: 30px;
                padding-top: 20px;
            }

            .triptyque {
                gap: 10px;
            }
        }

        @media (max-width: 640px) {
            .dooh-section {
                padding: 40px 10px;
            }

            .dooh-title {
                font-size: 1.25rem;
            }

            .dooh-subtitle {
                font-size: 0.875rem;
            }

            .screen {
                max-width: 200px;
            }

            .screen-content {
                padding: 20px 10px;
            }

            .stat-number {
                font-size: 2.5rem;
            }

            .stat-label {
                font-size: 0.75rem;
            }

            .stat-description {
                font-size: 0.688rem;
            }

            .advantage-icon {
                width: 40px;
                height: 40px;
                font-size: 1.25rem;
                margin-bottom: 15px;
            }

            .advantage-title {
                font-size: 0.875rem;
            }

            .advantage-text {
                font-size: 0.688rem;
            }

            .perception-number {
                font-size: 2rem;
            }

            .perception-label {
                font-size: 0.75rem;
            }

            .perception-description {
                font-size: 0.688rem;
            }

            .slide-title h2 {
                font-size: 1.25rem;
            }

            .slide-title p {
                font-size: 0.875rem;
            }

            .study-source {
                font-size: 0.688rem;
                margin-top: 20px;
                padding-top: 15px;
            }

            .nav-btn {
                width: 40px;
                height: 40px;
                font-size: 1.25rem;
            }

            .triptyque {
                gap: 8px;
            }
        }

        @media (max-width: 480px) {
            .dooh-section {
                padding: 30px 5px;
            }

            .dooh-label {
                font-size: 0.75rem;
                padding: 6px 15px;
            }

            .dooh-title {
                font-size: 1rem;
            }

            .dooh-subtitle {
                font-size: 0.75rem;
            }

            .screen {
                max-width: 150px;
            }

            .screen-content {
                padding: 15px 8px;
            }

            .stat-number {
                font-size: 2rem;
            }

            .stat-label {
                font-size: 0.688rem;
            }

            .stat-description {
                font-size: 0.625rem;
            }

            .advantage-icon {
                width: 35px;
                height: 35px;
                font-size: 1rem;
                margin-bottom: 10px;
                border-radius: 10px;
            }

            .advantage-title {
                font-size: 0.75rem;
            }

            .advantage-text {
                font-size: 0.625rem;
            }

            .perception-number {
                font-size: 1.75rem;
                margin-bottom: 5px;
            }

            .perception-label {
                font-size: 0.688rem;
            }

            .perception-description {
                font-size: 0.625rem;
                margin-top: 5px;
            }

            .slide-title {
                margin-bottom: 30px;
            }

            .slide-title h2 {
                font-size: 1rem;
            }

            .slide-title p {
                font-size: 0.75rem;
            }

            .study-source {
                font-size: 0.625rem;
                margin-top: 15px;
                padding-top: 10px;
            }

            .triptyque {
                gap: 5px;
            }

            .nav-btn {
                width: 35px;
                height: 35px;
                font-size: 1rem;
            }

            .nav-dot {
                width: 8px;
                height: 8px;
            }
        }

        /* Note pour développeur */
        .dev-note {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: var(--cinema-800);
            padding: 15px 20px;
            border-radius: 12px;
            border: 2px solid var(--cinema-gold);
            font-size: 0.875rem;
            max-width: 300px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        .dev-note strong {
            color: var(--cinema-gold);
        }

/* ========================================
   Section LED Indoor
   ======================================== */

.led-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, 
        rgba(30, 41, 59, 0.5) 0%, 
        var(--cinema-900) 50%,
        rgba(30, 41, 59, 0.3) 100%
    );
    border-top: 1px solid rgba(148, 163, 184, 0.1);
}

.led-section .dooh-header {
    margin-bottom: 3rem;
}

.led-intro {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 992px) {
    .led-intro {
        grid-template-columns: 2fr 1.2fr;
        align-items: flex-start;
    }
}

.led-intro-text p {
    color: var(--gray-400);
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

.led-intro-text .offer-features {
    margin-top: 0.5rem;
}

.led-intro-text .offer-features li span {
    font-size: 0.9rem;
}

.led-intro-stats {
    background-color: var(--cinema-800);
    border-radius: 0.75rem;
    border: 1px solid rgba(148, 163, 184, 0.3);
    padding: 1.5rem 1.75rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.led-stats-grid {
    display: grid;
    gap: 1.25rem;
}

.led-stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 0.2rem;
}

.led-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e5e7eb;
}

.led-stat-hint {
    font-size: 0.8rem;
    color: var(--gray-400);
}

.led-layout {
    display: grid;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .led-layout {
        grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
        align-items: stretch;
    }
}

.led-card {
    background-color: var(--cinema-800);
    border-radius: 1rem;
    border: 1px solid rgba(148,163,184,0.25);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    padding: 1.5rem 1.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.led-card-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    flex-wrap: wrap;
}

.led-card-title {
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-300);
}

.led-card-subtitle {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.led-tag {
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(148,163,184,0.4);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gray-300);
}

.led-table-wrapper {
    border-radius: 0.75rem;
    border: 1px solid rgba(148,163,184,0.35);
    overflow: hidden;
    background-color: var(--cinema-900);
}

.led-table-scroll {
    max-height: 420px;
    overflow: auto;
}

table.led-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8rem;
}

table.led-table thead {
    background-color: rgba(15,23,42,0.98);
    position: sticky;
    top: 0;
    z-index: 5;
}

table.led-table th,
table.led-table td {
    padding: 0.55rem 0.85rem;
    text-align: left;
    white-space: nowrap;
}

table.led-table th {
    font-weight: 600;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray-400);
    border-bottom: 1px solid rgba(148,163,184,0.4);
}

table.led-table tbody tr {
    border-bottom: 1px solid rgba(30,64,175,0.35);
    cursor: pointer;
    transition: background 0.15s ease, transform 0.1s ease;
}

table.led-table tbody tr:nth-child(odd) {
    background-color: rgba(15,23,42,0.92);
}

table.led-table tbody tr:nth-child(even) {
    background-color: rgba(15,23,42,0.86);
}

table.led-table tbody tr:hover {
    background-color: rgba(30,64,175,0.65);
    transform: translateY(-1px);
}

table.led-table tbody tr.led-active-row {
    background: linear-gradient(90deg, rgba(251,191,36,0.18), rgba(15,23,42,0.98));
}

.led-circuit-cell {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.led-circuit-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    display: inline-block;
}

.led-preview-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    margin-bottom: 0.15rem;
}

.led-preview-subtitle {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-bottom: 0.9rem;
}

.led-preview-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.led-preview-tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    border: 1px solid rgba(148,163,184,0.8);
    color: var(--gray-300);
}

.led-preview-specs {
    font-size: 0.8rem;
    color: var(--gray-300);
    margin-bottom: 1rem;
}

.led-preview-specs strong {
    color: #e5e7eb;
}

.led-preview-image {
    border-radius: 0.75rem;
    border: 1px solid rgba(148,163,184,0.35);
    overflow: hidden;
    background: radial-gradient(circle at top, #1f2937 0%, #020617 70%);
}

.led-preview-image img {
    display: block;
    width: 100%;
    height: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.led-preview-image img:hover {
    transform: scale(1.02);
}

.led-preview-placeholder {
    font-size: 0.8rem;
    color: var(--gray-500);
    text-align: center;
    padding: 3rem 1rem;
}

.led-preview-footer {
    margin-top: 1rem;
    font-size: 0.78rem;
    color: var(--gray-500);
}

/* LED Table Responsive */

/* Tablet */
@media (max-width: 1024px) {
    .led-section {
        padding: 4rem 0;
    }
    
    .led-section .section-main-title {
        font-size: 2rem;
    }
    
    .led-intro {
        gap: 1.5rem;
    }
    
    .led-stats-grid {
        grid-template-columns: repeat(3, 1fr);
        text-align: center;
    }
    
    .led-stat-value {
        font-size: 1.3rem;
    }
}

/* Mobile Large */
@media (max-width: 768px) {
    .led-section {
        padding: 3rem 0;
    }
    
    .led-section .section-main-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .led-section .dooh-header {
        margin-bottom: 2rem;
    }
    
    .led-intro {
        margin-bottom: 2rem;
    }
    
    .led-intro-text p {
        font-size: 0.9rem;
    }
    
    .led-intro-text .offer-features li {
        margin-bottom: 0.5rem;
    }
    
    .led-intro-text .offer-features li span {
        font-size: 0.85rem;
    }
    
    .led-intro-stats {
        padding: 1.25rem;
    }
    
    .led-stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }
    
    .led-stat-label {
        font-size: 0.6rem;
    }
    
    .led-stat-value {
        font-size: 1.1rem;
    }
    
    .led-layout {
        gap: 1.5rem;
    }
    
    .led-card {
        padding: 1rem;
        border-radius: 0.75rem;
    }
    
    .led-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .led-card-title {
        font-size: 0.85rem;
    }
    
    .led-card-subtitle {
        font-size: 0.75rem;
    }
    
    .led-table-scroll {
        max-height: 320px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    table.led-table {
        font-size: 0.75rem;
        min-width: 600px;
    }
    
    table.led-table th,
    table.led-table td {
        padding: 0.5rem 0.6rem;
    }
    
    table.led-table th {
        font-size: 0.65rem;
    }
    
    .led-preview-title {
        font-size: 1.15rem;
    }
    
    .led-preview-subtitle {
        font-size: 0.8rem;
    }
    
    .led-preview-specs {
        font-size: 0.75rem;
    }
    
    .led-preview-placeholder {
        padding: 2rem 1rem;
        font-size: 0.75rem;
    }
    
    .led-preview-footer {
        font-size: 0.72rem;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .led-section {
        padding: 2.5rem 0;
    }
    
    .led-section .section-main-title {
        font-size: 1.25rem;
        padding: 0 0.5rem;
    }
    
    .led-section .dooh-header {
        margin-bottom: 1.5rem;
    }
    
    .led-intro {
        margin-bottom: 1.5rem;
        gap: 1rem;
    }
    
    .led-intro-text p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .led-intro-text .offer-features li span {
        font-size: 0.8rem;
    }
    
    .led-intro-stats {
        padding: 1rem;
    }
    
    .led-stats-grid {
        gap: 0.5rem;
    }
    
    .led-stat-label {
        font-size: 0.55rem;
        letter-spacing: 0.08em;
    }
    
    .led-stat-value {
        font-size: 1rem;
    }
    
    .led-layout {
        gap: 1rem;
    }
    
    .led-card {
        padding: 0.85rem;
        gap: 0.75rem;
    }
    
    .led-card-title {
        font-size: 0.75rem;
    }
    
    .led-card-subtitle {
        font-size: 0.7rem;
    }
    
    .led-tag {
        font-size: 0.6rem;
        padding: 0.2rem 0.5rem;
    }
    
    .led-table-scroll {
        max-height: 280px;
    }
    
    table.led-table {
        font-size: 0.7rem;
        min-width: 550px;
    }
    
    table.led-table th,
    table.led-table td {
        padding: 0.4rem 0.5rem;
    }
    
    table.led-table th {
        font-size: 0.6rem;
    }
    
    .led-preview-title {
        font-size: 1rem;
    }
    
    .led-preview-subtitle {
        font-size: 0.75rem;
        margin-bottom: 0.6rem;
    }
    
    .led-preview-tags {
        gap: 0.35rem;
        margin-bottom: 0.75rem;
    }
    
    .led-preview-tag {
        font-size: 0.6rem;
        padding: 0.2rem 0.5rem;
    }
    
    .led-preview-specs {
        font-size: 0.7rem;
        margin-bottom: 0.75rem;
    }
    
    .led-preview-image {
        border-radius: 0.5rem;
    }
    
    .led-preview-placeholder {
        padding: 1.5rem 0.75rem;
        font-size: 0.7rem;
    }
    
    .led-preview-footer {
        font-size: 0.68rem;
        margin-top: 0.75rem;
    }
}

/* Hint pour le scroll horizontal sur mobile */
.led-table-wrapper {
    position: relative;
}

@media (max-width: 768px) {
    .led-table-wrapper::after {
        content: '← glisser →';
        position: absolute;
        bottom: -1.5rem;
        left: 50%;
        transform: translateX(-50%);
        font-size: 0.65rem;
        color: var(--gray-500);
        text-transform: uppercase;
        letter-spacing: 0.1em;
        opacity: 0.7;
    }
    
    .led-card:first-child {
        padding-bottom: 2.5rem;
    }
}

/* ========================================
   Contact Form Feedback Styles
   ======================================== */

.form-feedback {
    padding: 1rem 1.25rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.form-feedback svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.form-feedback.success {
    background-color: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.4);
    color: #86efac;
}

.form-feedback.success svg {
    stroke: #22c55e;
}

.form-feedback.error {
    background-color: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #fca5a5;
}

.form-feedback.error svg {
    stroke: #ef4444;
}

.form-submit {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 200px;
}

.form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-submit .btn-loader {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.form-submit .btn-loader svg {
    animation: spin 1s linear infinite;
}

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