/* Animations et Effets Visuels */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

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

/* Variables CSS Professionnelles */
:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --cyber-accent: #00d4ff;
    --cyber-secondary: #0ea5e9;
    --purple-accent: #8b5cf6;
    --green-accent: #10b981;
    --orange-accent: #f59e0b;
    --red-accent: #ef4444;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --background-primary: #ffffff;
    --background-secondary: #f8fafc;
    --background-tertiary: #f1f5f9;
    --background-dark: #0f172a;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--cyber-accent) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, var(--cyber-secondary) 100%);
    --gradient-rainbow: linear-gradient(45deg, #667eea, #764ba2, #f093fb, #f5576c, #4facfe, #00f2fe);
    --gradient-cyber-animated: linear-gradient(270deg, #00d4ff, #2563eb, #8b5cf6, #00d4ff);
    --shadow-colored: 0 10px 30px rgba(37, 99, 235, 0.3);
    --shadow-cyber: 0 0 30px rgba(0, 212, 255, 0.5);
    --gradient-purple: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-orange: linear-gradient(135deg, #ff9a56 0%, #ff6b35 100%);
    --gradient-cyber: linear-gradient(135deg, #00d4ff 0%, #0ea5e9 50%, #2563eb 100%);
    --gradient-construction: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
    font-size: 16px;
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}



.container {
    width: 100%;
    margin: 0;
    padding: 0;
}

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

/* Header */
.header {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.98) 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(15px) saturate(180%);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.05);
    transition: all 0.3s ease;
}



.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    position: relative;
    z-index: 10000;
    min-height: 60px;
}

.logo h1 {
    font-family: 'Space Mono', monospace;
    font-size: 2rem;
    font-weight: 900;
    color: white;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(255, 255, 255, 0.8);
    margin: 0;
    position: relative;
    transition: all 0.3s ease;
}





.tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    margin-left: 0.5rem;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

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

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 12px 24px;
    border-radius: 12px;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-menu a:hover {
    color: var(--cyber-accent);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
}



/* Hero Section */
.hero-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #2563eb 100%);
    position: relative;
    overflow: hidden;
    width: 100vw;
    animation: gradientShift 6s ease-in-out infinite alternate;
}

@keyframes gradientShift {
    0% { background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #2563eb 100%); }
    50% { background: linear-gradient(135deg, #2563eb 0%, #00d4ff 50%, #8b5cf6 100%); }
    100% { background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #2563eb 100%); }
}





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

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-text h2 {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    animation: slideInUp 0.8s ease-out;
}

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

.hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.7;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    animation: slideInUp 0.8s ease-out 0.2s both;
}

/* Construction Badge */
.construction-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.95) 0%, rgba(217, 119, 6, 0.95) 100%);
    border: 2px solid rgba(217, 119, 6, 0.8);
    border-radius: 25px;
    margin-bottom: 2rem;
    animation: constructionPulse 3s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    backdrop-filter: blur(10px);
}

.badge-icon {
    font-size: 1.2rem;
    animation: bounce 2s ease-in-out infinite;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.badge-text {
    font-size: 0.875rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Construction Stats */
.construction-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    animation: slideInUp 0.8s ease-out 0.4s both;
}

.stat-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(37, 99, 235, 0.15) 100%);
    border-color: rgba(0, 212, 255, 0.4);
}

.stat-icon {
    font-size: 1.5rem;
    color: var(--cyber-accent);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: 'Space Mono', monospace;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

/* Hero Image */
.image-container {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: transform 0.3s ease;
    max-width: 100%;
}

.image-container:hover {
    transform: translateY(-4px);
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.9) 0%, rgba(30, 64, 175, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}



.image-container:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
    padding: 2rem;
}

.construction-info {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.blueprint-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    animation: blueprint 4s ease-in-out infinite;
}

.overlay-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #00d4ff;
}

.overlay-content p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.blueprint-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}

.detail {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Space Mono', monospace;
}

/* Services Section */
.services-preview {
    padding: 5rem 0;
    position: relative;
    width: 100vw;
}



.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.service-card {
    background: var(--background-primary);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}



.service-card:hover {
    transform: translateY(-12px) scale(1.05) rotateX(5deg);
    box-shadow: 
        0 25px 50px rgba(37, 99, 235, 0.3),
        0 0 40px rgba(0, 212, 255, 0.2);
    border-color: var(--cyber-accent);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(37, 99, 235, 0.05) 100%);
    border-width: 2px;
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(10deg);
    color: var(--cyber-accent);
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.5));
}

.service-icon {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-icon {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

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

/* Progress Section */
.progress-section {
    padding: 5rem 0;
    background: var(--background-secondary);
    position: relative;
    width: 100vw;
}



.progress-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.progress-item {
    margin-bottom: 3rem;
}

.construction-phase {
    background: var(--background-primary);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-primary);
    position: relative;
    overflow: hidden;
}

.phase-description {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.75rem;
    font-style: italic;
    line-height: 1.4;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.progress-label {
    font-weight: 600;
    color: var(--text-primary);
}

.progress-value {
    font-weight: 600;
    color: var(--primary-color);
    font-family: 'Space Mono', monospace;
}

.progress-bar {
    height: 8px;
    background: var(--background-tertiary);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--cyber-accent) 0%, var(--primary-color) 50%, var(--purple-accent) 100%);
    border-radius: 6px;
    transition: all 1.5s ease-in-out;
    position: relative;
    box-shadow: 
        0 0 20px rgba(0, 212, 255, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    animation: progressGlow 3s ease-in-out infinite alternate;
}

@keyframes progressGlow {
    from { box-shadow: 0 0 20px rgba(0, 212, 255, 0.3); }
    to { box-shadow: 0 0 30px rgba(0, 212, 255, 0.7); }
}





/* Contact Section */
.contact-section {
    padding: 5rem 0;
    position: relative;
    width: 100vw;
}



.contact-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.reservation-form .form-group {
    align-items: stretch;
}

.input-container {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 1rem;
    font-size: 1.2rem;
    z-index: 2;
}

.input-container input {
    padding-left: 3rem !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    border: 2px solid rgba(37, 99, 235, 0.2);
    transition: all 0.3s ease;
}

.input-container input:focus {
    border-color: var(--cyber-accent);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
    background: white;
}

.reserve-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, #ff8c00 0%, #ffa500 100%);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.reserve-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
    background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
}

.button-icon {
    font-size: 1rem;
}

.contact-form input {
    flex: 1;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.contact-form button {
    padding: 0.875rem 1.5rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}



.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
    background: var(--gradient-secondary);
}

.contact-form button:active {
    transform: translateY(0);
}

.form-note {
    font-size: 0.875rem;
    color: var(--text-light);
    text-align: center;
}

/* Footer */
.footer {
    background: var(--background-tertiary);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    margin-bottom: 2rem;
    width: 100%;
}

.footer-section h4 {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

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

.company-badge {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-color);
    width: fit-content;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    width: 100%;
}

.footer-bottom p {
    color: var(--text-light);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(200%);
    }
}



@keyframes constructionPulse {
    0%, 100% {
        box-shadow: 0 0 5px rgba(255, 140, 0, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 140, 0, 0.5);
        transform: scale(1.02);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

@keyframes blueprint {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    25% {
        transform: scale(1.1) rotate(-2deg);
    }
    75% {
        transform: scale(1.1) rotate(2deg);
    }
}

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

/* STYLES AVANCÉS PHANTOM GUARD */

/* CORRECTION CRITIQUE - Arrêt des rotations et header visible */
.stat-icon, .stat-icon * {
    animation: none !important;
    transform: none !important;
}

/* Header harmonisé avec le hero */
.header {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.85) 0%, rgba(118, 75, 162, 0.85) 30%, rgba(37, 99, 235, 0.85) 100%) !important;
    backdrop-filter: blur(25px) saturate(180%) !important;
    z-index: 99999 !important;
    position: fixed !important;
    width: 100% !important;
    top: 0 !important;
    left: 0 !important;
    box-shadow: 0 8px 35px rgba(37, 99, 235, 0.2) !important;
    min-height: 80px !important;
    padding: 1.5rem 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Logo avec image */
.logo {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.logo-image {
    width: 48px !important;
    height: 48px !important;
    object-fit: contain !important;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3)) !important;
}

.logo-text {
    display: flex !important;
    flex-direction: column !important;
}

/* Logo ultra visible */
.logo h1 {
    color: white !important;
    font-size: 2.2rem !important;
    font-weight: 900 !important;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.7) !important;
    animation: none !important;
    margin: 0 !important;
}

/* Navigation avec meilleur contraste */
.nav-menu a {
    color: white !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    background: rgba(0, 0, 0, 0.25) !important;
    padding: 12px 20px !important;
    border-radius: 12px !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8) !important;
    border: 2px solid rgba(255, 255, 255, 0.4) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    backdrop-filter: blur(5px) !important;
}

.nav-menu a:hover {
    background: rgba(255, 255, 255, 0.95) !important;
    color: #2563eb !important;
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4), 0 4px 15px rgba(0, 212, 255, 0.3) !important;
    border-color: rgba(37, 99, 235, 0.6) !important;
    text-shadow: none !important;
}

/* Tagline visible */
.tagline {
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 700 !important;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5) !important;
}

/* Compenser le header fixe avec espace réduit */
body {
    padding-top: 100px !important;
}

/* Styles pour le badge de construction avec espacement */
.badge-container {
    margin-top: 2rem;
}

/* Construction Badge amélioré */
.construction-badge {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 50%, #b45309 100%) !important;
    color: white !important;
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.6), inset 0 2px 0 rgba(255, 255, 255, 0.4) !important;
    border: 3px solid rgba(255, 255, 255, 0.5) !important;
    border-radius: 30px !important;
    padding: 15px 30px !important;
    animation: pulse 2s ease-in-out infinite !important;
    transform: scale(1.1) !important;
    display: inline-flex !important;
    align-items: center !important;
    margin-bottom: 2rem !important;
}

/* Hero Section améliorée */
.hero-section {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 30%, #2563eb 70%, #00d4ff 100%) !important;
    animation: gradientShift 10s ease-in-out infinite !important;
    padding-top: 0.5rem !important;
    position: relative !important;
    overflow: hidden !important;
}

/* Hero Content avec transition */
.hero-content {
    position: relative !important;
}

.hero-content::after {
    content: '';
    position: absolute;
    top: 0;
    right: 45%;
    width: 10%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.03) 50%, transparent 100%);
    pointer-events: none;
    filter: blur(1px);
}

/* Effet particules flottantes sur hero */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08) 2px, transparent 2px),
        radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.08) 2px, transparent 2px),
        radial-gradient(circle at 40% 60%, rgba(139, 92, 246, 0.08) 2px, transparent 2px);
    background-size: 120px 120px, 180px 180px, 240px 240px;
    animation: particleFloat 25s linear infinite;
    pointer-events: none;
}

/* Styles texte héro */
.hero-text h1 {
    color: white;
    text-shadow: 0 6px 25px rgba(0, 0, 0, 0.7), 0 0 40px rgba(255, 255, 255, 0.3);
    font-size: 4.2rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.hero-text h2 {
    color: white !important;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4) !important;
    animation: textGlow 3s ease-in-out infinite alternate !important;
    font-size: 3.5rem !important;
    font-weight: 900 !important;
    letter-spacing: -0.02em !important;
}

.hero-description {
    font-size: 1.3rem !important;
    line-height: 1.8 !important;
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(255, 255, 255, 0.2) !important;
    max-width: 700px !important;
}

/* Styles punchline */
.punchline {
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    border-left: 6px solid #00d4ff;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.punchline h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    background: linear-gradient(45deg, #00d4ff, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    text-shadow: none;
}

.punchline p {
    font-size: 1.4rem;
    font-weight: 700;
    color: #38bdf8;
    font-family: 'Space Mono', monospace;
    text-shadow: 0 3px 15px rgba(56, 189, 248, 0.8), 0 0 30px rgba(0, 212, 255, 0.4);
    margin: 0;
    letter-spacing: 0.5px;
}

/* Services Cards améliorées */
.service-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.05) !important;
    box-shadow: 0 25px 50px rgba(37, 99, 235, 0.25) !important;
}

.service-card:nth-child(1) { 
    border: 2px solid rgba(239, 68, 68, 0.2) !important; 
    box-shadow: 0 15px 35px rgba(239, 68, 68, 0.15) !important; 
}

.service-card:nth-child(1) .service-icon { 
    color: #ef4444 !important; 
}

/* Stats items améliorés */
.stat-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.1) 100%) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 20px !important;
    padding: 20px 25px !important;
    backdrop-filter: blur(20px) !important;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        inset 0 2px 0 rgba(255, 255, 255, 0.3) !important;
    animation: statFloat 4s ease-in-out infinite alternate !important;
}

.stat-icon {
    font-size: 2rem !important;
    text-shadow: 0 0 20px currentColor !important;
}

/* Progress fill animation */
.progress-fill {
    animation: progressPulse 2s ease-in-out infinite !important;
}

/* ANIMATIONS */
@keyframes float {
    from { transform: translateY(0px); }
    to { transform: translateY(-10px); }
}

@keyframes particleFloat {
    from { transform: translateY(0px) rotate(0deg); }
    to { transform: translateY(-30px) rotate(360deg); }
}

@keyframes gradientShift {
    0%, 100% { background: linear-gradient(135deg, #764ba2 0%, #667eea 30%, #2563eb 70%, #00d4ff 100%) !important; }
    25% { background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #2563eb 75%, #8b5cf6 100%) !important; }
    50% { background: linear-gradient(135deg, #2563eb 0%, #00d4ff 25%, #8b5cf6 75%, #667eea 100%) !important; }
    75% { background: linear-gradient(135deg, #8b5cf6 0%, #667eea 25%, #764ba2 75%, #2563eb 100%) !important; }
}

@keyframes textGlow {
    from { text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6) !important; }
    to { text-shadow: 0 6px 30px rgba(0, 212, 255, 0.8) !important; }
}

@keyframes badgeGlow {
    from { 
        box-shadow: 0 12px 40px rgba(245, 158, 11, 0.6), 0 0 50px rgba(245, 158, 11, 0.4);
    }
    to { 
        box-shadow: 0 16px 50px rgba(245, 158, 11, 0.8), 0 0 70px rgba(245, 158, 11, 0.6);
    }
}

@keyframes badgePulse {
    0%, 100% { 
        transform: scale(1.15);
        box-shadow: 0 12px 40px rgba(245, 158, 11, 0.6);
    }
    50% { 
        transform: scale(1.2);
        box-shadow: 0 18px 50px rgba(245, 158, 11, 0.9);
    }
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}

@keyframes progressPulse {
    0%, 100% { box-shadow: 0 0 15px rgba(0, 212, 255, 0.3) !important; }
    50% { box-shadow: 0 0 25px rgba(0, 212, 255, 0.7) !important; }
}

@keyframes statFloat {
    from { transform: translateY(0px); }
    to { transform: translateY(-8px); }
}

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

/* Styles pour badges et icônes */
.badge-icon {
    color: #fbbf24;
    text-shadow: 0 0 20px rgba(251, 191, 36, 1);
    font-size: 1.5rem;
    margin-right: 12px;
    animation: iconPulse 2s ease-in-out infinite;
}

.badge-text {
    font-weight: 700;
    font-size: 0.95rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Styles pour statistiques */
.stat-number {
    color: white;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.6);
    font-size: 1.5rem;
    font-weight: 800;
}

.stat-label {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

/* Styles pour cartes de services */
.service-card-red {
    border: 2px solid rgba(239, 68, 68, 0.3);
    box-shadow: 0 15px 35px rgba(239, 68, 68, 0.15);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(254, 242, 242, 0.9) 100%);
}

.service-card-blue {
    border: 2px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.15);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(239, 246, 255, 0.9) 100%);
}

.service-card-purple {
    border: 2px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.15);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 243, 255, 0.9) 100%);
}

.service-card-green {
    border: 2px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.15);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 253, 250, 0.9) 100%);
}

.service-icon-red { color: #ef4444; }
.service-icon-blue { color: #3b82f6; }
.service-icon-purple { color: #8b5cf6; }
.service-icon-green { color: #10b981; }

.service-title-red { color: #dc2626; text-shadow: 0 2px 8px rgba(220, 38, 38, 0.3); }
.service-title-blue { color: #2563eb; text-shadow: 0 2px 8px rgba(37, 99, 235, 0.3); }
.service-title-purple { color: #7c3aed; text-shadow: 0 2px 8px rgba(124, 58, 237, 0.3); }
.service-title-green { color: #059669; text-shadow: 0 2px 8px rgba(5, 150, 105, 0.3); }

.service-text-red { color: #b91c1c; }
.service-text-blue { color: #1d4ed8; }
.service-text-purple { color: #6d28d9; }
.service-text-green { color: #047857; }

/* Styles pour les icônes de section */
.section-icon {
    display: inline;
    margin-right: 8px;
    color: #2563eb;
}

.section-icon-small {
    display: inline;
    margin-right: 6px;
}

/* Styles pour les barres de progression */
.progress-fill-red {
    background: linear-gradient(90deg, #ef4444 0%, #f97316 50%, #eab308 100%);
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.5);
}

.progress-fill-blue {
    background: linear-gradient(90deg, #3b82f6 0%, #1d4ed8 50%, #1e40af 100%);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.progress-fill-purple {
    background: linear-gradient(90deg, #8b5cf6 0%, #7c3aed 50%, #6d28d9 100%);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

.progress-label-blue { color: #3b82f6; }
.progress-label-purple { color: #8b5cf6; }
.progress-value-blue { color: #1d4ed8; }
.progress-value-purple { color: #7c3aed; }

/* Styles pour icônes colorées */
.icon-green { color: #10b981; }
.icon-blue { color: #2563eb; }

/* Menu Burger pour mobile */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10001;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: white;
    margin-bottom: 5px;
    transition: all 0.3s ease;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.mobile-menu-toggle span:last-child {
    margin-bottom: 0;
}

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

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

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

/* Navigation mobile responsive */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 20px;
    }
    
    .logo h1 {
        font-size: 1.8rem;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .nav-menu a {
        padding: 10px 16px;
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 100px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 100px);
        background: linear-gradient(135deg, rgba(102, 126, 234, 0.98) 0%, rgba(118, 75, 162, 0.98) 50%, rgba(37, 99, 235, 0.98) 100%);
        backdrop-filter: blur(25px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 60px;
        gap: 30px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 9999;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu a {
        width: 80%;
        text-align: center;
        padding: 18px 24px;
        font-size: 1.2rem;
        background: rgba(0, 0, 0, 0.3);
        border: 2px solid rgba(255, 255, 255, 0.5);
        border-radius: 15px;
        transform: translateX(100px);
        opacity: 0;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active a {
        transform: translateX(0);
        opacity: 1;
    }
    
    .nav-menu.active a:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active a:nth-child(2) { transition-delay: 0.2s; }
    .nav-menu.active a:nth-child(3) { transition-delay: 0.3s; }
    .nav-menu.active a:nth-child(4) { transition-delay: 0.4s; }
    
    .logo h1 {
        font-size: 1.6rem;
    }
    
    .tagline {
        font-size: 0.8rem;
    }
}

/* Responsive Design amélioré */
@media (max-width: 1200px) {
    .hero-content,
    .services-grid,
    .progress-container,
    .contact-form,
    .footer-content,
    .footer-bottom {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding: 0 25px;
    }
    
    .hero-text {
        order: 1;
    }
    
    .hero-image {
        order: 2;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-text h1 {
        font-size: 3.2rem;
    }
    
    .hero-text h2 {
        font-size: 2.2rem;
    }
    
    .punchline h2 {
        font-size: 2rem;
    }
    
    .punchline p {
        font-size: 1.2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .construction-stats {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    body {
        padding-top: 90px;
    }
    
    .header {
        min-height: 70px;
        padding: 1rem 0;
    }
    
    .content-wrapper {
        padding: 0 15px;
    }
    
    .hero-content {
        padding: 0 20px;
        gap: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.8rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }
    
    .hero-text h2 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1.1rem;
        line-height: 1.6;
        max-width: 100%;
    }
    
    .punchline {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .punchline h2 {
        font-size: 1.6rem;
        margin-bottom: 0.6rem;
    }
    
    .punchline p {
        font-size: 1rem;
    }
    
    .construction-badge {
        transform: scale(1);
        padding: 12px 20px;
        margin-bottom: 1.5rem;
    }
    
    .badge-text {
        font-size: 0.8rem;
    }
    
    .construction-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .stat-item {
        padding: 15px 20px;
        text-align: left;
    }
    
    .stat-icon {
        font-size: 1.2rem;
    }
    
    .stat-number {
        font-size: 1.1rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-icon {
        margin-bottom: 1rem;
    }
    
    .progress-container {
        padding: 0 20px;
    }
    
    .progress-item {
        margin-bottom: 2rem;
    }
    
    .construction-phase {
        padding: 1.2rem;
    }
    
    .progress-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .contact-form {
        padding: 0 20px;
    }
    
    .form-group {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .input-container input {
        padding: 12px 15px;
        padding-left: 2.5rem !important;
    }
    
    .reserve-button {
        padding: 12px 20px;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }
    
    .footer-content {
        padding: 0 20px;
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        padding: 0 20px;
        padding-top: 2rem;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .section-header p {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .logo {
        gap: 8px;
    }
    
    .logo-image {
        width: 40px;
        height: 40px;
    }
    
    .logo h1 {
        font-size: 1.4rem;
    }
    
    .tagline {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .hero-text h2 {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .punchline h2 {
        font-size: 1.3rem;
    }
    
    .punchline p {
        font-size: 0.9rem;
    }
    
    .construction-badge {
        padding: 10px 16px;
    }
    
    .badge-text {
        font-size: 0.7rem;
    }
    
    .stat-item {
        padding: 12px 16px;
    }
    
    .service-card {
        padding: 1.2rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .logo h1 {
        font-size: 1.2rem;
    }
    
    .tagline {
        display: none;
    }
    
    .reserve-button {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

@media (max-width: 375px) {
    .hero-content,
    .services-grid,
    .progress-container,
    .contact-form,
    .footer-content {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .punchline {
        padding: 1rem;
    }
    
    .construction-badge {
        padding: 8px 12px;
    }
    
    .stat-item {
        padding: 10px 12px;
    }
}

/* Pages responsives */
@media (max-width: 768px) {
    .page-header {
        padding: 60px 0;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
        flex-direction: column;
        gap: 15px;
    }
    
    .page-subtitle {
        font-size: 1.2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-section {
        padding: 30px;
    }
    
    .detailed-contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .mission-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-section {
        padding: 40px 20px;
    }
    
    .service-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .service-details-grid {
        grid-template-columns: 1fr;
    }
    
    .diff-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .approach-grid,
    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .faq-grid,
    .contact-methods {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .contact-form-section {
        padding: 20px;
    }
    
    .service-section {
        padding: 30px 15px;
    }
    
    .legal-section {
        padding: 25px;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 14px 24px;
        font-size: 1rem;
    }
}

/* Page styles for additional pages */
.page-content {
    padding-top: 120px;
}

.page-header {
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
    color: white;
    padding: 80px 0;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.page-header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.page-icon {
    color: #60a5fa;
}

.page-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Navigation active state */
.nav-menu a.active {
    color: #60a5fa;
    background: rgba(96, 165, 250, 0.1);
    border-color: #60a5fa;
}

/* Services page styles */
.detailed-services {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-section {
    margin-bottom: 80px;
    padding: 60px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.service-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    background: linear-gradient(45deg, currentColor 25%, transparent 25%, transparent 75%, currentColor 75%, currentColor),
                linear-gradient(45deg, currentColor 25%, transparent 25%, transparent 75%, currentColor 75%, currentColor);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
}

.red-team {
    background: linear-gradient(135deg, #fef2f2 0%, #fecaca 100%);
    border: 2px solid #fca5a5;
    color: #991b1b;
}

.blue-team {
    background: linear-gradient(135deg, #eff6ff 0%, #bfdbfe 100%);
    border: 2px solid #93c5fd;
    color: #1e40af;
}

.purple-team {
    background: linear-gradient(135deg, #f3f4f6 0%, #d8b4fe 100%);
    border: 2px solid #c084fc;
    color: #7c3aed;
}

.consulting {
    background: linear-gradient(135deg, #f0fdf4 0%, #bbf7d0 100%);
    border: 2px solid #86efac;
    color: #166534;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.service-icon-large {
    flex-shrink: 0;
    padding: 20px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.service-title-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-tagline {
    font-size: 1.2rem;
    opacity: 0.8;
    font-weight: 400;
}

.service-main-title.red { color: #dc2626; }
.service-main-title.blue { color: #2563eb; }
.service-main-title.purple { color: #9333ea; }
.service-main-title.green { color: #059669; }

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

.service-detail-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-detail-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: inherit;
}

.service-detail-card ul {
    list-style: none;
    padding: 0;
}

.service-detail-card li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.service-detail-card li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: currentColor;
    font-weight: 600;
}

/* Work process styles */
.work-process {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

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

.process-step {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    border-color: #60a5fa;
    box-shadow: 0 20px 40px rgba(96, 165, 250, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1e293b;
}

.step-content p {
    color: #64748b;
    line-height: 1.6;
}

/* About page styles */
.mission-section {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.mission-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.mission-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1e293b;
}

.mission-statement {
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.7;
    color: #3b82f6;
    margin-bottom: 25px;
}

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

.mission-icon {
    color: #60a5fa;
}

.purple-approach {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

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

.approach-card {
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.red-approach {
    background: linear-gradient(135deg, #fef2f2 0%, #fecaca 100%);
    border: 2px solid #f87171;
}

.blue-approach {
    background: linear-gradient(135deg, #eff6ff 0%, #bfdbfe 100%);
    border: 2px solid #60a5fa;
}

.purple-approach {
    background: linear-gradient(135deg, #f3f4f6 0%, #d8b4fe 100%);
    border: 2px solid #a855f7;
}

.approach-icon {
    color: inherit;
    margin-bottom: 20px;
}

.approach-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: inherit;
}

.approach-card p {
    margin-bottom: 20px;
    color: inherit;
    opacity: 0.8;
}

.approach-card ul {
    text-align: left;
    list-style: none;
    padding: 0;
}

.approach-card li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
    color: inherit;
    opacity: 0.9;
}

.approach-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: 600;
}

/* Team styles */
.team-section {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

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

.team-member {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    border-color: #60a5fa;
    box-shadow: 0 20px 40px rgba(96, 165, 250, 0.1);
}

.member-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.member-info h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #1e293b;
}

.member-role {
    color: #3b82f6;
    font-weight: 500;
    margin-bottom: 15px;
}

.member-certifications {
    margin-bottom: 15px;
}

.cert {
    display: inline-block;
    background: #3b82f6;
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    margin: 2px;
}

/* Values styles */
.values-section {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

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

.value-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: #60a5fa;
    box-shadow: 0 15px 30px rgba(96, 165, 250, 0.1);
}

.value-icon {
    color: #3b82f6;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1e293b;
}

.value-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Differentiators */
.differentiators {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.differentiators-content {
    margin-top: 40px;
}

.diff-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 15px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.diff-item:hover {
    border-color: #60a5fa;
    transform: translateX(10px);
}

.diff-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.diff-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1e293b;
}

.diff-content p {
    color: #64748b;
    line-height: 1.6;
}

/* Certifications */
.certifications {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

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

.cert-category h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1e293b;
}

.cert-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cert-badge {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Contact page styles */
.contact-main {
    max-width: 1400px;
    margin: 0 auto 80px;
    padding: 40px 20px;
}

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

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.contact-form-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 50px;
    border-radius: 20px;
    border: 2px solid #e2e8f0;
    min-height: fit-content;
}

@media (max-width: 768px) {
    .contact-form-section {
        padding: 30px;
    }
}

.form-header h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1e293b;
}

.form-header p {
    color: #64748b;
    margin-bottom: 30px;
    line-height: 1.6;
}

.detailed-contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .detailed-contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }
}

.detailed-contact-form .form-group {
    margin-bottom: 25px;
}

.detailed-contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #374151;
    font-size: 0.95rem;
}

.detailed-contact-form input,
.detailed-contact-form select,
.detailed-contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    font-family: inherit;
    box-sizing: border-box;
}

.detailed-contact-form input:focus,
.detailed-contact-form select:focus,
.detailed-contact-form textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.detailed-contact-form input:hover,
.detailed-contact-form select:hover,
.detailed-contact-form textarea:hover {
    border-color: #d1d5db;
}

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

.detailed-contact-form select {
    cursor: pointer;
    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='%23374151' 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 12px center;
    background-size: 20px;
    padding-right: 45px;
}

.urgency-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 10px;
}

.radio-option {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    padding: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.radio-option:hover {
    border-color: #3b82f6;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.1);
}

.radio-option:hover .radio-custom {
    border-color: #3b82f6;
    transform: scale(1.05);
}

.radio-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    margin: 0;
}

.radio-custom {
    width: 22px;
    height: 22px;
    border: 2px solid #d1d5db;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    margin-top: 1px;
    transition: all 0.3s ease;
    display: inline-block;
}

.radio-option input[type="radio"]:checked + .radio-custom {
    border-color: #3b82f6;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.radio-option input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    display: block;
}

.urgency-text {
    flex: 1;
}

.urgency-text strong {
    display: block;
    color: #374151;
    margin-bottom: 4px;
}

.urgency-text small {
    color: #6b7280;
    font-size: 0.9rem;
}

.checkbox-group {
    margin: 30px 0;
    padding: 15px 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    cursor: pointer;
    line-height: 1.6;
    padding: 12px 0;
    min-height: 60px;
}

.checkbox-custom {
    width: 22px;
    height: 22px;
    border: 2px solid #d1d5db;
    border-radius: 6px;
    position: relative;
    flex-shrink: 0;
    margin-top: 3px;
    transition: all 0.3s ease;
    display: inline-block;
}

.checkbox-label:hover .checkbox-custom {
    border-color: #3b82f6;
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.1);
}

.checkbox-text {
    flex: 1;
    line-height: 1.6;
    color: #374151;
    font-size: 0.95rem;
    padding-top: 1px;
}

.privacy-link {
    display: inline-flex;
    align-items: center;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 12px;
    margin-left: 0;
    padding: 6px 10px;
    border-radius: 6px;
    border-bottom: 1px solid transparent;
    font-size: 0.9rem;
}

.privacy-link:hover {
    color: #1d4ed8;
    background: rgba(59, 130, 246, 0.1);
    border-bottom-color: #3b82f6;
    transform: translateX(2px);
}

.privacy-link svg {
    transition: transform 0.3s ease;
}

.privacy-link:hover svg {
    transform: scale(1.1);
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    margin: 0;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    border-color: #3b82f6;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
    transform: scale(1.05);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.submit-button:active {
    transform: translateY(0);
}
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #e2e8f0;
}

.contact-info-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1e293b;
}

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

.contact-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-details strong {
    display: block;
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-details p {
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

.emergency-info {
    background: linear-gradient(135deg, #fef2f2 0%, #fecaca 100%);
    padding: 25px;
    border-radius: 15px;
    border: 2px solid #f87171;
}

.emergency-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.emergency-header h3 {
    color: #dc2626;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.emergency-header svg {
    color: #dc2626;
}

.emergency-info p {
    color: #991b1b;
    margin-bottom: 15px;
}

.emergency-contact,
.emergency-email {
    margin-bottom: 15px;
}

.emergency-contact strong,
.emergency-email strong {
    display: block;
    color: #dc2626;
    font-weight: 600;
}

.emergency-contact p,
.emergency-email p {
    color: #991b1b;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 5px 0;
}

.emergency-contact small {
    color: #b91c1c;
    font-size: 0.9rem;
}

.response-times {
    background: linear-gradient(135deg, #f0fdf4 0%, #bbf7d0 100%);
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #86efac;
}

.response-times h4 {
    color: #166534;
    font-weight: 600;
    margin-bottom: 15px;
}

.response-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(22, 101, 52, 0.2);
}

.response-item:last-child {
    border-bottom: none;
}

.response-type {
    color: #166534;
    font-weight: 500;
}

.response-time {
    color: #166534;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Contact FAQ */
.contact-faq {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

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

.faq-item {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #60a5fa;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(96, 165, 250, 0.1);
}

.faq-item h3 {
    color: #1e293b;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.faq-item p {
    color: #64748b;
    line-height: 1.6;
}

/* Alternative contact methods */
.alternative-contact {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

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

.contact-method {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
    border-color: #60a5fa;
    box-shadow: 0 15px 30px rgba(96, 165, 250, 0.1);
}

.method-icon {
    color: #3b82f6;
    margin-bottom: 20px;
}

.contact-method h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1e293b;
}

.contact-method p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.method-link {
    color: #3b82f6;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.method-link:hover {
    border-bottom-color: #3b82f6;
}

/* Legal pages styles */
.legal-intro {
    max-width: 1000px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.intro-content {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid #e2e8f0;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 20px;
}

.update-info {
    background: #3b82f6;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-block;
}

.legal-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.legal-section {
    margin-bottom: 50px;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.legal-section h2 {
    color: #1e293b;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #3b82f6;
}

.legal-section h3 {
    color: #374151;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 25px 0 15px;
}

.legal-text {
    color: #4b5563;
    line-height: 1.7;
}

.legal-text ul {
    margin: 15px 0;
    padding-left: 25px;
}

.legal-text li {
    margin-bottom: 8px;
}

.definition-item {
    margin-bottom: 15px;
    padding: 15px;
    background: #f9fafb;
    border-radius: 8px;
    border-left: 4px solid #3b82f6;
}

.purpose-item {
    margin-bottom: 25px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.purpose-item h3 {
    color: #1e293b;
    margin-bottom: 8px;
}

.retention-table {
    display: grid;
    gap: 15px;
    margin: 20px 0;
}

.retention-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 15px;
    background: #f9fafb;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.retention-type {
    font-weight: 600;
    color: #374151;
}

.retention-duration {
    color: #3b82f6;
    font-weight: 600;
    text-align: right;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 25px 0;
}

.right-item {
    background: #f0f9ff;
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #bfdbfe;
}

.right-item h3 {
    color: #1e40af;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.right-item p {
    color: #1e3a8a;
    margin: 0;
}

.rights-exercise {
    background: #ecfdf5;
    padding: 25px;
    border-radius: 10px;
    border: 2px solid #86efac;
    margin-top: 25px;
}

.rights-exercise h3 {
    color: #166534;
    margin-bottom: 15px;
}

.rights-exercise p {
    color: #15803d;
    margin-bottom: 10px;
}

.company-info,
.contact-info {
    background: #f8fafc;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #3b82f6;
    margin: 20px 0;
}

.complaint-info {
    background: #fef2f2;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #ef4444;
    margin: 20px 0;
}

.complaint-info h3 {
    color: #dc2626;
}

.complaint-info p {
    color: #991b1b;
}

/* Privacy summary */
.privacy-summary {
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 0 20px;
}

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

.summary-item {
    background: linear-gradient(135deg, #f0f9ff 0%, #bfdbfe 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #93c5fd;
    transition: all 0.3s ease;
}

.summary-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.2);
}

.summary-icon {
    color: #1d4ed8;
    margin-bottom: 20px;
}

.summary-item h3 {
    color: #1e40af;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.summary-item p {
    color: #1e3a8a;
    line-height: 1.6;
}

/* Terms obligations summary */
.obligations-summary {
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 0 20px;
}

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

.obligation-card {
    padding: 40px;
    border-radius: 20px;
    border: 2px solid;
}

.obligation-card.rights {
    background: linear-gradient(135deg, #f0fdf4 0%, #bbf7d0 100%);
    border-color: #86efac;
}

.obligation-card.duties {
    background: linear-gradient(135deg, #fef2f2 0%, #fecaca 100%);
    border-color: #fca5a5;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.rights .card-header {
    color: #166534;
}

.duties .card-header {
    color: #991b1b;
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.obligation-card ul {
    list-style: none;
    padding: 0;
}

.obligation-card li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.rights li {
    color: #166534;
}

.duties li {
    color: #991b1b;
}

.rights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #059669;
    font-weight: 600;
}

.duties li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #dc2626;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
    color: white;
    padding: 80px 0;
    margin: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    padding: 18px 35px;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
    color: white;
}

/* Améliorations tactiles */
@media (hover: none) and (pointer: coarse) {
    /* Désactive les effets hover sur mobile pour éviter les problèmes tactiles */
    .service-card:hover,
    .stat-item:hover,
    .image-container:hover {
        transform: none;
    }
    
    /* Augmente la zone de touch pour les boutons */
    .nav-menu a,
    .reserve-button,
    .submit-button,
    .cta-button {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Améliore la visibilité des liens */
    .nav-menu a {
        padding: 14px 20px;
    }
}

/* Améliorations responsive supplémentaires pour les pages de contenu */
@media (max-width: 768px) {
    /* Amélioration des cartes de service sur les pages intérieures */
    .service-detail-card {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .service-detail-card h3 {
        font-size: 1.1rem;
        line-height: 1.3;
        margin-bottom: 12px;
    }
    
    .service-detail-card ul {
        padding-left: 16px;
    }
    
    .service-detail-card li {
        font-size: 0.9rem;
        line-height: 1.5;
        padding: 6px 0;
    }
    
    /* Amélioration des sections de page */
    .mission-text,
    .legal-section {
        padding: 20px;
    }
    
    .mission-text h2 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .mission-statement {
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    /* Tables et grilles responsives */
    .retention-table,
    .rights-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .retention-item {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: left;
    }
    
    .retention-duration {
        text-align: left;
        font-weight: 700;
        color: #3b82f6;
    }
    
    /* Amélioration des cards d'approche */
    .approach-card,
    .value-card,
    .team-member {
        padding: 25px;
        margin-bottom: 20px;
    }
    
    /* Amélioration des steps de processus */
    .process-step {
        padding: 25px 20px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    /* Amélioration des éléments de différenciation */
    .diff-item {
        padding: 20px;
        margin-bottom: 25px;
    }
    
    .diff-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .diff-content h3 {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }
    
    /* Amélioration du contact info */
    .contact-info-card {
        padding: 25px;
        margin-bottom: 20px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .contact-icon {
        align-self: center;
        margin-bottom: 10px;
    }
    
    /* Emergency info responsive */
    .emergency-info {
        padding: 20px;
        text-align: center;
    }
    
    .emergency-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 640px) {
    /* Page headers plus compacts */
    .page-header {
        padding: 40px 0;
    }
    
    .page-header h1 {
        font-size: 1.6rem;
        line-height: 1.2;
        gap: 10px;
    }
    
    .page-icon {
        width: 30px;
        height: 30px;
    }
    
    .page-subtitle {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    /* Service sections plus compacts */
    .service-section {
        padding: 25px 15px;
        margin-bottom: 40px;
    }
    
    .service-icon-large {
        padding: 15px;
    }
    
    .service-icon-large svg {
        width: 48px;
        height: 48px;
    }
    
    .service-title-section h2 {
        font-size: 1.6rem;
        line-height: 1.2;
    }
    
    .service-tagline {
        font-size: 1rem;
        line-height: 1.3;
    }
    
    /* Legal sections plus lisibles */
    .legal-section {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .legal-section h2 {
        font-size: 1.4rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .legal-section h3 {
        font-size: 1.1rem;
        margin: 15px 0 10px;
    }
    
    /* Amélioration des listes */
    .legal-text ul {
        padding-left: 20px;
        margin: 10px 0;
    }
    
    .legal-text li {
        margin-bottom: 6px;
        line-height: 1.5;
        font-size: 0.9rem;
    }
    
    /* Purpose items plus compacts */
    .purpose-item {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .purpose-item h3 {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    
    /* Definition items */
    .definition-item {
        padding: 12px;
        margin-bottom: 12px;
    }
    
    /* Company et contact info */
    .company-info,
    .contact-info,
    .complaint-info {
        padding: 15px;
        margin: 15px 0;
    }
    
    /* Rights exercise */
    .rights-exercise {
        padding: 20px;
        margin-top: 20px;
    }
    
    /* CTA sections */
    .cta-section {
        padding: 50px 0;
        margin: 50px 0;
    }
    
    .cta-content h2 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    .cta-content p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    /* Ultra compact pour très petits écrans */
    .page-header h1 {
        font-size: 1.4rem;
    }
    
    .page-subtitle {
        font-size: 0.9rem;
    }
    
    .service-section {
        padding: 20px 12px;
    }
    
    .service-title-section h2 {
        font-size: 1.4rem;
    }
    
    .service-tagline {
        font-size: 0.9rem;
    }
    
    .legal-section {
        padding: 15px;
    }
    
    .legal-section h2 {
        font-size: 1.2rem;
    }
    
    .contact-info-card,
    .emergency-info {
        padding: 15px;
    }
    
    .cta-content h2 {
        font-size: 1.4rem;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Error Pages Styles */
.error-section {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, rgba(45, 27, 105, 0.05) 0%, rgba(138, 43, 226, 0.05) 100%);
    border-radius: 20px;
    margin: 40px 0;
}

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

.error-visual {
    margin-bottom: 40px;
}

.error-icon {
    color: var(--primary-color);
    margin-bottom: 20px;
    opacity: 0.8;
}

.error-code {
    font-size: 6rem;
    font-weight: 800;
    color: var(--primary-color);
    text-shadow: 0 0 30px rgba(138, 43, 226, 0.3);
    margin-bottom: 20px;
    font-family: 'Space Mono', monospace;
}

.error-text h1 {
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 700;
}

.error-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 50px;
    line-height: 1.6;
}

.error-suggestions {
    margin: 50px 0;
    text-align: left;
}

.error-suggestions h2 {
    text-align: center;
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.suggestions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.suggestion-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(138, 43, 226, 0.2);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.3s ease;
}

.suggestion-item:hover {
    transform: translateY(-5px);
    background: rgba(138, 43, 226, 0.1);
    border-color: var(--primary-color);
}

.suggestion-item svg {
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 5px;
}

.suggestion-item strong {
    color: var(--text-light);
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.suggestion-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

.error-actions {
    margin-top: 40px;
}

.primary-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.secondary-actions {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.link-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 10px 15px;
    border-radius: 8px;
}

.link-action:hover {
    background: rgba(138, 43, 226, 0.1);
    transform: translateY(-2px);
}

.link-action svg {
    color: var(--primary-color);
}

/* Button Styles for Error Pages */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 160px;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.4);
    text-decoration: none;
    color: white;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: white;
}

/* Search Section Styles */
.search-section {
    padding: 60px 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    margin: 40px 0;
    text-align: center;
}

.search-content {
    max-width: 600px;
    margin: 0 auto;
}

.search-content h2 {
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.search-content > p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.search-form {
    margin-bottom: 40px;
}

.search-input-container {
    position: relative;
    max-width: 400px;
    margin: 0 auto 20px;
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.search-input {
    width: 100%;
    padding: 15px 15px 15px 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.15);
}

.search-input::placeholder {
    color: var(--text-muted);
}

.search-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(138, 43, 226, 0.3);
}

.popular-searches h3 {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.search-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.search-tag {
    background: rgba(138, 43, 226, 0.2);
    color: var(--text-light);
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.search-tag:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Status Section Styles */
.status-section {
    padding: 60px 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    margin: 40px 0;
}

.status-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.status-content h2 {
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.status-content > p {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.status-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.status-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.08);
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
}

.status-indicator.operational {
    background: #22c55e;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.4);
}

.status-indicator.maintenance {
    background: #f59e0b;
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.4);
}

.status-indicator.degraded {
    background: #ef4444;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.4);
}

.status-indicator::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: inherit;
    opacity: 0.3;
    animation: pulse 2s infinite;
}

.status-info {
    text-align: left;
}

.status-info h3 {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.status-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.status-message {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 15px;
    padding: 25px;
}

.status-alert {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    text-align: left;
}

.status-alert svg {
    color: #f59e0b;
    flex-shrink: 0;
    margin-top: 2px;
}

.status-alert strong {
    color: var(--text-light);
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.status-alert p {
    color: var(--text-muted);
    margin: 0 0 10px 0;
    line-height: 1.5;
}

.status-alert small {
    color: #f59e0b;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Login Section Styles */
.login-section {
    padding: 60px 20px;
    background: rgba(138, 43, 226, 0.05);
    border-radius: 20px;
    margin: 40px 0;
}

.login-content {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.login-content h2 {
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.login-content > p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.security-notice {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.security-notice svg {
    color: #22c55e;
    flex-shrink: 0;
}

.security-notice p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
}

.auth-form {
    text-align: left;
    margin-bottom: 30px;
}

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

.form-group label {
    display: block;
    color: var(--text-light);
    margin-bottom: 8px;
    font-weight: 500;
}

.input-container {
    position: relative;
}

.input-container svg {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.input-container input {
    width: 100%;
    padding: 15px 15px 15px 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.input-container input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.15);
}

.input-container input::placeholder {
    color: var(--text-muted);
}

.auth-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.auth-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 8px;
}

.auth-link:hover {
    background: rgba(138, 43, 226, 0.1);
}

/* Mobile responsiveness for error pages */
@media (max-width: 768px) {
    .error-code {
        font-size: 4rem;
    }
    
    .error-text h1 {
        font-size: 2rem;
    }
    
    .error-description {
        font-size: 1rem;
    }
    
    .suggestions-grid {
        grid-template-columns: 1fr;
    }
    
    .primary-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .secondary-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .search-input-container {
        margin-bottom: 15px;
    }
    
    .search-tags {
        gap: 8px;
    }
    
    .search-tag {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
    
    .status-grid {
        grid-template-columns: 1fr;
    }
    
    .auth-options {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .error-section {
        padding: 60px 15px;
    }
    
    .error-code {
        font-size: 3rem;
    }
    
    .suggestion-item {
        padding: 20px;
    }
    
    .search-section,
    .status-section,
    .login-section {
        padding: 40px 15px;
    }
}

/* Navigation Active State */
.nav-menu a.active {
    color: var(--primary-color);
    background: rgba(138, 43, 226, 0.1);
    border-radius: 8px;
    padding: 8px 16px;
}