@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@300;400;600&display=swap');

:root {
    --cyber-purple: #6B46C1;
    --cyber-purple-dark: #4C1D95;
    --cyber-purple-light: #8B5CF6;
    --cyber-cyan: #00F5FF;
    --cyber-cyan-dark: #00D4ED;
    --cyber-cyan-light: #7DD3FC;
    --cyber-black: #0F0F0F;
    --cyber-gray: #1A1A1A;
    --cyber-white: #E5E5E5;
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    border-top: 3px solid var(--cyber-cyan);
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -5px 30px rgba(0, 245, 255, 0.3);
    animation: slideUp 0.5s ease;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text h3 {
    color: var(--cyber-cyan);
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.cookie-text p {
    color: var(--cyber-white);
    margin: 0;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Orbitron', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cookie-btn.accept {
    background: var(--cyber-cyan);
    color: var(--cyber-black);
}

.cookie-btn.accept:hover {
    background: var(--cyber-cyan-light);
    box-shadow: 0 0 20px var(--cyber-cyan);
    transform: translateY(-2px);
}

.cookie-btn.decline {
    background: transparent;
    color: var(--cyber-white);
    border: 2px solid var(--cyber-purple);
}

.cookie-btn.decline:hover {
    background: var(--cyber-purple);
    border-color: var(--cyber-purple);
    transform: translateY(-2px);
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive Cookie Banner */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
    
    .cookie-text h3 {
        font-size: 1.1rem;
    }
}

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

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--cyber-black);
    color: var(--cyber-white);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Matrix Rain Background */
.matrix-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: 
        radial-gradient(circle at 20% 20%, rgba(107, 70, 193, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 245, 255, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, var(--cyber-black) 0%, var(--cyber-gray) 100%);
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--cyber-cyan);
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    color: var(--cyber-cyan);
    text-decoration: none;
    text-shadow: 0 0 20px var(--cyber-cyan);
    transition: all 0.3s ease;
}

.logo:hover {
    text-shadow: 0 0 30px var(--cyber-cyan), 0 0 40px var(--cyber-cyan);
}

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

.nav-links a {
    color: var(--cyber-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    transition: all 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--cyber-purple), var(--cyber-cyan));
    transition: width 0.3s ease;
}

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

.nav-links a:hover {
    color: var(--cyber-cyan);
    text-shadow: 0 0 15px var(--cyber-cyan);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 2rem 2rem;
    position: relative;
}

.hero-content h1 {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--cyber-purple), var(--cyber-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(107, 70, 193, 0.5);
}

.hero-content .subtitle {
    font-size: 1.5rem;
    color: var(--cyber-cyan);
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Cyber Button */
.cyber-btn {
    position: relative;
    background: transparent;
    color: var(--cyber-cyan);
    border: 2px solid var(--cyber-cyan);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-family: 'Orbitron', monospace;
}

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

.cyber-btn:hover::before {
    left: 100%;
}

.cyber-btn:hover {
    color: var(--cyber-black);
    background: var(--cyber-cyan);
    box-shadow: 
        0 0 30px var(--cyber-cyan),
        inset 0 0 30px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.cyber-btn::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--cyber-purple), var(--cyber-cyan), var(--cyber-purple));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cyber-btn:hover::after {
    opacity: 1;
    animation: border-pulse 0.5s ease;
}

/* Glitch Button */
.glitch-btn {
    position: relative;
    background: var(--cyber-purple);
    color: var(--cyber-white);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    font-family: 'Orbitron', monospace;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 100%, 20px 100%);
}

.glitch-btn:hover {
    background: var(--cyber-cyan);
    color: var(--cyber-black);
    animation: glitch 0.3s ease;
}

.glitch-btn::before,
.glitch-btn::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.glitch-btn:hover::before {
    color: #ff0080;
    animation: glitch-1 0.3s ease;
    z-index: -1;
}

.glitch-btn:hover::after {
    color: #00ff80;
    animation: glitch-2 0.3s ease;
    z-index: -2;
}

/* Sections */
.section {
    padding: 5rem 0;
    position: relative;
}

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

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--cyber-purple), var(--cyber-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--cyber-purple), var(--cyber-cyan));
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.service-card {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid var(--cyber-purple);
    border-radius: 10px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

/* Featured card style (for Pro formula) */
.service-card.featured {
    border: 2px solid var(--cyber-cyan);
    background: rgba(0, 245, 255, 0.05);
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.2);
    transform: scale(1.05);
}

.service-card.featured::after {
    content: '⭐ POPULAIRE';
    position: absolute;
    top: 15px;
    right: -35px;
    background: linear-gradient(135deg, var(--cyber-purple), var(--cyber-cyan));
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

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

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

.service-card:hover {
    border-color: var(--cyber-cyan);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 245, 255, 0.2);
}

.service-icon {
    font-size: 3rem;
    color: var(--cyber-cyan);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px var(--cyber-cyan);
}

.service-card h3 {
    font-family: 'Orbitron', monospace;
    color: var(--cyber-cyan);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    margin-bottom: 2rem;
    line-height: 1.6;
}

.service-card .price {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    color: var(--cyber-purple-light);
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Service maintenance included */
.maintenance-included {
    background: linear-gradient(135deg, var(--cyber-purple), var(--cyber-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    margin-bottom: 1rem;
    font-family: 'Orbitron', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Service Features Lists */
.service-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0 2rem 0;
}

.service-features li {
    padding: 0.3rem 0;
    font-size: 0.9rem;
    color: var(--cyber-white);
}

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.team-card {
    background: rgba(26, 26, 26, 0.9);
    border: 2px solid var(--cyber-purple);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.team-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, rgba(0, 245, 255, 0.1), transparent);
    animation: rotate 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.team-card:hover {
    border-color: var(--cyber-cyan);
    transform: scale(1.02);
}

.team-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid var(--cyber-cyan);
    margin: 0 auto 1rem;
    position: relative;
    z-index: 1;
    object-fit: cover;
}

.team-card h3 {
    font-family: 'Orbitron', monospace;
    color: var(--cyber-cyan);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.team-card .role {
    color: var(--cyber-purple-light);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.team-card p {
    position: relative;
    z-index: 1;
}

/* Contact Section Styles */
.contact-form-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.contact-form-container {
    background: rgba(26, 26, 26, 0.9);
    border: 2px solid var(--cyber-purple);
    border-radius: 15px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    margin-bottom: 3rem;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, rgba(107, 70, 193, 0.1), transparent);
    animation: rotate 8s linear infinite;
    z-index: -1;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(229, 229, 229, 0.5);
}

.form-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--cyber-purple), var(--cyber-cyan));
    transition: width 0.3s ease;
}

.form-group input:focus ~ .form-bar,
.form-group textarea:focus ~ .form-bar,
.form-group select:focus ~ .form-bar {
    width: 100%;
}

.form-group select {
    cursor: pointer;
}

/* Style des groupes d'options (optgroup) - FOND SOMBRE */
.form-group select optgroup {
    background: var(--cyber-gray);
    color: var(--cyber-cyan);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 8px 0;
}

/* Style des options individuelles */
.form-group select option {
    background: var(--cyber-black);
    color: var(--cyber-white);
    border: none;
    padding: 10px;
    padding-left: 20px;
}

/* Survol des options - Fond pourpre + texte blanc */
.form-group select option:hover {
    background: var(--cyber-purple) !important;
    color: var(--cyber-white) !important;
}

/* Option sélectionnée/cochée */
.form-group select option:checked {
    background: var(--cyber-purple) !important;
    color: var(--cyber-white) !important;
    font-weight: 600;
}

/* Info Panel for Ownership & Maintenance */
.hosting-info {
    background: rgba(0, 245, 255, 0.1);
    border: 1px solid var(--cyber-cyan);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem 0;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-icon {
    font-size: 2rem;
    color: var(--cyber-cyan);
    flex-shrink: 0;
}

.info-content h4 {
    color: var(--cyber-cyan);
    font-family: 'Orbitron', monospace;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.info-content p {
    margin-bottom: 1rem;
    line-height: 1.5;
}

.info-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.3rem;
}

.info-content li {
    font-size: 0.9rem;
    color: var(--cyber-white);
}

/* Custom Checkbox */
.checkbox-group {
    margin: 2rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--cyber-purple);
    margin-right: 0.8rem;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid var(--cyber-cyan);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked ~ .checkmark {
    background: var(--cyber-purple);
    border-color: var(--cyber-cyan);
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.5);
}

.checkbox-label input[type="checkbox"]:checked ~ .checkmark::after {
    opacity: 1;
}

/* Submit Button */
.cyber-submit-btn {
    width: 100%;
    background: transparent;
    border: 2px solid var(--cyber-cyan);
    color: var(--cyber-cyan);
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    font-family: 'Orbitron', monospace;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.cyber-submit-btn:hover {
    background: var(--cyber-cyan);
    color: var(--cyber-black);
    box-shadow: 0 0 30px var(--cyber-cyan);
    transform: translateY(-2px);
}

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

.cyber-submit-btn:hover::before {
    left: 100%;
}

.btn-loading {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cyber-submit-btn.loading .btn-text {
    display: none;
}

.cyber-submit-btn.loading .btn-loading {
    display: flex;
}

.loading-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Contact Methods */
.contact-methods {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.contact-method {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid var(--cyber-purple);
    border-radius: 10px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    min-width: 200px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    border-color: var(--cyber-cyan);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 245, 255, 0.2);
}

.method-icon {
    font-size: 2rem;
    color: var(--cyber-cyan);
}

.method-text {
    font-weight: 600;
    text-align: center;
    color: var(--cyber-white);
    font-size: 0.95rem;
}

.method-btn {
    background: var(--cyber-purple);
    color: var(--cyber-white);
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.method-btn:hover {
    background: var(--cyber-cyan);
    color: var(--cyber-black);
    transform: scale(1.05);
}

/* Success/Error Messages */
.form-message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: center;
    display: none;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid #22C55E;
    color: #22C55E;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid #EF4444;
    color: #EF4444;
}

/* Footer */
footer {
    background: var(--cyber-black);
    border-top: 2px solid var(--cyber-cyan);
    padding: 2rem 0;
    text-align: center;
    margin-top: 4rem;
}

/* Animations */
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes border-pulse {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

@keyframes glitch {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-2px); }
    40% { transform: translateX(2px); }
    60% { transform: translateX(-2px); }
    80% { transform: translateX(2px); }
}

@keyframes glitch-1 {
    0%, 100% { transform: translateX(0); opacity: 0; }
    50% { transform: translateX(2px) translateY(-2px); opacity: 0.8; }
}

@keyframes glitch-2 {
    0%, 100% { transform: translateX(0); opacity: 0; }
    50% { transform: translateX(-2px) translateY(2px); opacity: 0.8; }
}

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

/* Particles Effect */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--cyber-cyan);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    opacity: 0.6;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) translateX(0px);
        opacity: 0;
    }
    10%, 90% {
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-100px) translateX(50px);
    }
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(-10px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

/* Mobile menu burger */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    background: none;
    border: none;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--cyber-cyan);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile navigation */
.nav-links.mobile-active {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: slideInFromRight 0.3s ease;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--cyber-black);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.cyber-loader {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(107, 70, 193, 0.3);
    border-top: 3px solid var(--cyber-cyan);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 2rem;
}

.loading-text {
    font-family: 'Orbitron', monospace;
    color: var(--cyber-cyan);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: pulse 1.5s ease-in-out infinite;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--cyber-purple);
    border: 2px solid var(--cyber-cyan);
    border-radius: 50%;
    color: var(--cyber-cyan);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    transform: translateY(100px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--cyber-cyan);
    color: var(--cyber-black);
    box-shadow: 0 0 20px var(--cyber-cyan);
    transform: translateY(-5px);
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Loading animations */
@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

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

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
    }

    .nav-links.mobile-active a {
        font-size: 1.5rem;
        margin: 1rem 0;
        padding: 1rem;
    }

    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

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

    .services-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

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

    .form-group.full-width {
        grid-column: span 1;
    }

    .contact-form-container {
        padding: 2rem;
    }

    .contact-methods {
        flex-direction: column;
        align-items: center;
    }

    .contact-method {
        width: 100%;
        max-width: 300px;
    }

    .hosting-info {
        flex-direction: column;
        text-align: center;
    }

    .info-content ul {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .form-title {
        font-size: 1.6rem;
    }
}

/* Portfolio Styles */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.portfolio-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid var(--cyber-purple);
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    border-color: var(--cyber-cyan);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 245, 255, 0.3);
}

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

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

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

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.9), rgba(0, 245, 255, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.portfolio-info {
    text-align: center;
    color: white;
}

.portfolio-info h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.portfolio-info p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.portfolio-btn {
    background: rgba(15, 15, 15, 0.8);
    color: var(--cyber-cyan);
    border: 2px solid var(--cyber-cyan);
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Orbitron', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.portfolio-btn:hover {
    background: var(--cyber-cyan);
    color: var(--cyber-black);
    box-shadow: 0 0 20px var(--cyber-cyan);
}

/* Portfolio Placeholder */
.portfolio-placeholder {
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0.7;
}

.placeholder-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.portfolio-placeholder h3 {
    font-family: 'Orbitron', monospace;
    color: var(--cyber-cyan);
    margin-bottom: 0.5rem;
}

.portfolio-placeholder p {
    color: var(--cyber-white);
    opacity: 0.8;
}

.coming-soon {
    border: 2px dashed var(--cyber-purple);
    background: rgba(26, 26, 26, 0.4);
}

.coming-soon:hover {
    border-color: var(--cyber-cyan);
    background: rgba(26, 26, 26, 0.6);
}

/* Lightbox Styles */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
}

.lightbox-content {
    position: relative;
    margin: auto;
    padding: 10px;
    width: 95%;
    max-width: 1400px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 25px;
    color: var(--cyber-cyan);
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s ease;
    background: rgba(15, 15, 15, 0.8);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--cyber-white);
    text-shadow: 0 0 20px var(--cyber-cyan);
    background: rgba(15, 15, 15, 0.9);
}

#lightboxImage {
    max-width: 98%;
    max-height: 95vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border: 3px solid var(--cyber-cyan);
    border-radius: 10px;
    box-shadow: 0 0 40px rgba(0, 245, 255, 0.6);
}

.lightbox-info {
    text-align: center;
    margin-top: 2rem;
}

.lightbox-info h3 {
    font-family: 'Orbitron', monospace;
    color: var(--cyber-cyan);
    font-size: 1.5rem;
}

/* FAQ Styles */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid var(--cyber-purple);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--cyber-cyan);
    box-shadow: 0 5px 20px rgba(0, 245, 255, 0.2);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--cyber-white);
    padding: 1.5rem;
    text-align: left;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    /* CRITICAL: Support mobile tactile */
    -webkit-tap-highlight-color: rgba(0, 245, 255, 0.2);
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
}

.faq-question:hover {
    background: rgba(107, 70, 193, 0.1);
    color: var(--cyber-cyan);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--cyber-cyan);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

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

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

.faq-answer {
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.faq-answer ul, .faq-answer ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.faq-answer strong {
    color: var(--cyber-cyan);
}

.faq-answer em {
    color: var(--cyber-purple-light);
}

/* Mobile Responsiveness for Portfolio and FAQ */
@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .portfolio-image {
        height: 200px;
    }
    
    .lightbox-close {
        font-size: 2.5rem;
        top: 10px;
        right: 15px;
        width: 50px;
        height: 50px;
    }
    
    #lightboxImage {
        max-height: 85vh;
        max-width: 98%;
    }
    
    .lightbox-content {
        padding: 5px;
        width: 100%;
    }
    
    .faq-question {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1rem 1rem 1rem;
    }
}

/* Comparison Table Styles */
.comparison-table-wrapper {
    overflow-x: auto;
    margin: 0 auto;
    max-width: 1200px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);
}

.comparison-table thead {
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.3), rgba(0, 245, 255, 0.2));
}

.comparison-table th {
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(107, 70, 193, 0.3);
}

.feature-column {
    text-align: left !important;
    font-family: 'Orbitron', monospace;
    color: var(--cyber-cyan);
    font-size: 1.1rem;
    width: 250px;
}

.plan-column {
    min-width: 200px;
}

.featured-column {
    background: rgba(0, 245, 255, 0.05);
    border: 2px solid var(--cyber-cyan) !important;
    position: relative;
}

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

.plan-badge {
    background: linear-gradient(135deg, var(--cyber-purple), var(--cyber-cyan));
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.plan-icon {
    font-size: 2.5rem;
}

.plan-name {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    color: var(--cyber-cyan);
    font-weight: 700;
}

.plan-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--cyber-purple-light);
    font-family: 'Orbitron', monospace;
}

.comparison-table tbody tr {
    border-bottom: 1px solid rgba(107, 70, 193, 0.2);
    transition: background 0.3s ease;
}

.comparison-table tbody tr:hover {
    background: rgba(107, 70, 193, 0.1);
}

.comparison-table td {
    padding: 1.2rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(107, 70, 193, 0.2);
}

.feature-name {
    text-align: left !important;
    font-weight: 600;
    color: var(--cyber-white);
}

.featured-cell {
    background: rgba(0, 245, 255, 0.03);
    border-left: 2px solid var(--cyber-cyan) !important;
    border-right: 2px solid var(--cyber-cyan) !important;
}

.check {
    font-size: 1.5rem;
}

.cross {
    font-size: 1.2rem;
    opacity: 0.5;
}

.cta-row td {
    padding: 2rem 1.5rem;
    background: rgba(15, 15, 15, 0.5);
}

.cta-row .cyber-btn {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    display: block;
}

/* Responsive Table */
@media (max-width: 968px) {
    .comparison-table-wrapper {
        border-radius: 0;
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 1rem 0.5rem;
    }
    
    .feature-column {
        width: 180px;
        font-size: 0.95rem;
    }
    
    .plan-column {
        min-width: 150px;
    }
    
    .plan-icon {
        font-size: 2rem;
    }
    
    .plan-name {
        font-size: 1.1rem;
    }
    
    .plan-price {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .comparison-table {
        font-size: 0.85rem;
    }
    
    .feature-column {
        width: 140px;
        font-size: 0.85rem;
    }
    
    .plan-column {
        min-width: 120px;
    }
    
    .plan-header {
        gap: 0.3rem;
    }
    
    .plan-badge {
        font-size: 0.65rem;
        padding: 0.2rem 0.6rem;
    }
    
    .plan-icon {
        font-size: 1.5rem;
    }
    
    .plan-name {
        font-size: 0.9rem;
    }
    
    .plan-price {
        font-size: 1.1rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.8rem 0.3rem;
    }
}.form-title {
    font-family: 'Orbitron', monospace;
    color: var(--cyber-cyan);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px var(--cyber-cyan);
}

.form-subtitle {
    text-align: center;
    color: var(--cyber-white);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    opacity: 0.8;
}

.cyber-form {
    position: relative;
    z-index: 1;
}

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

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    color: var(--cyber-cyan);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--cyber-purple);
    color: var(--cyber-white);
    font-size: 1rem;
    padding: 0.8rem 0;
    font-family: 'Rajdhani', sans-serif;
    transition: all 0.3s ease;
    position: relative;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-bottom-color: var(--cyber-cyan);
    box-shadow: 0 2px 10px rgba(0, 245, 255, 0.3);
}

/* RGPD Checkbox Enhanced */
.rgpd-group {
    background: rgba(0, 245, 255, 0.05);
    border: 2px solid var(--cyber-cyan);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem 0 !important;
    position: relative;
}

.rgpd-label {
    font-size: 1rem;
    font-weight: 600;
}

.rgpd-checkmark {
    width: 24px;
    height: 24px;
    border: 3px solid var(--cyber-cyan);
    margin-right: 1rem;
    box-shadow: 0 0 10px rgba(0, 245, 255, 0.3);
}

.rgpd-text {
    color: var(--cyber-cyan);
    font-weight: 600;
    font-size: 1.1rem;
}

.rgpd-error {
    color: #EF4444;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid #EF4444;
    border-radius: 5px;
    padding: 0.8rem;
    margin-top: 1rem;
    font-weight: 600;
    text-align: center;
    font-size: 0.95rem;
}

/* Animation de clignotement pour RGPD */
@keyframes rgpd-blink {
    0%, 50% { 
        border-color: #EF4444;
        box-shadow: 0 0 20px rgba(239, 68, 68, 0.5);
    }
    25%, 75% { 
        border-color: var(--cyber-cyan);
        box-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
    }
}

.rgpd-group.error {
    animation: rgpd-blink 0.5s ease-in-out 3;
    border-color: #EF4444;
}

/* Mobile Responsive additions */
@media (max-width: 768px) {
    .rgpd-text {
        font-size: 1rem;
    }
}
