/* ==================================================
   DCSecurite - Page de Recrutement Styles
   Enhanced Visual UI/UX Version - Bigger Text Update
   ================================================== */

:root {
    --primary-bg: linear-gradient(135deg, #0a0a23 0%, #1a1a4a 25%, #2d2d6b 50%, #1a1a4a 75%, #0a0a23 100%);
    --secondary-bg: linear-gradient(135deg, #0f0f2e 0%, #25255a 100%);
    --accent-color: #00d4ff;
    --accent-secondary: #0099cc;
    --accent-hover: #00b8e6;
    --success-color: #00ff88;
    --warning-color: #ffaa00;
    --error-color: #ff4757;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.9);
    --text-muted: rgba(255, 255, 255, 0.7);
    --card-bg: rgba(255, 255, 255, 0.08);
    --card-hover: rgba(255, 255, 255, 0.12);
    --border-color: rgba(255, 255, 255, 0.15);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-hover: 0 16px 48px rgba(0, 0, 0, 0.6);
    --glow: 0 0 20px rgba(0, 212, 255, 0.3);
    --glow-hover: 0 0 30px rgba(0, 212, 255, 0.5);
    
    /* Enhanced Typography Scale - Bigger and More Responsive */
    --font-size-xs: 0.875rem;    /* 14px */
    --font-size-sm: 1rem;        /* 16px */
    --font-size-base: 1.125rem;  /* 18px */
    --font-size-lg: 1.25rem;     /* 20px */
    --font-size-xl: 1.5rem;      /* 24px */
    --font-size-2xl: 1.875rem;   /* 30px */
    --font-size-3xl: 2.25rem;    /* 36px */
    --font-size-4xl: 3rem;       /* 48px */
    --font-size-5xl: 3.75rem;    /* 60px */
    --font-size-6xl: 4.5rem;     /* 72px */
    --font-size-7xl: 5.25rem;    /* 84px */
    --font-size-8xl: 6rem;       /* 96px */
    --font-size-9xl: 7.5rem;     /* 120px */
    
    /* Responsive Typography Scale */
    --font-size-mobile-xs: 0.9375rem;   /* 15px */
    --font-size-mobile-sm: 1.0625rem;   /* 17px */
    --font-size-mobile-base: 1.1875rem; /* 19px */
    --font-size-mobile-lg: 1.3125rem;   /* 21px */
    --font-size-mobile-xl: 1.5625rem;   /* 25px */
    --font-size-mobile-2xl: 1.9375rem;  /* 31px */
    --font-size-mobile-3xl: 2.3125rem;  /* 37px */
    --font-size-mobile-4xl: 3.0625rem;  /* 49px */
    --font-size-mobile-5xl: 3.8125rem;  /* 61px */
    --font-size-mobile-6xl: 4.5625rem;  /* 73px */
    
    /* Line Heights for Better Readability */
    --line-height-tight: 1.2;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.7;
    --line-height-loose: 2;
}

* {
    box-sizing: border-box;
}

body {
    background: var(--primary-bg);
    background-size: 400% 400%;
    color: var(--text-primary);
    font-family: 'Nunito Sans', sans-serif;
    font-size: var(--font-size-base);
    line-height: var(--line-height-relaxed);
    margin: 0;
    padding: 0;
    animation: gradientShift 15s ease infinite;
    overflow-x: hidden;
}

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

/* Animated Background Elements */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.floating-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.floating-particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.floating-particle:nth-child(2) { top: 60%; left: 80%; animation-delay: 1s; }
.floating-particle:nth-child(3) { top: 40%; left: 20%; animation-delay: 2s; }
.floating-particle:nth-child(4) { top: 80%; left: 70%; animation-delay: 3s; }
.floating-particle:nth-child(5) { top: 30%; left: 90%; animation-delay: 4s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.3; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 0.8; }
}

/* Header Styles - Enhanced */
.recruitment-header {
    background: var(--secondary-bg);
    padding: 4rem 0 6rem;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.recruitment-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 153, 204, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(0, 212, 255, 0.05) 50%, transparent 70%);
    animation: headerGlow 8s ease-in-out infinite;
}

@keyframes headerGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

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

.header-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: 2.5rem;
    box-shadow: var(--glow);
    animation: badgePulse 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    min-height: 3rem;
}

.header-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); box-shadow: var(--glow); }
    50% { transform: scale(1.05); box-shadow: var(--glow-hover); }
}

.header-title {
    font-size: var(--font-size-8xl);
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: var(--line-height-tight);
    background: linear-gradient(135deg, #ffffff, var(--accent-color), #ffffff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 4s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

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

.header-subtitle {
    font-size: var(--font-size-xl);
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: var(--line-height-relaxed);
    animation: fadeInUp 1s ease-out 0.5s both;
}

.header-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
    background: var(--card-bg);
    padding: 2rem 1rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    animation: fadeInUp 1s ease-out 1s both;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-item:hover {
    background: var(--card-hover);
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-color);
}

.stat-number {
    font-size: var(--font-size-5xl);
    font-weight: 800;
    color: var(--accent-color);
    display: block;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.stat-label {
    font-size: var(--font-size-base);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
    position: relative;
}

/* Section Styles - Enhanced */
.section {
    margin-bottom: 8rem;
    position: relative;
}

.section-title {
    font-size: var(--font-size-5xl);
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    background: linear-gradient(135deg, #ffffff, var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
    border-radius: 3px;
    box-shadow: var(--glow);
}

.section-title::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0.1;
    animation: titleOrb 4s ease-in-out infinite;
}

@keyframes titleOrb {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.1; }
    50% { transform: translateX(-50%) scale(1.2); opacity: 0.2; }
}

/* About Section - Enhanced */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-content h3 {
    font-size: var(--font-size-3xl);
    margin-bottom: 2rem;
    color: var(--accent-color);
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.about-content p {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: var(--line-height-relaxed);
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.about-stat {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.about-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.about-stat:hover::before {
    transform: scaleX(1);
}

.about-stat:hover {
    background: var(--card-hover);
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-color);
}

.about-stat-number {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    color: var(--accent-color);
    display: block;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.about-stat-label {
    font-size: var(--font-size-base);
    color: var(--text-muted);
    margin-top: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Benefits Section - Enhanced */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.benefit-card {
    background: var(--card-bg);
    padding: 3rem 2rem;
    border-radius: 25px;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.benefit-card:hover {
    background: var(--card-hover);
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-color);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: white;
    box-shadow: var(--glow);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.benefit-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.benefit-card:hover .benefit-icon::before {
    transform: translateX(100%);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--glow-hover);
}

.benefit-title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.benefit-description {
    color: var(--text-secondary);
    line-height: var(--line-height-relaxed);
    font-size: var(--font-size-base);
}

/* Positions Section - Enhanced */
.positions-filter {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    color: var(--text-secondary);
    padding: 1.2rem 2.5rem;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.4s ease;
    font-size: var(--font-size-base);
    font-weight: 600;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 3.5rem;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.filter-btn:hover::before,
.filter-btn.active::before {
    opacity: 1;
}

.filter-btn:hover,
.filter-btn.active {
    color: white;
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: var(--glow);
}

.positions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
}

.position-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 25px;
    padding: 3rem 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.position-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.position-card:hover {
    background: var(--card-hover);
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-color);
}

.position-category {
    display: inline-block;
    background: rgba(0, 212, 255, 0.2);
    color: var(--accent-color);
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-size: var(--font-size-sm);
    font-weight: 700;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 212, 255, 0.3);
    transition: all 0.1s ease;
}

.position-card:hover .position-category {
    background: rgba(0, 212, 255, 0.3);
    border-color: var(--accent-color);
    transform: scale(1.05);
}

.position-title {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.position-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: var(--line-height-relaxed);
    font-size: var(--font-size-base);
}

.position-details {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.position-detail {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-muted);
    font-size: var(--font-size-base);
    font-weight: 500;
}

.position-detail i {
    color: var(--accent-color);
    font-size: var(--font-size-lg);
}

.apply-btn {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 15px;
    cursor: pointer;
    font-weight: 700;
    font-size: var(--font-size-base);
    transition: all 0.4s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: var(--glow);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 3.5rem;
}

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

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

.apply-btn:hover {
    background: linear-gradient(135deg, var(--accent-hover), var(--accent-secondary));
    transform: translateY(-3px);
    box-shadow: var(--glow-hover);
}

/* Contact Section - Enhanced */
.contact-section {
    background: var(--secondary-bg);
    padding: 5rem 3rem;
    border-radius: 30px;
    margin-top: 6rem;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(0, 153, 204, 0.1) 0%, transparent 50%);
    animation: contactGlow 6s ease-in-out infinite;
}

@keyframes contactGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.contact-info h3 {
    font-size: var(--font-size-4xl);
    margin-bottom: 2rem;
    color: var(--accent-color);
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: var(--font-size-lg);
    line-height: var(--line-height-relaxed);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: var(--text-secondary);
    padding: 1rem;
    background: var(--card-bg);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.1s ease;
    backdrop-filter: blur(10px);
}

.contact-method:hover {
    background: var(--card-hover);
    border-color: var(--accent-color);
    transform: translateX(10px);
}

.contact-method i {
    color: var(--accent-color);
    font-size: var(--font-size-xl);
}

.contact-form {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 25px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
    font-weight: 600;
    font-size: var(--font-size-base);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: var(--font-size-base);
    transition: all 0.1s ease;
    backdrop-filter: blur(5px);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

/* Dropdown/Select Options Styling for Dark Mode */
.form-group select option {
    background-color: #1a1a4a;
    color: var(--text-primary);
    padding: 0.8rem;
    font-size: var(--font-size-base);
    border: none;
    outline: none;
}

.form-group select option:hover {
    background-color: var(--accent-color);
    color: #000;
}

.form-group select option:checked {
    background-color: var(--accent-secondary);
    color: var(--text-primary);
}

/* Custom dropdown arrow */
.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-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='%2300d4ff' 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 1rem center;
    background-size: 1rem;
    padding-right: 3rem;
    cursor: pointer;
}

/* Firefox specific dropdown styling */
.form-group select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 var(--text-primary);
}

/* IE/Edge specific dropdown styling */
.form-group select::-ms-expand {
    display: none;
}

/* Additional dropdown option styling for better visibility */
.form-group select optgroup {
    background-color: #0a0a23;
    color: var(--accent-color);
    font-weight: bold;
    padding: 0.5rem;
}

.form-group select optgroup option {
    background-color: #1a1a4a;
    color: var(--text-primary);
    font-weight: normal;
    padding-left: 1.5rem;
}

/* Sub-options styles - Enhanced */
.sub-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.1s ease;
    border: 1px solid var(--border-color);
}

.sub-option:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
    transform: translateX(5px);
}

.sub-option input[type="checkbox"],
.sub-option input[type="radio"] {
    width: auto;
    margin: 0;
    accent-color: var(--accent-color);
    transform: scale(1.2);
}

.sub-option label {
    margin: 0;
    cursor: pointer;
    color: var(--text-secondary);
    font-size: var(--font-size-base);
    flex: 1;
    font-weight: 500;
}

.sub-option:hover label {
    color: var(--text-primary);
}

/* File input styling - Enhanced */
.form-group input[type="file"] {
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.1s ease;
    position: relative;
}

.form-group input[type="file"]:hover {
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.form-group input[type="file"]:focus {
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.form-group small {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-muted);
    font-size: var(--font-size-sm);
}

.submit-btn {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
    color: white;
    border: none;
    padding: 1.5rem 3rem;
    border-radius: 15px;
    cursor: pointer;
    font-weight: 700;
    font-size: var(--font-size-lg);
    transition: all 0.4s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: var(--glow);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 4rem;
}

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

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

.submit-btn:hover {
    background: linear-gradient(135deg, var(--accent-hover), var(--accent-secondary));
    transform: translateY(-3px);
    box-shadow: var(--glow-hover);
}

/* Footer - Enhanced */
.recruitment-footer {
    background: var(--secondary-bg);
    padding: 4rem 2rem;
    text-align: center;
    margin-top: 6rem;
    position: relative;
    overflow: hidden;
}

.recruitment-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 153, 204, 0.1) 0%, transparent 50%);
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.footer-title {
    font-size: var(--font-size-4xl);
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.footer-text {
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: var(--font-size-lg);
    line-height: var(--line-height-relaxed);
}

.footer-cta {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
    color: white;
    padding: 1.5rem 3.5rem;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    font-size: var(--font-size-lg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: var(--glow);
    position: relative;
    overflow: hidden;
    min-height: 4rem;
}

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

.footer-cta:hover::before {
    left: 100%;
}

.footer-cta:hover {
    background: linear-gradient(135deg, var(--accent-hover), var(--accent-secondary));
    transform: translateY(-3px);
    box-shadow: var(--glow-hover);
}

/* Animations - Enhanced */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

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

/* Loading Animation - Enhanced */
.loading {
    display: inline-block;
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--accent-color);
    animation: spin 1s ease-in-out infinite;
}

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

/* Success/Error Messages - Enhanced */
.message {
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: var(--font-size-base);
    backdrop-filter: blur(10px);
    border: 2px solid;
    animation: messageSlideIn 0.5s ease-out;
}

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

.message.success {
    background: rgba(0, 255, 136, 0.1);
    color: var(--success-color);
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
}

.message.error {
    background: rgba(255, 71, 87, 0.1);
    color: var(--error-color);
    border-color: rgba(255, 71, 87, 0.3);
    box-shadow: 0 0 20px rgba(255, 71, 87, 0.2);
}

/* Scroll Progress Indicator - Enhanced */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
    z-index: 1000;
    transition: width 0.1s ease;
    box-shadow: var(--glow);
}

/* Logo Navigation - Enhanced */
.logo-nav {
    position: fixed;
    top: 2rem;
    left: 2rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: all 0.4s ease;
    z-index: 1000;
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow);
    text-decoration: none;
    color: var(--text-primary);
}

.logo-nav:hover {
    background: var(--card-hover);
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.1s ease;
}

.logo-nav:hover .logo-img {
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(180deg);
    transform: scale(1.1);
}

.logo-text {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--text-primary);
    white-space: nowrap;
    transition: all 0.1s ease;
}

.logo-nav:hover .logo-text {
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

/* Back to Top Button - Enhanced */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 1000;
    box-shadow: var(--glow);
    font-size: 1.5rem;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: linear-gradient(135deg, var(--accent-hover), var(--accent-secondary));
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--glow-hover);
}

/* Responsive Design - Enhanced */
@media (max-width: 768px) {
    body {
        font-size: var(--font-size-mobile-base);
    }
    
    .logo-nav {
        top: 1rem;
        left: 1rem;
        padding: 0.8rem 1.2rem;
    }
    
    .logo-img {
        width: 32px;
        height: 32px;
    }
    
    .logo-text {
        font-size: var(--font-size-mobile-base);
    }
    
    /* Mobile dropdown styling */
    .form-group select {
        font-size: var(--font-size-mobile-base);
        padding: 1rem;
        padding-right: 2.5rem;
    }
    
    .form-group select option {
        font-size: var(--font-size-mobile-base);
        padding: 0.6rem;
    }
    
    .header-title {
        font-size: var(--font-size-mobile-6xl);
    }

    .header-subtitle {
        font-size: var(--font-size-mobile-lg);
    }

    .header-stats {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .positions-grid {
        grid-template-columns: 1fr;
    }

    .positions-filter {
        flex-direction: column;
        align-items: center;
    }

    .filter-btn {
        width: 250px;
        min-height: 3rem;
    }

    .main-content {
        padding: 4rem 1rem;
    }

    .section {
        margin-bottom: 5rem;
    }

    .section-title {
        font-size: var(--font-size-mobile-4xl);
    }

    .benefit-card,
    .position-card {
        padding: 2rem 1.5rem;
    }

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

    .contact-section {
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 480px) {
    body {
        font-size: var(--font-size-mobile-sm);
    }
    
    .logo-nav {
        top: 0.8rem;
        left: 0.8rem;
        padding: 0.6rem 1rem;
        gap: 0.5rem;
    }
    
    /* Small mobile dropdown styling */
    .form-group select {
        font-size: var(--font-size-mobile-sm);
        padding: 0.8rem;
        padding-right: 2.2rem;
    }
    
    .form-group select option {
        font-size: var(--font-size-mobile-sm);
        padding: 0.5rem;
    }
    
    .logo-img {
        width: 28px;
        height: 28px;
    }
    
    .logo-text {
        font-size: var(--font-size-mobile-sm);
    }
    
    .header-title {
        font-size: var(--font-size-mobile-5xl);
    }

    .header-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-number {
        font-size: var(--font-size-mobile-4xl);
    }

    .benefit-card,
    .position-card {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .section-title {
        font-size: var(--font-size-mobile-3xl);
    }

    .back-to-top {
        width: 50px;
        height: 50px;
        font-size: var(--font-size-mobile-lg);
    }
}

/* Enhanced Hover Effects */
.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    transition: transform 0.4s ease;
}

.position-card:hover .position-category {
    background: rgba(0, 212, 255, 0.3);
    transition: background 0.1s ease;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--secondary-bg);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--accent-hover), var(--accent-secondary));
}

/* Email Button Styles */
.email-cv-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    cursor: pointer;
    font-size: var(--font-size-sm);
    transition: all 0.1s ease;
    margin-top: 1rem;
    width: 100%;
    backdrop-filter: blur(10px);
}

.email-cv-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color);
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.2);
}

/* Selection Styles */
::selection {
    background: var(--accent-color);
    color: white;
}

::-moz-selection {
    background: var(--accent-color);
    color: white;
}

/* ==================================================
   MOBILE MENU STYLES
   ================================================== */

.mobile-menu-toggle {
    display: none;
    position: fixed;
    top: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    z-index: 1001;
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow);
    transition: all 0.1s ease;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 5px auto;
    transition: all 0.1s ease;
    border-radius: 2px;
}

.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);
}

/* Header CTA Button */
.header-cta {
    margin-top: 3rem;
    animation: fadeInUp 1s ease-out 1.5s both;
}

.header-apply-btn {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
    color: white;
    border: none;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    font-size: var(--font-size-lg);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--glow);
    position: relative;
    overflow: hidden;
}

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

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

.header-apply-btn:hover {
    background: linear-gradient(135deg, var(--accent-hover), var(--accent-secondary));
    transform: translateY(-3px);
    box-shadow: var(--glow-hover);
}

.header-apply-btn i {
    transition: transform 0.1s ease;
}

.header-apply-btn:hover i {
    transform: translateX(5px);
}

/* Error Message Styles */
.error-message {
    color: var(--error-color);
    font-size: var(--font-size-sm);
    margin-top: 0.5rem;
    display: none;
    animation: errorSlideIn 0.1s ease-out;
}

.error-message.show {
    display: block;
}

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

/* Form Validation Styles */
.form-group.error input,
.form-group.error textarea,
.form-group.error select {
    border-color: var(--error-color);
    box-shadow: 0 0 10px rgba(255, 71, 87, 0.3);
}

.form-group.success input,
.form-group.success textarea,
.form-group.success select {
    border-color: var(--success-color);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

/* ==================================================
   ENHANCED RESPONSIVE DESIGN
   ================================================== */

/* Large Desktop (1400px and up) */
@media (min-width: 1400px) {
    .main-content {
        max-width: 1400px;
        margin: 0 auto;
    }
    
    .header-title {
        font-size: var(--font-size-9xl);
    }
    
    .header-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
    
    .positions-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

/* Desktop (1200px to 1399px) */
@media (max-width: 1399px) and (min-width: 1200px) {
    .header-title {
        font-size: var(--font-size-8xl);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
    
    .positions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Tablet Landscape (992px to 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
    .header-title {
        font-size: var(--font-size-7xl);
    }
    
    .header-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .positions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .main-content {
        padding: 5rem 2rem;
    }
    
    .section {
        margin-bottom: 6rem;
    }
}

/* Tablet Portrait (768px to 991px) */
@media (max-width: 991px) and (min-width: 768px) {
    .header-title {
        font-size: var(--font-size-6xl);
    }
    
    .header-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .positions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .main-content {
        padding: 4rem 2rem;
    }
    
    .section {
        margin-bottom: 5rem;
    }
    
    .positions-filter {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .filter-btn {
        width: auto;
        min-width: 200px;
    }
}

/* Enhanced Mobile Styles (768px and below) */
@media (max-width: 768px) {
    body {
        font-size: var(--font-size-mobile-base);
    }
    
    /* Mobile Menu Toggle */
    .mobile-menu-toggle {
        display: block;
    }
    
    /* Enhanced Logo Navigation */
    .logo-nav {
        top: 1rem;
        left: 1rem;
        padding: 0.8rem 1.2rem;
        border-radius: 12px;
    }
    
    .logo-img {
        width: 32px;
        height: 32px;
    }
    
    .logo-text {
        font-size: var(--font-size-mobile-base);
    }
    
    /* Enhanced Header */
    .recruitment-header {
        padding: 6rem 1.5rem 4rem;
        min-height: 80vh;
    }
    
    .header-content {
        text-align: center;
        max-width: 100%;
    }
    
    .header-title {
        font-size: var(--font-size-mobile-6xl);
        line-height: 1.1;
        margin-bottom: 1.5rem;
    }

    .header-subtitle {
        font-size: var(--font-size-mobile-lg);
        margin-bottom: 2rem;
    }

    .header-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
    }
    
    .header-cta {
        margin-top: 2rem;
    }
    
    .header-apply-btn {
        padding: 1.2rem 2rem;
        font-size: var(--font-size-mobile-base);
        border-radius: 25px;
    }
    
    .stat-number {
        font-size: var(--font-size-mobile-4xl);
    }
    
    .stat-label {
        font-size: var(--font-size-mobile-sm);
    }

    /* Enhanced Main Content */
    .main-content {
        padding: 4rem 1rem;
    }

    .section {
        margin-bottom: 5rem;
    }

    .section-title {
        font-size: var(--font-size-mobile-4xl);
        text-align: center;
        margin-bottom: 2rem;
    }

    /* Enhanced About Section */
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .about-stat {
        padding: 1.5rem 1rem;
    }
    
    .about-stat-number {
        font-size: var(--font-size-mobile-3xl);
    }

    /* Enhanced Benefits Section */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefit-card {
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    .benefit-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 1.5rem;
    }
    
    .benefit-title {
        font-size: var(--font-size-mobile-xl);
        margin-bottom: 1rem;
    }
    
    .benefit-description {
        font-size: var(--font-size-mobile-base);
        line-height: 1.6;
    }

    /* Enhanced Positions Section */
    .positions-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .position-card {
        padding: 2rem 1.5rem;
    }
    
    .position-title {
        font-size: var(--font-size-mobile-xl);
    }
    
    .position-description {
        font-size: var(--font-size-mobile-base);
    }

    .positions-filter {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 3rem;
    }

    .filter-btn {
        width: 100%;
        max-width: 300px;
        min-height: 3.5rem;
        font-size: var(--font-size-mobile-base);
    }

    /* Enhanced Contact Section */
    .contact-section {
        padding: 3rem 1.5rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .contact-info h3 {
        font-size: var(--font-size-mobile-xl);
        margin-bottom: 1rem;
    }
    
    .contact-info p {
        font-size: var(--font-size-mobile-base);
    }
    
    .contact-methods {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-method {
        padding: 1rem;
        text-align: center;
    }

    /* Enhanced Form Elements */
    .form-group {
        margin-bottom: 2rem;
    }
    
    .form-group label {
        font-size: var(--font-size-mobile-base);
        margin-bottom: 0.8rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 1rem;
        font-size: var(--font-size-mobile-base);
        border-radius: 10px;
    }
    
    .form-group input[type="file"] {
        padding: 1rem;
    }
    
    .sub-option {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .sub-option label {
        font-size: var(--font-size-mobile-base);
    }
    
    .submit-btn {
        padding: 1.2rem 2rem;
        font-size: var(--font-size-mobile-lg);
        min-height: 3.5rem;
    }
    
    .email-cv-btn {
        padding: 1rem 1.5rem;
        font-size: var(--font-size-mobile-base);
    }

    /* Enhanced Footer */
    .recruitment-footer {
        padding: 3rem 1.5rem;
    }
    
    .footer-title {
        font-size: var(--font-size-mobile-3xl);
        margin-bottom: 1rem;
    }
    
    .footer-text {
        font-size: var(--font-size-mobile-base);
        margin-bottom: 2rem;
    }
    
    .footer-cta {
        padding: 1.2rem 2rem;
        font-size: var(--font-size-mobile-lg);
        min-height: 3.5rem;
    }

    /* Enhanced Back to Top */
    .back-to-top {
        width: 55px;
        height: 55px;
        font-size: var(--font-size-mobile-lg);
        bottom: 2rem;
        right: 2rem;
    }
    
    /* Enhanced Scroll Progress */
    .scroll-progress {
        height: 4px;
    }
    
    /* Enhanced Messages */
    .message {
        padding: 1rem 1.5rem;
        font-size: var(--font-size-mobile-base);
        margin: 1rem;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    body {
        font-size: var(--font-size-mobile-sm);
    }
    
    /* Enhanced Logo Navigation */
    .logo-nav {
        top: 0.8rem;
        left: 0.8rem;
        padding: 0.6rem 1rem;
        gap: 0.5rem;
        border-radius: 10px;
    }
    
    .logo-img {
        width: 28px;
        height: 28px;
    }
    
    .logo-text {
        font-size: var(--font-size-mobile-sm);
    }
    
    /* Enhanced Header */
    .recruitment-header {
        padding: 5rem 1rem 3rem;
        min-height: 70vh;
    }
    
    .header-title {
        font-size: var(--font-size-mobile-5xl);
        line-height: 1.1;
        margin-bottom: 1rem;
    }
    
    .header-subtitle {
        font-size: var(--font-size-mobile-base);
        margin-bottom: 1.5rem;
    }

    .header-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .header-cta {
        margin-top: 1.5rem;
    }
    
    .header-apply-btn {
        padding: 1rem 1.5rem;
        font-size: var(--font-size-mobile-sm);
        border-radius: 20px;
    }

    .stat-number {
        font-size: var(--font-size-mobile-3xl);
    }
    
    .stat-label {
        font-size: var(--font-size-xs);
    }

    /* Enhanced Main Content */
    .main-content {
        padding: 3rem 1rem;
    }

    .section {
        margin-bottom: 4rem;
    }

    .section-title {
        font-size: var(--font-size-mobile-3xl);
        margin-bottom: 1.5rem;
    }

    /* Enhanced About Section */
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .about-stat {
        padding: 1rem;
    }
    
    .about-stat-number {
        font-size: var(--font-size-mobile-2xl);
    }

    /* Enhanced Benefits Section */
    .benefit-card {
        padding: 1.5rem;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .benefit-title {
        font-size: var(--font-size-mobile-lg);
        margin-bottom: 0.8rem;
    }
    
    .benefit-description {
        font-size: var(--font-size-mobile-sm);
    }

    /* Enhanced Positions Section */
    .position-card {
        padding: 1.5rem;
    }
    
    .position-title {
        font-size: var(--font-size-mobile-lg);
    }
    
    .position-description {
        font-size: var(--font-size-mobile-sm);
    }
    
    .position-details {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .position-detail {
        font-size: var(--font-size-xs);
    }

    .filter-btn {
        width: 100%;
        min-height: 3rem;
        font-size: var(--font-size-mobile-sm);
    }

    /* Enhanced Contact Section */
    .contact-section {
        padding: 2rem 1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-info h3 {
        font-size: var(--font-size-mobile-lg);
    }
    
    .contact-info p {
        font-size: var(--font-size-mobile-sm);
    }
    
    .contact-method {
        padding: 0.8rem;
        font-size: var(--font-size-mobile-sm);
    }

    /* Enhanced Form Elements */
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-group label {
        font-size: var(--font-size-mobile-sm);
        margin-bottom: 0.6rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.8rem;
        font-size: var(--font-size-mobile-sm);
        border-radius: 8px;
    }
    
    .form-group input[type="file"] {
        padding: 0.8rem;
    }
    
    .sub-option {
        padding: 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .sub-option label {
        font-size: var(--font-size-mobile-sm);
    }
    
    .submit-btn {
        padding: 1rem 1.5rem;
        font-size: var(--font-size-mobile-base);
        min-height: 3rem;
    }
    
    .email-cv-btn {
        padding: 0.8rem 1.2rem;
        font-size: var(--font-size-mobile-sm);
    }

    /* Enhanced Footer */
    .recruitment-footer {
        padding: 2rem 1rem;
    }
    
    .footer-title {
        font-size: var(--font-size-mobile-2xl);
        margin-bottom: 0.8rem;
    }
    
    .footer-text {
        font-size: var(--font-size-mobile-sm);
        margin-bottom: 1.5rem;
    }
    
    .footer-cta {
        padding: 1rem 1.5rem;
        font-size: var(--font-size-mobile-base);
        min-height: 3rem;
    }

    /* Enhanced Back to Top */
    .back-to-top {
        width: 50px;
        height: 50px;
        font-size: var(--font-size-mobile-base);
        bottom: 1.5rem;
        right: 1.5rem;
    }
    
    /* Enhanced Messages */
    .message {
        padding: 0.8rem 1rem;
        font-size: var(--font-size-mobile-sm);
        margin: 0.8rem;
    }
}

/* Extra Small Mobile (360px and below) */
@media (max-width: 360px) {
    .header-title {
        font-size: var(--font-size-mobile-4xl);
    }
    
    .header-subtitle {
        font-size: var(--font-size-mobile-sm);
    }
    
    .section-title {
        font-size: var(--font-size-mobile-2xl);
    }
    
    .benefit-card,
    .position-card {
        padding: 1rem;
    }
    
    .contact-form {
        padding: 1rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.6rem;
        font-size: var(--font-size-xs);
    }
    
    .submit-btn {
        padding: 0.8rem 1.2rem;
        font-size: var(--font-size-mobile-sm);
    }
    
    .logo-nav {
        padding: 0.5rem 0.8rem;
        gap: 0.3rem;
    }
    
    .logo-img {
        width: 24px;
        height: 24px;
    }
    
    .logo-text {
        font-size: var(--font-size-xs);
    }
    
    .mobile-menu-toggle {
        width: 45px;
        height: 45px;
        top: 0.8rem;
        right: 0.8rem;
    }
    
    .mobile-menu-toggle span {
        width: 20px;
        height: 2px;
    }
    
    .header-apply-btn {
        padding: 0.8rem 1.2rem;
        font-size: var(--font-size-xs);
        border-radius: 15px;
    }
}

/* Landscape Orientation for Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .recruitment-header {
        min-height: 60vh;
        padding: 3rem 1.5rem 2rem;
    }
    
    .header-title {
        font-size: var(--font-size-mobile-5xl);
        margin-bottom: 1rem;
    }
    
    .header-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .stat-item {
        padding: 1rem 0.5rem;
    }
    
    .stat-number {
        font-size: var(--font-size-mobile-2xl);
    }
    
    .main-content {
        padding: 2rem 1rem;
    }
    
    .section {
        margin-bottom: 3rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .positions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Reduced Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .floating-particle {
        animation: none;
    }
    
    .benefit-card:hover,
    .position-card:hover {
        transform: none;
    }
    
    .header-apply-btn:hover,
    .banner-apply-btn:hover,
    .apply-btn:hover,
    .submit-btn:hover,
    .footer-cta:hover {
        transform: none;
    }
}

/* Focus Styles for Accessibility */
button:focus,
input:focus,
textarea:focus,
select:focus,
a:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Skip to Content Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--accent-color);
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10000;
}

.skip-link:focus {
    top: 6px;
}

/* Enhanced Keyboard Navigation */
@media (hover: none) and (pointer: coarse) {
    .benefit-card:hover,
    .position-card:hover,
    .filter-btn:hover,
    .apply-btn:hover,
    .submit-btn:hover,
    .footer-cta:hover,
    .header-apply-btn:hover,
    .banner-apply-btn:hover {
        transform: none;
        box-shadow: var(--shadow);
    }
}

/* ==================================================
   ANIMATED RECRUITMENT BANNER
   ================================================== */

.recruitment-banner {
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    border-radius: 20px;
    padding: 4rem 3rem;
    margin: 2rem 0;
    overflow: hidden;
    box-shadow: 
        0 20px 40px rgba(0, 212, 255, 0.1),
        0 0 0 1px rgba(0, 212, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.2);
}

/* Banner Background Elements */
.banner-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.cyber-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    opacity: 0.3;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Floating Icons */
.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.icon-item {
    position: absolute;
    font-size: 2rem;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
}

.icon-item:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.icon-item:nth-child(2) { top: 20%; right: 15%; animation-delay: 1s; }
.icon-item:nth-child(3) { top: 60%; left: 5%; animation-delay: 2s; }
.icon-item:nth-child(4) { top: 70%; right: 10%; animation-delay: 3s; }
.icon-item:nth-child(5) { top: 40%; left: 20%; animation-delay: 4s; }
.icon-item:nth-child(6) { top: 30%; right: 25%; animation-delay: 5s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Map Animation */
.map-animation {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.algeria-map,
.world-map {
    font-size: 3rem;
    animation: mapPulse 3s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.8));
}

.algeria-map { animation-delay: 0s; }
.world-map { animation-delay: 1.5s; }

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

.connection-lines {
    position: absolute;
    width: 100px;
    height: 20px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    animation: lineFlow 2s ease-in-out infinite;
}

.line-1 { width: 30px; top: 0; left: 0; animation-delay: 0s; }
.line-2 { width: 40px; top: 10px; left: 35px; animation-delay: 0.5s; }
.line-3 { width: 25px; top: 20px; left: 80px; animation-delay: 1s; }

@keyframes lineFlow {
    0% { opacity: 0; transform: scaleX(0); }
    50% { opacity: 1; transform: scaleX(1); }
    100% { opacity: 0; transform: scaleX(0); }
}

/* Banner Content */
.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.banner-header {
    margin-bottom: 3rem;
}

.banner-title {
    font-size: var(--font-size-5xl);
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.3)); }
    50% { filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.6)); }
}

.banner-subtitle {
    font-size: var(--font-size-lg);
    color: var(--text-muted);
    font-weight: 500;
    animation: subtitleSlide 2s ease-out;
}

@keyframes subtitleSlide {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Roles Container */
.roles-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.role-section {
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    animation: sectionFadeIn 1s ease-out;
}

.role-section:nth-child(2) { animation-delay: 0.1s; }

@keyframes sectionFadeIn {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

.role-title {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.role-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.role-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: all 0.1s ease;
    animation: itemSlideIn 0.5s ease-out;
}

.role-item:nth-child(1) { animation-delay: 0.1s; }
.role-item:nth-child(2) { animation-delay: 0.2s; }
.role-item:nth-child(3) { animation-delay: 0.1s; }

@keyframes itemSlideIn {
    0% { opacity: 0; transform: translateX(-20px); }
    100% { opacity: 1; transform: translateX(0); }
}

.role-item:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--accent-color);
    transform: translateX(10px);
}

.role-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 5px rgba(0, 212, 255, 0.5));
}

.role-text {
    font-size: var(--font-size-base);
    font-weight: 500;
    color: var(--text-primary);
}

/* Location Info */
.location-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    animation: locationFadeIn 1s ease-out 0.5s both;
}

@keyframes locationFadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.location-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.location-icon {
    font-size: 1.2rem;
    filter: drop-shadow(0 0 5px rgba(0, 212, 255, 0.5));
}

.location-text {
    font-size: var(--font-size-base);
    font-weight: 500;
    color: var(--text-primary);
}

/* Banner CTA */
.banner-cta {
    animation: ctaFadeIn 1s ease-out 0.8s both;
}

@keyframes ctaFadeIn {
    0% { opacity: 0; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1); }
}

.banner-apply-btn {
    background: linear-gradient(135deg, var(--accent-color) 0%, #00b8e6 100%);
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: var(--font-size-lg);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.1s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 
        0 10px 30px rgba(0, 212, 255, 0.3),
        0 0 0 1px rgba(0, 212, 255, 0.2);
    position: relative;
    overflow: hidden;
}

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

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

.banner-apply-btn:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 15px 40px rgba(0, 212, 255, 0.4),
        0 0 0 1px rgba(0, 212, 255, 0.3);
}

.btn-icon {
    transition: transform 0.1s ease;
}

.banner-apply-btn:hover .btn-icon {
    transform: translateX(5px);
}

/* Print Styles */
@media print {
    .animated-bg,
    .floating-particle,
    .scroll-progress,
    .back-to-top,
    .logo-nav {
        display: none !important;
    }
    
    .recruitment-header {
        background: white !important;
        color: black !important;
        padding: 2rem !important;
    }
    
    .main-content {
        padding: 1rem !important;
    }
    
    .section {
        margin-bottom: 2rem !important;
        page-break-inside: avoid;
    }
    
    .benefit-card,
    .position-card {
        border: 1px solid #ccc !important;
        box-shadow: none !important;
    }
    
    .recruitment-banner {
        background: white !important;
        color: black !important;
        box-shadow: none !important;
    }
    
         .banner-background {
         display: none !important;
     }
}

/* ==================================================
   BANNER RESPONSIVE DESIGN
   ================================================== */

/* Large Desktop (1400px and up) */
@media (min-width: 1400px) {
    .recruitment-banner {
        padding: 5rem 4rem;
        margin: 3rem 0;
    }
    
    .banner-title {
        font-size: var(--font-size-6xl);
    }
    
    .roles-container {
        gap: 4rem;
    }
    
    .role-section {
        padding: 2.5rem;
    }
}

/* Desktop (1200px to 1399px) */
@media (max-width: 1399px) and (min-width: 1200px) {
    .recruitment-banner {
        padding: 4rem 3rem;
    }
    
    .banner-title {
        font-size: var(--font-size-5xl);
    }
}

/* Tablet Landscape (992px to 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
    .recruitment-banner {
        padding: 3.5rem 2.5rem;
    }
    
    .roles-container {
        gap: 2.5rem;
    }
    
    .location-info {
        gap: 2rem;
    }
}

/* Tablet Portrait (768px to 991px) */
@media (max-width: 991px) and (min-width: 768px) {
    .recruitment-banner {
        padding: 3rem 2rem;
    }
    
    .roles-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .location-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .map-animation {
        bottom: 1rem;
        right: 1rem;
    }
    
    .algeria-map,
    .world-map {
        font-size: 2.5rem;
    }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
    .recruitment-banner {
        padding: 2.5rem 1.5rem;
        margin: 1.5rem 0;
        border-radius: 15px;
    }
    
    .banner-title {
        font-size: var(--font-size-mobile-4xl);
        line-height: 1.2;
    }
    
    .banner-subtitle {
        font-size: var(--font-size-mobile-base);
    }
    
    .roles-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .role-section {
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .role-title {
        font-size: var(--font-size-mobile-lg);
        margin-bottom: 1rem;
    }
    
    .role-item {
        padding: 0.8rem;
        gap: 0.8rem;
    }
    
    .role-icon {
        font-size: 1.2rem;
    }
    
    .role-text {
        font-size: var(--font-size-mobile-base);
    }
    
    .location-info {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .location-item {
        padding: 0.8rem 1.2rem;
        gap: 0.6rem;
    }
    
    .location-icon {
        font-size: 1rem;
    }
    
    .location-text {
        font-size: var(--font-size-mobile-base);
    }
    
    .banner-apply-btn {
        padding: 1rem 2rem;
        font-size: var(--font-size-mobile-base);
        border-radius: 25px;
    }
    
    .map-animation {
        bottom: 0.5rem;
        right: 0.5rem;
    }
    
    .algeria-map,
    .world-map {
        font-size: 2rem;
    }
    
    .connection-lines {
        width: 60px;
        height: 15px;
    }
    
    .line-1 { width: 20px; }
    .line-2 { width: 25px; left: 25px; }
    .line-3 { width: 15px; left: 50px; }
    
    .floating-icons .icon-item {
        font-size: 1.5rem;
    }
    
    .icon-item:nth-child(1) { top: 5%; left: 5%; }
    .icon-item:nth-child(2) { top: 15%; right: 10%; }
    .icon-item:nth-child(3) { top: 55%; left: 2%; }
    .icon-item:nth-child(4) { top: 65%; right: 5%; }
    .icon-item:nth-child(5) { top: 35%; left: 15%; }
    .icon-item:nth-child(6) { top: 25%; right: 20%; }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    .recruitment-banner {
        padding: 2rem 1rem;
        margin: 1rem 0;
    }
    
    .banner-title {
        font-size: var(--font-size-mobile-3xl);
    }
    
    .banner-subtitle {
        font-size: var(--font-size-mobile-sm);
    }
    
    .role-section {
        padding: 1rem;
    }
    
    .role-title {
        font-size: var(--font-size-mobile-base);
    }
    
    .role-item {
        padding: 0.6rem;
        gap: 0.6rem;
    }
    
    .role-icon {
        font-size: 1rem;
    }
    
    .role-text {
        font-size: var(--font-size-mobile-sm);
    }
    
    .location-item {
        padding: 0.6rem 1rem;
        gap: 0.5rem;
    }
    
    .location-icon {
        font-size: 0.9rem;
    }
    
    .location-text {
        font-size: var(--font-size-mobile-sm);
    }
    
    .banner-apply-btn {
        padding: 0.8rem 1.5rem;
        font-size: var(--font-size-mobile-sm);
    }
    
    .algeria-map,
    .world-map {
        font-size: 1.5rem;
    }
    
    .floating-icons .icon-item {
        font-size: 1.2rem;
    }
}

/* Extra Small Mobile (360px and below) */
@media (max-width: 360px) {
    .recruitment-banner {
        padding: 1.5rem 0.8rem;
    }
    
    .banner-title {
        font-size: var(--font-size-mobile-2xl);
    }
    
    .role-section {
        padding: 0.8rem;
    }
    
    .banner-apply-btn {
        padding: 0.7rem 1.2rem;
        font-size: var(--font-size-mobile-sm);
    }
    
    .map-animation {
        display: none;
    }
}

/* Landscape Orientation for Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .recruitment-banner {
        padding: 2rem 1.5rem;
    }
    
    .roles-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .location-info {
        flex-direction: row;
        gap: 1rem;
    }
    
    .map-animation {
        bottom: 0.5rem;
        right: 0.5rem;
    }
    
    .algeria-map,
    .world-map {
        font-size: 1.8rem;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .cyber-grid {
        background-size: 25px 25px;
    }
}

/* Reduced Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {
    .recruitment-banner * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .cyber-grid {
        animation: none;
    }
    
    .floating-icons .icon-item {
        animation: none;
    }
    
    .algeria-map,
    .world-map {
        animation: none;
    }
    
    .line {
        animation: none;
    }
    
    .banner-title {
        animation: none;
    }
    
    .banner-subtitle {
        animation: none;
    }
    
    .role-section {
        animation: none;
    }
    
    .role-item {
        animation: none;
    }
    
    .location-info {
        animation: none;
    }
    
    .banner-cta {
        animation: none;
    }
}  