/* ============================================
   Marketing Microsite - Premium CSS
   Designed for GDRFA Dubai Recruitment
   ============================================ */

/* ===== Variables ===== */
:root {
    /* Premium Dubai Light Palette */
    --gold-primary: #C5A059;       /* Dubai Gold */
    --gold-glow: #E6C68A;
    --navy-deep: #0f172a;          /* Slate-Midnight for text */
    --navy-accent: #1e293b;
    --white-pure: #FFFFFF;
    --bg-primary: #FFFFFF;
    --bg-soft: #f8fafc;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --glass-white: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);
    
    /* Correct Typography Scale */
    --font-size-hero: clamp(2.8rem, 6vw, 4.2rem);
    --font-size-h2: clamp(2rem, 4vw, 2.5rem);
    --font-size-body: 1.1rem;
    
    /* Shadows & Effects */
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.04);
    --shadow-premium: 0 20px 50px rgba(15, 23, 42, 0.06);
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    background-color: var(--bg-primary);
    color: var(--text-main);
    font-family: 'Cairo', 'Outfit', sans-serif;
    overflow-x: hidden;
    line-height: 1.7;
}

/* Glassmorphism Logic - Light Edition */
.glass-effect {
    background: var(--glass-white);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-premium);
}

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

/* ===== GDRFA Header - Two Rows Layout ===== */
.gdrfa-header {
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gdrfa-header.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

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

/* ===== Top Row: Logos Only ===== */
.header-top {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

.header-top-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 85px;
    gap: 2rem;
}

/* GDRFA Logo - Right Side */
.header-logo-right {
    flex-shrink: 0;
}

.gdrfa-logo {
    height: 55px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* Dubai Government Logo - Left Side */
.header-logo-left {
    flex-shrink: 0;
}

.dubai-gov-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* Mobile Toggle Button */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-toggle span {
    width: 24px;
    height: 2.5px;
    background: #374151;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

/* ===== Bottom Row: Navigation (Left) + Actions (Right) ===== */
.header-bottom {
    background: #ffffff;
    border-bottom: 3px solid var(--primary-gold);
}

.header-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* Navigation Menu - Left Side */
.header-navigation {
    display: flex;
    flex: 1;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    padding: 1rem 1.5rem;
    color: #1f2937;
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 600;
    transition: all 0.2s ease;
    white-space: nowrap;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-gold);
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.nav-link:hover {
    color: var(--primary-gold);
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.nav-link.active::after {
    transform: scaleX(1);
}

/* Action Buttons - Right Side */
.header-actions-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

/* Action Buttons Styling */
.action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.125rem;
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    color: #374151;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
    height: 40px;
    font-family: var(--font-primary);
}

.action-btn:hover {
    background: #f9fafb;
    border-color: #9ca3af;
    color: #111827;
}

.action-btn i {
    font-size: 1.125rem;
}

/* Search Button with Text */
.search-btn {
    min-width: 120px;
}

.search-btn i {
    order: 2;
}

.search-btn span {
    order: 1;
    color: #9ca3af;
    font-weight: 400;
}

.search-btn:hover span {
    color: #374151;
}

/* Accessibility Button - Icon Only */
.accessibility-btn {
    padding: 0.625rem;
    min-width: 40px;
}

/* Language Button */
.lang-btn {
    min-width: 85px;
}

/* Login Button - Dark */
.login-btn {
    background: var(--dubai-blue);
    border-color: var(--dubai-blue);
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 51, 102, 0.3);
}

.login-btn:hover {
    background: var(--dubai-blue-dark);
    border-color: var(--dubai-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 51, 102, 0.4);
}

/* ===== Hero Section ===== */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slider {
    position: relative;
}

.hero-slides {
    position: relative;
    width: 100%;
    height: 90vh;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.2s ease-in-out;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -3;
    transform: scale(1.05);
    transition: transform 8s cubic-bezier(0.4, 0, 0.2, 1), opacity 1.2s ease-in-out;
    opacity: 0;
}

.hero-slide.active .hero-slide-bg {
    transform: scale(1);
    opacity: 1;
}

.hero-slide .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

/* Light Mode Sections */
.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    background-color: var(--bg-primary);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0.85) 100%);
    z-index: 1;
}

.hero-content-premium {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 60px;
    background: var(--glass-white);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    box-shadow: var(--shadow-premium);
}

.hero-title-main {
    font-size: clamp(2.8rem, 6vw, 4.2rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--navy-deep);
}

.title-glow {
    color: var(--gold-primary);
    display: block;
}

.hero-subtitle-premium {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 45px;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-premium {
    background: var(--navy-deep);
    color: var(--white-pure) !important;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.15);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    border: none;
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.25);
    background: var(--gold-primary);
}

.btn-premium-outline {
    background: transparent;
    color: var(--navy-deep) !important;
    border: 2px solid var(--navy-deep);
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-premium-outline:hover {
    background: var(--navy-deep);
    color: var(--white-pure) !important;
    transform: translateY(-3px);
}

.btn-hero {
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: var(--font-weight-bold);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all var(--transition-base);
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
    color: var(--white);
    box-shadow: 0 10px 32px rgba(151, 110, 48, 0.45), 0 4px 14px rgba(0, 0, 0, 0.25);
    border: none;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-hero-primary::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.5s ease;
}

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

.btn-hero-primary:hover {
    background: linear-gradient(135deg, var(--primary-gold-light) 0%, var(--primary-gold) 100%);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(151, 110, 48, 0.55), 0 6px 20px rgba(0, 0, 0, 0.35);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.25);
    font-weight: var(--font-weight-semibold);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.btn-hero-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.btn-hero-secondary:hover::before {
    opacity: 1;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 2rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-full);
    color: var(--white);
    font-weight: var(--font-weight-semibold);
    font-size: 0.95rem;
    margin-bottom: var(--spacing-xl);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all var(--transition-base);
    letter-spacing: 0.3px;
}

.hero-badge i {
    color: var(--secondary-color);
    font-size: 1.1rem;
    filter: drop-shadow(0 2px 4px rgba(151, 110, 48, 0.3));
}

.hero-badge:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 10;
}

/* Hero Slider Controls */
.hero-slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 var(--spacing-lg);
    z-index: 10;
    pointer-events: none;
}

.hero-slider-prev,
.hero-slider-next {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    pointer-events: all;
    position: relative;
    overflow: hidden;
}

.hero-slider-prev::before,
.hero-slider-next::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(151, 110, 48, 0.3) 0%, transparent 70%);
    border-radius: var(--radius-full);
    transition: transform var(--transition-base);
}

.hero-slider-prev:hover,
.hero-slider-next:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--secondary-color);
    transform: scale(1.15);
    box-shadow: 0 6px 28px rgba(151, 110, 48, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.hero-slider-prev:hover::before,
.hero-slider-next:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.hero-slider-indicators {
    position: absolute;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-indicator {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all var(--transition-base);
    padding: 0;
    position: relative;
}

.hero-indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 20px;
    height: 20px;
    border-radius: var(--radius-full);
    background: rgba(151, 110, 48, 0.3);
    transition: transform var(--transition-base);
}

.hero-indicator.active,
.hero-indicator:hover {
    background: var(--white);
    border-color: var(--secondary-color);
    transform: scale(1.3);
    box-shadow: 0 0 12px rgba(151, 110, 48, 0.6);
}

.hero-indicator.active::before,
.hero-indicator:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

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

/* ===== Section Header ===== */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(151, 110, 48, 0.1) 0%, rgba(151, 110, 48, 0.05) 100%);
    border: 1px solid rgba(151, 110, 48, 0.2);
    border-radius: var(--radius-full);
    color: var(--primary-color);
    font-weight: var(--font-weight-semibold);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-md);
    transition: all var(--transition-base);
}

.section-badge i {
    color: var(--secondary-color);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: var(--font-weight-black);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-md);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
}

/* ===== Excellence Section ===== */
.excellence-section {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
    position: relative;
    overflow: hidden;
}

.excellence-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(151, 110, 48, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 69, 19, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.excellence-section .container {
    position: relative;
    z-index: 1;
}

.excellence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-2xl);
}

.excellence-card {
    position: relative;
    height: 100%;
}

.excellence-card-inner {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all var(--transition-base);
    border: 2px solid var(--gray-200);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.excellence-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(151, 110, 48, 0.03) 0%, rgba(139, 69, 19, 0.03) 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: 0;
}

.excellence-card:hover .excellence-card-inner {
    transform: translateY(-8px);
    border-color: var(--secondary-color);
    box-shadow: 0 12px 32px rgba(151, 110, 48, 0.2), 0 4px 16px rgba(0, 0, 0, 0.1);
}

.excellence-card:hover .excellence-card-inner::before {
    opacity: 1;
}

.excellence-icon-wrapper {
    position: relative;
    margin-bottom: var(--spacing-lg);
    z-index: 1;
}

.excellence-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--gdrfa-gold) 0%, var(--gdrfa-gold-dark) 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    box-shadow: 0 8px 24px rgba(151, 110, 48, 0.3), 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all var(--transition-base);
    position: relative;
    z-index: 2;
}

.excellence-icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(151, 110, 48, 0.15) 0%, transparent 70%);
    border-radius: var(--radius-full);
    opacity: 0;
    transition: all var(--transition-base);
    z-index: 1;
}

.excellence-card:hover .excellence-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 32px rgba(151, 110, 48, 0.4), 0 6px 16px rgba(0, 0, 0, 0.2);
}

.excellence-card:hover .excellence-icon-bg {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
}

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

.excellence-title {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    transition: color var(--transition-base);
}

.excellence-card:hover .excellence-title {
    color: var(--primary-dark);
}

.excellence-text {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 1rem;
    transition: color var(--transition-base);
}

.excellence-card:hover .excellence-text {
    color: var(--gray-700);
}

.excellence-hover-effect {
    position: absolute;
    bottom: var(--spacing-lg);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gdrfa-gold) 0%, var(--gdrfa-gold-dark) 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    opacity: 0;
    transition: all var(--transition-base);
    z-index: 1;
}

.excellence-card:hover .excellence-hover-effect {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ===== About & Strategy Sections ===== */
.about-section,
.strategy-section {
    padding: var(--spacing-3xl) 0;
}

.about-section {
    background: var(--white);
}

.strategy-section {
    background: var(--gray-50);
}

.about-content,
.strategy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.strategy-content {
    direction: ltr;
}

.strategy-content > * {
    direction: rtl;
}

.about-text,
.strategy-text {
    padding: var(--spacing-lg);
}

.about-description,
.strategy-description {
    font-size: 1.1rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.about-image-wrapper,
.strategy-image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.about-image-wrapper::before,
.strategy-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 77, 104, 0.1), rgba(0, 168, 150, 0.1));
    z-index: 1;
}

.about-image-wrapper img,
.strategy-image-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-lg);
    transition: transform var(--transition-base);
}

.about-image-wrapper:hover img,
.strategy-image-wrapper:hover img {
    transform: scale(1.05);
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: var(--font-weight-semibold);
    margin-top: var(--spacing-md);
    transition: all var(--transition-base);
    box-shadow: 0 4px 12px rgba(151, 110, 48, 0.3);
}

.btn-read-more:hover {
    background: linear-gradient(135deg, var(--primary-gold-light) 0%, var(--primary-gold) 100%);
    transform: translateX(-5px);
    box-shadow: 0 6px 20px rgba(151, 110, 48, 0.4);
}

/* ===== Quote Section ===== */
.quote-section {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, var(--secondary-blue-dark) 0%, #1a1a1a 25%, var(--primary-dark) 50%, #1a1a1a 75%, var(--secondary-blue-dark) 100%);
    position: relative;
    overflow: hidden;
    min-height: auto;
    display: flex;
    align-items: center;
}

.quote-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(151, 110, 48, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(139, 69, 19, 0.06) 0%, transparent 40%),
        linear-gradient(45deg, transparent 48%, rgba(151, 110, 48, 0.03) 49%, rgba(151, 110, 48, 0.03) 51%, transparent 52%);
    background-size: 100% 100%, 100% 100%, 60px 60px;
    opacity: 0.6;
    z-index: 0;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, transparent 20%, transparent 80%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.quote-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(45, 27, 14, 0.9) 100%);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 2px solid rgba(151, 110, 48, 0.2);
    border-radius: 24px;
    padding: var(--spacing-2xl) var(--spacing-2xl);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 10px 30px rgba(151, 110, 48, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.quote-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: var(--spacing-lg);
    gap: var(--spacing-sm);
}

.quote-emblem {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-beige) 50%, var(--primary-gold) 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    box-shadow: 
        0 8px 24px rgba(151, 110, 48, 0.4),
        0 0 0 4px rgba(151, 110, 48, 0.1),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
    margin-bottom: var(--spacing-sm);
}

.quote-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(151, 110, 48, 0.15);
    border: 1px solid rgba(151, 110, 48, 0.3);
    border-radius: var(--radius-full);
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: var(--font-weight-semibold);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.quote-main {
    position: relative;
    margin: var(--spacing-lg) 0;
    padding: var(--spacing-md) 0;
}

.quote-icon-left,
.quote-icon-right {
    position: absolute;
    font-size: 5rem;
    color: rgba(151, 110, 48, 0.15);
    line-height: 1;
}

.quote-icon-left {
    top: -20px;
    right: 0;
    transform: rotate(180deg);
}

.quote-icon-right {
    bottom: -20px;
    left: 0;
}

.quote-text {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: var(--font-weight-bold);
    line-height: 1.8;
    margin: 0;
    font-style: normal;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
    padding: 0 var(--spacing-xl);
}

.quote-footer {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-md);
}

.quote-divider {
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(151, 110, 48, 0.5), transparent);
    margin: 0 auto var(--spacing-xl);
    border-radius: 2px;
}

.quote-author {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-style: normal;
    font-size: 1rem;
}

.quote-author-title {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: var(--font-weight-semibold);
    letter-spacing: 0.5px;
}

.quote-author-name {
    font-size: 1.5rem;
    color: var(--white);
    font-weight: var(--font-weight-bold);
    margin: 0.25rem 0;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.quote-author-role {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: var(--font-weight-normal);
    margin-top: 0.25rem;
}

/* Quote Section Responsive */
@media (max-width: 768px) {
    .quote-section {
        padding: var(--spacing-2xl) 0;
        min-height: auto;
    }
    
    .quote-content {
        padding: var(--spacing-2xl) var(--spacing-lg);
        border-radius: 16px;
    }
    
    .quote-emblem {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .quote-icon-left,
    .quote-icon-right {
        font-size: 3.5rem;
    }
    
    .quote-text {
        padding: 0 var(--spacing-md);
        font-size: clamp(1.5rem, 5vw, 2rem);
    }
    
    .quote-author-name {
        font-size: 1.25rem;
    }
}

/* ===== Video Section ===== */
.video-section {
    padding: var(--spacing-3xl) 0;
    background: var(--white);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-2xl);
}

.video-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    background: var(--white);
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
    background: var(--gray-200);
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.1);
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.video-card:hover .video-play-overlay {
    opacity: 1;
}

.video-play-btn {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-full);
    background: var(--secondary-color);
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-lg);
}

.video-play-btn:hover {
    background: var(--secondary-dark);
    transform: scale(1.1);
}

.video-title {
    padding: var(--spacing-md);
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    text-align: center;
}

/* ===== Benefits Section ===== */
.benefits-section {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, #003E7E 0%, #6B5023 50%, var(--primary-gold) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(151, 110, 48, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(186, 156, 100, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.benefits-section .section-title,
.benefits-section .section-subtitle {
    color: var(--white);
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    margin-top: var(--spacing-2xl);
    align-items: start;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.benefit-item {
    display: flex;
    gap: var(--spacing-md);
    align-items: start;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--glass-bg-light);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: var(--glass-shadow);
}

.benefit-title {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 0.5rem;
}

.benefit-text {
    opacity: 0.9;
    line-height: 1.7;
}

.benefits-description {
    background: rgba(255, 255, 255, 0.1);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    line-height: 1.8;
}

.benefits-description p {
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
}

.benefits-description .btn-read-more {
    background: var(--white);
    color: var(--primary-color);
}

.benefits-description .btn-read-more:hover {
    background: var(--gray-100);
}

/* ===== Success Stories Section ===== */
.success-stories-section {
    padding: var(--spacing-3xl) 0;
    background: var(--gray-50);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-2xl);
}

.story-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all var(--transition-base);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-color);
    background: rgba(255, 255, 255, 1);
}

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

.story-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto var(--spacing-md);
    border-radius: var(--radius-full);
    overflow: hidden;
    border: 4px solid var(--secondary-color);
    box-shadow: var(--shadow-lg);
}

.story-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.story-card:hover .story-avatar img {
    transform: scale(1.1);
}

.story-name {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.story-role {
    color: var(--gray-600);
    margin-bottom: var(--spacing-md);
    font-size: 1rem;
}

.story-text {
    color: var(--gray-700);
    line-height: 1.7;
    font-style: italic;
}

/* ===== Journey Section ===== */
.journey-section {
    padding: var(--spacing-3xl) 0;
    background: var(--white);
}

.journey-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-2xl);
    position: relative;
}

.journey-step {
    text-align: center;
    position: relative;
    padding: var(--spacing-lg);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    margin: 0 auto var(--spacing-md);
    box-shadow: var(--shadow-lg);
}

.step-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-md);
}

.step-title {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.step-text {
    color: var(--gray-600);
    line-height: 1.7;
}

/* ===== FAQ Section ===== */
.faq-section {
    padding: var(--spacing-3xl) 0;
    background: var(--gray-50);
}

.faq-list {
    max-width: 900px;
    margin: var(--spacing-2xl) auto 0;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item.active {
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.faq-question:hover {
    background: var(--gray-50);
}

.faq-question h3 {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    margin: 0;
}

.faq-question i {
    color: var(--secondary-color);
    transition: transform var(--transition-base);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

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

.faq-answer p {
    padding: 0 var(--spacing-lg) var(--spacing-lg);
    color: var(--gray-700);
    line-height: 1.7;
}

/* ===== CTA Section ===== */
.cta-section {
    padding: var(--spacing-3xl) 0;
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #003E7E 0%, #6B5023 50%, var(--primary-gold) 100%);
    z-index: -2;
}

.cta-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(151, 110, 48, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 70% 60%, rgba(186, 156, 100, 0.1) 0%, transparent 60%);
    z-index: -1;
}

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

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
}

.cta-content {
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 1;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop-strong);
    -webkit-backdrop-filter: var(--glass-backdrop-strong);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    box-shadow: var(--glass-shadow);
    max-width: 900px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: var(--font-weight-black);
    margin-bottom: var(--spacing-md);
}

.cta-text {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xl);
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta {
    padding: 1.125rem 2.25rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: var(--font-weight-bold);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all var(--transition-base);
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
}

.btn-cta-primary {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(151, 110, 48, 0.4), 0 4px 12px rgba(0, 0, 0, 0.2);
    font-weight: var(--font-weight-bold);
}

.btn-cta-primary:hover {
    background: linear-gradient(135deg, var(--primary-gold-light) 0%, var(--primary-gold) 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(151, 110, 48, 0.5), 0 6px 16px rgba(0, 0, 0, 0.3);
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ===== Vacancies Page ===== */
.vacancies-hero {
    padding: var(--spacing-3xl) 0 var(--spacing-2xl);
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    min-height: 500px;
    display: flex;
    align-items: center;
}

.vacancies-hero .hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.vacancies-hero .hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--white);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
    background: none;
    -webkit-text-fill-color: var(--white);
    letter-spacing: -0.01em;
}

.vacancies-hero .hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
    max-width: 700px;
    margin: 0 auto;
}

.vacancies-hero .hero-breadcrumb {
    margin-bottom: var(--spacing-lg);
    font-size: 0.95rem;
    opacity: 0.9;
}

.vacancies-hero .hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.vacancies-hero .hero-breadcrumb a:hover {
    color: var(--white);
}

.vacancies-hero .hero-breadcrumb span {
    margin: 0 0.5rem;
    opacity: 0.7;
    color: rgba(255, 255, 255, 0.7);
}

.filters-section {
    padding: 1.5rem 0;
    background: linear-gradient(to bottom, var(--white) 0%, var(--gray-50) 100%);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 10;
    border-bottom: 2px solid var(--gray-200);
    margin-bottom: var(--spacing-xl);
}

.filters-section .container {
    max-width: 100%;
    padding: 0 var(--container-padding);
}

.filters-form {
    margin: 0;
}

.filters-compact {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin: 0;
    padding: 0.75rem;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.filter-search-wrapper {
    position: relative;
    flex: 1;
    min-width: 200px;
    max-width: 400px;
}

.filter-search-icon {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    font-size: 0.9rem;
    pointer-events: none;
}

.filter-input-compact,
.filter-select-compact {
    padding: 0.625rem 2.5rem 0.625rem 0.875rem;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
    background: var(--white);
    width: 100%;
    height: 42px;
    color: var(--gray-700);
}

.filter-input-compact::placeholder {
    color: var(--gray-400);
    font-size: 0.875rem;
}

.filter-input-compact:focus,
.filter-select-compact:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(151, 110, 48, 0.15);
    background: var(--white);
}

.filter-select-compact {
    padding: 0.5rem 2rem 0.5rem 0.75rem;
    min-width: 140px;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234b5563' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 0.75rem center;
    background-size: 12px;
}

.filter-select-compact option {
    padding: 0.5rem;
}

.btn-filter-compact {
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-sm);
    font-weight: var(--font-weight-semibold);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-size: 0.9rem;
    white-space: nowrap;
    height: 42px;
    justify-content: center;
    min-width: 110px;
}

.btn-filter-compact.btn-filter-secondary {
    padding: 0.625rem;
    min-width: 42px;
    width: 42px;
    flex-shrink: 0;
    height: 42px;
}

.btn-filter-compact.btn-filter-secondary span {
    display: none;
}

.btn-filter-primary {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(151, 110, 48, 0.25);
}

.btn-filter-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(151, 110, 48, 0.35);
}

.btn-filter-secondary {
    background: var(--gray-200);
    color: var(--gray-700);
}

.btn-filter-secondary:hover {
    background: var(--gray-300);
}

.vacancies-results {
    padding: var(--spacing-2xl) 0;
    background: var(--gray-50);
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.results-count h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: var(--font-weight-bold);
}

.count-number {
    color: var(--secondary-color);
}

.results-sort {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.results-sort label {
    font-weight: var(--font-weight-semibold);
    color: var(--gray-700);
}

.sort-select {
    padding: 0.5rem 1rem;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    cursor: pointer;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--spacing-lg);
}

.job-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all var(--transition-base);
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-color);
}

.job-card-header {
    padding: var(--spacing-lg);
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: var(--spacing-md);
}

.job-title-section {
    flex: 1;
}

.job-title {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.job-id {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.job-badge {
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: var(--font-weight-semibold);
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    white-space: nowrap;
}

.job-badge-urgent {
    background: #fee2e2;
    color: #dc2626;
}

.job-card-body {
    padding: var(--spacing-lg);
    flex: 1;
}

.job-info-row {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    flex-wrap: wrap;
}

.job-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-700);
    font-size: 0.9rem;
}

.job-info-item i {
    color: var(--secondary-color);
    width: 18px;
}

.job-description {
    margin-top: var(--spacing-md);
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 0.95rem;
}

.job-card-footer {
    padding: var(--spacing-lg);
    border-top: 1px solid var(--gray-200);
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.btn-job {
    flex: 1;
    padding: 0.875rem 1.25rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all var(--transition-fast);
    text-align: center;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
}

.btn-job-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(151, 110, 48, 0.3);
}

.btn-job-primary:hover {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(151, 110, 48, 0.4);
}

.btn-job-secondary {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(151, 110, 48, 0.3);
}

.btn-job-secondary:hover {
    background: linear-gradient(135deg, var(--primary-gold-light) 0%, var(--primary-gold) 100%);
    box-shadow: 0 6px 16px rgba(151, 110, 48, 0.4);
}

.no-results {
    text-align: center;
    padding: var(--spacing-3xl) 0;
}

.no-results-icon {
    font-size: 5rem;
    color: var(--gray-400);
    margin-bottom: var(--spacing-lg);
}

.no-results h3 {
    font-size: 2rem;
    color: var(--gray-700);
    margin-bottom: var(--spacing-sm);
}

.no-results p {
    color: var(--gray-600);
    margin-bottom: var(--spacing-lg);
}

/* ===== Pagination ===== */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-2xl);
    flex-wrap: wrap;
}

.pagination-btn,
.pagination-page {
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid var(--gray-300);
    background: var(--white);
    color: var(--gray-700);
    min-width: 44px;
    justify-content: center;
}

.pagination-page:hover,
.pagination-btn:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.pagination-page.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.pagination-ellipsis {
    padding: 0.75rem 0.5rem;
    color: var(--gray-500);
}

/* ===== Job Details Page ===== */
.job-details-hero {
    padding: var(--spacing-3xl) 0 var(--spacing-2xl);
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    min-height: 500px;
    display: flex;
    align-items: center;
}

.job-details-hero .hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.job-details-hero .hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--white);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
    background: none;
    -webkit-text-fill-color: var(--white);
    letter-spacing: -0.01em;
}

.job-details-hero .hero-breadcrumb {
    margin-bottom: var(--spacing-lg);
    font-size: 0.95rem;
    opacity: 0.9;
}

.job-details-hero .hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.job-details-hero .hero-breadcrumb a:hover {
    color: var(--white);
}

.job-details-hero .hero-breadcrumb span {
    margin: 0 0.5rem;
    opacity: 0.7;
    color: rgba(255, 255, 255, 0.7);
}

.job-meta-badges {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    margin-top: var(--spacing-lg);
    justify-content: center;
}

.job-meta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 0.95rem;
    font-weight: var(--font-weight-semibold);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transition: all var(--transition-base);
}

.job-meta-badge i {
    font-size: 1rem;
    color: var(--secondary-color);
    filter: drop-shadow(0 2px 4px rgba(151, 110, 48, 0.3));
}

.job-meta-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.job-overview-section {
    padding: var(--spacing-2xl) 0;
    background: var(--gray-50);
}

.job-overview-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-2xl);
}

.job-quick-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.quick-info-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
}

.quick-info-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.quick-info-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(151, 110, 48, 0.2);
}

.quick-info-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.quick-info-label {
    font-size: 0.8rem;
    color: var(--gray-500);
    font-weight: var(--font-weight-normal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.quick-info-value {
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    font-size: 1.1rem;
    line-height: 1.3;
}

.job-section {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--spacing-lg);
    border: 1px solid var(--gray-200);
}

.job-section .section-title {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-color);
}

.job-section .section-title i {
    color: var(--secondary-color);
}

.job-content {
    margin-bottom: var(--spacing-lg);
}

.job-content:last-child {
    margin-bottom: 0;
}

.content-subtitle {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.content-text {
    color: var(--gray-700);
    line-height: 1.8;
    font-size: 1.05rem;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
}

.skill-tag {
    padding: 0.5rem 1rem;
    background: var(--gray-100);
    border-radius: var(--radius-full);
    color: var(--gray-700);
    font-size: 0.9rem;
    font-weight: var(--font-weight-semibold);
    border: 1px solid var(--gray-300);
}

.requirements-list {
    list-style: none;
    padding: 0;
}

.requirements-list li {
    padding: var(--spacing-sm) 0;
    padding-right: var(--spacing-lg);
    position: relative;
    color: var(--gray-700);
    line-height: 1.7;
    font-size: 1.05rem;
}

.requirements-list li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: var(--secondary-color);
    font-weight: var(--font-weight-bold);
    font-size: 1.1rem;
}

/* ===== Sidebar ===== */
.job-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.sidebar-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.card-header {
    padding: var(--spacing-lg);
    background: var(--primary-color);
    color: var(--white);
}

.card-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
}

.card-content {
    padding: var(--spacing-lg);
}

.apply-stats {
    display: flex;
    justify-content: space-around;
    padding: var(--spacing-md) 0;
    margin-bottom: var(--spacing-lg);
    border-bottom: 1px solid var(--gray-200);
}

.apply-stat {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.apply-stat i {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.apply-stat span {
    font-size: 0.9rem;
    color: var(--gray-600);
    font-weight: var(--font-weight-semibold);
}

.btn-apply {
    width: 100%;
    padding: 1rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: var(--font-weight-bold);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all var(--transition-base);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    margin-bottom: var(--spacing-sm);
}

.btn-apply-primary {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(151, 110, 48, 0.4);
    font-weight: var(--font-weight-bold);
}

.btn-apply-primary:hover {
    background: linear-gradient(135deg, var(--primary-gold-light) 0%, var(--primary-gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(151, 110, 48, 0.5);
}

.btn-apply-secondary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(151, 110, 48, 0.3);
}

.btn-apply-secondary:hover {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    box-shadow: 0 6px 16px rgba(151, 110, 48, 0.4);
}

.apply-note {
    text-align: center;
    color: var(--gray-500);
    margin: var(--spacing-sm) 0;
    font-size: 0.9rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid var(--gray-200);
}

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

.summary-label {
    color: var(--gray-500);
    font-weight: var(--font-weight-normal);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.summary-value {
    color: var(--primary-color);
    font-weight: var(--font-weight-bold);
    font-size: 1rem;
    text-align: left;
}

.status-badge {
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: var(--font-weight-semibold);
    display: inline-block;
}

.status-active {
    background: #d1fae5;
    color: #065f46;
}

.related-jobs-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.related-job-item {
    padding: var(--spacing-md);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all var(--transition-fast);
    display: block;
}

.related-job-item:hover {
    border-color: var(--secondary-color);
    background: var(--gray-50);
    transform: translateX(-5px);
}

.related-job-item h4 {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 0.25rem;
}

.related-job-item span {
    color: var(--gray-600);
    font-size: 0.875rem;
}

.job-cta-section {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, #003E7E 0%, #6B5023 50%, var(--primary-gold) 100%);
    color: var(--white);
    position: relative;
}

.job-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(151, 110, 48, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 70% 60%, rgba(186, 156, 100, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.job-cta-section .cta-content h2 {
    color: var(--white);
}

.job-cta-section .cta-content p {
    color: var(--white);
    opacity: 0.95;
}

/* ===== Footer ===== */
.marketing-footer {
    background: var(--gray-100);
    color: var(--gray-700);
    padding: var(--spacing-lg) 0;
    border-top: 1px solid var(--gray-200);
}

.footer-bottom {
    text-align: center;
    padding: 0;
}

.footer-bottom p {
    margin: 0;
    color: var(--gray-600);
    font-size: 0.9rem;
}

/* ===== Scroll to Top ===== */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    font-size: 1.25rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--secondary-dark);
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* ===== Main Content ===== */
.marketing-main {
    min-height: calc(100vh - 200px);
}

/* Mobile Navigation Menu */
.main-navigation.mobile-active {
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #e5e7eb;
    z-index: 999;
}

@media (max-width: 1024px) {
    .main-navigation.mobile-active {
        display: flex;
    }
    
    .main-navigation.mobile-active .nav-item {
        width: 100%;
    }
    
    .main-navigation.mobile-active .nav-link {
        width: 100%;
        padding: 1rem;
        justify-content: center;
        font-size: 1rem;
    }
}

/* ===== Responsive Design ===== */
@media (max-width: 1200px) {
    .filters-compact {
        gap: 0.5rem;
    }
    
    .filter-select-compact {
        min-width: 140px;
    }
}

@media (max-width: 1024px) {
    .about-content,
    .strategy-content,
    .benefits-content,
    .job-overview-grid {
        grid-template-columns: 1fr;
    }
    
    .strategy-content {
        direction: rtl;
    }
    
    .strategy-image {
        order: -1;
    }
    
}

/* ===== Responsive Design ===== */
@media (max-width: 1200px) {
    .header-container {
        padding: 0 1.5rem;
    }
    
    .nav-menu {
        gap: 0;
    }
    
    .nav-link {
        padding: 1rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .action-btn {
        padding: 0.5rem 0.875rem;
        font-size: 0.8125rem;
    }
    
    .header-top-content {
        gap: 1.5rem;
    }
}

@media (max-width: 1024px) {
    .header-navigation,
    .header-actions-right {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .header-top-content {
        height: 70px;
        gap: 1rem;
    }
    
    .gdrfa-logo {
        height: 45px;
    }
    
    .dubai-gov-logo {
        height: 40px;
    }
    
    /* Mobile Navigation - Full Screen Overlay */
    .header-bottom-content {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: #ffffff;
        flex-direction: column;
        padding: 2rem 1rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.3s ease;
    }
    
    .header-bottom-content.mobile-active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .header-bottom-content.mobile-active .header-navigation,
    .header-bottom-content.mobile-active .header-actions-right {
        display: flex;
    }
    
    .header-bottom-content.mobile-active .header-navigation {
        flex: 0;
        margin-bottom: 2rem;
    }
    
    .header-bottom-content.mobile-active .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
    }
    
    .header-bottom-content.mobile-active .nav-item {
        width: 100%;
    }
    
    .header-bottom-content.mobile-active .nav-link {
        width: 100%;
        padding: 1rem;
        justify-content: center;
        font-size: 1rem;
        border-radius: 4px;
    }
    
    .header-bottom-content.mobile-active .nav-link:hover {
        background: #f9fafb;
    }
    
    .header-bottom-content.mobile-active .header-actions-right {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }
    
    .header-bottom-content.mobile-active .action-btn {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1rem;
        height: auto;
    }
    
    .header-bottom-content.mobile-active .action-btn span {
        display: inline !important;
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: 1rem;
    }
    
    .header-container {
        padding: 0 1rem;
    }
    
    .header-top-content {
        height: 60px;
        gap: 0.5rem;
    }
    
    .gdrfa-logo {
        height: 38px;
    }
    
    .dubai-gov-logo {
        height: 35px;
    }
    
    .header-logo-left,
    .header-logo-right {
        max-width: 100px;
    }
    
    .gdrfa-logo,
    .dubai-gov-logo {
        max-width: 100%;
        height: auto;
    }
    
    .header-bottom-content {
        top: 60px;
        height: calc(100vh - 60px);
        padding: 1.5rem 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-slider-controls {
        padding: 0 var(--spacing-sm);
    }
    
    .hero-slider-prev,
    .hero-slider-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .hero-slider-indicators {
        bottom: 5rem;
    }
    
    .hero-slide {
        min-height: 80vh;
    }
    
    .hero-slides {
        height: 80vh;
    }
    
    .excellence-grid,
    .video-grid,
    .stories-grid,
    .journey-steps,
    .jobs-grid {
        grid-template-columns: 1fr;
    }
    
    .excellence-card-inner {
        padding: var(--spacing-lg);
    }
    
    .filters-compact {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .filter-search-wrapper {
        max-width: 100%;
        width: 100%;
    }
    
    .filter-select-compact {
        width: 100%;
        min-width: 100%;
    }
    
    .btn-filter-compact {
        width: 100%;
    }
    
    .btn-filter-compact.btn-filter-secondary {
        width: 100%;
        min-width: 100%;
    }
    
    .results-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .job-quick-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }
    
    .btn-hero {
        width: 100%;
        justify-content: center;
    }
    
    .cta-actions {
        flex-direction: column;
    }
    
    .btn-cta {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   Accessibility (ذوي الاحتياجات الخاصة)
   ============================================ */
.skip-link {
    position: absolute;
    top: -100px;
    right: 0.5rem;
    z-index: 10000;
    padding: 0.75rem 1.25rem;
    background: var(--primary-gold, #976E30);
    color: var(--white, #fff);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: top 0.2s ease;
}
.skip-link:focus {
    top: 0.5rem;
    outline: 3px solid var(--secondary-blue, #001489);
    outline-offset: 2px;
}
:focus-visible {
    outline: 2px solid var(--primary-gold, #976E30);
    outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}
