/* 
 * IntelliaCore - Styles principaux
 * Design futuriste & minimaliste inspiré des films de science-fiction (Tron, Blade Runner)
 * Palette: Fond noir/sombre avec accents néon bleu et vert vif #00e5a9
 */

/* ===== Variables ===== */
:root {
    /* Couleurs principales */
    --color-bg-primary: #050505;
    --color-bg-secondary: #0a0a12;
    --color-bg-tertiary: #12121f;
    --color-text-primary: #ffffff;
    --color-text-secondary: #b8b8d0;
    
    /* Couleurs d'accent */
    --color-accent-green: #00e5a9;
    --color-accent-blue: #0084ff;
    --color-accent-purple: #9000ff;
    --color-accent-orange: #ff6b00;
    --color-accent-pink: #ff00a8;
    
    /* Effets de lueur */
    --glow-green: 0 0 15px rgba(0, 229, 169, 0.8), 0 0 30px rgba(0, 229, 169, 0.5);
    --glow-blue: 0 0 15px rgba(0, 132, 255, 0.8), 0 0 30px rgba(0, 132, 255, 0.5);
    --glow-purple: 0 0 15px rgba(144, 0, 255, 0.8), 0 0 30px rgba(144, 0, 255, 0.5);
    --glow-orange: 0 0 15px rgba(255, 107, 0, 0.8), 0 0 30px rgba(255, 107, 0, 0.5);
    --glow-pink: 0 0 15px rgba(255, 0, 168, 0.8), 0 0 30px rgba(255, 0, 168, 0.5);
    
    /* Typographie */
    --font-primary: 'Rajdhani', sans-serif;
    --font-secondary: 'Orbitron', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Dimensions */
    --header-height: 80px;
    --container-width: 1200px;
    --border-radius: 4px;
}

/* ===== Base ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(26, 26, 46, 0.4) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(26, 26, 46, 0.4) 0%, transparent 40%),
        url('../images/tenweb_media_setywwejd.webp');
    background-size: auto, auto, 100% auto;
    background-position: center, center, top center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-blend-mode: normal, normal, overlay;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 5, 5, 0.85);
    z-index: -1;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
    position: relative;
}

section:nth-child(odd) {
    background-color: var(--color-bg-secondary);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--color-accent-green);
    text-decoration: none;
    transition: color var(--transition-fast), text-shadow var(--transition-fast);
}

a:hover {
    color: #fff;
    text-shadow: var(--glow-green);
}

img {
    max-width: 100%;
    height: auto;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--color-accent-green);
    box-shadow: var(--glow-green);
}

.section-subtitle {
    text-align: center;
    color: var(--color-text-secondary);
    font-size: 1.2rem;
    margin-top: -40px;
    margin-bottom: 60px;
}

/* ===== Header & Navigation ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    transition: all var(--transition-medium);
    border-bottom: 1px solid rgba(0, 229, 169, 0.3);
}

.logo-container {
    height: 60px;
    display: flex;
    align-items: center;
}

.logo {
    height: 100%;
    width: auto;
}

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

.main-nav {
    display: flex;
    list-style: none;
}

.main-nav li {
    margin: 0 5px;
}

.nav-btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-family: var(--font-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
    color: #fff;
}

.nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: all var(--transition-fast);
}

.nav-btn:hover::before {
    left: 0;
}

.blue-btn {
    background-color: var(--color-accent-blue);
}

.blue-btn:hover {
    box-shadow: var(--glow-blue);
}

.orange-btn {
    background-color: var(--color-accent-orange);
}

.orange-btn:hover {
    box-shadow: var(--glow-orange);
}

.purple-btn {
    background-color: var(--color-accent-purple);
}

.purple-btn:hover {
    box-shadow: var(--glow-purple);
}

.green-btn {
    background-color: var(--color-accent-green);
}

.green-btn:hover {
    box-shadow: var(--glow-green);
}

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

.pink-btn:hover {
    box-shadow: var(--glow-pink);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: all var(--transition-fast);
}

/* ===== Hero Banner ===== */
.hero-banner {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: var(--header-height);
    background: linear-gradient(135deg, rgba(5, 5, 5, 0.7) 0%, rgba(18, 18, 31, 0.7) 100%);
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/tenweb_media_setywwejd.webp');
    background-size: cover;
    background-position: center;
    filter: brightness(0.4) saturate(1.5);
    z-index: -1;
}

.hero-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, var(--color-bg-primary) 90%);
    z-index: -1;
}

.hero-banner h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    animation: glow 3s infinite alternate;
}

@keyframes glow {
    0% {
        text-shadow: 0 0 10px rgba(0, 229, 169, 0.3);
    }
    100% {
        text-shadow: 0 0 20px rgba(0, 229, 169, 0.7), 0 0 30px rgba(0, 229, 169, 0.5);
    }
}

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

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: var(--border-radius);
    font-family: var(--font-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.cta-btn.primary {
    background-color: var(--color-accent-green);
    color: #000;
}

.cta-btn.primary:hover {
    box-shadow: var(--glow-green);
    transform: translateY(-3px);
}

.cta-btn.secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid var(--color-accent-blue);
}

.cta-btn.secondary:hover {
    background-color: var(--color-accent-blue);
    box-shadow: var(--glow-blue);
    transform: translateY(-3px);
}

/* ===== Quick Intro ===== */
.quick-intro {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.quick-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/tenweb_media_s6vxrfjit.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: -1;
    filter: blur(5px);
}

.intro-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 1;
    background: rgba(5, 5, 5, 0.7);
    padding: 30px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 229, 169, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.news-banner {
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, var(--color-bg-tertiary) 0%, var(--color-bg-secondary) 100%);
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-left: 4px solid var(--color-accent-orange);
    position: relative;
    z-index: 1;
}

.news-icon {
    font-size: 2rem;
    color: var(--color-accent-orange);
    margin-right: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.news-content h3 {
    color: var(--color-accent-orange);
    margin-bottom: 5px;
}

/* ===== Solutions ===== */
.solutions {
    background-color: var(--color-bg-secondary);
    position: relative;
    overflow: hidden;
}

.solutions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/tenweb_media_sqgl61ojy.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: 0;
    filter: blur(3px);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.solution-card {
    background: linear-gradient(135deg, rgba(18, 18, 31, 0.9) 0%, rgba(10, 10, 18, 0.9) 100%);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent-blue), var(--color-accent-green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-medium);
}

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

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(0, 229, 169, 0.3);
}

.solution-icon {
    font-size: 3rem;
    color: var(--color-accent-green);
    margin-bottom: 20px;
    text-shadow: var(--glow-green);
}

.solution-card h3 {
    margin-bottom: 15px;
}

.solution-card p {
    color: var(--color-text-secondary);
    margin-bottom: 20px;
}

.learn-more {
    display: inline-block;
    color: var(--color-accent-blue);
    font-weight: 600;
    transition: all var(--transition-fast);
}

.learn-more i {
    margin-left: 5px;
    transition: transform var(--transition-fast);
}

.learn-more:hover {
    color: var(--color-accent-green);
}

.learn-more:hover i {
    transform: translateX(5px);
}

/* ===== Configurator ===== */
.configurator {
    background-color: var(--color-bg-primary);
    position: relative;
    overflow: hidden;
}

.configurator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/tenweb_media_s4ri3ibqb.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: 0;
    filter: blur(3px);
}

.configurator-container {
    display: flex;
    background: rgba(18, 18, 31, 0.8);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 229, 169, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.config-sidebar {
    width: 250px;
    background: rgba(10, 10, 18, 0.9);
    padding: 30px 0;
    border-right: 1px solid rgba(0, 229, 169, 0.2);
}

.config-step {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
}

.config-step.active {
    background: rgba(0, 229, 169, 0.1);
}

.config-step.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background-color: var(--color-accent-green);
    box-shadow: var(--glow-green);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--color-bg-tertiary);
    color: var(--color-text-primary);
    font-weight: 600;
    margin-right: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-fast);
}

.config-step.active .step-number {
    background: var(--color-accent-green);
    color: #000;
    box-shadow: var(--glow-green);
}

.config-step:hover:not(.active) {
    background: rgba(255, 255, 255, 0.05);
}

.config-content {
    flex: 1;
    padding: 30px;
}

.config-panel {
    display: none;
}

.config-panel.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

.option-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.option-card {
    background: rgba(10, 10, 18, 0.8);
    border-radius: var(--border-radius);
    padding: 20px;
    text-align: center;
    transition: all var(--transition-medium);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-color: var(--color-accent-blue);
}

.option-icon {
    font-size: 2rem;
    color: var(--color-accent-blue);
    margin-bottom: 15px;
    text-shadow: var(--glow-blue);
}

.option-card h4 {
    margin-bottom: 10px;
}

.option-card p {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.select-option {
    background: transparent;
    border: 1px solid var(--color-accent-blue);
    color: var(--color-accent-blue);
    padding: 8px 15px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all var(--transition-fast);
    font-weight: 600;
}

.select-option:hover {
    background: var(--color-accent-blue);
    color: #fff;
    box-shadow: var(--glow-blue);
}

.config-actions {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 30px;
}

.config-btn {
    padding: 10px 25px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.config-btn.prev {
    background: transparent;
    border: 1px solid var(--color-text-secondary);
    color: var(--color-text-secondary);
}

.config-btn.prev:hover:not([disabled]) {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}

.config-btn.prev[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
}

.config-btn.next {
    background: var(--color-accent-blue);
    border: none;
    color: #fff;
}

.config-btn.next:hover {
    box-shadow: var(--glow-blue);
    transform: translateY(-2px);
}

.config-btn.submit {
    background: var(--color-accent-green);
    border: none;
    color: #000;
}

.config-btn.submit:hover {
    box-shadow: var(--glow-green);
    transform: translateY(-2px);
}

/* ===== Why Choose Us ===== */
.why-choose-us {
    background-color: var(--color-bg-secondary);
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/tenweb_media_sasc3lkiw.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: 0;
    filter: blur(3px);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.benefit-card {
    background: linear-gradient(135deg, rgba(18, 18, 31, 0.9) 0%, rgba(10, 10, 18, 0.9) 100%);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    transition: all var(--transition-medium);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(144, 0, 255, 0.3);
}

.benefit-icon {
    font-size: 3rem;
    color: var(--color-accent-purple);
    margin-bottom: 20px;
    text-shadow: var(--glow-purple);
}

.benefit-card h3 {
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--color-text-secondary);
}

/* ===== Testimonials ===== */
.testimonials {
    background-color: var(--color-bg-primary);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(0, 229, 169, 0.05) 0%, transparent 60%);
    z-index: 0;
    animation: rotate 60s linear infinite;
}

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

.testimonial-slider {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slide {
    background: linear-gradient(135deg, rgba(18, 18, 31, 0.8) 0%, rgba(10, 10, 18, 0.8) 100%);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 229, 169, 0.2);
    backdrop-filter: blur(10px);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    position: relative;
    padding: 0 20px;
}

.testimonial-content p::before,
.testimonial-content p::after {
    content: '"';
    font-size: 2rem;
    color: var(--color-accent-green);
    position: absolute;
    opacity: 0.5;
}

.testimonial-content p::before {
    left: 0;
    top: -10px;
}

.testimonial-content p::after {
    right: 0;
    bottom: -20px;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-bg-tertiary);
    margin-right: 15px;
    border: 2px solid var(--color-accent-green);
    box-shadow: var(--glow-green);
}

.author-info h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.author-info p {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.testimonial-prev,
.testimonial-next {
    background: transparent;
    border: none;
    color: var(--color-text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    color: var(--color-accent-green);
    text-shadow: var(--glow-green);
}

.testimonial-dots {
    display: flex;
    margin: 0 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--color-text-secondary);
    margin: 0 5px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.dot.active {
    background-color: var(--color-accent-green);
    box-shadow: var(--glow-green);
}

/* ===== About ===== */
.about {
    background-color: var(--color-bg-secondary);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/tenweb_media_sw4u4d9zk.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: 0;
    filter: blur(3px);
}

.about-content {
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
}

.about-text {
    background: linear-gradient(135deg, rgba(18, 18, 31, 0.9) 0%, rgba(10, 10, 18, 0.9) 100%);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 229, 169, 0.2);
    backdrop-filter: blur(10px);
}

.team-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.team-member {
    background: linear-gradient(135deg, rgba(18, 18, 31, 0.9) 0%, rgba(10, 10, 18, 0.9) 100%);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 229, 169, 0.2);
    backdrop-filter: blur(10px);
    transition: all var(--transition-medium);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--color-accent-green);
}

.member-photo {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all var(--transition-medium);
}

.team-member:hover .member-photo img {
    transform: scale(1.05);
}

.member-info {
    padding: 30px;
}

.member-info h4 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.member-title {
    color: var(--color-accent-green);
    font-weight: 600;
    margin-bottom: 10px;
}

.member-subtitle {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-style: italic;
}

.member-bio {
    margin-bottom: 20px;
}

.member-quote {
    font-style: italic;
    color: var(--color-text-secondary);
    border-left: 3px solid var(--color-accent-green);
    padding-left: 15px;
    margin-left: 0;
    margin-top: 20px;
}

/* ===== Partners ===== */
.partners {
    background-color: var(--color-bg-primary);
    position: relative;
    overflow: hidden;
}

.partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/tenweb_media_s8smqve4o.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: 0;
    filter: blur(3px);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.partner-card {
    background: linear-gradient(135deg, rgba(18, 18, 31, 0.9) 0%, rgba(10, 10, 18, 0.9) 100%);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    transition: all var(--transition-medium);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(0, 132, 255, 0.3);
}

.partner-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.partner-logo img {
    max-height: 100%;
    max-width: 100%;
    filter: grayscale(100%) brightness(1.5);
    transition: all var(--transition-medium);
}

.partner-card:hover .partner-logo img {
    filter: grayscale(0%) brightness(1);
}

.partner-card h3 {
    margin-bottom: 10px;
}

.partner-card p {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.partner-link {
    display: inline-block;
    color: var(--color-accent-blue);
    font-weight: 600;
    transition: all var(--transition-fast);
}

.partner-link:hover {
    color: var(--color-accent-green);
    text-shadow: var(--glow-green);
}

/* ===== Contact ===== */
.contact {
    background-color: var(--color-bg-secondary);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/tenweb_media_sdywpbjed.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: 0;
    filter: blur(3px);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.contact-info {
    background: linear-gradient(135deg, rgba(18, 18, 31, 0.9) 0%, rgba(10, 10, 18, 0.9) 100%);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 229, 169, 0.2);
    backdrop-filter: blur(10px);
}

.info-item {
    display: flex;
    margin-bottom: 30px;
}

.info-icon {
    font-size: 1.5rem;
    color: var(--color-accent-green);
    margin-right: 20px;
    text-shadow: var(--glow-green);
}

.info-content h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.info-content p {
    color: var(--color-text-secondary);
    margin-bottom: 5px;
}

.info-content a {
    color: var(--color-accent-blue);
}

.info-content a:hover {
    color: var(--color-accent-green);
    text-shadow: var(--glow-green);
}

.contact-form-container {
    background: linear-gradient(135deg, rgba(18, 18, 31, 0.9) 0%, rgba(10, 10, 18, 0.9) 100%);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 229, 169, 0.2);
    backdrop-filter: blur(10px);
}

.contact-form {
    display: grid;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    background-color: rgba(10, 10, 18, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 12px 15px;
    color: var(--color-text-primary);
    font-family: var(--font-primary);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent-green);
    box-shadow: 0 0 10px rgba(0, 229, 169, 0.3);
}

.captcha-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
}

#captcha {
    height: 50px;
    background-color: rgba(10, 10, 18, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: monospace;
    font-size: 1.5rem;
    letter-spacing: 5px;
    color: var(--color-accent-green);
    text-shadow: var(--glow-green);
}

.submit-btn {
    background-color: var(--color-accent-green);
    color: #000;
    border: none;
    border-radius: var(--border-radius);
    padding: 15px;
    font-family: var(--font-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.submit-btn:hover {
    box-shadow: var(--glow-green);
    transform: translateY(-3px);
}

/* ===== Footer ===== */
footer {
    background-color: var(--color-bg-primary);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(5, 5, 5, 1) 0%, rgba(5, 5, 5, 0.8) 100%);
    z-index: 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.footer-logo {
    height: 60px;
}

.footer-logo img {
    height: 100%;
    width: auto;
}

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

.footer-column h3 {
    color: var(--color-accent-green);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: var(--color-text-secondary);
    transition: all var(--transition-fast);
}

.footer-column a:hover {
    color: var(--color-accent-green);
    text-shadow: var(--glow-green);
}

.footer-column i {
    margin-right: 10px;
    color: var(--color-accent-green);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    color: var(--color-text-secondary);
    margin-bottom: 0;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--color-text-secondary);
    font-size: 1.2rem;
    transition: all var(--transition-fast);
}

.social-links a:hover {
    color: var(--color-accent-green);
    text-shadow: var(--glow-green);
}

/* ===== Legal Pages ===== */
.legal-content {
    padding: 150px 0 80px;
}

.page-title {
    text-align: center;
    margin-bottom: 60px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--color-accent-green);
}

.legal-section h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    margin-top: 30px;
}

.legal-section p {
    margin-bottom: 15px;
}

.legal-section ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.legal-section ul li {
    margin-bottom: 10px;
}

.last-update {
    font-style: italic;
    color: var(--color-text-secondary);
    text-align: center;
    margin-top: 60px;
}

/* ===== Animations ===== */
@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes pulse-border {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 229, 169, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 229, 169, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 229, 169, 0);
    }
}

/* ===== Circuit Board Pattern ===== */
.circuit-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 304 304' width='304' height='304'%3E%3Cpath fill='%2300e5a9' fill-opacity='0.05' d='M44.1 224a5 5 0 1 1 0 2H0v-2h44.1zm160 48a5 5 0 1 1 0 2H82v-2h122.1zm57.8-46a5 5 0 1 1 0-2H304v2h-42.1zm0 16a5 5 0 1 1 0-2H304v2h-42.1zm6.2-114a5 5 0 1 1 0 2h-86.2a5 5 0 1 1 0-2h86.2zm-256-48a5 5 0 1 1 0 2H0v-2h12.1zm185.8 34a5 5 0 1 1 0-2h86.2a5 5 0 1 1 0 2h-86.2zM258 12.1a5 5 0 1 1-2 0V0h2v12.1zm-64 208a5 5 0 1 1-2 0v-54.2a5 5 0 1 1 2 0v54.2zm48-198.2V80h62v2h-64V21.9a5 5 0 1 1 2 0zm16 16V64h46v2h-48V37.9a5 5 0 1 1 2 0zm-128 96V208h16v12.1a5 5 0 1 1-2 0V210h-16v-76.1a5 5 0 1 1 2 0zm-5.9-21.9a5 5 0 1 1 0 2H114v48H85.9a5 5 0 1 1 0-2H112v-48h12.1zm-6.2 130a5 5 0 1 1 0-2H176v-74.1a5 5 0 1 1 2 0V242h-60.1zm-16-64a5 5 0 1 1 0-2H114v48h10.1a5 5 0 1 1 0 2H112v-48h-10.1zM66 284.1a5 5 0 1 1-2 0V274H50v30h-2v-32h18v12.1zM236.1 176a5 5 0 1 1 0 2H226v94h48v32h-2v-30h-48v-98h12.1zm25.8-30a5 5 0 1 1 0-2H274v44.1a5 5 0 1 1-2 0V146h-10.1zm-64 96a5 5 0 1 1 0-2H208v-80h16v-14h-42.1a5 5 0 1 1 0-2H226v18h-16v80h-12.1zm86.2-210a5 5 0 1 1 0 2H272V0h2v32h10.1zM98 101.9V146H53.9a5 5 0 1 1 0-2H96v-42.1a5 5 0 1 1 2 0zM53.9 34a5 5 0 1 1 0-2H80V0h2v34H53.9zm60.1 3.9V66H82v64H69.9a5 5 0 1 1 0-2H80V64h32V37.9a5 5 0 1 1 2 0zM101.9 82a5 5 0 1 1 0-2H128V37.9a5 5 0 1 1 2 0V82h-28.1zm16-64a5 5 0 1 1 0-2H146v44.1a5 5 0 1 1-2 0V18h-26.1zm102.2 270a5 5 0 1 1 0 2H98v14h-2v-16h124.1zM242 149.9V160h16v34h-16v62h48v48h-2v-46h-48v-66h16v-30h-16v-12.1a5 5 0 1 1 2 0zM53.9 18a5 5 0 1 1 0-2H64V2H48V0h18v18H53.9zm112 32a5 5 0 1 1 0-2H192V0h50v2h-48v48h-28.1zm-48-48a5 5 0 0 1-9.8-2h2.07a3 3 0 1 0 5.66 0H178v34h-18V21.9a5 5 0 1 1 2 0V32h14V2h-58.1zm0 96a5 5 0 1 1 0-2H137l32-32h39V21.9a5 5 0 1 1 2 0V66h-40.17l-32 32H117.9zm28.1 90.1a5 5 0 1 1-2 0v-76.51L175.59 80H224V21.9a5 5 0 1 1 2 0V82h-49.59L146 112.41v75.69zm16 32a5 5 0 1 1-2 0v-99.51L184.59 96H300.1a5 5 0 0 1 3.9-3.9v2.07a3 3 0 0 0 0 5.66v2.07a5 5 0 0 1-3.9-3.9H185.41L162 121.41v98.69zm-144-64a5 5 0 1 1-2 0v-3.51l48-48V48h32V0h2v50H66v55.41l-48 48v2.69zM50 53.9v43.51l-48 48V208h26.1a5 5 0 1 1 0 2H0v-65.41l48-48V53.9a5 5 0 1 1 2 0zm-16 16V89.41l-34 34v-2.82l32-32V69.9a5 5 0 1 1 2 0zM12.1 32a5 5 0 1 1 0 2H9.41L0 43.41V40.6L8.59 32h3.51zm265.8 18a5 5 0 1 1 0-2h18.69l7.41-7.41v2.82L297.41 50H277.9zm-16 160a5 5 0 1 1 0-2H288v-71.41l16-16v2.82l-14 14V210h-28.1zm-208 32a5 5 0 1 1 0-2H64v-22.59L40.59 194H21.9a5 5 0 1 1 0-2H41.41L66 216.59V242H53.9zm150.2 14a5 5 0 1 1 0 2H96v-56.6L56.6 162H37.9a5 5 0 1 1 0-2h19.5L98 200.6V256h106.1zm-150.2 2a5 5 0 1 1 0-2H80v-46.59L48.59 178H21.9a5 5 0 1 1 0-2H49.41L82 208.59V258H53.9zM34 39.8v1.61L9.41 66H0v-2h8.59L32 40.59V0h2v39.8zM2 300.1a5 5 0 0 1 3.9 3.9H3.83A3 3 0 0 0 0 302.17V256h18v48h-2v-46H2v42.1zM34 241v63h-2v-62H0v-2h34v1zM17 18H0v-2h16V0h2v18h-1zm273-2h14v2h-16V0h2v16zm-32 273v15h-2v-14h-14v14h-2v-16h18v1zM0 92.1A5.02 5.02 0 0 1 6 97a5 5 0 0 1-6 4.9v-2.07a3 3 0 1 0 0-5.66V92.1zM80 272h2v32h-2v-32zm37.9 32h-2.07a3 3 0 0 0-5.66 0h-2.07a5 5 0 0 1 9.8 0zM5.9 0A5.02 5.02 0 0 1 0 5.9V3.83A3 3 0 0 0 3.83 0H5.9zm294.2 0h2.07A3 3 0 0 0 304 3.83V5.9a5 5 0 0 1-3.9-5.9zm3.9 300.1v2.07a3 3 0 0 0-1.83 1.83h-2.07a5 5 0 0 1 3.9-3.9zM97 100a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-48 32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm32 48a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm32-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0-32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm32 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16-64a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 96a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-144a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-96 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm96 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16-64a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-32 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zM49 36a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-32 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm32 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zM33 68a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-48a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 240a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16-64a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16-32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm80-176a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm32 48a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0-32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm112 176a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zM17 180a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0-32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zM17 84a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm32 64a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6z'%3E%3C/path%3E%3C/svg%3E");
    opacity: 0.05;
    z-index: -1;
}

/* ===== Hexagon Grid Pattern ===== */
.hexagon-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='hexagons' fill='%2300e5a9' fill-opacity='0.05' fill-rule='nonzero'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.05;
    z-index: -1;
}

/* ===== Media Queries ===== */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero-banner h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    section {
        padding: 80px 0;
    }
    
    .hero-banner {
        min-height: 600px;
    }
    
    .hero-banner h1 {
        font-size: 3rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-links {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-banner h1 {
        font-size: 2.5rem;
    }
    
    .hero-banner .subtitle {
        font-size: 1.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .captcha-container {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-banner h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
}

/* ===== Header & Navigation ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    transition: all var(--transition-medium);
    border-bottom: 1px solid rgba(0, 229, 169, 0.3);
}

.logo-container {
    height: 60px;
    display: flex;
    align-items: center;
}

.logo {
    height: 100%;
    width: auto;
    transition: transform var(--transition-fast), filter var(--transition-fast);
}

.logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px var(--color-accent-green));
}

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

.main-nav {
    display: flex;
    list-style: none;
}

.main-nav li {
    margin: 0 5px;
}

/* Styles pour le nouveau logo HTML/CSS (v2) */
.logo-container-v2 {
    display: flex;
    align-items: center;
    gap: 15px; /* Espace entre l'icône et le texte */
    height: 60px; /* Hauteur ajustée pour l'agrandissement */
    transition: transform var(--transition-fast);
}

.logo-container-v2:hover {
    transform: scale(1.05); /* Léger zoom au survol */
}

.logo-icon {
    font-size: 2.8rem; /* Icône légèrement agrandie */
    color: var(--color-accent-green);
    text-shadow: var(--glow-green);
    line-height: 1;
}

.logo-text-container {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text {
    font-family: var(--font-secondary);
    font-size: 1.8rem; /* Texte principal légèrement agrandi */
    font-weight: 700;
    color: var(--color-text-primary);
    letter-spacing: 1px;
}

.logo-slogan {
    font-family: var(--font-primary);
    font-size: 0.7rem; /* Slogan légèrement agrandi */
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
}

/* Ajustement pour le logo dans le footer */
.footer-logo .logo-icon {
    font-size: 2.5rem; /* Taille légèrement réduite pour le footer */
}

.footer-logo .logo-text {
    font-size: 1.6rem; /* Taille légèrement réduite pour le footer */
}

.footer-logo .logo-slogan {
    font-size: 0.65rem; /* Taille légèrement réduite pour le footer */
}

