/* 
 * Formasound - CSS Sans Conflits - Version Corrigée
 * Design premium avec thème sombre et couleurs dorées - ZÉRO GLOW
 */

/* ==================== VARIABLES ==================== */
:root {
    --gold: #F5A623;
    --gold-dark: #e6a11e;
    --burgundy: #1a1a1a;
    --burgundy-light: #2d2d2d;
    --burgundy-original: #8A193D;
    --accent-blue: #00A8E8;
    --accent-blue-dark: #0095d1;
    --white: #ffffff;
    --gray-light: rgba(255, 255, 255, 0.1);
    --gray-medium: rgba(255, 255, 255, 0.3);
    --gray-dark: rgba(255, 255, 255, 0.7);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--white);
    overflow-x: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, var(--burgundy) 50%, var(--burgundy-light) 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* ==================== ANIMATIONS (SANS GLOW) ==================== */
@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(20px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

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

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    50% { 
        transform: translateY(-20px) rotate(180deg); 
    }
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Classes d'animation */
.animated {
    animation: fadeInUp 0.8s ease forwards;
}

[data-animation] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animation].animated {
    opacity: 1;
    transform: translateY(0);
}

[data-animation="fade-up"]:nth-child(2) { transition-delay: 0.1s; }
[data-animation="fade-up"]:nth-child(3) { transition-delay: 0.2s; }
[data-animation="fade-up"]:nth-child(4) { transition-delay: 0.3s; }

.slide-in-left {
    animation: slideInFromLeft 0.6s ease-out;
}

.slide-in-right {
    animation: slideInFromRight 0.6s ease-out;
}

/* ==================== BOUTONS (SANS GLOW) ==================== */
.btn {
    border-radius: 50px;
    padding: 0.8rem 2rem;
    font-weight: 600;
    text-transform: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 0.4rem 1.2rem;
    font-size: 0.9rem;
}

/* Boutons dorés */
.btn-burgundy,
.btn-gold {
    background-color: var(--gold);
    color: var(--burgundy);
    border: none;
}

.btn-burgundy:hover,
.btn-gold:hover {
    background-color: var(--gold-dark);
    color: var(--burgundy);
}

/* Boutons outline dorés */
.btn-outline-burgundy {
    color: var(--gold);
    border: 2px solid var(--gold);
    background-color: transparent;
}

.btn-outline-burgundy:hover {
    background-color: var(--gold);
    color: var(--burgundy);
    border-color: var(--gold);
}


/* Bouton CTA principal */
.btn-cta-alt {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-blue-dark));
    color: var(--white);
    font-weight: 600;
}

.btn-cta-alt:hover {
    transform: translateY(-3px);
    color: var(--white);
    background: linear-gradient(135deg, var(--accent-blue-dark), var(--accent-blue));
}

/* Boutons outline light */
.btn-outline-light {
    color: var(--white);
    border: 2px solid var(--gray-medium);
    background: var(--gray-light);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white);
}

/* Bouton précédent (formulaires) */
.btn-prev {
    background-color: var(--gray-light);
    color: var(--gray-dark) !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-prev:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white) !important;
    border-color: var(--gray-medium);
}

 /* ==================== NAVIGATION AVEC HOVER ==================== */
.navbar {
    padding: 15px 0;
    transition: all 0.3s ease;
    background: rgba(10, 10, 10, 0.95) !important;
    border-bottom: 1px solid var(--gray-light);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    padding: 0;
    margin-right: 2rem;
    display: flex;
    align-items: center;
    color: var(--white) !important;
}

.navbar-brand .text-gold {
    color: var(--gold) !important;
}

.nav-link {
    font-weight: 500;
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.9) !important;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold) !important;
    transform: translateY(-1px);
}

/* SEULEMENT pour les liens normaux, PAS pour le dropdown */
.nav-link:not(.dropdown-toggle)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:not(.dropdown-toggle):hover::after,
.nav-link:not(.dropdown-toggle).active::after {
    width: 80%;
}

/* ==================== DROPDOWN HOVER CORRIGÉ ==================== */
.dropdown {
    position: relative;
}

.dropdown-menu {
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-light) 100%);
    border: 1px solid var(--gray-light);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 200px;
    z-index: 1000;
}

.dropdown-item {
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 0.7rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
    width: 100%;
    text-decoration: none;
}

.dropdown-item:hover {
    background: var(--gold);
    color: var(--burgundy) !important;
}

.dropdown-toggle::after {
    display: none;
}

/* DESKTOP : Hover */
@media (min-width: 992px) {
    .dropdown-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        margin-top: 0;
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        pointer-events: none;
    }

    .dropdown:hover .dropdown-menu {
        display: block;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .dropdown::before {
        content: '';
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        height: 10px;
        background: transparent;
        z-index: 999;
    }
    
    .dropdown-toggle::before {
        content: '\f0d7';
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        margin-right: 0.5rem;
        color: var(--gold);
        font-size: 0.7rem;
    }
}

@media (max-width: 991px) {
  .dropdown-menu.show {
    display: block !important;
    opacity: 1;
    visibility: visible;
  }
}

/* Logo */
.logo-container {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.logo-container img {
    height: 100%;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    display: block;
    max-width: 100%;
    filter: brightness(1.2) !important;
}

.navbar-brand:hover .logo-container {
    transform: scale(1.05);
}

/* ==================== SECTIONS ==================== */
.section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.section-gray {
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-light) 100%);
}

.section-light {
    background: linear-gradient(135deg, #0f0f0f 0%, var(--burgundy) 100%);
}

.section-dark {
    background: linear-gradient(135deg, #0a0a0a 0%, var(--burgundy) 100%);
    color: var(--white);
}

.section-light-burgundy {
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-light) 100%);
    position: relative;
    color: var(--white);
}

.section-light-burgundy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.6;
}

.section-burgundy {
    background: linear-gradient(135deg, #0a0a0a 0%, var(--burgundy) 100%);
    color: var(--white);
    position: relative;
}

.section-burgundy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(245, 166, 35, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 168, 232, 0.1) 0%, transparent 50%);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 700;
    font-size: 2.5rem;
    position: relative;
    color: var(--white) !important;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--accent-blue));
    margin: 1.5rem auto 0;
    border-radius: 2px;
    transition: width 0.5s ease;
}

.section-title:hover::after {
    width: 150px;
}

/* ==================== HERO SECTIONS (SANS GLOW) ==================== */
.hero {
    position: relative;
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, #0a0a0a 0%, var(--burgundy) 50%, var(--burgundy-light) 100%);
    overflow: hidden;
    color: var(--white);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(245, 166, 35, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 168, 232, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-weight: 700;
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--white) !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.hero .lead {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 2rem;
}

.hero-formation {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/studio-beatmaker.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 100px 0;
}

.hero-formation h1,
.hero-formation .lead,
.hero-formation p {
    color: var(--white) !important;
}

/* Hero benefits */
.hero-benefits {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding-left: 0;
    margin-bottom: 2rem;
}

.hero-benefits li {
    display: flex;
    align-items: center;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    color: var(--white) !important;
}

.hero-benefits li:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.check-svg {
    color: var(--gold);
    margin-right: 0.5rem;
    flex-shrink: 0;
}

/* Hero video (SANS GLOW) */
.hero-video {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s ease;
}

.hero-video:hover {
    transform: translateY(-10px);
}

.hero-image {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.5s ease;
}

.hero-image:hover {
    transform: translateY(-5px);
}

.hero-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.hero-image:hover img {
    transform: scale(1.03);
}

/* ==================== CARDS (SANS GLOW) - LAYOUT FIXÉ ==================== */

/* FIX LAYOUT GRID BOOTSTRAP */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -0.75rem;
    margin-left: -0.75rem;
}

.row.g-4 {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem;
}

.col-md-4 {
    flex: 0 0 auto;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-top: var(--bs-gutter-y);
}

@media (min-width: 768px) {
    .col-md-4 {
        width: 33.333333%;
    }
}

/* STYLES CARDS */
.card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-light) 100%);
    border: 1px solid var(--gray-light);
    transition: all 0.4s ease;
    height: 100%;
    color: var(--white);
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
}

.card-img-top {
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
}

.card-text {
    color: rgba(255, 255, 255, 0.8) !important;
    line-height: 1.6;
    flex-grow: 1;
}

.card-body h3,
.card-body h4,
.card-body h5 {
    color: var(--white) !important;
}

.position-absolute .text-white {
    color: var(--white) !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7) !important;
}

.card .text-burgundy {
    color: var(--gold) !important;
}

.card .btn-outline-burgundy {
    color: var(--gold) !important;
    border-color: var(--gold) !important;
    background-color: transparent;
}

.card .btn-outline-burgundy:hover {
    background-color: var(--gold) !important;
    color: var(--burgundy) !important;
    border-color: var(--gold) !important;
}

/* ==================== CARDS CLIQUABLES - SANS CONFLITS ==================== */

/* Lien image */
.card-link-image {
    text-decoration: none;
    display: block;
    transition: transform 0.3s ease;
}

/* Lien titre dans l'overlay */
.card-link-title {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.card-link-title:hover {
    color: var(--gold) !important;
    text-decoration: none;
}

/* Effet underline sur le titre */
.card-title-hover {
    position: relative;
    transition: all 0.3s ease;
}

.card-title-hover::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

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

/* Position relative pour l'overlay */
.card-image-container {
    position: relative;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

/* Focus pour accessibilité */
.card-link-image:focus,
.card-link-title:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* ==================== COMPOSANTS SPÉCIFIQUES (SANS GLOW) ==================== */

/* Advantage Icons - SANS AUCUN GLOW */
.advantage-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--burgundy);
    transition: all 0.4s ease;
}

.text-center:hover .advantage-icon {
    transform: translateY(-5px) rotate(5deg);
}

.text-center h3 {
    color: var(--white) !important;
}

.text-center p {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Testimonials */
.testimonial-avatar {
    width: 50px;
    height: 50px;
    overflow: hidden;
    border-radius: 50%;
    border: 3px solid var(--white);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-avatar-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--burgundy);
    margin-right: 1rem;
}

.card .card-text.fst-italic {
    position: relative;
    padding-left: 10px;
}

.card .card-text.fst-italic:before {
    content: '"';
    position: absolute;
    left: -10px;
    top: -5px;
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: bold;
}

/* ==================== FAQ SECTION ==================== */
.faq-section {
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-light) 100%);
    padding: 80px 0;
}

.accordion-item {
    border: none;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--burgundy-light);
}

.accordion-button {
    font-weight: 600;
    padding: 20px 25px;
    background-color: var(--burgundy-light);
    color: var(--white) !important;
    border: 1px solid var(--gray-light);
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--burgundy) !important;
}

.accordion-button:focus {
    border-color: var(--gold);
    outline: none;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 20px 25px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9) !important;
    background-color: var(--burgundy-light);
}

.faq-category {
    margin-bottom: 30px;
}

.faq-category-title {
    color: var(--gold) !important;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
}

/* ==================== FOOTER ==================== */
footer {
    background: linear-gradient(135deg, #0a0a0a 0%, var(--burgundy) 100%) !important;
    position: relative;
    color: var(--white);
    width: 100vw !important;
    margin: 0 !important;
    padding: 0 !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    box-sizing: border-box;
    margin-top: auto !important;
    flex-shrink: 0;
}

footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.6;
}

footer .container {
    padding-top: 4rem;
    padding-bottom: 2rem;
}

footer .border-top {
    border-color: var(--gray-light) !important;
    margin-top: 2rem;
    padding-top: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-logo img {
    height: 40px;
    width: auto;
    margin-right: 10px;
}

.footer-logo .fs-5 {
    font-weight: 700;
    color: var(--white) !important;
}

footer h5 {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
    color: var(--white) !important;
}

footer h5:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background-color: var(--gold);
}

footer .title-underline {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
    color: var(--white) !important;
}

footer .title-underline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background-color: var(--gold);
}

.footer-link {
    color: var(--gray-dark) !important;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    color: var(--gold) !important;
    text-decoration: none;
    transform: translateX(3px);
}

.social-icons {
    display: flex;
    gap: 0.75rem;
}

.social-icons a {
    color: var(--gray-dark) !important;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--gray-light);
    border: 1px solid var(--gray-light);
}

.social-icons a:hover {
    color: var(--gold) !important;
    background-color: rgba(245, 166, 35, 0.2);
    border-color: var(--gold);
    transform: translateY(-3px);
}

footer p,
footer li {
    color: rgba(255, 255, 255, 0.8) !important;
}

footer .text-muted {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* ==================== UTILITAIRES ==================== */
.text-gold {
    color: var(--gold) !important;
}

.text-burgundy {
    color: var(--burgundy-original) !important;
}

.text-white {
    color: var(--white) !important;
}

.text-warning {
    color: var(--gold) !important;
}

.text-muted {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* ==================== COULEURS GÉNÉRALES ==================== */
h1, h2, h3, h4, h5, h6, p, li, span, div {
    color: var(--white);
}

.card h1, .card h2, .card h3, .card h4, .card h5, .card h6 {
    color: var(--white) !important;
}

/* ==================== LIENS GÉNÉRAUX ==================== */
a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--gold-dark);
}

/* ==================== ÉTATS HOVER GLOBAUX ==================== */
.btn:not(.btn-outline-light):not(.btn-prev):hover {
    transform: translateY(-2px);
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
}

/* ==================== MEDIA QUERIES ==================== */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .advantage-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }
    
    .cta-section {
        padding: 6rem 0;
    }
    
    .faq-section {
        padding: 60px 0;
    }
    
    .accordion-button {
        padding: 15px 20px;
    }
    
    .accordion-body {
        padding: 15px 20px;
    }
    
    .faq-category-title {
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .logo-container {
        width: 30px;
        height: 30px;
    }
    
    .advantage-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
    
    .btn-lg {
        padding: 0.8rem 1.8rem;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .col-md-4 {
        margin-bottom: 2rem;
    }
}

/* ==================== SUPPRESSION ABSOLUE DE TOUS LES EFFETS DE GLOW ==================== */
*,
*::before,
*::after {
    box-shadow: none !important;
}

/* Réactivation sélective des ombres nécessaires pour la lisibilité */
.hero h1 {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.position-absolute .text-white {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7) !important;
}

/* Suppression de tous les filtres blur qui peuvent créer des glows */
*::before,
*::after {
    filter: none !important;
}

/* Réactivation du filtre brightness pour le logo uniquement */
.logo-container img {
    filter: brightness(1.2) !important;
}

/* ==================== ACCESSIBILITÉ ==================== */
a:focus, button:focus, input:focus, textarea:focus, select:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* ==================== PERFORMANCE ==================== */
.btn,
.card,
.nav-link,
.advantage-icon {
    will-change: transform;
}

.particle,
.advantage-icon {
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* ==================== PRINT STYLES ==================== */
@media print {
    .no-print {
        display: none !important;
    }
    
    body {
        background-color: var(--white) !important;
        color: black !important;
    }
    
    .container {
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .navbar,
    .hero-video,
    .particles,
    .social-icons {
        display: none !important;
    }
}

/* ==================== SUPPORT MOUVEMENT RÉDUIT ==================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ==================== SUPPORT ANCIENS NAVIGATEURS ==================== */
@supports not (display: flex) {
    .hero-benefits {
        display: block;
    }
    
    .hero-benefits li {
        display: inline-block;
        margin: 0.5rem;
    }
}
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .section {
        padding: 5rem 0;
    }
}

@media (max-width: 768px) {
    .logo-container {
        width: 35px;
        height: 35px;
    }
    
    .navbar-collapse {
        background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-light) 100%);
        padding: 1rem;
        border-radius: 0.5rem;
        border: 1px solid var(--gray-light);
    }
    
    .nav-link::after {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-benefits {
        justify-content: center;
    }
    
    .hero-benefits li {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .advantage-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }
    
    .feature-icon {
        font-size: 32px;
    }
    
    .timeline-step {
        padding-left: 40px;
    }
    
    .timeline-step::before {
        width: 25px;
        height: 25px;
        line-height: 25px;
        font-size: 14px;
    }
    
    .timeline-step::after {
        left: 26px;
    }
    
    .cta-section {
        padding: 6rem 0;
    }
    
    .faq-section {
        padding: 60px 0;
    }
    
    .accordion-button {
        padding: 15px 20px;
    }
    
    .accordion-body {
        padding: 15px 20px;
    }
    
    .faq-category-title {
        margin-bottom: 15px;
    }
    
    .position-absolute.top-0.end-0.translate-middle.badge.rounded-pill.bg-warning {
        font-size: 10px;
        padding: 6px 10px;
    }
    
    .form-container {
        min-height: 550px;
    }
    
    .question-slide {
        padding: 1.5rem;
        min-height: 450px;
    }
    
    .option-card {
        padding: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .question-title {
        font-size: 1.5rem;
    }
    
    .particle {
        opacity: 0.5;
    }
}



/* ==================== COMPOSANTS ADDITIONNELS ==================== */

/* Feature Box */
.feature-box {
    padding: 30px;
    border-radius: 10px;
    height: 100%;
    transition: transform 0.3s ease;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-light) 100%);
    border: 1px solid var(--gray-light);
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 20px;
}

.feature-box h3,
.feature-box h4,
.feature-box h5 {
    color: var(--white) !important;
}

.feature-box p {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Timeline */
.timeline-step {
    position: relative;
    padding-left: 50px;
    margin-bottom: 30px;
    color: var(--white);
}

.timeline-step::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 0;
    width: 30px;
    height: 30px;
    background-color: var(--gold);
    border-radius: 50%;
    color: var(--burgundy);
    text-align: center;
    line-height: 30px;
    font-weight: bold;
}

.timeline-step:nth-child(1)::before { content: "1"; }
.timeline-step:nth-child(2)::before { content: "2"; }
.timeline-step:nth-child(3)::before { content: "3"; }
.timeline-step:nth-child(4)::before { content: "4"; }
.timeline-step:nth-child(5)::before { content: "5"; }

.timeline-step::after {
    content: "";
    position: absolute;
    left: 29px;
    top: 30px;
    width: 2px;
    height: calc(100% - 30px);
    background-color: #e0e0e0;
}

.timeline-step:last-child::after {
    display: none;
}

.timeline-step h4,
.timeline-step h5 {
    color: var(--white) !important;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0a0a0a 0%, var(--burgundy) 100%);
    color: var(--white);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(245, 166, 35, 0.15) 0%, transparent 70%),
        radial-gradient(circle at 70% 30%, rgba(0, 168, 232, 0.1) 0%, transparent 70%);
}

.cta-section h1,
.cta-section h2,
.cta-section h3,
.cta-section p,
.cta-section .lead {
    color: var(--white) !important;
}

/* Badge */
.badge {
    color: var(--burgundy) !important;
}

.badge.bg-warning {
    color: var(--burgundy) !important;
    background-color: var(--gold) !important;
}

.position-absolute.top-0.end-0.translate-middle.badge.rounded-pill.bg-warning {
    transform: translate(50%, -50%);
    z-index: 2;
    padding: 8px 12px;
    font-size: 12px;
    white-space: nowrap;
}

/* ==================== FORMULAIRE D'INSCRIPTION ==================== */
.form-container {
    position: relative;
    min-height: 500px;
    height: auto;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-light) 100%);
    border-radius: 20px;
    border: 1px solid var(--gray-light);
    overflow: visible;
    margin-bottom: 2rem;
}

.form-progress {
    height: 6px;
    background: var(--gray-light);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    width: 0%;
    transition: width 0.3s ease;
}

.question-slide {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 400px;
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    padding: 2rem;
    transition: all 0.5s ease;
}

.question-slide.active {
    display: flex !important;
    opacity: 1;
    visibility: visible;
    z-index: 10;
    position: relative;
}

.question-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white) !important;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.question-slide.active .question-title {
    transform: translateY(0);
    opacity: 1;
}

.question-slide:not(.active) .question-title {
    transform: translateY(20px);
    opacity: 0;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    margin-bottom: 1rem;
    position: relative;
}

.input-animation {
    transition: all 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
}

.question-slide.active .input-animation {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.2s;
}

.option-card {
    border: 2px solid var(--gray-light);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    transform: translateY(20px);
    opacity: 0;
    background: rgba(255, 255, 255, 0.05);
}

.question-slide.active .option-card {
    transform: translateY(0);
    opacity: 1;
}

.option-card:hover {
    border-color: rgba(245, 166, 35, 0.5);
    background-color: rgba(245, 166, 35, 0.1);
}

.option-card.selected {
    border-color: var(--gold);
    background-color: rgba(245, 166, 35, 0.2);
}

.option-card.selected:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 1.5rem;
    color: var(--gold);
}

.option-card h4,
.option-card h5,
.option-card p {
    color: var(--white) !important;
}

.option-card:nth-child(1) { transition-delay: 0.1s; }
.option-card:nth-child(2) { transition-delay: 0.2s; }
.option-card:nth-child(3) { transition-delay: 0.3s; }
.option-card:nth-child(4) { transition-delay: 0.4s; }

.confirmation-message {
    text-align: center;
    padding: 3rem;
}

.confirmation-icon {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.question-slide#confirmation {
    justify-content: center;
}

.confirmation-message h2,
.confirmation-message p {
    color: var(--white) !important;
}

.options-container {
    margin-bottom: 2rem;
    width: 100%;
}

.form-label {
    color: var(--white) !important;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-floating > label {
    padding-left: 1rem;
    color: rgba(255, 255, 255, 0.9) !important;
}

.form-control {
    color: var(--white) !important;
    background-color: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
}
.form-control:focus {
    border-color: var(--gold);
    color: var(--white) !important;
    background-color: rgba(255, 255, 255, 0.15);
    outline: none;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* ==================== DROPDOWN MENU ==================== */
.dropdown-menu {
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-light) 100%);
    border: 1px solid var(--gray-light);
}

.dropdown-item {
    color: rgba(255, 255, 255, 0.9) !important;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--burgundy) !important;
}

/* ==================== PARTICLES ==================== */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    background: rgba(245, 166, 35, 0.2);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

/* ==================== MAP ==================== */
.map-container {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.map-container:hover {
    transform: translateY(-2px);
}

.map-dot {
    width: 16px;
    height: 16px;
    background-color: var(--gold);
    border-radius: 50%;
}

.map-point {
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 2;
}

/* ==================== COMPOSANTS SPÉCIAUX ==================== */
.financing-option {
    border-left: 3px solid var(--burgundy-original);
    padding-left: 20px;
    margin-bottom: 15px;
}

.custom-marker {
    background-color: var(--burgundy-original);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    position: relative;
}

.custom-marker::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    border: 2px solid var(--burgundy-original);
    border-radius: 50%;
    top: -6px;
    left: -6px;
}

.btn-outline-burgundy.rounded-pill {
    color: var(--burgundy-original);
    border-color: var(--burgundy-original);
    transition: all 0.3s ease;
}

.btn-outline-burgundy.rounded-pill:hover {
    background-color: var(--burgundy-original);
    color: var(--white);
}

/* ==================== INPUTS ==================== */
input[type="file"],
input[type="radio"],
input[type="checkbox"] {
    accent-color: var(--gold);
}

select.form-control,
select.form-select {
    background-color: var(--gray-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
}

select.form-control:focus,
select.form-select:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--gold);
    color: var(--white);
    outline: none;
}

select option {
    background-color: var(--burgundy-light);
    color: var(--white);
}

/* ==================== CLASSES UTILITAIRES ==================== */
.bg-transparent {
    background: transparent !important;
}

.border-0 {
    border: none !important;
}

.rounded-xl {
    border-radius: 1.5rem !important;
}

.rounded-xxl {
    border-radius: 2rem !important;
}

.small,
.text-small {
    color: var(--gray-dark) !important;
}

.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*="col-"] {
    padding-right: 0;
    padding-left: 0;
}

.full-height {
    min-height: 100vh;
}

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

.overlay-dark {
    background: rgba(0, 0, 0, 0.5);
}

.overlay-light {
    background: rgba(255, 255, 255, 0.1);
}

/* ==================== DÉGRADÉS ==================== */
.gradient-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.gradient-burgundy {
    background: linear-gradient(135deg, var(--burgundy-original), #a8214a);
}

.gradient-dark {
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-light));
}

/* ==================== SUPPRESSION ABSOLUE DE TOUS LES EFFETS DE GLOW ==================== */
*,
*::before,
*::after {
    box-shadow: none !important;
}

/* Réactivation sélective des ombres nécessaires pour la lisibilité */
.hero h1 {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.position-absolute .text-white {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7) !important;
}

/* Suppression de tous les filtres blur qui peuvent créer des glows */
*::before,
*::after {
    filter: none !important;
}

/* Réactivation du filtre brightness pour le logo uniquement */
.logo-container img {
    filter: brightness(1.2) !important;
}

/* ==================== ACCESSIBILITÉ ==================== */
a:focus, button:focus, input:focus, textarea:focus, select:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* ==================== PERFORMANCE ==================== */
.btn,
.card,
.nav-link,
.advantage-icon {
    will-change: transform;
}

.particle,
.advantage-icon {
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* ==================== PRINT STYLES ==================== */
@media print {
    .no-print {
        display: none !important;
    }
    
    body {
        background-color: var(--white) !important;
        color: black !important;
    }
    
    .container {
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .hero {
        background: white !important;
        color: black !important;
    }
    
    .section-title {
        color: black !important;
    }
    
    .btn {
        border: 2px solid black !important;
        background: white !important;
        color: black !important;
    }
    
    .card {
        border: 1px solid black !important;
        background: white !important;
        color: black !important;
    }
    
    .navbar,
    .hero-video,
    .particles,
    .social-icons {
        display: none !important;
    }
}

/* ==================== SUPPORT MOUVEMENT RÉDUIT ==================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .particle {
        animation: none;
    }
}

/* ==================== SUPPORT ANCIENS NAVIGATEURS ==================== */
@supports not (display: flex) {
    .hero-benefits {
        display: block;
    }
    
    .hero-benefits li {
        display: inline-block;
        margin: 0.5rem;
    }
}

/* ==================== DARK MODE SPÉCIFIQUE ==================== */
@media (prefers-color-scheme: dark) {
    .form-control {
        background-color: var(--gray-light) !important;
        color: var(--white) !important;
    }
    
    .dropdown-menu {
        background-color: var(--burgundy) !important;
    }
    
    .modal-content {
        background-color: var(--burgundy) !important;
    }
}

/* ==================== RESPONSIVE SUPPLÉMENTAIRE ==================== */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.1;
    }
    
    .hero .lead {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .advantage-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .feature-icon {
        font-size: 28px;
    }
    
    .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .btn-lg {
        padding: 0.7rem 1.6rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 360px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .hero-benefits li {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .question-title {
        font-size: 1.2rem;
    }
    
    .option-card {
        padding: 1rem;
    }
}
/* ==================== CITY LABELS - TOUJOURS VISIBLES ==================== */
.city-label {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 3;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(245, 166, 35, 0.3);
}

.city-name {
    color: var(--gold) !important;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* ==================== STUDIO PHOTO CARDS ==================== */
.studio-photo-card {
    height: 350px;
    transition: all 0.4s ease;
}

.studio-photo-card:hover {
    transform: translateY(-8px);
}

.studio-image {
    height: 350px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.studio-photo-card:hover .studio-image {
    transform: scale(1.1);
}

.studio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: all 0.4s ease;
}

.studio-photo-card:hover .studio-overlay {
    opacity: 1;
}

.studio-info {
    width: 100%;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.studio-photo-card:hover .studio-info {
    transform: translateY(0);
}

.studio-city {
    color: var(--gold) !important;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.studio-description {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.studio-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-badge {
    background: rgba(245, 166, 35, 0.9);
    color: var(--burgundy) !important;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

/* Responsive */
@media (max-width: 768px) {
    .city-label {
        top: 1rem;
        left: 1rem;
        padding: 0.4rem 0.8rem;
    }
    
    .city-name {
        font-size: 1.1rem;
    }
    
    .studio-photo-card {
        height: 280px;
        margin-bottom: 1.5rem;
    }
    
    .studio-image {
        height: 280px;
    }
    
    .studio-overlay {
        opacity: 1;
        background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.8) 0%,
            rgba(0, 0, 0, 0.4) 50%,
            transparent 100%
        );
    }
    
    .studio-info {
        transform: translateY(0);
    }
    
    .studio-city {
        font-size: 1.5rem;
    }
    
    .studio-description {
        font-size: 0.9rem;
    }
    
    .feature-badge {
        font-size: 0.75rem;
        padding: 0.25rem 0.6rem;
    }
}

@media (max-width: 576px) {
    .city-label {
        top: 0.8rem;
        left: 0.8rem;
        padding: 0.3rem 0.6rem;
    }
    
    .city-name {
        font-size: 1rem;
    }
    
    .studio-photo-card {
        height: 250px;
    }
    
    .studio-image {
        height: 250px;
    }
    
    .studio-overlay {
        padding: 1.5rem;
    }
    
    .studio-city {
        font-size: 1.3rem;
    }
    
    .studio-features {
        gap: 0.3rem;
    }
}

/* Animation d'entrée */
.studio-photo-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.studio-photo-card:nth-child(1) { animation-delay: 0.1s; }
.studio-photo-card:nth-child(2) { animation-delay: 0.2s; }
.studio-photo-card:nth-child(3) { animation-delay: 0.3s; }
.studio-photo-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ==================== FIN DU FICHIER CSS FORMASOUND ==================== */