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

body {
    font-family: 'Orbitron', 'Roboto', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #0a0a0a;
    overflow-x: hidden;
}

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

/* Cookie Popup */
.cookie-notification {
    position: fixed;
    top: 20px;
    right: -400px;
    width: 380px;
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: white;
    padding: 25px;
    z-index: 9999;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-notification.show {
    right: 20px;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-header h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
    text-align: center;
}

.cookie-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.cookie-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 15px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.cookie-link:hover {
    background: rgba(255, 255, 255, 0.2);
}

.cookie-accept {
    background: #fff;
    color: #00d4ff;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Navigation */
.evolve-navbar {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.evolve-navbar.transparent {
    background: transparent;
    border-bottom: none;
}

.evolve-navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.1);
}

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

.nav-logo {
    display: flex;
    align-items: center;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 10px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff, #ff00ff);
    transition: width 0.3s ease;
}

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

.nav-link:hover {
    color: #00d4ff;
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #00d4ff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.evolve-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.particles-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    color: white;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #00d4ff, #ff00ff);
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.badge-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(135deg, #00d4ff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    color: #b0b0b0;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #00d4ff;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    color: #b0b0b0;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #00d4ff, #ff00ff);
    color: white;
    border: none;
}

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

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #00d4ff;
    border: 2px solid #00d4ff;
}

.btn-secondary:hover {
    background: #00d4ff;
    color: #0a0a0a;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hologram Container */
.hologram-container {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.hologram-circle {
    position: absolute;
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hologram-circle:nth-child(1) {
    width: 200px;
    height: 200px;
    animation-delay: 0s;
    border-color: rgba(0, 212, 255, 0.4);
}

.hologram-circle:nth-child(2) {
    width: 250px;
    height: 250px;
    animation-delay: -2s;
    border-color: rgba(255, 0, 255, 0.3);
}

.hologram-circle:nth-child(3) {
    width: 300px;
    height: 300px;
    animation-delay: -4s;
    border-color: rgba(255, 255, 255, 0.2);
}

.hologram-center {
    position: relative;
    z-index: 5;
    transform-style: preserve-3d;
    animation: hologram-float 4s ease-in-out infinite;
}

/* Enhanced floating animation for hologram circles */
@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1); 
        opacity: 0.7;
    }
    33% { 
        transform: translateY(-20px) rotate(120deg) scale(1.05); 
        opacity: 1;
    }
    66% { 
        transform: translateY(-10px) rotate(240deg) scale(0.95); 
        opacity: 0.8;
    }
}

@keyframes hologram-float {
    0%, 100% {
        transform: translateY(0px) rotateY(0deg);
    }
    50% {
        transform: translateY(-10px) rotateY(10deg);
    }
}

/* Orbit Rings with enhanced effects */
.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    backdrop-filter: blur(5px);
}

.orbit-ring-1 {
    width: 120px;
    height: 120px;
    animation: orbit-ring 12s linear infinite;
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.orbit-ring-2 {
    width: 180px;
    height: 180px;
    animation: orbit-ring 16s linear infinite reverse;
    border-color: rgba(255, 0, 255, 0.3);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.2);
}

/* Orbit Particles with trail effect */
.orbit-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #00d4ff;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform-origin: 60px 0;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.8);
}

.orbit-particle::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: 50%;
    animation: particle-trail 2s linear infinite;
    opacity: 0.3;
}

.orbit-particle-1 {
    animation: orbit-particle 8s linear infinite;
    transform-origin: 60px 0;
}

.orbit-particle-2 {
    animation: orbit-particle 10s linear infinite reverse;
    transform-origin: 90px 0;
    background: #ff00ff;
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}

.orbit-particle-3 {
    animation: orbit-particle 12s linear infinite;
    transform-origin: 45px 0;
    background: #fff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

@keyframes particle-trail {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    100% {
        transform: scale(0.1);
        opacity: 0;
    }
}

@keyframes orbit {
    0% {
        transform: rotate(0deg) translateX(0px) rotate(0deg);
    }
    25% {
        transform: rotate(90deg) translateX(5px) rotate(-90deg);
    }
    50% {
        transform: rotate(180deg) translateX(0px) rotate(-180deg);
    }
    75% {
        transform: rotate(270deg) translateX(-5px) rotate(-270deg);
    }
    100% {
        transform: rotate(360deg) translateX(0px) rotate(-360deg);
    }
}

@keyframes orbit-inner {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes orbit-ring {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes orbit-particle {
    0% {
        transform: rotate(0deg) translateX(60px) rotate(0deg);
    }
    100% {
        transform: rotate(360deg) translateX(60px) rotate(-360deg);
    }
}

@keyframes glow {
    0% { 
        opacity: 0.5; 
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    }
    100% { 
        opacity: 1; 
        transform: translate(-50%, -50%) scale(1.2);
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    }
}

/* Technologies Section */
.technologies-section {
    padding: 100px 0;
    background: #0f0f23;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: white;
    font-weight: 700;
    background: linear-gradient(135deg, #00d4ff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.tech-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff, #ff00ff);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tech-card:hover::before {
    transform: scaleX(1);
}

.tech-card:hover {
    transform: translateY(-10px);
    border-color: #00d4ff;
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.tech-icon {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: #00d4ff;
    font-family: 'Orbitron', monospace;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.6);
    background: linear-gradient(135deg, #00d4ff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tech-title {
    color: #00d4ff;
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.tech-description {
    color: #b0b0b0;
    margin-bottom: 30px;
    line-height: 1.7;
    font-size: 1.1rem;
}

.tech-progress {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #00d4ff, #ff00ff);
    border-radius: 4px;
    width: 0;
    transition: width 2s ease;
}

/* Programmes Section */
.programmes-section {
    padding: 100px 0;
    background: #0a0a0a;
}

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

.programme-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
}

.programme-card:hover {
    transform: translateY(-10px);
    border-color: #00d4ff;
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.programme-card.featured {
    border-color: #ff00ff;
    transform: scale(1.05);
    position: relative;
}

.programme-card.featured::before {
    content: 'POPULAIRE';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00d4ff, #ff00ff);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.card-header {
    text-align: center;
    margin-bottom: 30px;
}

.card-icon {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #00d4ff;
    font-family: 'Orbitron', monospace;
    letter-spacing: 1px;
    text-shadow: 0 0 8px rgba(0, 212, 255, 0.4);
}

.card-header h3 {
    color: #00d4ff;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff00ff;
    text-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
}

.card-content ul {
    list-style: none;
    margin-bottom: 30px;
}

.card-content li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 25px;
    color: #b0b0b0;
}

.card-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00d4ff;
    font-weight: bold;
}

.btn-programme {
    width: 100%;
    background: linear-gradient(135deg, #00d4ff, #ff00ff);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-programme:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: #0f0f23;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: #00d4ff;
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
    color: #b0b0b0;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #00d4ff;
}

.author-info h4 {
    color: white;
    margin-bottom: 5px;
}

.author-info span {
    color: #00d4ff;
    font-size: 0.9rem;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: #0a0a0a;
}

.team-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: nowrap;
}

.team-member {
    flex: 1;
    text-align: center;
    transition: all 0.3s ease;
    min-width: 0;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-photo {
    margin-bottom: 20px;
    position: relative;
}

.member-photo img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #00d4ff;
    transition: all 0.3s ease;
}

.team-member:hover .member-photo img {
    border-color: #ff00ff;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.member-info h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.member-role {
    color: #00d4ff;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.member-info p {
    color: #b0b0b0;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #00d4ff;
}

.contact-info p {
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
    color: #b0b0b0;
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-label {
    font-weight: 600;
    min-width: 80px;
    color: #00d4ff;
}

.contact-link {
    color: #ff00ff;
    text-decoration: none;
    font-weight: 500;
}

.contact-link:hover {
    text-decoration: underline;
}

/* Form Styles */
.evolve-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

/* Special styles for select element */
.form-group select {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    padding-right: 45px;
}

.form-group select option {
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 10px;
}

.form-group select option:hover {
    background: rgba(0, 212, 255, 0.3);
}

.form-group select option:checked {
    background: rgba(0, 212, 255, 0.5);
    color: white;
}

/* Additional option styles for better visibility */
.form-group select option:first-child {
    color: #b0b0b0;
    font-style: italic;
}

/* Disabled state for select */
.form-group select:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: rgba(255, 255, 255, 0.05);
}

/* Required state for select */
.form-group select:required {
    border-left: 3px solid rgba(0, 212, 255, 0.5);
}

.form-group select:required:invalid {
    border-left-color: rgba(255, 68, 68, 0.5);
}

/* Required state for all form fields */
.form-group input:required,
.form-group select:required,
.form-group textarea:required {
    border-left: 3px solid rgba(0, 212, 255, 0.5);
    position: relative;
}

.form-group input:required:invalid,
.form-group select:required:invalid,
.form-group textarea:required:invalid {
    border-left-color: rgba(255, 68, 68, 0.5);
}

/* Required field indicator */
.form-group input:required::before,
.form-group select:required::before,
.form-group textarea:required::before {
    content: '*';
    position: absolute;
    top: 15px;
    right: 15px;
    color: #00d4ff;
    font-weight: bold;
    font-size: 1.2rem;
}

.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
    color: #b0b0b0;
}

/* Additional styles for select placeholder */
.form-group select:invalid {
    color: #b0b0b0;
}

.form-group select:valid {
    color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00d4ff;
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.2);
}

/* Hover styles for select */
.form-group select:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #00d4ff;
}

/* Special focus styles for select */
.form-group select:focus {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

/* Webkit specific styles for select */
.form-group select::-webkit-select-placeholder {
    color: #b0b0b0;
}

.form-group select::-webkit-select-arrow {
    color: #00d4ff;
}

/* Firefox specific styles for select */
.form-group select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 white;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ff4444;
    background: rgba(255, 68, 68, 0.1);
}

.error-message {
    color: #ff4444;
    font-size: 0.9rem;
    margin-top: 5px;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, #00d4ff, #ff00ff);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}

/* Footer */
.evolve-footer {
    background: #0a0a0a;
    color: white;
    padding: 40px 0 20px;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

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

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00d4ff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
    color: #b0b0b0;
}

/* Animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        margin-top: 20px;
    }
    

    
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .tech-title {
        font-size: 1.8rem;
    }
    
    .tech-description {
        font-size: 1rem;
    }
    
    .tech-icon {
        font-size: 2rem;
    }
    
    .cookie-notification {
        width: 90%;
        right: -90%;
        top: 10px;
    }
    
    .cookie-notification.show {
        right: 5%;
    }
    
    /* Responsive styles for select */
    .form-group select {
        font-size: 0.9rem;
        padding: 12px;
    }
    
    .form-group select option {
        font-size: 0.9rem;
        padding: 8px;
    }
    
    /* Responsive styles for required fields */
    .form-group input:required,
    .form-group select:required,
    .form-group textarea:required {
        border-left-width: 3px;
    }
    
    .form-group input:required::before,
    .form-group select:required::before,
    .form-group textarea:required::before {
        top: 10px;
        right: 10px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .programmes-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        flex-direction: column;
        gap: 30px;
    }
    
    .team-member {
        flex: none;
    }
    
    .methodologie-grid {
        grid-template-columns: 1fr;
    }
    
    .resultats-grid {
        grid-template-columns: 1fr;
    }
    
    /* Mobile styles for select */
    .form-group select {
        font-size: 1rem;
        padding: 15px;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: right 15px center;
        background-size: 16px;
        padding-right: 45px;
    }
    
    /* Mobile styles for required fields */
    .form-group input:required,
    .form-group select:required,
    .form-group textarea:required {
        border-left-width: 4px;
    }
    
    .form-group input:required::before,
    .form-group select:required::before,
    .form-group textarea:required::before {
        top: 12px;
        right: 12px;
        font-size: 1.4rem;
    }
}

/* Additional animations and effects */
.tech-card {
    position: relative;
    overflow: hidden;
}

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

.tech-card:hover::after {
    left: 100%;
}

.tech-core {
    position: relative;
    z-index: 2;
}

.hologram-center {
    position: relative;
    z-index: 1;
}

/* Enhanced pulse animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 
            0 0 20px rgba(0, 212, 255, 0.6),
            0 0 40px rgba(0, 212, 255, 0.3),
            0 0 60px rgba(0, 212, 255, 0.1);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 
            0 0 30px rgba(0, 212, 255, 0.8),
            0 0 60px rgba(0, 212, 255, 0.4),
            0 0 90px rgba(0, 212, 255, 0.2);
    }
    100% {
        transform: scale(1);
        box-shadow: 
            0 0 20px rgba(0, 212, 255, 0.6),
            0 0 40px rgba(0, 212, 255, 0.3),
            0 0 60px rgba(0, 212, 255, 0.1);
    }
}

/* Enhanced glow animation */
@keyframes glow {
    0% { 
        opacity: 0.5; 
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    }
    100% { 
        opacity: 1; 
        transform: translate(-50%, -50%) scale(1.2);
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    }
}

/* Cookie popup entrance animation */
.cookie-notification {
    transform: translateX(100%);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.cookie-notification.show {
    transform: translateX(0);
}

/* Enhanced tech card animations */
.tech-card {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tech-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 212, 255, 0.2),
        0 0 0 1px rgba(0, 212, 255, 0.3);
}

/* Gradient text effect for tech icons */
.tech-icon {
    background: linear-gradient(135deg, #00d4ff 0%, #ff00ff 50%, #00d4ff 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Enhanced section titles */
.section-title {
    position: relative;
    overflow: hidden;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff, #ff00ff);
    border-radius: 2px;
}

/* Floating animation for hologram circles */
.hologram-circle {
    animation: float 6s ease-in-out infinite;
}

.hologram-circle:nth-child(1) {
    animation-delay: 0s;
}

.hologram-circle:nth-child(2) {
    animation-delay: -2s;
}

.hologram-circle:nth-child(3) {
    animation-delay: -4s;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
        opacity: 0.7;
    }
    33% { 
        transform: translateY(-20px) rotate(120deg); 
        opacity: 1;
    }
    66% { 
        transform: translateY(-10px) rotate(240deg); 
        opacity: 0.8;
    }
} 

/* Méthodologie Section */
.methodologie-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.methodologie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.methodologie-card {
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.methodologie-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff, #0099cc);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.methodologie-card:hover::before {
    transform: scaleX(1);
}

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

.card-number {
    font-size: 3rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 20px;
    font-family: 'Orbitron', monospace;
}

.methodologie-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.methodologie-card p {
    color: #b0b0b0;
    line-height: 1.6;
}

/* Résultats Section */
.resultats-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.resultats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.resultat-card {
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.resultat-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), transparent);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.resultat-card:hover::after {
    opacity: 1;
}

.resultat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.25);
}

.resultat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #00d4ff;
    margin-bottom: 15px;
    font-family: 'Orbitron', monospace;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.resultat-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #fff;
}

.resultat-card p {
    color: #b0b0b0;
    line-height: 1.6;
    font-size: 0.95rem;
} 

/* Hologram Center Core */
.tech-core {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, #00d4ff 0%, #0099cc 50%, transparent 100%);
    border-radius: 50%;
    position: relative;
    animation: pulse 2s infinite, orbit 8s linear infinite;
    box-shadow: 
        0 0 20px rgba(0, 212, 255, 0.6),
        0 0 40px rgba(0, 212, 255, 0.3),
        0 0 60px rgba(0, 212, 255, 0.1);
    transform-origin: center;
    z-index: 10;
}

.tech-core::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, #fff 0%, rgba(255, 255, 255, 0.8) 50%, transparent 100%);
    border-radius: 50%;
    animation: glow 3s infinite alternate, orbit-inner 6s linear infinite reverse;
}

.tech-core::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 15px;
    height: 15px;
    background: #00d4ff;
    border-radius: 50%;
    animation: pulse 1.5s infinite, orbit-inner 4s linear infinite;
} 

/* Hologram Container with hover effects */
.hologram-container {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hologram-container:hover {
    transform: scale(1.05);
}

.hologram-container:hover .hologram-circle {
    animation-duration: 3s;
}

.hologram-container:hover .orbit-ring {
    animation-duration: 6s;
}

.hologram-container:hover .orbit-particle {
    animation-duration: 4s;
}

.hologram-container:hover .tech-core {
    animation-duration: 4s;
    box-shadow: 
        0 0 30px rgba(0, 212, 255, 0.8),
        0 0 60px rgba(0, 212, 255, 0.4),
        0 0 90px rgba(0, 212, 255, 0.2);
} 

/* Responsive adjustments for hologram */
@media (max-width: 768px) {
    .hologram-container {
        width: 250px;
        height: 250px;
    }
    
    .orbit-ring-1 {
        width: 100px;
        height: 100px;
    }
    
    .orbit-ring-2 {
        width: 150px;
        height: 150px;
    }
    
    .tech-core {
        width: 50px;
        height: 50px;
    }
    
    .tech-core::before {
        width: 25px;
        height: 25px;
    }
    
    .tech-core::after {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 480px) {
    .hologram-container {
        width: 200px;
        height: 200px;
    }
    
    .orbit-ring-1 {
        width: 80px;
        height: 80px;
    }
    
    .orbit-ring-2 {
        width: 120px;
        height: 120px;
    }
    
    .tech-core {
        width: 40px;
        height: 40px;
    }
    
    .tech-core::before {
        width: 20px;
        height: 20px;
    }
    
    .tech-core::after {
        width: 10px;
        height: 10px;
    }
} 