/* ============================================
   VARIABLES CSS - Change les couleurs ici
   ============================================ */
:root {
    /* Couleurs principales */
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --bg-card: #141414;
    
    /* Accents */
    --accent-pink: #7c3aed;
    --accent-violet: #a83279;
    --accent-red: #06b6d4;
    
    /* Text */
    --text-primary: #f0f0f0;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;
    
    /* Glows */
    --glow-pink: rgba(124, 58, 237, 0.5);
    --glow-violet: rgba(220, 38, 38, 0.4);
    
    /* Spacing */
    --container-max: 1200px;
    --section-padding: 100px;
    --gap-small: 1rem;
    --gap-medium: 2rem;
    --gap-large: 4rem;
    
    /* Typography */
    --font-main: 'Inter', sans-serif;
    --font-size-base: 16px;
}

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

html {
    scroll-behavior: smooth;
    font-size: var(--font-size-base);
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   UTILITIES
   ============================================ */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

.glow-text {
    text-shadow: 0 0 20px var(--glow-pink),
                 0 0 40px var(--glow-pink);
}

.hidden {
    display: none !important;
}

/* Section Titles */
.section-title {
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: var(--gap-large);
}

/* ============================================
   PARTICLES BACKGROUND
   ============================================ */
#particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 0, 110, 0.1);
    z-index: 1000;
    padding: 1rem 0;
    transition: transform 0.3s ease;
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--accent-pink);
    text-shadow: 0 0 20px var(--glow-pink);
    letter-spacing: 2px;
}

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

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

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

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

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

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: 2px solid var(--accent-pink);
    color: var(--accent-pink);
    font-size: 1.5rem;
    padding: 0.5rem;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn:hover {
    background: var(--accent-pink);
    color: white;
    box-shadow: 0 0 20px var(--glow-pink);
}

.btn-nav-cta {
    display: inline-flex;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-pink);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-pink);
    box-shadow: 0 0 20px var(--glow-pink);
    cursor: pointer;
    font-family: var(--font-main);
    font-size: 1rem;
}

.btn-primary:hover {
    background: transparent;
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--glow-pink);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--text-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid var(--text-secondary);
}

.btn-secondary:hover {
    border-color: var(--accent-violet);
    color: var(--accent-violet);
    box-shadow: 0 0 20px var(--glow-violet);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, 
                rgba(255, 0, 110, 0.1) 0%, 
                transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-title {
    font-size: 6rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: 4px;
    line-height: 1;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.hero-tagline {
    font-size: 1.2rem;
    color: var(--accent-violet);
    margin-bottom: 3rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    gap: 4rem;
    justify-content: center;
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-pink);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: var(--accent-pink);
    animation: bounce 2s infinite;
    cursor: pointer;
}

/* ============================================
   LAUNCH OFFER SECTION - NOUVEAU
   ============================================ */
.launch-offer {
    padding: 4rem 0;
    background: linear-gradient(135deg, 
        rgba(124, 58, 237, 0.15) 0%, 
        rgba(239, 68, 68, 0.15) 100%);
    border-top: 2px solid var(--accent-pink);
    border-bottom: 2px solid var(--accent-pink);
    position: relative;
    overflow: hidden;
}

.launch-offer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
    animation: rotateBg 20s linear infinite;
}

@keyframes rotateBg {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.offer-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.offer-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-violet));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    animation: badgePulse 2s ease-in-out infinite;
}

.offer-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.offer-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.offer-prices {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.price-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.price-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.price-old {
    font-size: 1.2rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.price-new {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-pink);
    text-shadow: 0 0 20px var(--glow-pink);
}

.offer-progress {
    margin: 2rem 0;
}

.progress-bar {
    width: 100%;
    max-width: 400px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto 1rem;
    border: 2px solid var(--accent-pink);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-pink), var(--accent-violet));
    border-radius: 8px;
    transition: width 0.3s ease;
    box-shadow: 0 0 20px var(--glow-pink);
}

.progress-text {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 700;
}

.progress-text span {
    color: var(--accent-pink);
    font-size: 1.5rem;
}

.offer-requirements {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 2rem 0;
}

.offer-requirements p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.offer-requirements i {
    color: var(--accent-pink);
    margin-right: 0.5rem;
}

.btn-offer {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--accent-pink);
    color: white;
    padding: 1.25rem 3rem;
    border-radius: 12px;
    font-size: 1.3rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 3px solid var(--accent-pink);
    box-shadow: 0 0 30px var(--glow-pink);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-main);
}

.btn-offer:hover {
    background: transparent;
    transform: translateY(-3px);
    box-shadow: 0 0 50px var(--glow-pink);
}

/* ============================================
   MANIFESTO SECTION
   ============================================ */
.manifesto {
    padding: var(--section-padding) 0;
    text-align: center;
    background: linear-gradient(180deg, 
                var(--bg-primary) 0%, 
                var(--bg-secondary) 50%, 
                var(--bg-primary) 100%);
}

.manifesto-text {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 1rem;
    line-height: 1.8;
}

.manifesto-subtext {
    font-size: 1.1rem;
    color: var(--accent-violet);
    font-weight: 600;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery {
    padding: var(--section-padding) 0;
}

/* Gallery Filters */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.filter-btn {
    background: var(--bg-card);
    border: 2px solid rgba(255,255,255,0.1);
    color: var(--text-secondary);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-main);
}

.filter-btn:hover {
    border-color: var(--accent-violet);
    color: var(--accent-violet);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--accent-pink);
    border-color: var(--accent-pink);
    color: white;
    box-shadow: 0 0 20px var(--glow-pink);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    aspect-ratio: 2/3;
    background: var(--bg-card);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

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

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

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
    transform: translateY(0);
}

.gallery-item-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-pink);
    margin-bottom: 0.5rem;
}

.gallery-item-category {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
}

.process-step {
    position: relative;
    text-align: center;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: 16px;
    border: 2px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.process-step:hover {
    border-color: var(--accent-pink);
    transform: translateY(-10px);
    box-shadow: 0 10px 40px var(--glow-pink);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--accent-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    box-shadow: 0 0 20px var(--glow-pink);
}

.step-icon {
    font-size: 3rem;
    color: var(--accent-pink);
    margin-bottom: 1.5rem;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.process-step p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   PACKAGES SECTION
   ============================================ */
.packages {
    padding: var(--section-padding) 0;
}

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

/* Package Wrapper - permet au badge de dépasser */
.package-wrapper {
    position: relative;
    height: 100%;
}

.package-card {
    background: var(--bg-card);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255,0,110,0.1), 
        transparent);
    transition: left 0.5s ease;
}

.package-card:hover::before {
    left: 100%;
}

.package-card:hover {
    border-color: var(--accent-pink);
    transform: translateY(-10px);
    box-shadow: 0 10px 40px var(--glow-pink);
}

.package-popular {
    border-color: var(--accent-pink);
    box-shadow: 0 0 40px var(--glow-pink);
}

.package-badge {
    position: absolute;
    top: 0;
    right: 2rem;
    transform: translateY(-50%);
    z-index: 10;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-violet));
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
    animation: badgePulse 2s ease-in-out infinite;
}

.package-launch-badge {
    background: var(--accent-pink);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: inline-block;
}

.package-name {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.package-price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-pink);
    margin-bottom: 1rem;
}

.package-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.package-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.package-features i {
    color: var(--accent-pink);
    margin-top: 4px;
}

.btn-package {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
    background: transparent;
    color: var(--text-primary);
    padding: 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid var(--text-secondary);
    cursor: pointer;
    font-family: var(--font-main);
    font-size: 1rem;
}

.btn-package:hover {
    border-color: var(--accent-pink);
    color: var(--accent-pink);
    box-shadow: 0 0 20px var(--glow-pink);
    transform: translateY(-3px);
}

.process-info {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: 16px;
}

.process-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
}

.process-item i {
    font-size: 1.5rem;
    color: var(--accent-violet);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: var(--section-padding) 0;
}

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

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

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-pink);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-main);
}

.faq-question:hover {
    color: var(--accent-pink);
}

.faq-question i {
    color: var(--accent-pink);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   CONTACT SECTION - SIMPLIFIÉ
   ============================================ */
.contact {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.contact-main {
    max-width: 600px;
    margin: 0 auto 2rem;
}

.contact-btn-primary {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    background: var(--accent-pink);
    padding: 2rem;
    border-radius: 16px;
    border: 3px solid var(--accent-pink);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px var(--glow-pink);
    font-family: var(--font-main);
}

.contact-btn-primary:hover {
    background: transparent;
    transform: translateY(-5px);
    box-shadow: 0 0 50px var(--glow-pink);
}

.contact-btn-primary i {
    font-size: 3rem;
    color: white;
}

.contact-btn-primary:hover i {
    color: var(--accent-pink);
}

.contact-btn-primary span {
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-btn-primary:hover span {
    color: var(--accent-pink);
}

.contact-btn-primary small {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-btn-primary:hover small {
    color: var(--text-secondary);
}

.contact-divider {
    text-align: center;
    margin: 2rem 0;
    position: relative;
}

.contact-divider::before,
.contact-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.contact-divider::before {
    left: 0;
}

.contact-divider::after {
    right: 0;
}

.contact-divider span {
    color: var(--text-muted);
    padding: 0 1rem;
    background: var(--bg-secondary);
}

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

.contact-secondary-text {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    border: 2px solid transparent;
}

.contact-email:hover {
    color: var(--accent-pink);
    border-color: var(--accent-pink);
    box-shadow: 0 0 15px var(--glow-pink);
}

.contact-email i {
    font-size: 1.3rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-primary);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 0, 110, 0.1);
}

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

.footer-brand h3 {
    font-size: 1.5rem;
    color: var(--accent-pink);
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--text-secondary);
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--accent-pink);
    box-shadow: 0 0 20px var(--glow-pink);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.lightbox.active {
    display: flex;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 0, 110, 0.2);
    border: 2px solid var(--accent-pink);
    color: white;
    font-size: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--accent-pink);
    box-shadow: 0 0 30px var(--glow-pink);
}

.lightbox-close {
    top: 2rem;
    right: 2rem;
}

.lightbox-prev {
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-caption {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.2rem;
    color: var(--accent-pink);
}

/* ============================================
   MODAL COMMISSION FORM - NOUVEAU
   ============================================ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    padding: 1rem;
    overflow-y: auto;
}

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

.modal-container {
    background: var(--bg-card);
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border: 2px solid var(--accent-pink);
    box-shadow: 0 0 50px var(--glow-pink);
}

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

.modal-close:hover {
    background: var(--accent-pink);
    transform: rotate(90deg);
}

.modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.modal-header h2 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-pink);
    margin-bottom: 0.5rem;
}

.modal-header p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.commission-form {
    padding: 2rem;
}

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

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

.required {
    color: var(--accent-pink);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: var(--font-main);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-pink);
    box-shadow: 0 0 15px var(--glow-pink);
}

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

.form-help {
    display: block;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

.form-group-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.form-group-checkbox input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--accent-pink);
}

.form-group-checkbox label {
    color: var(--text-secondary);
    font-size: 0.95rem;
    cursor: pointer;
    line-height: 1.5;
}

.btn-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: var(--accent-pink);
    color: white;
    padding: 1.25rem;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 3px solid var(--accent-pink);
    box-shadow: 0 0 30px var(--glow-pink);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-main);
    margin-top: 1rem;
}

.btn-submit:hover {
    background: transparent;
    transform: translateY(-2px);
    box-shadow: 0 0 50px var(--glow-pink);
}

.form-footer {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* ============================================
   STICKY CTA MOBILE - NOUVEAU
   ============================================ */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: var(--accent-pink);
    border: 3px solid var(--accent-pink);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 0 30px var(--glow-pink);
    transition: all 0.3s ease;
}

.sticky-cta.visible {
    display: flex;
}

.sticky-cta:hover {
    transform: scale(1.1);
    box-shadow: 0 0 50px var(--glow-pink);
}

.sticky-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent-violet);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* ============================================
   RESPONSIVE - MOBILE OPTIMIZATIONS
   ============================================ */
@media (max-width: 768px) {
    /* Navigation Mobile */
    .mobile-menu-btn { 
        display: flex;
    }
    
    .btn-nav-cta {
        display: none;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 70px);
        flex-direction: column;
        padding: 2rem;
        transition: right 0.3s ease;
        border-left: 2px solid var(--accent-pink);
        gap: 0;
    }
    
    .nav-links.active { 
        right: 0;
    }
    
    .nav-link {
        font-size: 1.3rem;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        width: 100%;
    }
    
    /* Hero Mobile */
    .hero-title {
        font-size: 2.5rem !important;
        letter-spacing: 2px;
    }
    
    .hero-subtitle { 
        font-size: 1rem; 
    }
    
    .hero-tagline { 
        font-size: 0.9rem; 
        margin-bottom: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
        padding: 0 1rem;
        gap: 0.75rem;
    }
    
    .btn-large {
        width: 100%;
        justify-content: center;
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    /* Launch Offer Mobile */
    .offer-title {
        font-size: 1.8rem;
    }
    
    .offer-prices {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-offer {
        font-size: 1.1rem;
        padding: 1rem 2rem;
    }
    
    /* Sections Mobile */
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* Gallery Mobile */
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-filters {
        gap: 0.5rem;
    }
    
    .filter-btn {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
    }
    
    /* Process Timeline Mobile */
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Packages Mobile */
    .packages-grid {
        grid-template-columns: 1fr;
    }

    .package-wrapper {
        margin-bottom: 1rem;
    }
    
    .package-price {
        font-size: 2.5rem;
    }
    
    .process-info {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .process-item {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    /* Footer Mobile */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    /* Lightbox Mobile */
    .lightbox-image {
        max-width: 95%;
        max-height: 80vh;
    }
    
    .lightbox-close {
        top: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .lightbox-prev {
        left: 0.5rem;
    }
    
    .lightbox-next {
        right: 0.5rem;
    }
    
    .lightbox-caption {
        font-size: 1rem;
        padding: 0.75rem 1rem;
        max-width: 90%;
    }
    
    /* Modal Mobile */
    .modal-container {
        max-height: 95vh;
        margin: 1rem;
    }
    
    .modal-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .commission-form {
        padding: 1.5rem;
    }
    
    /* Contact Mobile */
    .contact-btn-primary {
        padding: 1.5rem;
    }
    
    .contact-btn-primary i {
        font-size: 2.5rem;
    }
    
    .contact-btn-primary span {
        font-size: 1.2rem;
    }
    
    /* Sticky CTA always visible on mobile */
    .sticky-cta {
        display: flex;
    }
}

/* Small Mobile (< 480px) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem !important;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .offer-title {
        font-size: 1.5rem;
    }
    
    .price-new {
        font-size: 1.5rem;
    }
}
