/**
 * Booking Styles - Débride Ta Puce - VERSION FINALE
 * Style Matrix Cyberpunk complet et propre
 */

/* ==================== RESET & BASE ==================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body.booking-page {
    font-family: 'Share Tech Mono', monospace;
    background: #000;
    color: #0f0;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* ==================== QUADRILLAGE MATRIX ANIMÉ ==================== */

body.booking-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(0deg, rgba(0, 255, 0, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 0, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 0;
    animation: gridMove 20s linear infinite;
}

body.booking-page::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 255, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

@keyframes gridMove {
    0% { background-position: 0 0; }
    100% { background-position: 30px 30px; }
}

/* ==================== SCAN LINE ==================== */

.scan-line {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 255, 0, 0.8) 50%, transparent 100%);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.8);
    animation: scanMove 4s linear infinite;
    z-index: 9999;
    pointer-events: none;
}

@keyframes scanMove {
    0% { top: 0; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* ==================== CONTAINERS ==================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

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

/* ==================== SYSTEM MESSAGES ==================== */

.system-msg,
.system-init {
    font-size: 11px;
    color: rgba(0, 255, 0, 0.6);
    margin-bottom: 20px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.system-msg div,
.system-init div {
    margin-bottom: 4px;
}

/* ==================== TYPOGRAPHY ==================== */

.cyan {
    color: #0ff;
}

.strong {
    font-weight: 700;
}

.typewriter {
    display: inline-block;
}

/* ==================== HERO SECTION ==================== */

.hero-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 100px 20px;
    text-align: center;
}

.hero-content {
    max-width: 1000px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(50px, 10vw, 120px);
    font-weight: 900;
    margin-bottom: 40px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 8px;
}

/* Glitch effect - hover only */
.glitch-hover {
    position: relative;
    color: #0f0;
    text-shadow: 
        0 0 20px rgba(0, 255, 0, 1),
        0 0 40px rgba(0, 255, 0, 0.8),
        0 0 60px rgba(0, 255, 0, 0.6);
}

.glitch-hover:hover {
    animation: glitch 0.3s infinite;
    cursor: default;
}

@keyframes glitch {
    0%, 100% {
        text-shadow: 0 0 20px rgba(0, 255, 0, 1), 0 0 40px rgba(0, 255, 0, 0.8);
    }
    25% {
        text-shadow: -3px 0 0 #ff00de, 3px 3px 0 #00f0ff, 0 0 30px rgba(0, 255, 0, 0.8);
        transform: translate(-2px, 0);
    }
    50% {
        text-shadow: 3px -3px 0 #ff00de, -3px 0 0 #00f0ff, 0 0 30px rgba(0, 255, 0, 0.8);
        transform: translate(2px, 0);
    }
    75% {
        text-shadow: -3px 3px 0 #00f0ff, 3px 0 0 #ff00de, 0 0 30px rgba(0, 255, 0, 0.8);
    }
}

.hero-subtitle {
    margin-bottom: 40px;
}

.project-name {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(24px, 4vw, 36px);
    color: #0ff;
    margin-bottom: 16px;
    letter-spacing: 4px;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
}

.project-desc {
    font-size: clamp(14px, 2vw, 18px);
    color: rgba(0, 255, 0, 0.9);
    line-height: 1.8;
}

.highlight {
    color: #0ff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.6);
}

.hero-text {
    font-size: clamp(14px, 2vw, 16px);
    line-height: 2;
    color: rgba(0, 255, 0, 0.9);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-note {
    font-size: 13px;
    color: rgba(0, 255, 0, 0.6);
    font-style: italic;
    margin-top: 20px;
}

/* ==================== BUTTONS ==================== */

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 50px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: transparent;
}

.btn-primary::before,
.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 0, 0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before,
.btn-secondary:hover::before {
    left: 100%;
}

.btn-primary {
    background: rgba(0, 255, 0, 0.2);
    border-color: #0f0;
    color: #0f0;
}

.btn-primary:hover {
    background: rgba(0, 255, 0, 0.3);
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    border-color: #0ff;
    color: #0ff;
}

.btn-secondary:hover {
    background: rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.4);
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid rgba(0, 255, 0, 0.5);
    border-radius: 4px;
    background: transparent;
    color: #0f0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    border-color: #0f0;
    background: rgba(0, 255, 0, 0.1);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
    transform: translateY(-2px);
}


.floating-cta:hover {
    background: rgba(0, 255, 255, 0.3);
    box-shadow: 0 0 50px rgba(0, 255, 255, 0.8);
    transform: scale(1.15);
}

.floating-cta.hidden {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.5);
}

/* ==================== SECTIONS ==================== */

section {
    margin-bottom: 100px;
    position: relative;
    z-index: 1;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 700;
    color: #0f0;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.section-title i {
    color: #0ff;
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.8));
}

.section-desc {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(0, 255, 0, 0.8);
    max-width: 900px;
}

.section-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 255, 0, 0.2);
    font-size: 13px;
    color: rgba(0, 255, 0, 0.6);
    text-align: center;
}

/* Sections avec fond */
.dates-section,
.technical-section,
.testimonials-section,
.faq-section,
.form-section {
    background: rgba(0, 20, 0, 0.3);
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 8px;
    padding: 60px 40px;
    box-shadow: 
        0 0 30px rgba(0, 255, 0, 0.1),
        inset 0 0 60px rgba(0, 255, 0, 0.03);
}

/* ==================== DATES SECTION ==================== */

.dates-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.no-dates {
    text-align: center;
    padding: 60px 20px;
    color: rgba(0, 255, 0, 0.6);
    font-size: 15px;
}

.date-card {
    position: relative;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(0, 255, 0, 0.4);
    border-radius: 6px;
    padding: 28px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.date-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #0f0 0%, transparent 100%);
}

.date-card:hover {
    border-color: #0f0;
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.3);
    transform: translateX(8px);
}

.date-card.has-link:hover {
    background: rgba(0, 40, 0, 0.8);
    cursor: pointer;
}

.date-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
}

.date-info {
    flex: 1;
}

.date-range {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(20px, 4vw, 28px);
    font-weight: 700;
    color: #0f0;
    margin-bottom: 16px;
    text-shadow: 0 0 15px rgba(0, 255, 0, 0.6);
    letter-spacing: 2px;
}

.date-details {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: rgba(0, 255, 0, 0.9);
}

.date-location,
.date-venue,
.date-type,
.date-link-hint {
    display: flex;
    align-items: center;
    gap: 8px;
}

.date-separator {
    color: rgba(0, 255, 0, 0.3);
}

.date-link-hint {
    color: #0ff;
}

.date-status {
    padding: 10px 20px;
    border-radius: 4px;
    font-family: 'Orbitron', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
}

.date-status.confirmed {
    background: rgba(0, 255, 0, 0.2);
    border: 2px solid #0f0;
    color: #0f0;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
}

/* ==================== CAROUSEL (DATES PASSÉES) ==================== */

.carousel {
    position: relative;
    padding: 0 70px;
    margin-top: 40px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 255, 0, 0.15);
    border: 2px solid #0f0;
    color: #0f0;
    font-size: 28px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: rgba(0, 255, 0, 0.3);
    box-shadow: 0 0 25px rgba(0, 255, 0, 0.6);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev { left: 0; }
.carousel-btn.next { right: 0; }

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

.past-date-card {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(0, 255, 0, 0.25);
    border-radius: 6px;
    padding: 24px;
    opacity: 0.8;
    transition: all 0.3s ease;
    position: relative;
}

.past-date-card:hover {
    opacity: 1;
    border-color: rgba(0, 255, 0, 0.6);
    transform: translateY(-6px);
    box-shadow: 0 8px 25px rgba(0, 255, 0, 0.2);
}

.past-date-card.has-link:hover {
    cursor: pointer;
    background: rgba(0, 30, 0, 0.8);
}

.past-date-border {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: rgba(0, 255, 0, 0.4);
}

.past-date-content {
    padding-left: 16px;
}

.past-date-range {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    color: rgba(0, 255, 0, 0.7);
    margin-bottom: 10px;
}

.past-date-name,
.past-date-city,
.past-date-venue {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(0, 255, 0, 0.85);
    margin-bottom: 8px;
}

.past-date-type {
    font-size: 12px;
    color: rgba(0, 255, 0, 0.6);
    margin-top: 12px;
}

.past-date-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #0ff;
    margin-top: 10px;
}

.carousel-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 255, 0, 0.3);
    border: 2px solid rgba(0, 255, 0, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot:hover {
    background: rgba(0, 255, 0, 0.5);
    transform: scale(1.2);
}

.carousel-dot.active {
    background: #0f0;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.8);
    transform: scale(1.3);
}

/* ==================== TECHNICAL DATA ==================== */

.technical-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.technical-card {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(0, 255, 0, 0.3);
    border-radius: 6px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.technical-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0f0 0%, transparent 100%);
}

.technical-card:hover {
    border-color: #0f0;
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.25);
    transform: translateY(-4px);
}

.technical-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    color: #0ff;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #0f0;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}

.technical-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.technical-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 15px;
    color: rgba(0, 255, 0, 0.9);
    line-height: 1.6;
}

.technical-item i {
    color: #0ff;
    flex-shrink: 0;
    margin-top: 3px;
}

.technical-item strong {
    color: #0f0;
}

/* ==================== TESTIMONIALS ==================== */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.testimonial-card {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(0, 255, 0, 0.3);
    border-radius: 6px;
    padding: 32px;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0f0 0%, transparent 100%);
}

.testimonial-card:hover {
    border-color: #0f0;
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.25);
    transform: translateY(-4px);
}

.testimonial-quote {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(0, 255, 0, 0.9);
    margin-bottom: 24px;
    font-style: italic;
    position: relative;
    padding-left: 20px;
}

.testimonial-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 60px;
    color: rgba(0, 255, 0, 0.2);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-author {
    font-family: 'Orbitron', sans-serif;
    font-size: 13px;
    color: #0ff;
    letter-spacing: 1px;
    border-top: 1px solid rgba(0, 255, 0, 0.2);
    padding-top: 16px;
}

/* ==================== FAQ ==================== */

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(0, 255, 0, 0.3);
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item[open] {
    border-color: #0f0;
    box-shadow: 0 0 25px rgba(0, 255, 0, 0.2);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Orbitron', sans-serif;
    font-size: 15px;
    color: #0f0;
    letter-spacing: 1px;
    list-style: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question:hover {
    background: rgba(0, 255, 0, 0.05);
}

.faq-arrow {
    color: #0ff;
    margin-right: 12px;
}

.faq-icon {
    color: #0ff;
    transition: transform 0.3s ease;
    font-size: 12px;
}

.faq-item[open] .faq-icon {
    transform: rotate(90deg);
}

.faq-answer {
    padding: 0 28px 24px 28px;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(0, 255, 0, 0.85);
    border-top: 1px solid rgba(0, 255, 0, 0.2);
    padding-top: 20px;
    margin: 0 24px 20px 24px;
}

/* ==================== BOOKING FORM ==================== */

.form-section {
    text-align: center;
}

.form-section .system-msg {
    text-align: left;
}

.form-section .section-title {
    justify-content: center;
}

.form-section .section-desc {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.booking-form {
    max-width: 900px;
    margin: 40px auto 0;
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

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

.form-group label {
    font-size: 13px;
    font-weight: 700;
    color: #0f0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(0, 255, 0, 0.3);
    border-radius: 4px;
    color: #0f0;
    font-family: 'Share Tech Mono', monospace;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0f0;
    box-shadow: 
        0 0 15px rgba(0, 255, 0, 0.4),
        inset 0 0 15px rgba(0, 255, 0, 0.05);
    background: rgba(0, 20, 0, 0.8);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(0, 255, 0, 0.4);
}

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

/* Submit Button */
.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 22px 48px;
    background: rgba(0, 255, 0, 0.2);
    border: 3px solid #0f0;
    border-radius: 6px;
    color: #0f0;
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 0 20px rgba(0, 255, 0, 0.3),
        inset 0 0 20px rgba(0, 255, 0, 0.05);
}

.btn-submit i {
    width: 20px;
    height: 20px;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 0, 0.4), transparent);
    transition: left 0.6s;
}

.btn-submit:hover:not(:disabled)::before {
    left: 100%;
}

.btn-submit:hover:not(:disabled) {
    background: rgba(0, 255, 0, 0.3);
    box-shadow: 
        0 0 40px rgba(0, 255, 0, 0.6),
        inset 0 0 30px rgba(0, 255, 0, 0.1);
    transform: translateY(-3px) scale(1.02);
    border-color: #0ff;
    color: #0ff;
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(0, 255, 0, 0.3);
    border-top-color: #0f0;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.form-note {
    margin-top: 24px;
    padding: 16px;
    background: rgba(0, 255, 0, 0.05);
    border: 1px solid rgba(0, 255, 0, 0.2);
    border-radius: 4px;
    font-size: 13px;
    color: rgba(0, 255, 0, 0.7);
    text-align: center;
    line-height: 1.6;
}

/* ==================== FOOTER ==================== */

.footer {
    padding: 80px 20px 40px;
    border-top: 2px solid rgba(0, 255, 0, 0.3);
    margin-top: 100px;
    background: rgba(0, 20, 0, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-col h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    color: #0ff;
    margin-bottom: 24px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links p {
    margin: 0;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(0, 255, 0, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #0f0;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.6);
    transform: translateX(6px);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 255, 0, 0.2);
    font-size: 14px;
    color: rgba(0, 255, 0, 0.6);
    line-height: 2;
}

.footer-credits {
    color: rgba(0, 255, 0, 0.5);
    font-size: 13px;
    display: block;
    margin-top: 10px;
}

/* ==================== RESPONSIVE ==================== */

@media (max-width: 1024px) {
    .technical-grid {
        grid-template-columns: 1fr;
    }
    
    .carousel {
        padding: 0 60px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .hero-section {
        padding: 80px 20px;
        min-height: 70vh;
    }
    
    .hero-title {
        font-size: 48px;
        letter-spacing: 4px;
    }
    
    .dates-section,
    .technical-section,
    .testimonials-section,
    .faq-section,
    .form-section {
        padding: 40px 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .date-content {
        flex-direction: column;
    }
    
    .date-status {
        align-self: flex-start;
    }
    
    .carousel {
        padding: 0 50px;
    }
    
    .carousel-content {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .btn-submit {
        padding: 18px 32px;
        font-size: 16px;
        letter-spacing: 2px;
    }
    
    .floating-cta {
        width: 60px;
        height: 60px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
        letter-spacing: 2px;
    }
    
    .project-name {
        font-size: 20px;
        letter-spacing: 2px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .carousel {
        padding: 0 45px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .date-card {
        padding: 20px;
    }
    
    .technical-card,
    .testimonial-card {
        padding: 24px;
    }
    
    .faq-question {
        font-size: 14px;
        padding: 20px;
    }
    
    .faq-answer {
        padding: 16px 20px;
        margin: 0 16px 16px 16px;
    }
}
/* ==================== CORRECTIONS FINALES ==================== */

/* Fix: Floating CTA avec texte dans rectangle */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    /* Changé de rond à rectangle */
    width: auto;
    height: auto;
    border-radius: 6px;  /* Au lieu de 50% */
    padding: 16px 24px;
    background: rgba(0, 255, 255, 0.2);
    border: 3px solid #0ff;
    color: #0ff;
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 10px;
}

.floating-cta:hover {
    background: rgba(0, 255, 255, 0.3);
    box-shadow: 0 0 50px rgba(0, 255, 255, 0.8);
    transform: scale(1.05);
}

.floating-cta.hidden {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.8);
}

.floating-cta i {
    width: 18px;
    height: 18px;
}

/* Fix: Espace entre technical-grid et bouton fiche technique */
.technical-section .text-center {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 255, 0, 0.2);
}

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

/* Responsive floating button */
@media (max-width: 768px) {
    .floating-cta {
        font-size: 12px;
        padding: 14px 20px;
        bottom: 20px;
        right: 20px;
    }
    
    .floating-cta i {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .floating-cta {
        font-size: 11px;
        padding: 12px 16px;
    }
}

/* ==================== CURSEUR PERSONNALISÉ - CARRÉ GRIS AVEC CROIX ==================== */

/* Curseur principal - petit carré gris avec lignes de visée */
* {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><line x1="16" y1="0" x2="16" y2="10" stroke="%23666666" stroke-width="1"/><line x1="16" y1="22" x2="16" y2="32" stroke="%23666666" stroke-width="1"/><line x1="0" y1="16" x2="10" y2="16" stroke="%23666666" stroke-width="1"/><line x1="22" y1="16" x2="32" y2="16" stroke="%23666666" stroke-width="1"/><rect x="13" y="13" width="6" height="6" fill="%23666666" stroke="%23999999" stroke-width="1"/></svg>') 16 16, crosshair !important;
}

/* Curseur sur les éléments cliquables - carré un peu plus gros */
a,
button,
input[type="submit"],
input[type="button"],
.btn-primary,
.btn-secondary,
.btn-submit,
.btn-outline,
.floating-cta,
.date-card.has-link,
.past-date-card.has-link,
details summary,
.carousel-btn,
.carousel-dot {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><line x1="16" y1="0" x2="16" y2="9" stroke="%2300ff00" stroke-width="1.5"/><line x1="16" y1="23" x2="16" y2="32" stroke="%2300ff00" stroke-width="1.5"/><line x1="0" y1="16" x2="9" y2="16" stroke="%2300ff00" stroke-width="1.5"/><line x1="23" y1="16" x2="32" y2="16" stroke="%2300ff00" stroke-width="1.5"/><rect x="12" y="12" width="8" height="8" fill="%23666666" stroke="%2300ff00" stroke-width="1.5"/></svg>') 16 16, pointer !important;
}

/* Curseur texte sur les champs de saisie */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="24" viewBox="0 0 16 24"><line x1="8" y1="0" x2="8" y2="24" stroke="%23666666" stroke-width="2"/><line x1="4" y1="2" x2="12" y2="2" stroke="%23666666" stroke-width="1"/><line x1="4" y1="22" x2="12" y2="22" stroke="%23666666" stroke-width="1"/></svg>') 8 12, text !important;
}
