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

html {
    overflow-x: hidden;
}

:root {
    /* Base Colors */
    --dark-red: #8B0000;
    --dark-red-light: #A52A2A;
    --dark-red-darker: #660000;
    --dark-red-hover: #4a0000;
    --white: #FFFFFF;
    --black: #000000;
    --black-light: #1a1a1a;
    --gray-light: #F5F5F5;
    --gray-medium: #CCCCCC;
    --gray-dark: #333333;
    
    /* Header Colors */
    --header-bg-start: var(--dark-red);
    --header-bg-middle: var(--dark-red-darker);
    --header-bg-end: var(--dark-red);
    --header-text: var(--white);
    --header-border: rgba(255, 255, 255, 0.1);
    --header-shadow: rgba(0, 0, 0, 0.3);
    --header-glow: rgba(139, 0, 0, 0.2);
    
    /* Logo Colors */
    --logo-text: var(--white);
    --logo-hover-scale: 1.05;
    
    /* Menu Colors */
    --menu-text: var(--white);
    --menu-text-hover: var(--gray-light);
    --menu-underline: var(--white);
    --menu-glow: rgba(255, 255, 255, 0.5);
    --menu-bg-hover: rgba(255, 255, 255, 0.1);
    
    /* Button Colors */
    --btn-bg-start: var(--black);
    --btn-bg-end: var(--black-light);
    --btn-text: var(--white);
    --btn-border: var(--black);
    --btn-hover-bg-start: var(--dark-red);
    --btn-hover-bg-end: var(--dark-red-hover);
    --btn-hover-text: var(--white);
    --btn-hover-border: var(--dark-red);
    --btn-shadow: rgba(0, 0, 0, 0.3);
    --btn-glow: rgba(139, 0, 0, 0.7);
    --btn-hover-shadow: rgba(139, 0, 0, 0.6);
    --btn-hover-glow: rgba(139, 0, 0, 0.5);
    
    /* Particle Colors */
    --particle-color: rgba(255, 255, 255, 0.05);
    --particle-glow: rgba(255, 255, 255, 0.08);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--white);
    color: var(--black);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

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

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

/* TOP SECTION - Header */
.top-section {
    background: linear-gradient(135deg, var(--header-bg-start) 0%, var(--header-bg-middle) 50%, var(--header-bg-end) 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    color: var(--header-text);
    padding: 25px 0;
    box-shadow: 0 4px 20px var(--header-shadow), 0 0 40px var(--header-glow);
    border-bottom: 1px solid var(--header-border);
    overflow: visible;
    --cursor-x: 50%;
    --cursor-y: 50%;
}

.header-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, var(--particle-color) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, var(--particle-color) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, var(--particle-color) 0%, transparent 30%),
        radial-gradient(circle, rgba(0, 0, 0, 0.15) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 100% 100%, 15px 15px;
    background-position: 0 0, 0 0, 0 0, 0 0;
    animation: dotsMove 60s linear infinite;
    pointer-events: none;
}

@keyframes dotsMove {
    0% {
        background-position: 0 0, 0 0, 0 0, 0 0;
    }
    25% {
        background-position: 0 0, 0 0, 0 0, 7.5px 7.5px;
    }
    50% {
        background-position: 0 0, 0 0, 0 0, 15px 0;
    }
    75% {
        background-position: 0 0, 0 0, 0 0, 7.5px -7.5px;
    }
    100% {
        background-position: 0 0, 0 0, 0 0, 0 0;
    }
}

.top-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--particle-color) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: particleFloat 20s linear infinite;
    pointer-events: none;
}

.top-section .container::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--particle-glow) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    left: var(--cursor-x);
    top: var(--cursor-y);
    pointer-events: none;
    transition: left 0.1s ease, top 0.1s ease;
    z-index: -1;
}

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

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

.top-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 20px;
    animation: slideDown 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.mobile-menu-toggle {
    display: none;
    color: var(--header-text);
    font-size: 24px;
    cursor: pointer;
    z-index: 1002;
    transition: transform 0.3s ease;
}

.mobile-menu-toggle:hover {
    transform: scale(1.1);
}

.mobile-menu-toggle.active i {
    content: '\f00d';
}

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

.logo img {
    height: 55px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.logo img:hover {
    transform: scale(var(--logo-hover-scale));
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 15px;
    flex-wrap: nowrap;
    align-items: center;
}

.main-nav {
    transition: all 0.3s ease;
}

.mobile-cta {
    display: none;
}

.main-nav li {
    opacity: 0;
    animation: slideIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.main-nav li:nth-child(1) { animation-delay: 0.3s; }
.main-nav li:nth-child(2) { animation-delay: 0.4s; }
.main-nav li:nth-child(3) { animation-delay: 0.5s; }
.main-nav li:nth-child(4) { animation-delay: 0.6s; }
.main-nav li:nth-child(5) { animation-delay: 0.7s; }
.main-nav li:nth-child(6) { animation-delay: 0.8s; }

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

.main-nav a {
    color: var(--menu-text);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    padding: 8px 0;
    display: inline-block;
}

.main-nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--menu-underline), transparent);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateX(-50%);
}

.main-nav a::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--menu-bg-hover);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.main-nav a:hover {
    color: var(--menu-text-hover);
    transform: translateY(-3px);
    text-shadow: 0 0 20px var(--menu-glow);
}

.main-nav a:hover::before {
    width: 100%;
}

.main-nav a:hover::after {
    width: 50px;
    height: 50px;
}

.main-nav a.active {
    color: var(--menu-text);
    animation: pulse 2s ease-in-out infinite;
}

.main-nav a.active::before {
    width: 100%;
    background: var(--menu-underline);
    animation: pulseLine 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

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

/* NAV DROPDOWN - Utile */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-dropdown-icon {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: -55px;
    background: rgba(18, 18, 18, 0.98);
    border: 1px solid rgba(139, 0, 0, 0.2);
    border-radius: 12px;
    padding: 6px;
    min-width: 200px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    z-index: 1000;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown:hover .nav-dropdown-icon,
.nav-dropdown.open .nav-dropdown-icon {
    transform: rotate(180deg);
}

.nav-dropdown-menu li {
    opacity: 1;
    animation: none;
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    border-radius: 8px;
    transition: color 0.2s ease, background 0.2s ease;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.nav-dropdown-menu a::before,
.nav-dropdown-menu a::after {
    display: none;
}

.nav-dropdown-menu a:hover {
    color: #fff;
    background: rgba(139, 0, 0, 0.25);
}

.cta-button .btn-primary {
    background: linear-gradient(135deg, var(--btn-bg-start) 0%, var(--btn-bg-end) 100%);
    color: var(--btn-text);
    padding: 10px 25px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid var(--btn-border);
    position: relative;
    overflow: visible;
    box-shadow: 0 4px 15px var(--btn-shadow), 0 0 0 0 var(--btn-glow);
    opacity: 0;
    animation: fadeIn 0.6s ease forwards 1s, shockwave 2s ease-out infinite 1.5s;
    font-size: 13px;
    z-index: 1;
}

@keyframes shockwave {
    0% { box-shadow: 0 4px 15px var(--btn-shadow), 0 0 0 0 var(--btn-glow); }
    70% { box-shadow: 0 4px 15px var(--btn-shadow), 0 0 0 20px rgba(139, 0, 0, 0); }
    100% { box-shadow: 0 4px 15px var(--btn-shadow), 0 0 0 0 rgba(139, 0, 0, 0); }
}

.cta-button .btn-primary::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(45deg, var(--btn-border), var(--dark-red), var(--btn-border), var(--dark-red), var(--btn-border));
    background-size: 400% 400%;
    border-radius: 50px;
    z-index: -1;
    animation: borderGlow 3s ease infinite;
    filter: blur(8px);
    opacity: 0.6;
}

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

.cta-button .btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--particle-color) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.6s ease;
    pointer-events: none;
}

.cta-button .btn-primary:hover {
    background: linear-gradient(135deg, var(--btn-hover-bg-start) 0%, var(--btn-hover-bg-end) 100%);
    color: var(--btn-hover-text);
    border-color: var(--btn-hover-border);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px var(--btn-hover-shadow), 0 0 40px var(--btn-hover-glow), 0 0 80px rgba(139, 0, 0, 0.3);
}

.cta-button .btn-primary:hover::before {
    opacity: 1;
    filter: blur(12px);
}

.cta-button .btn-primary:hover::after {
    transform: translate(-50%, -50%) scale(1.5);
}

.cta-button .btn-primary:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 2px 10px var(--btn-shadow), 0 0 20px var(--btn-hover-shadow);
}

/* MIDDLE SECTION - Main Content */
.middle-section {
    flex: 1;
    background-color: var(--white);
}

.hero-slider-section {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    pointer-events: none;
}

.slide.active {
    opacity: 1;
    pointer-events: auto;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    color: var(--white);
}

.slide-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: slideUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.slide.active .slide-content h2 {
    animation-delay: 0.3s;
}

.slide-content p {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 30px;
    max-width: 600px;
    animation: slideUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.slide.active .slide-content p {
    animation-delay: 0.5s;
}

.slide-buttons {
    display: flex;
    gap: 15px;
    animation: slideUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.slide.active .slide-buttons {
    animation-delay: 0.7s;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-buttons .btn-primary,
.slide-buttons .btn-secondary {
    padding: 14px 35px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
}

.slide-buttons .btn-primary {
    background: linear-gradient(135deg, var(--btn-bg-start) 0%, var(--btn-bg-end) 100%);
    color: var(--btn-text);
    border: 2px solid var(--btn-border);
    box-shadow: 0 4px 15px var(--btn-shadow);
}

.slide-buttons .btn-primary:hover {
    background: linear-gradient(135deg, var(--btn-hover-bg-start) 0%, var(--btn-hover-bg-end) 100%);
    color: var(--btn-hover-text);
    border-color: var(--btn-hover-border);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px var(--btn-hover-shadow);
}

.slide-buttons .btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.slide-buttons .btn-secondary:hover {
    background: var(--white);
    color: var(--dark-red);
    transform: translateY(-3px) scale(1.05);
}

.slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 10;
}

.slider-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.4);
    border-color: var(--white);
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--white);
    transform: scale(1.3);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* STATS BAR SECTION */
.stats-bar-section {
    background: linear-gradient(135deg, var(--dark-red) 0%, var(--dark-red-darker) 100%);
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.stat-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--white);
    transform: scale(1.1);
}

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

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
}

/* JOB CATEGORIES SECTION */
.section-header {
    text-align: center;
    margin: 40px 0;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark-red);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.job-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.category-card {
    position: relative;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: all 0.4s ease;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
    transition: all 0.4s ease;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.category-card:hover::before {
    background: linear-gradient(180deg, rgba(139, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.category-overlay {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: var(--white);
}

.category-overlay h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.job-count {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.btn-category {
    padding: 12px 25px;
    background: var(--white);
    color: var(--dark-red);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid var(--white);
    align-self: flex-start;
}

.btn-category:hover {
    background: var(--dark-red);
    color: var(--white);
    border-color: var(--dark-red);
    transform: scale(1.05);
}

/* ABOUT SECTION */
.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 50px;
}

.about-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.about-image {
    height: 200px;
    border-radius: 15px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.3s ease;
}

.about-image:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-red);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content p {
    font-size: 16px;
    color: var(--gray-dark);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* LEGAL PAGES */
.legal-page {
    max-width: 850px;
    margin: 0 auto;
}

.legal-updated {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(139, 0, 0, 0.08);
    color: var(--dark-red);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 30px;
}

.legal-updated i {
    font-size: 14px;
}

.legal-page h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-red);
    margin: 35px 0 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(139, 0, 0, 0.1);
    letter-spacing: 0.5px;
}

.legal-page h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--gray-dark);
    margin: 25px 0 12px;
}

.legal-page p {
    font-size: 15px;
    color: var(--gray-dark);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-page ul {
    margin: 0 0 20px 20px;
    padding-left: 10px;
}

.legal-page ul li {
    font-size: 15px;
    color: var(--gray-dark);
    line-height: 1.8;
    margin-bottom: 8px;
    list-style: none;
    position: relative;
    padding-left: 20px;
}

.legal-page ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--dark-red);
}

.legal-page ul li i {
    color: var(--dark-red);
    margin-right: 6px;
}

.legal-page a {
    color: var(--dark-red);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.legal-page a:hover {
    color: var(--dark-red-light);
    text-decoration: underline;
}

.legal-page code {
    background: rgba(139, 0, 0, 0.08);
    color: var(--dark-red);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 13px;
    font-family: 'Courier New', monospace;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 14px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.legal-table thead {
    background: linear-gradient(135deg, var(--dark-red) 0%, var(--dark-red-darker) 100%);
    color: #fff;
}

.legal-table th {
    padding: 12px 16px;
    text-align: left;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.legal-table td {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    color: var(--gray-dark);
    line-height: 1.6;
}

.legal-table tbody tr:nth-child(even) {
    background: rgba(139, 0, 0, 0.02);
}

.legal-table tbody tr:hover {
    background: rgba(139, 0, 0, 0.05);
}

.about-stats {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
    margin: 30px 0;
}

.about-stat {
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-stat .stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-red);
    min-width: 40px;
}

.about-stat .stat-label {
    font-size: 15px;
    color: var(--gray-dark);
    line-height: 1.4;
}

.btn-about {
    display: inline-block;
    padding: 14px 35px;
    background: linear-gradient(135deg, var(--dark-red) 0%, var(--dark-red-darker) 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid var(--dark-red);
}

.btn-about:hover {
    background: var(--white);
    color: var(--dark-red);
    border-color: var(--dark-red);
    transform: scale(1.05);
}

/* TESTIMONIALS SECTION */
.testimonials-section {
    margin: 0;
}

.testimonials-section .section-header {
    margin-bottom: 0px;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    padding: 50px 0;
}

.testimonials-track {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease;
}

.testimonial-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    flex: 0 0 calc(25% - 19px);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(139, 0, 0, 0.2);
    border-color: var(--dark-red);
}

.testimonial-image {
    position: absolute;
    top: 15px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 2px solid var(--dark-red);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.testimonial-content {
    padding: 25px;
}

.testimonial-rating {
    color: #FFD700;
    font-size: 16px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 14px;
    color: var(--gray-dark);
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-red);
    margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 13px;
    color: var(--gray-medium);
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.testimonials-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dark-red) 0%, var(--dark-red-darker) 100%);
    border: 2px solid var(--dark-red);
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonials-arrow:hover {
    background: var(--white);
    color: var(--dark-red);
    transform: scale(1.1);
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(139, 0, 0, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: var(--dark-red);
    transform: scale(1.3);
}

.testimonial-dot:hover {
    background: rgba(139, 0, 0, 0.6);
}

/* CONTACT FORM */
.contact-form {
    max-width: 100%;
    margin: 0 auto 60px;
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 0;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-dark);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--gray-medium);
    border-radius: 8px;
    font-size: 16px;
    color: var(--gray-dark);
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--dark-red);
    box-shadow: 0 0 10px rgba(139, 0, 0, 0.2);
}

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

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

.submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--btn-bg-start) 0%, var(--btn-bg-end) 100%);
    color: var(--btn-text);
    border: 2px solid var(--btn-border);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: linear-gradient(135deg, var(--btn-hover-bg-start) 0%, var(--btn-hover-bg-end) 100%);
    color: var(--btn-hover-text);
    border-color: var(--btn-hover-border);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px var(--btn-hover-shadow);
}

/* ANGAJATORI HERO HEADER */
.employers-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 50px 0;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.08) 0%, rgba(255, 255, 255, 1) 50%, rgba(139, 0, 0, 0.05) 100%);
    border-radius: 25px;
    margin: 40px 0;
    overflow: hidden;
    position: relative;
}

.employers-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 0, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.employers-hero-content {
    flex: 1;
    padding: 0 60px;
    position: relative;
    z-index: 1;
}

.employers-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--dark-red);
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.employers-hero-content > p {
    font-size: 18px;
    color: var(--gray-dark);
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 520px;
}

.employers-contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.employers-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    background: var(--white);
    border-radius: 12px;
    text-decoration: none;
    color: var(--gray-dark);
    font-size: 17px;
    font-weight: 600;
    width: fit-content;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.employers-contact-item:hover {
    border-color: var(--dark-red);
    color: var(--dark-red);
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.15);
}

.employers-contact-item i {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--dark-red) 0%, var(--dark-red-darker) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.employers-hero-image {
    flex: 0 0 360px;
    height: 400px;
    position: relative;
    z-index: 1;
    margin-right: 60px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    animation: fluidMove 12s ease-in-out infinite;
}

.employers-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.15);
    animation: fluidImage 12s ease-in-out infinite;
}

@keyframes fluidMove {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    15% {
        transform: translate(8px, -12px) rotate(0.5deg);
    }
    30% {
        transform: translate(-6px, 10px) rotate(-0.5deg);
    }
    45% {
        transform: translate(12px, 6px) rotate(0.3deg);
    }
    60% {
        transform: translate(-10px, -8px) rotate(-0.4deg);
    }
    75% {
        transform: translate(5px, 12px) rotate(0.2deg);
    }
    90% {
        transform: translate(-8px, -5px) rotate(-0.3deg);
    }
    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

@keyframes fluidImage {
    0% {
        transform: scale(1.15) translate(0, 0);
    }
    20% {
        transform: scale(1.18) translate(-3%, 2%);
    }
    40% {
        transform: scale(1.12) translate(2%, -2%);
    }
    60% {
        transform: scale(1.16) translate(-2%, 3%);
    }
    80% {
        transform: scale(1.13) translate(3%, -1%);
    }
    100% {
        transform: scale(1.15) translate(0, 0);
    }
}

/* DE CE PARTENER SECTION */
.employers-why-partner {
    display: flex;
    align-items: center;
    gap: 70px;
    padding: 60px 50px 70px;
    margin-bottom: 40px;
    background: linear-gradient(135deg, var(--white) 0%, rgba(139, 0, 0, 0.04) 50%, var(--white) 100%);
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 60px rgba(139, 0, 0, 0.08);
}

.employers-why-partner::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 0, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.employers-why-partner::after {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(139, 0, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.employers-why-image {
    flex: 0 0 420px;
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    transform: perspective(1000px) rotateY(-5deg);
    box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.15), -10px -10px 30px rgba(139, 0, 0, 0.08);
    transition: all 0.5s ease;
    border: 4px solid var(--white);
}

.employers-why-image:hover {
    transform: perspective(1000px) rotateY(0deg);
    box-shadow: 25px 25px 60px rgba(0, 0, 0, 0.2), -5px -5px 20px rgba(139, 0, 0, 0.1);
}

.employers-why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.employers-why-image:hover img {
    transform: scale(1.1);
}

.employers-why-content {
    flex: 1;
    position: relative;
    z-index: 1;
    padding: 20px 0;
}

.employers-why-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark-red);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 8px rgba(139, 0, 0, 0.1);
}

.employers-why-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-red-light);
    margin: 25px 0 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.employers-why-content h3::before {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--dark-red);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(139, 0, 0, 0.5);
}

.employers-why-content p {
    font-size: 18px;
    line-height: 1.9;
    color: var(--gray-dark);
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

/* BENEFITS SECTION */
.employers-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    padding: 40px 0 80px;
}

.benefit-card {
    background: var(--white);
    padding: 40px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(139, 0, 0, 0.05);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--dark-red) 0%, var(--dark-red-light) 50%, var(--dark-red) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(139, 0, 0, 0.12);
}

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

.benefit-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--dark-red) 0%, var(--dark-red-darker) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 26px;
    transition: transform 0.4s ease;
}

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

.benefit-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-red);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.benefit-card p {
    font-size: 15px;
    color: var(--gray-dark);
    line-height: 1.7;
}

/* GOOGLE MAPS SECTION */
.employers-location {
    padding: 30px 0 50px;
}

.location-info {
    text-align: center;
    margin-bottom: 25px;
}

.location-info h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-red);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.location-info p {
    font-size: 18px;
    color: var(--gray-dark);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    background: var(--white);
    border-radius: 50px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.location-info p i {
    color: var(--dark-red);
    font-size: 20px;
}

.location-map {
    width: 100%;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.location-map iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: none;
}

/* CANDIDATE REGISTRATION PAGE */
.candidate-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 30px 0;
    border-bottom: 1px solid rgba(139, 0, 0, 0.1);
    margin-bottom: 40px;
}

.candidate-hero-content {
    flex: 1;
    max-width: 600px;
}

.candidate-hero-content h1 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-red);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.candidate-hero-content p {
    font-size: 17px;
    color: var(--gray-dark);
    line-height: 1.6;
}

.candidate-hero-image {
    flex: 0 0 280px;
    height: 180px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    animation: fluidMove 10s ease-in-out infinite;
}

.candidate-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.15);
    animation: fluidImage 10s ease-in-out infinite;
}

.candidate-form-section {
    padding-bottom: 60px;
}

.form-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.form-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    max-width: 500px;
    height: 2px;
    background: rgba(139, 0, 0, 0.15);
    z-index: 0;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
    cursor: default;
}

.step-number {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid rgba(139, 0, 0, 0.2);
    color: var(--dark-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: all 0.3s ease;
}

.step.active .step-number,
.step.completed .step-number {
    background: var(--dark-red);
    border-color: var(--dark-red);
    color: var(--white);
    box-shadow: 0 0 15px rgba(139, 0, 0, 0.3);
}

.step-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.step.active .step-label,
.step.completed .step-label {
    color: var(--dark-red);
}

.candidate-form {
    background: var(--white);
    padding: 40px 50px;
    border-radius: 25px;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(139, 0, 0, 0.05);
}

.form-step-content {
    display: none;
}

.form-step-content.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

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

.form-step-content h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--dark-red);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(139, 0, 0, 0.1);
}

.candidate-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 25px;
}

.candidate-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.candidate-form .form-group.hidden {
    display: none;
}

.candidate-form .form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.candidate-form .form-group input,
.candidate-form .form-group select,
.candidate-form .form-group textarea {
    padding: 14px 16px;
    border: 1px solid rgba(139, 0, 0, 0.15);
    border-radius: 10px;
    font-size: 15px;
    color: var(--gray-dark);
    background: var(--white);
    transition: all 0.3s ease;
    outline: none;
}

.candidate-form .form-group input:focus,
.candidate-form .form-group select:focus,
.candidate-form .form-group textarea:focus {
    border-color: var(--dark-red);
    box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.08);
}

.candidate-form .form-group input.error,
.candidate-form .form-group select.error,
.candidate-form .form-group textarea.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15);
}

.candidate-form .form-group select {
    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='%238B0000' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.consent-group {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 25px;
    background: rgba(139, 0, 0, 0.03);
    border-radius: 15px;
    margin-top: 25px;
    border-left: 3px solid var(--dark-red);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--gray-dark);
    cursor: pointer;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--dark-red);
    cursor: pointer;
    flex-shrink: 0;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid rgba(139, 0, 0, 0.1);
}

.form-actions .btn-prev,
.form-actions .btn-next,
.form-actions .btn-submit {
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.form-actions .btn-prev {
    background: transparent;
    color: var(--dark-red);
    border: 2px solid var(--dark-red);
}

.form-actions .btn-prev:hover {
    background: rgba(139, 0, 0, 0.05);
}

.form-actions .btn-next,
.form-actions .btn-submit {
    background: linear-gradient(135deg, var(--dark-red) 0%, var(--dark-red-darker) 100%);
    color: var(--white);
    box-shadow: 0 5px 20px rgba(139, 0, 0, 0.3);
    margin-left: auto;
}

.form-actions .btn-next:hover,
.form-actions .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.4);
}

/* ABOUT PAGE */
.about-hero {
    padding: 30px 0 35px;
    text-align: center;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.05) 0%, rgba(139, 0, 0, 0.01) 100%);
    border-bottom: 1px solid rgba(139, 0, 0, 0.08);
}

.about-hero-content h1 {
    font-size: 30px;
    font-weight: 700;
    color: var(--dark-red);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-hero-content p {
    font-size: 15px;
    color: var(--gray-dark);
    max-width: 750px;
    margin: 0 auto 25px;
    line-height: 1.6;
}

.about-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    height: 160px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.about-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.about-image:hover img {
    transform: scale(1.06);
}

.about-content {
    padding: 35px 0 50px;
}

.about-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.about-story h2,
.about-mission h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-red);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-story p,
.about-mission p {
    font-size: 14px;
    color: var(--gray-dark);
    line-height: 1.7;
}

.about-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    padding: 18px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(139, 0, 0, 0.05);
}

.about-stat {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    min-width: auto;
    background: rgba(139, 0, 0, 0.03);
    border-radius: 50px;
    border: 1px solid rgba(139, 0, 0, 0.08);
}

.about-stat .stat-number {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark-red);
    line-height: 1;
}

.about-stat .stat-label {
    font-size: 14px;
    color: var(--gray-dark);
    font-weight: 500;
    line-height: 1.3;
}

/* About page polish */
.about-story,
.about-mission {
    background: var(--gray-light);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.about-story:hover,
.about-mission:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-hero-content h1 {
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.about-hero-content h1::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--dark-red);
    border-radius: 3px;
}

.about-stat {
    transition: all 0.3s ease;
}

.about-stat:hover {
    background: rgba(139, 0, 0, 0.08);
    border-color: rgba(139, 0, 0, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.1);
}

/* FAQ PAGE */
.faq-hero {
    padding: 50px 0 40px;
    text-align: center;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.05) 0%, rgba(139, 0, 0, 0.01) 100%);
    border-bottom: 1px solid rgba(139, 0, 0, 0.08);
    margin-bottom: 50px;
}

.faq-hero-content h1 {
    font-size: 38px;
    font-weight: 700;
    color: var(--dark-red);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-hero-content p {
    font-size: 18px;
    color: var(--gray-dark);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-section {
    padding-bottom: 70px;
}

.faq-category {
    margin-bottom: 50px;
}

.faq-category[style*="background-image"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.88);
    z-index: 0;
}

.category-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-red);
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(139, 0, 0, 0.1);
    display: inline-block;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--white);
    border-radius: 15px;
    border: 1px solid rgba(139, 0, 0, 0.08);
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(139, 0, 0, 0.15);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 28px;
    border: none;
    background: transparent;
    text-align: left;
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
    color: var(--gray-dark);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--dark-red);
}

.faq-question i {
    color: var(--dark-red);
    font-size: 16px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 28px;
}

.faq-item.active .faq-answer {
    max-height: 800px;
    padding: 0 28px 25px;
}

.faq-answer p {
    font-size: 15px;
    color: var(--gray-dark);
    line-height: 1.7;
    margin-bottom: 15px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.faq-answer ul li {
    font-size: 15px;
    color: var(--gray-dark);
    line-height: 1.7;
    margin-bottom: 6px;
    position: relative;
}

.faq-answer ul li::marker {
    color: var(--dark-red);
}

.faq-answer strong {
    color: var(--dark-red);
}

/* FOOTER SECTION - Footer */
.footer-section {
    background-color: var(--black);
    color: var(--white);
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(200, 200, 200, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(200, 200, 200, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(200, 200, 200, 0.1) 0%, transparent 30%),
        radial-gradient(circle, rgba(200, 200, 200, 0.15) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 100% 100%, 30px 30px;
    background-position: 0 0, 0 0, 0 0, 0 0;
    animation: footerDotsMove 60s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes footerDotsMove {
    0% {
        background-position: 0 0, 0 0, 0 0, 0 0;
    }
    25% {
        background-position: 0 0, 0 0, 0 0, 15px 15px;
    }
    50% {
        background-position: 0 0, 0 0, 0 0, 30px 0;
    }
    75% {
        background-position: 0 0, 0 0, 0 0, 15px -15px;
    }
    100% {
        background-position: 0 0, 0 0, 0 0, 0 0;
    }
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin-bottom: 40px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
    border-radius: 15px;
    border: 1px solid rgba(139, 0, 0, 0.1);
    position: relative;
}

.footer-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.footer-logo-inner {
    text-align: center;
    padding: 10px 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.footer-logo-inner h2 {
    font-size: 24px;
    font-weight: 900;
    color: var(--dark-red-light);
    margin: 0;
    letter-spacing: 4px;
    position: relative;
    z-index: 1;
    padding: 10px 20px;
    border: 1.5px solid rgba(139, 0, 0, 0.4);
    border-radius: 12px;
    background: rgba(139, 0, 0, 0.08);
    text-shadow: 0 0 15px rgba(139, 0, 0, 0.4);
    transition: all 0.4s ease;
}

.footer-logo-inner h2::before {
    content: '';
    position: absolute;
    inset: -4px;
    border: 1px solid rgba(139, 0, 0, 0.15);
    border-radius: 16px;
    pointer-events: none;
}

.footer-logo-inner:hover h2 {
    border-color: var(--dark-red-light);
    background: rgba(139, 0, 0, 0.15);
    box-shadow: 0 0 25px rgba(139, 0, 0, 0.3);
    transform: scale(1.05);
}

.footer-logo-inner h2::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--dark-red), transparent);
}

@keyframes textGradient {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

.footer-logo-inner span {
    display: block;
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 8px;
    margin-top: 10px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    padding-left: 8px;
}

.footer-contact h3,
.footer-links h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-red);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

.footer-contact h3::after,
.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--dark-red), transparent);
}

.footer-links h3::after {
    left: auto;
    right: 0;
    background: linear-gradient(270deg, var(--dark-red), transparent);
}

.footer-contact p {
    color: var(--gray-light);
    font-size: 15px;
    margin-bottom: 15px;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.footer-contact p:hover {
    color: var(--white);
}

.footer-contact i {
    margin-right: 12px;
    color: var(--dark-red);
    font-size: 16px;
    transition: transform 0.3s ease;
}

.footer-contact p:hover i {
    transform: translateX(3px);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--btn-bg-start) 0%, var(--btn-bg-end) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--btn-text);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--btn-border);
}

.social-icon:hover {
    background: linear-gradient(135deg, var(--btn-hover-bg-start) 0%, var(--btn-hover-bg-end) 100%);
    color: var(--btn-hover-text);
    border-color: var(--btn-hover-border);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 20px var(--btn-hover-shadow);
}

.social-icon i {
    margin: 0;
    font-size: 18px;
}

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

.footer-links {
    text-align: right;
}

.footer-links li {
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

.footer-links li:hover {
    transform: translateX(-5px);
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--dark-red);
    transition: width 0.3s ease;
}

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

.footer-links a:hover::before {
    width: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(139, 0, 0, 0.2);
    padding: 28px 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(139, 0, 0, 0.08) 100%);
    position: relative;
    overflow: hidden;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--dark-red) 50%, transparent 100%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
}

.footer-bottom-left,
.footer-bottom-right {
    flex: 1;
    position: relative;
    z-index: 1;
}

.footer-bottom-left {
    text-align: left;
}

.footer-bottom-right {
    text-align: right;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 13px;
    margin: 0;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.footer-bottom strong {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 700;
    letter-spacing: 1.5px;
}

.footer-bottom .footer-dot {
    color: var(--dark-red);
    font-size: 10px;
    opacity: 0.6;
}

.footer-bottom .footer-designed,
.footer-bottom .footer-made {
    color: rgba(255, 255, 255, 0.3);
    font-size: 11px;
    letter-spacing: 1px;
}

.footer-bottom a {
    color: var(--dark-red-light);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    font-weight: 600;
    letter-spacing: 1px;
}

.footer-bottom a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--dark-red), var(--dark-red-light));
    transition: width 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--white);
    text-shadow: 0 0 12px rgba(139, 0, 0, 0.6);
}

.footer-bottom a:hover::after {
    width: 100%;
}

/* CONTACT PAGE */
.contact-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    padding: 40px 0;
    border-bottom: 1px solid rgba(139, 0, 0, 0.1);
    margin-bottom: 40px;
}

.contact-hero-content {
    flex: 1 1 300px;
}

.contact-hero-content h1 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-red);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-hero-content > p {
    font-size: 17px;
    color: var(--gray-dark);
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact-hero-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.contact-hero-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--white);
    border: 1px solid rgba(139, 0, 0, 0.1);
    border-radius: 50px;
    color: var(--gray-dark);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-hero-link:hover {
    background: var(--dark-red);
    color: var(--white);
    border-color: var(--dark-red);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.2);
}

.contact-hero-link i {
    color: var(--dark-red);
    transition: color 0.3s ease;
}

.contact-hero-link:hover i {
    color: var(--white);
}

.contact-hero-image {
    flex: 0 1 320px;
    max-width: 100%;
    height: 220px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contact-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-intro {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    align-items: center;
    margin-bottom: 40px;
    padding: 25px;
    background: var(--gray-light);
    border-radius: 15px;
}

.contact-intro-text {
    text-align: left;
    max-width: none;
    margin: 0;
}

.contact-intro-text h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-red);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-intro-text p {
    font-size: 15px;
    color: var(--gray-dark);
    line-height: 1.5;
    margin-bottom: 8px;
}

.contact-intro-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-intro-card {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 0 15px;
    padding: 14px 18px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-intro-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-intro-icon {
    grid-column: 1;
    grid-row: 1 / 3;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 0, 0, 0.08);
    border-radius: 50%;
    margin: 0;
    color: var(--dark-red);
    font-size: 17px;
}

.contact-intro-card h3 {
    grid-column: 2;
    font-size: 13px;
    font-weight: 700;
    color: var(--dark-red);
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-intro-card p {
    grid-column: 2;
    font-size: 14px;
    color: var(--gray-dark);
    line-height: 1.4;
    margin: 0;
}

.contact-intro-card a {
    color: var(--dark-red);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-intro-card a:hover {
    color: var(--dark-red-hover);
}

.contact-form-section {
    margin-bottom: 50px;
}

.contact-form-section > h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-red);
    margin-bottom: 25px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.office-options {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.office-option {
    position: relative;
    cursor: pointer;
}

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

.office-label {
    display: inline-block;
    padding: 12px 25px;
    background: var(--white);
    border: 2px solid var(--gray-medium);
    border-radius: 50px;
    font-weight: 600;
    color: var(--gray-dark);
    transition: all 0.3s ease;
}

.office-option input[type="radio"]:checked + .office-label {
    background: var(--dark-red);
    border-color: var(--dark-red);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.3);
}

.office-option input[type="radio"]:focus + .office-label {
    box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.2);
}

.office-label:hover {
    border-color: var(--dark-red);
    color: var(--dark-red);
}

.contact-success {
    max-width: 800px;
    margin: 25px auto 0;
    padding: 18px;
    background: rgba(139, 0, 0, 0.08);
    border: 1px solid rgba(139, 0, 0, 0.2);
    border-radius: 10px;
    color: var(--dark-red);
    text-align: center;
    font-weight: 600;
}

.contact-map {
    margin-bottom: 50px;
}

.contact-map-info {
    text-align: center;
    margin-bottom: 25px;
}

.contact-map-info h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-red);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-map-info p {
    font-size: 16px;
    color: var(--gray-dark);
}

.contact-map-info i {
    color: var(--dark-red);
    margin-right: 8px;
}

.contact-map-frame {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-map-frame iframe {
    width: 100%;
    height: 400px;
    display: block;
    border: 0;
}

/* JOBS PAGE */
.jobs-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    padding: 25px 0;
    border-bottom: 1px solid rgba(139, 0, 0, 0.1);
    margin-bottom: 40px;
}

.jobs-hero-content {
    flex: 1 1 280px;
    text-align: left;
}

.jobs-hero-content h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-red);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.jobs-hero-content p {
    font-size: 16px;
    color: var(--gray-dark);
    line-height: 1.6;
}

.jobs-hero-image {
    flex: 0 1 260px;
    max-width: 100%;
    height: 160px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.jobs-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.jobs-hero-image:hover img {
    transform: scale(1.05);
}

/* GERMANY JOB PAGE */
.country-contact {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(139, 0, 0, 0.1);
}

.country-contact h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-red);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.country-contact-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.country-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-dark);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.country-contact-link:hover {
    color: var(--dark-red);
}

.country-contact-link i {
    color: var(--dark-red);
}

.country-mini-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 35px;
}

.country-mini-header h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--dark-red);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.country-mini-header p {
    font-size: 16px;
    color: var(--gray-dark);
    line-height: 1.6;
}

.job-listings-section {
    margin-bottom: 50px;
}

.job-listings {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.job-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.job-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.job-card-main {
    flex: 1 1 300px;
}

.job-card-location {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark-red);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.job-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-dark);
    margin-bottom: 8px;
}

.job-card-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    color: var(--gray-dark);
}

.job-card-type {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--dark-red);
}

.job-card-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: var(--dark-red);
    color: var(--white);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.job-card-action:hover {
    background: var(--dark-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.3);
}

/* GERMANY JOB PAGE - DESIGN UPGRADE */
.country-hero {
    background: linear-gradient(135deg, #700000 0%, #8b0000 50%, #a52a2a 100%);
    color: #fff;
    border-radius: 16px;
    padding: 40px 35px;
    margin-top: 15px;
    margin-bottom: 25px;
    border-bottom: none;
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    gap: 30px;
}

.country-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.country-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    pointer-events: none;
}

.country-hero .jobs-hero-content {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.country-hero .jobs-hero-content h1 {
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    font-size: 28px;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.country-hero .jobs-hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    max-width: 580px;
    line-height: 1.7;
    margin: 0;
}

.country-contact {
    position: relative;
    z-index: 1;
    flex: 0 0 240px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 24px 20px;
    margin-top: 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.country-contact h3 {
    color: #fff;
    font-size: 15px;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.country-contact-links {
    gap: 10px;
    flex-direction: column;
}

.country-contact-link {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 10px 16px;
    color: #fff;
    transition: all 0.3s ease;
    font-size: 14px;
    width: 100%;
}

.country-contact-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
    transform: translateX(3px);
}

.country-contact-link i {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.country-contact-link:hover i {
    color: #fff;
}

.country-mini-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 25px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(139, 0, 0, 0.1);
}

.country-mini-header h2 {
    font-size: 20px;
    color: var(--dark-red);
    margin-bottom: 8px;
    font-weight: 600;
}

.country-mini-header p {
    font-size: 14px;
    color: var(--gray-dark);
    line-height: 1.5;
    margin: 0 auto;
}

.job-listings-section {
    background: var(--gray-light);
    padding: 25px 30px;
    border-radius: 15px;
    margin-bottom: 50px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.03);
}

.job-listings-section .section-header {
    text-align: center;
    margin-bottom: 0;
}

.job-listings-section .section-header h2 {
    color: var(--dark-red);
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 20px;
}

.job-listings {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.job-card {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.job-card-image {
    width: 120px;
    height: 90px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    background: var(--gray-light);
}

.job-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.job-card:hover .job-card-image img {
    transform: scale(1.05);
}

.job-card-main {
    flex: 1 1 200px;
}

.job-card-location {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark-red);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.job-card-location i {
    color: var(--dark-red);
}

.job-card-title {
    font-size: 20px;
    color: var(--gray-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.job-card-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.job-card-type {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(139, 0, 0, 0.08);
    color: var(--dark-red);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.job-card-action {
    padding: 12px 25px;
    border-radius: 50px;
    background: var(--dark-red);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.job-card-action i {
    transition: transform 0.3s ease;
}

.job-card-action:hover {
    background: var(--dark-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 0, 0, 0.3);
}

.job-card-action:hover i {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .country-hero {
        padding: 30px 20px;
        flex-direction: column;
        gap: 20px;
    }

    .country-hero .jobs-hero-content h1 {
        font-size: 24px;
    }

    .country-contact {
        flex: none;
    }

    .job-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .job-card-action {
        width: 100%;
        justify-content: center;
    }

    .job-card-image {
        width: 100%;
        height: 180px;
        margin-bottom: 10px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
        order: 3;
    }

    .top-section .container {
        justify-content: space-between;
        padding: 0 15px;
    }

    .logo {
        order: 1;
    }

    .logo img {
        height: 45px;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: linear-gradient(180deg, var(--dark-red) 0%, var(--dark-red-darker) 100%);
        z-index: 1001;
        padding: 80px 30px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
        transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 25px;
        align-items: flex-start;
    }

    .main-nav li {
        opacity: 1;
        animation: none;
    }

    .main-nav a {
        font-size: 16px;
        padding: 12px 0;
        display: block;
        width: 100%;
    }

    .main-nav a::before {
        left: 0;
        transform: none;
    }

    .main-nav a:hover::before {
        width: 100%;
    }

    /* Mobile dropdown - Utile */
    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .nav-dropdown-menu {
        position: static;
        transform: none;
        background: rgba(0, 0, 0, 0.25);
        border: none;
        border-radius: 0;
        padding: 0;
        min-width: 0;
        margin-top: 8px;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transition: max-height 0.3s ease;
    }

    .nav-dropdown.open .nav-dropdown-menu {
        max-height: 400px;
    }

    .nav-dropdown-menu a {
        padding: 10px 18px;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.55);
        border-left: 2px solid transparent;
    }

    .nav-dropdown-menu a:hover {
        background: rgba(255, 255, 255, 0.05);
        color: #fff;
        border-left-color: rgba(255, 255, 255, 0.3);
    }

    .cta-button {
        display: none;
    }

    .mobile-cta {
        display: block;
        margin-top: 15px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .mobile-cta .btn-primary {
        width: 100%;
        text-align: center;
        padding: 14px 25px;
        background: linear-gradient(135deg, var(--btn-bg-start) 0%, var(--btn-bg-end) 100%);
        color: var(--btn-text);
        border: 2px solid var(--btn-border);
        border-radius: 50px;
        box-shadow: 0 4px 15px var(--btn-shadow), 0 0 0 0 var(--btn-glow);
        animation: fadeIn 0.6s ease forwards, shockwave 2s ease-out infinite 1.5s;
        position: relative;
        overflow: visible;
    }

    .mobile-cta .btn-primary::before {
        content: '';
        position: absolute;
        top: -4px;
        left: -4px;
        right: -4px;
        bottom: -4px;
        background: linear-gradient(45deg, var(--btn-border), var(--dark-red), var(--btn-border), var(--dark-red), var(--btn-border));
        background-size: 400% 400%;
        border-radius: 50px;
        z-index: -1;
        animation: borderGlow 3s ease infinite;
        filter: blur(8px);
        opacity: 0.6;
    }

    .mobile-cta .btn-primary::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle, var(--particle-color) 0%, transparent 70%);
        border-radius: 50px;
        transform: translate(-50%, -50%) scale(0);
        transition: transform 0.6s ease;
        pointer-events: none;
    }

    .mobile-cta .btn-primary:hover {
        background: linear-gradient(135deg, var(--btn-hover-bg-start) 0%, var(--btn-hover-bg-end) 100%);
        color: var(--btn-hover-text);
        border-color: var(--btn-hover-border);
        box-shadow: 0 8px 25px var(--btn-hover-shadow), 0 0 40px var(--btn-hover-glow), 0 0 80px rgba(139, 0, 0, 0.3);
    }

    .mobile-cta .btn-primary:hover::before {
        opacity: 1;
        filter: blur(12px);
    }

    .mobile-cta .btn-primary:hover::after {
        transform: translate(-50%, -50%) scale(1.5);
    }

    .hero-slider-section {
        height: 500px;
    }

    .slide-content h2 {
        font-size: 28px;
    }

    .slide-content p {
        font-size: 16px;
    }

    .slide-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 250px;
    }

    .slide-buttons .btn-primary,
    .slide-buttons .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .slider-nav {
        padding: 0 15px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .slider-dots {
        bottom: 20px;
    }

    .stats-bar-section {
        padding: 30px 0;
    }

    .stats-bar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .stat-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .stat-number {
        font-size: 22px;
    }

    .stat-label {
        font-size: 11px;
    }

    .stat-divider {
        display: none;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .job-categories {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .category-card {
        height: 200px;
    }

    .category-overlay {
        padding: 20px;
    }

    .category-overlay h3 {
        font-size: 18px;
    }

    .job-count {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .btn-category {
        padding: 10px 20px;
        font-size: 12px;
    }

    .about-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-images {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-image {
        height: 150px;
    }

    .about-content h2 {
        font-size: 28px;
    }

    .about-content p {
        font-size: 14px;
    }

    .about-stat .stat-number {
        font-size: 24px;
    }

    .about-stat .stat-label {
        font-size: 13px;
    }

    .btn-about {
        padding: 12px 25px;
        font-size: 14px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .testimonial-card {
        flex: 0 0 calc(50% - 10px);
    }

    .testimonial-image {
        width: 35px;
        height: 35px;
        top: 10px;
        right: 15px;
    }

    .testimonial-content {
        padding: 15px;
    }

    .testimonial-rating {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .testimonial-text {
        font-size: 12px;
        line-height: 1.4;
        margin-bottom: 12px;
    }

    .testimonial-author h4 {
        font-size: 13px;
        margin-bottom: 3px;
    }

    .testimonial-author span {
        font-size: 11px;
    }

    .testimonials-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 25px;
    }

    .footer-logo {
        display: none;
    }

    .footer-contact h3,
    .footer-links h3 {
        font-size: 18px;
        margin-bottom: 15px;
        padding-bottom: 8px;
    }

    .footer-contact h3::after,
    .footer-links h3::after {
        width: 40px;
    }

    .footer-contact {
        margin-left: -30px;
    }

    .footer-contact p {
        font-size: 13px;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .footer-contact i {
        font-size: 14px;
        margin-right: 8px;
    }

    .social-icons {
        gap: 10px;
        margin-top: 15px;
    }

    .social-icon {
        width: 32px;
        height: 32px;
    }

    .social-icon i {
        font-size: 14px;
    }

    .footer-links {
        text-align: right;
        margin-right: -30px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .footer-links a::before {
        left: -12px;
    }

    .footer-links a:hover::before {
        width: 8px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }

    .footer-bottom-left,
    .footer-bottom-right {
        text-align: center;
    }

    .contact-form {
        padding: 25px;
        margin-bottom: 40px;
        grid-template-columns: 1fr;
    }

    .form-group label {
        font-size: 12px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 14px;
    }

    .submit-btn {
        padding: 15px;
        font-size: 14px;
    }

    .employers-hero {
        flex-direction: column-reverse;
        padding: 40px 0;
        gap: 30px;
        border-radius: 0;
        margin: 0;
    }

    .employers-hero-content {
        padding: 0 20px;
        text-align: center;
    }

    .employers-hero-content h1 {
        font-size: 28px;
    }

    .employers-hero-content > p {
        font-size: 16px;
    }

    .employers-contact-info {
        align-items: center;
    }

    .employers-contact-item {
        width: 100%;
        justify-content: center;
        font-size: 15px;
    }

    .employers-contact-item:hover {
        transform: translateX(0);
    }

    .employers-hero-image {
        flex: none;
        width: 100%;
        height: 300px;
        margin-right: 0;
        border-radius: 0;
    }

    .employers-why-partner {
        flex-direction: column;
        padding: 40px 20px 50px;
        gap: 30px;
        border-radius: 0;
    }

    .employers-why-image {
        flex: none;
        width: 100%;
        height: 260px;
        transform: none;
        border-width: 3px;
    }

    .employers-why-content {
        padding: 0;
        text-align: center;
    }

    .employers-why-content h2 {
        font-size: 28px;
    }

    .employers-why-content h3 {
        font-size: 17px;
        margin: 25px 0 18px;
        justify-content: center;
    }

    .employers-why-content p {
        font-size: 15px;
        padding: 20px;
        text-align: left;
    }

    .employers-benefits {
        grid-template-columns: 1fr;
        padding: 20px 20px 50px;
        gap: 20px;
    }

    .benefit-card {
        padding: 30px 20px;
    }

    .benefit-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    .benefit-card h3 {
        font-size: 16px;
    }

    .benefit-card p {
        font-size: 14px;
    }

    .employers-location {
        padding: 20px 0 30px;
    }

    .location-info h2 {
        font-size: 26px;
    }

    .location-info p {
        font-size: 15px;
        padding: 12px 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .location-map {
        border-radius: 0;
    }

    .location-map iframe {
        height: 300px;
    }

    .candidate-hero {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        padding: 25px 0;
    }

    .candidate-hero-content h1 {
        font-size: 28px;
    }

    .candidate-hero-image {
        flex: none;
        width: 100%;
        max-width: 350px;
        height: 200px;
    }

    .form-steps {
        gap: 15px;
        margin-bottom: 25px;
    }

    .step-label {
        display: none;
    }

    .form-steps::before {
        width: 70%;
    }

    .candidate-form {
        padding: 25px 20px;
        border-radius: 0;
        box-shadow: none;
        border: none;
    }

    .candidate-form .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 15px;
    }

    .form-step-content h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .form-actions {
        flex-direction: column-reverse;
        gap: 15px;
    }

    .form-actions .btn-prev,
    .form-actions .btn-next,
    .form-actions .btn-submit {
        width: 100%;
        justify-content: center;
        padding: 14px;
    }

    .consent-group {
        padding: 18px;
    }

    .checkbox-label {
        font-size: 13px;
    }

    .faq-hero {
        padding: 35px 0 30px;
    }

    .faq-hero-content h1 {
        font-size: 28px;
    }

    .faq-hero-content p {
        font-size: 15px;
    }

    .faq-section {
        padding-bottom: 40px;
    }

    .category-title {
        font-size: 20px;
    }

    .faq-question {
        padding: 18px 20px;
        font-size: 15px;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }

    .faq-answer p,
    .faq-answer ul li {
        font-size: 14px;
    }

    .about-hero {
        padding: 25px 0 25px;
    }

    .about-hero-content h1 {
        font-size: 24px;
    }

    .about-hero-content p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .about-images {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .about-image {
        height: 120px;
    }

    .about-content {
        padding: 25px 0 40px;
    }

    .legal-page h2 {
        font-size: 18px;
    }

    .legal-page h3 {
        font-size: 15px;
    }

    .legal-page p,
    .legal-page ul li {
        font-size: 14px;
    }

    .legal-table {
        font-size: 12px;
    }

    .legal-table th,
    .legal-table td {
        padding: 8px 10px;
    }

    .about-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }

    .about-story h2,
    .about-mission h2 {
        font-size: 18px;
    }

    .about-story p,
    .about-mission p {
        font-size: 13px;
    }

    .about-stats {
        justify-content: center;
        gap: 10px;
        padding: 15px;
    }

    .about-stat {
        padding: 8px 14px;
    }

    .about-stat .stat-number {
        font-size: 20px;
    }

    .about-stat .stat-label {
        font-size: 12px;
    }
}

/* JOB DETAIL PAGE */
.job-detail-header {
    background: linear-gradient(135deg, var(--dark-red) 0%, #8b1c2a 100%);
    border-radius: 12px;
    padding: 20px 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.job-detail-header h1 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.job-detail-header p {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(4px);
}

.job-detail-header p i {
    margin-right: 4px;
}

.job-detail-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    align-items: start;
}

.detail-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.detail-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-red);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gray-light);
}

.job-info-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.job-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: var(--gray-light);
    border-radius: 10px;
}

.job-info-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-red);
    color: var(--white);
    border-radius: 50%;
    font-size: 14px;
    flex-shrink: 0;
}

.job-info-content {
    display: flex;
    flex-direction: column;
}

.job-info-label {
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.job-info-value {
    font-size: 14px;
    font-weight: 600;
    color: #222;
}

.detail-subtitle {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
    padding: 10px 15px;
    background: var(--gray-light);
    border-radius: 8px;
    font-weight: 600;
    color: #444;
    font-size: 14px;
}

.detail-subtitle span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.detail-section {
    margin-bottom: 15px;
}

.detail-section:last-child {
    margin-bottom: 0;
}

.detail-section h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-red);
    margin-bottom: 8px;
}

.detail-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-section ul li {
    position: relative;
    padding-left: 14px;
    margin-bottom: 5px;
    color: #555;
    line-height: 1.45;
    font-size: 14px;
}

.detail-section ul li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    color: var(--dark-red);
    font-weight: 700;
}

.apply-form .form-group {
    margin-bottom: 12px;
}

.apply-form label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
    font-size: 14px;
}

.apply-form input[type="text"],
.apply-form input[type="email"],
.apply-form input[type="tel"],
.apply-form textarea,
.apply-form input[type="file"] {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    background: #fafafa;
    transition: all 0.3s ease;
}

.apply-form input:focus,
.apply-form textarea:focus {
    border-color: var(--dark-red);
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(139, 28, 42, 0.1);
}

.apply-form textarea {
    resize: vertical;
    min-height: 80px;
}

.btn-apply {
    display: inline-block;
    background: var(--dark-red);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-apply:hover {
    background: #7a1824;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.job-detail-right {
    position: sticky;
    top: 110px;
}

.detail-sidebar {
    padding: 15px;
}

.detail-summary-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-summary-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #555;
    font-size: 14px;
}

.detail-summary-list li:last-child {
    border-bottom: none;
}

.detail-summary-list strong {
    color: #222;
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.recruiter-box {
    text-align: center;
}

.recruiter-image {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.recruiter-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recruiter-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    margin-bottom: 4px;
}

.recruiter-info span {
    display: block;
    color: #888;
    font-size: 12px;
    margin-bottom: 10px;
}

.recruiter-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #555;
    text-decoration: none;
    padding: 4px 0;
    font-size: 14px;
    transition: color 0.3s ease;
}

.recruiter-contact:hover {
    color: var(--dark-red);
}

.recruiter-contact i {
    color: var(--dark-red);
}

@media (max-width: 992px) {
    .job-detail-wrapper {
        grid-template-columns: 1fr;
    }

    .job-detail-right {
        position: static;
    }

    .job-info-list {
        grid-template-columns: 1fr;
    }

    .job-detail-header {
        padding: 18px 15px;
    }

    .job-detail-header h1 {
        font-size: 18px;
    }
}

/* ==================== PANOU CMS ==================== */
body:has(.panou-container) {
    background-color: #0a0a0a;
    overflow-x: hidden;
}

.panou-container {
    min-height: calc(100vh - 200px);
    padding: 48px 0;
    background:
        radial-gradient(ellipse at 20% 0%, rgba(139, 0, 0, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(102, 0, 0, 0.06) 0%, transparent 50%),
        #0a0a0a;
    position: relative;
}

.panou-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(139, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

/* === ACCES INTERZIS === */
.panou-access-denied {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 60px 20px;
}

.panou-access-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.2), rgba(102, 0, 0, 0.1));
    border: 2px solid rgba(139, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--dark-red-light);
    animation: panouLockPulse 2s ease-in-out infinite;
}

@keyframes panouLockPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(139, 0, 0, 0.3); }
    50% { box-shadow: 0 0 0 12px rgba(139, 0, 0, 0); }
}

.panou-access-denied h2 {
    color: var(--white);
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
}

.panou-access-denied p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 15px;
    max-width: 420px;
    margin: 0 auto 28px;
    line-height: 1.6;
}

.panou-access-hint {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(139, 0, 0, 0.1);
    border: 1px solid rgba(139, 0, 0, 0.25);
    border-radius: 30px;
    color: var(--dark-red-light);
    font-size: 13px;
    animation: panouHintBounce 1.5s ease-in-out infinite;
}

@keyframes panouHintBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

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

.panou-header {
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(139, 0, 0, 0.15);
}

.panou-header h1 {
    color: var(--white);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.panou-header h1::before {
    content: '';
    width: 4px;
    height: 28px;
    background: linear-gradient(180deg, var(--dark-red), var(--dark-red-darker));
    border-radius: 2px;
}

.panou-header p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}

.panou-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--dark-red-light);
    font-size: 13px;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.2s;
}

.panou-back:hover {
    color: var(--white);
}

.panou-section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 24px;
    min-height: 200px;
}

.panou-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.panou-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 36px 24px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(10, 10, 10, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.panou-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--dark-red), var(--dark-red-light), var(--dark-red));
    transform: scaleX(0);
    transition: transform 0.35s ease;
    transform-origin: left;
}

.panou-card::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(139, 0, 0, 0.12) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.panou-card:hover {
    border-color: rgba(139, 0, 0, 0.35);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(139, 0, 0, 0.15);
}

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

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

.panou-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.15), rgba(102, 0, 0, 0.08));
    border: 1px solid rgba(139, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--dark-red-light);
    margin-bottom: 18px;
    transition: all 0.35s ease;
}

.panou-card:hover .panou-card-icon {
    background: linear-gradient(135deg, var(--dark-red), var(--dark-red-darker));
    border-color: var(--dark-red-light);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(139, 0, 0, 0.4);
}

.panou-card-title {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
}

.panou-card-desc {
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
    position: relative;
    z-index: 1;
}

/* === CARDURI MICI === */
.panou-sub-row {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    margin-top: 40px;
}

.panou-sub-col {
    flex: 1;
    min-width: 0;
}

.panou-subheader {
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(139, 0, 0, 0.12);
}

.panou-subheader h3 {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.panou-grid-small {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 14px;
}

.panou-card-small {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.6), rgba(10, 10, 10, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.panou-card-small::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--dark-red), var(--dark-red-darker));
    transform: scaleY(0);
    transition: transform 0.3s ease;
    transform-origin: top;
}

.panou-card-small:hover {
    border-color: rgba(139, 0, 0, 0.3);
    background: linear-gradient(135deg, rgba(40, 20, 20, 0.6), rgba(20, 10, 10, 0.8));
    transform: translateX(4px);
}

.panou-card-small:hover::before {
    transform: scaleY(1);
}

.panou-card-small-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(139, 0, 0, 0.12);
    border: 1px solid rgba(139, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: var(--dark-red-light);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.panou-card-small:hover .panou-card-small-icon {
    background: var(--dark-red);
    border-color: var(--dark-red-light);
    color: var(--white);
}

.panou-card-small-title {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.panou-card-small:hover .panou-card-small-title {
    color: var(--white);
}

@media (max-width: 480px) {
    .panou-grid-small {
        grid-template-columns: 1fr;
    }

    .panou-sub-row {
        flex-direction: column;
        gap: 24px;
    }
}

/* === EVIDENTA CANDIDATI === */
.evidenta-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 28px;
}

.evidenta-country-group {
    flex: 1;
    min-width: 280px;
}

.evidenta-country-label {
    color: var(--dark-red-light);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(139, 0, 0, 0.2);
}

.evidenta-tab {
    display: block;
    width: 100%;
    text-align: left;
    padding: 10px 16px;
    margin-bottom: 6px;
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.25s ease;
}

.evidenta-tab:hover {
    background: rgba(40, 20, 20, 0.6);
    border-color: rgba(139, 0, 0, 0.2);
    color: var(--white);
    transform: translateX(4px);
}

.evidenta-tab.active {
    background: linear-gradient(135deg, var(--dark-red), var(--dark-red-darker));
    border-color: var(--dark-red-light);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(139, 0, 0, 0.3);
}

.evidenta-panel {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 24px;
    animation: evidentaFadeIn 0.3s ease;
}

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

.evidenta-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.evidenta-panel-header h2 {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
}

.evidenta-panel-actions {
    display: flex;
    gap: 10px;
}

.evidenta-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 1px solid;
    border-radius: 8px;
    font-size: 12px;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.25s ease;
}

.evidenta-btn-add {
    background: rgba(139, 0, 0, 0.15);
    border-color: rgba(139, 0, 0, 0.3);
    color: var(--dark-red-light);
}

.evidenta-btn-add:hover {
    background: var(--dark-red);
    border-color: var(--dark-red-light);
    color: var(--white);
}

.evidenta-btn-edit {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.evidenta-btn-edit:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.evidenta-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.evidenta-empty {
    text-align: center;
    padding: 32px 20px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
}

.evidenta-empty i {
    margin-right: 8px;
    color: var(--dark-red-light);
}

.evidenta-candidate {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    transition: all 0.2s ease;
}

.evidenta-candidate:hover {
    background: rgba(40, 20, 20, 0.4);
    border-color: rgba(139, 0, 0, 0.15);
}

.evidenta-candidate-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.evidenta-candidate-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dark-red), var(--dark-red-darker));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    flex-shrink: 0;
}

.evidenta-candidate-name {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
}

.evidenta-candidate-meta {
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
}

.evidenta-candidate-actions {
    display: flex;
    gap: 6px;
}

.evidenta-candidate-actions button {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.evidenta-candidate-actions button:hover {
    background: rgba(139, 0, 0, 0.15);
    border-color: rgba(139, 0, 0, 0.3);
    color: var(--dark-red-light);
}

@media (max-width: 768px) {
    .evidenta-panel-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .evidenta-country-group {
        min-width: 100%;
    }
}

/* === FORMULAR PANOU === */
.panou-form {
    max-width: 500px;
}

.panou-form-row {
    margin-bottom: 20px;
}

.panou-form-label {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 8px;
}

.panou-form-input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: var(--white);
    font-size: 14px;
    font-family: inherit;
    transition: all 0.25s ease;
}

.panou-form-input:focus {
    outline: none;
    border-color: rgba(139, 0, 0, 0.4);
    background: rgba(20, 10, 10, 0.6);
    box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.1);
}

.panou-form-input::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.panou-form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.panou-form-select option {
    background: #1a1a1a;
    color: var(--white);
}

.panou-form-actions {
    margin-top: 28px;
}

.panou-form-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--dark-red), var(--dark-red-darker));
    border: 1px solid var(--dark-red-light);
    border-radius: 10px;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.25s ease;
}

.panou-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.4);
}

.panou-form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.panou-form-result {
    margin-top: 16px;
    font-size: 13px;
}

.panou-form-result-success {
    color: #4caf50;
    padding: 12px 16px;
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.2);
    border-radius: 8px;
}

.panou-form-result-error {
    color: #f44336;
    padding: 12px 16px;
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.2);
    border-radius: 8px;
}

/* === TOGGLE SWITCH === */
.panou-form-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
}

.panou-toggle {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 26px;
    cursor: pointer;
}

.panou-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.panou-toggle-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 26px;
    transition: all 0.3s ease;
}

.panou-toggle-slider::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    left: 3px;
    bottom: 3px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.panou-toggle input:checked + .panou-toggle-slider {
    background: linear-gradient(135deg, var(--dark-red), var(--dark-red-darker));
    border-color: var(--dark-red-light);
}

.panou-toggle input:checked + .panou-toggle-slider::before {
    transform: translateX(22px);
    background: var(--white);
}

.panou-toggle-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 500;
}

/* === EDIT USER LIST === */
.edit-user-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.edit-user-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    transition: all 0.2s ease;
}

.edit-user-row:hover {
    background: rgba(40, 20, 20, 0.4);
    border-color: rgba(139, 0, 0, 0.15);
}

.edit-user-row-active {
    border-color: rgba(139, 0, 0, 0.3);
    background: rgba(40, 20, 20, 0.5);
}

.edit-user-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.edit-user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dark-red), var(--dark-red-darker));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}

.edit-user-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.edit-user-name {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
}

.edit-user-meta {
    color: rgba(255, 255, 255, 0.35);
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.edit-user-role-badge {
    display: inline-block;
    padding: 2px 8px;
    background: rgba(139, 0, 0, 0.15);
    border: 1px solid rgba(139, 0, 0, 0.2);
    border-radius: 4px;
    color: var(--dark-red-light);
    font-size: 11px;
    font-weight: 600;
}

.edit-user-verified {
    color: #4caf50;
    font-size: 11px;
}

.edit-user-unverified {
    color: #f44336;
    font-size: 11px;
}

.edit-user-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.evidenta-btn-delete {
    background: rgba(244, 67, 54, 0.1);
    border-color: rgba(244, 67, 54, 0.2);
    color: #f44336;
}

.evidenta-btn-delete:hover {
    background: #f44336;
    border-color: #f44336;
    color: var(--white);
}

.edit-user-form {
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(139, 0, 0, 0.15);
    border-radius: 12px;
    padding: 24px;
    margin-top: -2px;
    margin-bottom: 10px;
    animation: evidentaFadeIn 0.3s ease;
}

@media (max-width: 768px) {
    .edit-user-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .edit-user-actions {
        width: 100%;
    }
}

/* === EDIT EVIDENTA === */
.evidenta-edit-add {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.evidenta-edit-add h3,
.evidenta-edit-list h3 {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.evidenta-edit-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 4px;
}

@media (max-width: 600px) {
    .evidenta-edit-form-grid {
        grid-template-columns: 1fr;
    }
}

.evidenta-edit-list {
    margin-top: 8px;
}

.evidenta-edit-country-label {
    color: var(--dark-red-light);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 20px 0 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(139, 0, 0, 0.2);
}

.evidenta-edit-country-label:first-child {
    margin-top: 0;
}

.evidenta-edit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    margin-bottom: 8px;
    transition: all 0.2s ease;
}

.evidenta-edit-row:hover {
    background: rgba(40, 20, 20, 0.4);
    border-color: rgba(139, 0, 0, 0.15);
}

.evidenta-edit-row-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.evidenta-edit-row-nume {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
}

.evidenta-edit-row-slug {
    color: rgba(255, 255, 255, 0.25);
    font-size: 12px;
    font-family: monospace;
}

.evidenta-edit-row-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .evidenta-edit-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .evidenta-edit-row-actions {
        width: 100%;
    }
}

/* === LISTA TARI === */
.lista-tari-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 12px;
}

.lista-tari-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    transition: all 0.2s ease;
}

.lista-tari-card:hover {
    background: rgba(40, 20, 20, 0.4);
    border-color: rgba(139, 0, 0, 0.15);
}

.lista-tari-card-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lista-tari-card-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--dark-red), var(--dark-red-darker));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
    flex-shrink: 0;
}

.lista-tari-card-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.lista-tari-card-nume {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
}

.lista-tari-card-slug {
    color: rgba(255, 255, 255, 0.25);
    font-size: 11px;
    font-family: monospace;
}

.lista-tari-card-actions {
    flex-shrink: 0;
}

/* === ANUNTURI === */
.anunt-textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
    line-height: 1.6;
    white-space: pre-wrap;
}

.anunt-preview-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    line-height: 1.7;
    white-space: pre-wrap;
}

/* === JOB DETAIL === */
.job-detail-add-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.job-detail-count {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
}

.job-detail-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.job-detail-card {
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.job-detail-card:hover {
    border-color: rgba(139, 0, 0, 0.15);
}

.job-detail-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: rgba(20, 20, 20, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.job-detail-card-title {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.job-detail-card-title i {
    color: var(--dark-red-light);
    font-size: 16px;
}

.job-detail-card-title > span:first-of-type {
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
}

.job-detail-card-meta {
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
}

.job-anunt-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
}

.job-anunt-badge-yes {
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.25);
}

.job-anunt-badge-no {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.evidenta-btn-view {
    background: rgba(59, 130, 246, 0.12);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

/* === PANOU CARD BADGE === */
.panou-card-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #ef4444;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    animation: badge-pulse 2s ease-in-out infinite;
}

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

.panou-card-icon {
    position: relative;
}

/* === CONTACT MESSAGES === */
.contact-mark-all-bar {
    margin-bottom: 16px;
}

.contact-messages-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-msg-card {
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.contact-msg-card:hover {
    border-color: rgba(255, 255, 255, 0.08);
}

.contact-msg-unread {
    border-color: rgba(239, 68, 68, 0.2);
    background: rgba(239, 68, 68, 0.03);
}

.contact-msg-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    gap: 16px;
}

.contact-msg-info {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.contact-msg-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(139, 0, 0, 0.2);
    color: var(--dark-red-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.contact-msg-avatar-birou {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    font-size: 18px;
}

.contact-msg-avatar-aplicatie {
    background: rgba(168, 85, 247, 0.15);
    color: #c084fc;
    font-size: 18px;
}

.contact-msg-avatar-recrutor {
    background: rgba(79, 70, 229, 0.15);
    color: #818cf8;
    font-size: 18px;
}

.contact-msg-job-tag {
    background: rgba(168, 85, 247, 0.15);
    color: #c084fc;
    border-color: rgba(168, 85, 247, 0.2);
}

.contact-msg-birou-tag {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 6px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.contact-msg-details {
    min-width: 0;
}

.contact-msg-name {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-msg-badge {
    background: #ef4444;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    text-transform: uppercase;
}

.contact-msg-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 4px;
}

.contact-msg-meta span {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.contact-msg-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.contact-msg-body {
    padding: 0 20px 20px 74px;
}

.contact-msg-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    line-height: 1.7;
    white-space: pre-wrap;
    background: rgba(0, 0, 0, 0.2);
    padding: 14px;
    border-radius: 8px;
    border-left: 3px solid rgba(139, 0, 0, 0.3);
}

/* === CANDIDAT DETAIL GRID === */
.candidat-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.candidat-detail-section h4 {
    color: var(--dark-red-light);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(139, 0, 0, 0.15);
}

.candidat-detail-row {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.candidat-detail-row strong {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    text-align: right;
}

.candidat-detail-full {
    grid-column: 1 / -1;
}

@media (max-width: 600px) {
    .candidat-detail-grid {
        grid-template-columns: 1fr;
    }
}

/* === CANDIDAT CATEGORY SELECT === */
.candidat-cat-select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 12px;
    cursor: pointer;
    transition: border-color 0.15s ease;
    max-width: 200px;
}

.candidat-cat-select:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.candidat-cat-select:focus {
    outline: none;
    border-color: rgba(139, 0, 0, 0.4);
}

.candidat-cat-select option {
    background: #1a1a1a;
    color: rgba(255, 255, 255, 0.8);
}

/* === EVIDENTA CANDIDATI CARDS === */
.evidenta-cand-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    transition: border-color 0.15s ease;
}

.evidenta-cand-card:hover {
    border-color: rgba(139, 0, 0, 0.2);
}

.evidenta-cand-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.evidenta-cand-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(139, 0, 0, 0.2);
    color: var(--dark-red-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.evidenta-cand-info {
    min-width: 0;
    flex: 1;
}

.evidenta-cand-name {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.evidenta-cand-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.evidenta-cand-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.evidenta-cand-extra {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.evidenta-cand-extra strong {
    color: rgba(255, 255, 255, 0.7);
}

.evidenta-count-badge {
    background: rgba(139, 0, 0, 0.15);
    color: var(--dark-red-light);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 8px;
    border: 1px solid rgba(139, 0, 0, 0.2);
}

.evidenta-tab-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    background: rgba(139, 0, 0, 0.15);
    color: var(--dark-red-light);
    font-size: 11px;
    font-weight: 700;
    border-radius: 50%;
    margin-left: 8px;
    padding: 0 6px;
    border: 1px solid rgba(139, 0, 0, 0.2);
    transition: all 0.15s ease;
}

.evidenta-tab.active .evidenta-tab-count {
    background: rgba(139, 0, 0, 0.3);
    color: #fff;
    border-color: rgba(139, 0, 0, 0.4);
}

@media (max-width: 600px) {
    .candidat-cat-select {
        max-width: 100%;
        margin-bottom: 6px;
    }
    .contact-msg-actions {
        flex-wrap: wrap;
    }
}

/* === PERSOANA FORM (Recrutor) === */
.persoana-section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.persoana-section h3,
.persoana-section h4 {
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.persoana-section h3 i,
.persoana-section h4 i {
    color: var(--dark-red-light);
}

.persoana-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 14px;
}

.persoana-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.persoana-field label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.persoana-field input,
.persoana-section textarea {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 8px 12px;
    color: var(--white);
    font-size: 13px;
    transition: border-color 0.15s ease;
}

.persoana-field input:focus,
.persoana-section textarea:focus {
    outline: none;
    border-color: rgba(139, 0, 0, 0.4);
}

.persoana-section textarea {
    width: 100%;
    resize: vertical;
    font-family: inherit;
    line-height: 1.5;
}

/* PHOTO UPLOAD */
.persoana-photo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}

.persoana-photo-upload {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.persoana-photo-upload label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.persoana-photo-drop {
    border: 2px dashed rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 24px 12px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.15s ease, background 0.15s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.persoana-photo-drop:hover {
    border-color: rgba(139, 0, 0, 0.3);
    background: rgba(139, 0, 0, 0.03);
}

.persoana-photo-drop i {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.3);
}

.persoana-photo-drop span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.persoana-photo-preview {
    max-width: 100%;
    max-height: 200px;
    border-radius: 10px;
    object-fit: cover;
}

/* TAGS POOL */
.persoana-tag-hint {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 12px;
}

.persoana-tags-pool {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.persoana-tag-chip {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.persoana-tag-chip:hover {
    background: rgba(139, 0, 0, 0.1);
    border-color: rgba(139, 0, 0, 0.2);
    color: var(--dark-red-light);
}

.persoana-tag-chip.tag-used {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.2);
    color: rgba(34, 197, 94, 0.8);
}

/* FORM ACTIONS */
.persoana-form-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    align-items: center;
}

.persoana-btn-submit {
    background: rgba(139, 0, 0, 0.2);
    border: 1px solid rgba(139, 0, 0, 0.3);
    color: var(--dark-red-light);
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.persoana-btn-submit:hover {
    background: rgba(139, 0, 0, 0.3);
}

.persoana-btn-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.persoana-btn-cancel {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.15s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.persoana-btn-cancel:hover {
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
}

.persoana-form-msg {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 13px;
}

.persoana-msg-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: rgba(34, 197, 94, 0.9);
}

.persoana-msg-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: rgba(239, 68, 68, 0.9);
}

/* PERSOANA CARD + EDIT PANEL */
.persoana-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    transition: border-color 0.15s ease;
}

.persoana-card:hover {
    border-color: rgba(139, 0, 0, 0.15);
}

.persoana-avatar {
    background: rgba(139, 0, 0, 0.15);
    color: var(--dark-red-light);
    overflow: hidden;
}

.persoana-edit-panel {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* STATUS BADGES */
.persoana-status-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 12px;
    margin-left: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-nou { background: rgba(59, 130, 246, 0.15); color: #60a5fa; border: 1px solid rgba(59, 130, 246, 0.2); }
.status-contactat { background: rgba(168, 85, 247, 0.15); color: #c084fc; border: 1px solid rgba(168, 85, 247, 0.2); }
.status-interviu { background: rgba(234, 179, 8, 0.15); color: #facc15; border: 1px solid rgba(234, 179, 8, 0.2); }
.status-acceptat { background: rgba(34, 197, 94, 0.15); color: #4ade80; border: 1px solid rgba(34, 197, 94, 0.2); }
.status-respins { background: rgba(239, 68, 68, 0.15); color: #f87171; border: 1px solid rgba(239, 68, 68, 0.2); }
.status-proba { background: rgba(234, 179, 8, 0.15); color: #facc15; border: 1px solid rgba(234, 179, 8, 0.2); }
.status-angajat { background: rgba(34, 197, 94, 0.2); color: #4ade80; border: 1px solid rgba(34, 197, 94, 0.3); }
.status-refuzat { background: rgba(239, 68, 68, 0.2); color: #f87171; border: 1px solid rgba(239, 68, 68, 0.3); }
.status-vine { background: rgba(59, 130, 246, 0.15); color: #60a5fa; border: 1px solid rgba(59, 130, 246, 0.2); }
.status-prezent { background: rgba(34, 197, 94, 0.15); color: #4ade80; border: 1px solid rgba(34, 197, 94, 0.2); }
.status-sosit { background: rgba(34, 197, 94, 0.15); color: #4ade80; border: 1px solid rgba(34, 197, 94, 0.2); }
.status-plecat { background: rgba(107, 114, 128, 0.15); color: #9ca3af; border: 1px solid rgba(107, 114, 128, 0.2); }
.status-asteptare { background: rgba(234, 179, 8, 0.15); color: #facc15; border: 1px solid rgba(234, 179, 8, 0.2); }
.status-nu-raspunde { background: rgba(239, 68, 68, 0.15); color: #f87171; border: 1px solid rgba(239, 68, 68, 0.2); }
.status-anulat { background: rgba(107, 114, 128, 0.15); color: #9ca3af; border: 1px solid rgba(107, 114, 128, 0.2); }
.status-training { background: rgba(168, 85, 247, 0.15); color: #c084fc; border: 1px solid rgba(168, 85, 247, 0.2); }
.status-lista-neagra { background: rgba(239, 68, 68, 0.2); color: #f87171; border: 1px solid rgba(239, 68, 68, 0.3); }
.status-recomandat { background: rgba(34, 197, 94, 0.15); color: #4ade80; border: 1px solid rgba(34, 197, 94, 0.2); }
.status-confirmat { background: rgba(34, 197, 94, 0.15); color: #4ade80; border: 1px solid rgba(34, 197, 94, 0.2); }
.status-concediu { background: rgba(59, 130, 246, 0.15); color: #60a5fa; border: 1px solid rgba(59, 130, 246, 0.2); }

/* STATUS SELECT (admin) */
.persoana-status-select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 12px;
    cursor: pointer;
}

.persoana-status-select option {
    background: #1a1a1a;
}

.persoana-status-readonly {
    margin-top: 12px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.persoana-status-readonly em {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
}

.evidenta-btn-delete {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #f87171;
}

.evidenta-btn-delete:hover {
    background: rgba(239, 68, 68, 0.2);
}

@media (max-width: 700px) {
    .persoana-form-grid,
    .persoana-photo-grid {
        grid-template-columns: 1fr;
    }
}

/* === CHAT FLOATING WINDOW === */
.chat-floating {
    position: fixed;
    bottom: 0;
    right: 24px;
    width: 380px;
    max-width: calc(100vw - 48px);
    height: 520px;
    max-height: calc(100vh - 80px);
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px 12px 0 0;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
    z-index: 99999;
    flex-direction: column;
    overflow: hidden;
}

.chat-floating-header {
    background: rgba(139, 0, 0, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
}

.chat-floating-title {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
}

.chat-floating-title i {
    color: var(--dark-red-light);
}

.chat-floating-controls {
    display: flex;
    gap: 6px;
}

.chat-min-btn,
.chat-close-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    width: 28px;
    height: 28px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.15s ease;
}

.chat-min-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.chat-close-btn:hover {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.2);
    color: #f87171;
}

.chat-floating-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
}

.chat-messages::-webkit-scrollbar {
    width: 4px;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.chat-msg {
    display: flex;
    max-width: 85%;
}

.chat-msg-me {
    align-self: flex-end;
}

.chat-msg-other {
    align-self: flex-start;
}

.chat-msg-bubble {
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 13px;
    line-height: 1.4;
    word-break: break-word;
}

.chat-msg-me .chat-msg-bubble {
    background: rgba(139, 0, 0, 0.2);
    border: 1px solid rgba(139, 0, 0, 0.15);
    color: var(--white);
    border-bottom-right-radius: 4px;
}

.chat-msg-other .chat-msg-bubble {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--white);
    border-bottom-left-radius: 4px;
}

.chat-msg-sender {
    font-size: 11px;
    font-weight: 600;
    color: var(--dark-red-light);
    margin-bottom: 4px;
}

.chat-msg-role {
    font-size: 9px;
    background: rgba(255, 255, 255, 0.1);
    padding: 1px 6px;
    border-radius: 8px;
    text-transform: uppercase;
    margin-left: 4px;
    color: rgba(255, 255, 255, 0.5);
}

.chat-msg-text {
    color: rgba(255, 255, 255, 0.9);
}

.chat-msg-time {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 4px;
    text-align: right;
}

.chat-input-area {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 12px;
}

.chat-input-area form {
    display: flex;
    gap: 8px;
}

.chat-input-area input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 8px 12px;
    color: var(--white);
    font-size: 13px;
}

.chat-input-area input:focus {
    outline: none;
    border-color: rgba(139, 0, 0, 0.3);
}

.chat-input-area button {
    background: rgba(139, 0, 0, 0.2);
    border: 1px solid rgba(139, 0, 0, 0.3);
    color: var(--dark-red-light);
    width: 38px;
    height: 38px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.15s ease;
    flex-shrink: 0;
}

.chat-input-area button:hover {
    background: rgba(139, 0, 0, 0.3);
}

.chat-open-btn {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: #60a5fa;
}

.chat-open-btn:hover {
    background: rgba(59, 130, 246, 0.2);
}

@media (max-width: 500px) {
    .chat-floating {
        right: 0;
        bottom: 0;
        width: 100vw;
        max-width: 100vw;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
    }
}

/* === PERSOANE RECRUTOR (inregistrari view) === */
.persoana-recrutor-tag {
    margin-top: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

.persoana-recrutor-tag i {
    color: var(--dark-red-light);
}

.persoana-recrutor-tag strong {
    color: rgba(255, 255, 255, 0.8);
}

.persoana-recrutor-email {
    color: rgba(255, 255, 255, 0.35);
    font-size: 11px;
}

.persoana-photos-view {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.persoana-photo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.persoana-photo-item img {
    width: 120px;
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.persoana-photo-item span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
}

.persoana-tags-display {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.persoana-tag-display {
    background: rgba(139, 0, 0, 0.1);
    border: 1px solid rgba(139, 0, 0, 0.15);
    color: var(--dark-red-light);
    padding: 4px 10px;
    border-radius: 16px;
    font-size: 11px;
}

.evidenta-group-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    margin: 16px 0 10px 0;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.evidenta-group-label:first-child {
    margin-top: 0;
}

.evidenta-group-label i {
    color: var(--dark-red-light);
}

/* === TAGS MANAGEMENT PAGE === */
.tags-add-bar {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.04), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(139, 0, 0, 0.12);
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 28px;
}

.tags-add-bar h3 {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tags-add-bar h3 i {
    color: var(--dark-red-light);
}

.tags-add-form {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.tags-add-form input[type="text"] {
    flex: 1;
    min-width: 200px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 10px 14px;
    color: var(--white);
    font-size: 13px;
    font-family: inherit;
    transition: all 0.2s ease;
}

.tags-add-form input[type="text"]:focus {
    outline: none;
    border-color: rgba(139, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.06);
}

.tags-add-form input[type="text"]::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.tags-add-form input[type="color"] {
    width: 48px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
    padding: 4px;
}

.tags-add-form input[type="number"] {
    width: 90px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 10px 12px;
    color: var(--white);
    font-size: 13px;
    font-family: inherit;
    text-align: center;
}

.tags-add-form input[type="number"]:focus {
    outline: none;
    border-color: rgba(139, 0, 0, 0.4);
}

.tags-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tag-edit-row {
    display: flex;
    align-items: center;
    gap: 18px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 16px 20px;
    flex-wrap: wrap;
    transition: all 0.2s ease;
}

.tag-edit-row:hover {
    border-color: rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.tag-edit-preview {
    min-width: 180px;
    display: flex;
    align-items: center;
}

.tag-edit-preview .persoana-status-badge {
    font-size: 12px;
    padding: 5px 14px;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.tag-edit-fields {
    display: flex;
    gap: 12px;
    align-items: center;
    flex: 1;
    flex-wrap: wrap;
}

.tag-edit-fields input[type="text"] {
    flex: 1;
    min-width: 160px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 9px 14px;
    color: var(--white);
    font-size: 13px;
    font-family: inherit;
    transition: all 0.2s ease;
}

.tag-edit-fields input[type="text"]:focus {
    outline: none;
    border-color: rgba(139, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.06);
}

.tag-edit-fields input[type="text"]::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.tag-edit-fields input[type="color"] {
    width: 44px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
    padding: 3px;
    transition: border-color 0.2s ease;
}

.tag-edit-fields input[type="color"]:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.tag-edit-fields input[type="number"] {
    width: 70px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 9px 10px;
    color: var(--white);
    font-size: 13px;
    font-family: inherit;
    text-align: center;
}

.tag-edit-fields input[type="number"]:focus {
    outline: none;
    border-color: rgba(139, 0, 0, 0.4);
}

.tag-edit-actions {
    display: flex;
    gap: 8px;
}

@media (max-width: 768px) {
    .tag-edit-row {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    .tag-edit-preview {
        min-width: auto;
    }
    .tag-edit-fields {
        flex-direction: column;
        align-items: stretch;
    }
    .tag-edit-fields input[type="text"],
    .tag-edit-fields input[type="number"] {
        width: 100%;
    }
    .tag-edit-fields input[type="color"] {
        width: 100%;
        height: 44px;
    }
    .tags-add-form {
        flex-direction: column;
        align-items: stretch;
    }
    .tags-add-form input[type="text"],
    .tags-add-form input[type="number"] {
        width: 100%;
    }
    .tags-add-form input[type="color"] {
        width: 100%;
        height: 48px;
    }
}

/* === LOGINBAR NOTIF ITEMS === */
.loginbar-notif-item {
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: background 0.15s ease;
}

.loginbar-notif-item:hover {
    background: rgba(255, 255, 255, 0.03);
}

.loginbar-notif-item.unread {
    background: rgba(239, 68, 68, 0.05);
    border-left: 3px solid #ef4444;
}

.loginbar-notif-item-title {
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 2px;
}

.loginbar-notif-item-msg {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 4px;
}

.loginbar-notif-item-time {
    color: rgba(255, 255, 255, 0.25);
    font-size: 11px;
}

@media (max-width: 600px) {
    .contact-msg-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-msg-actions {
        width: 100%;
    }

    .contact-msg-body {
        padding: 0 16px 16px;
    }

    .contact-msg-meta {
        flex-direction: column;
        gap: 4px;
    }
}

.job-detail-card-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.job-detail-card-preview {
    padding: 20px;
}

.job-detail-preview-section {
    margin-bottom: 20px;
}

.job-detail-preview-section:last-child {
    margin-bottom: 0;
}

.job-detail-preview-section h4 {
    color: var(--dark-red-light);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(139, 0, 0, 0.15);
}

.job-detail-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 24px;
}

.job-detail-preview-grid > div {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

.job-detail-preview-grid strong {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.job-detail-section-title {
    color: var(--dark-red-light);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 20px 0 12px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(139, 0, 0, 0.15);
}

.job-detail-section-title:first-child {
    margin-top: 0;
}

@media (max-width: 600px) {
    .job-detail-preview-grid {
        grid-template-columns: 1fr;
    }

    .job-detail-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .job-detail-card-actions {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .panou-container {
        padding: 32px 0;
    }

    .panou-header h1 {
        font-size: 24px;
    }

    .panou-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .panou-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .panou-card {
        padding: 26px 16px;
    }

    .panou-card-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
        border-radius: 12px;
    }

    .panou-card-title {
        font-size: 13px;
    }

    .panou-card-desc {
        font-size: 11px;
    }
}

/* ==================== LOGIN SUB-MENU ==================== */
.loginbar-submenu {
    background: #111;
    border-bottom: 1px solid rgba(139, 0, 0, 0.25);
    font-size: 13px;
    line-height: 1;
}

.loginbar-submenu .container {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding-top: 8px;
    padding-bottom: 8px;
}

/* === NELOGAT - form inline === */
.loginbar-form {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    flex-wrap: wrap;
}

.loginbar-form-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
}

.loginbar-form-label i {
    color: var(--dark-red-light);
    font-size: 11px;
}

.loginbar-input {
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: var(--white);
    font-size: 13px;
    font-family: inherit;
    transition: all 0.2s;
    width: 180px;
}

.loginbar-input:focus {
    outline: none;
    border-color: var(--dark-red-light);
    background: rgba(139, 0, 0, 0.08);
}

.loginbar-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.loginbar-error {
    color: #ff6b6b;
    font-size: 12px;
    min-height: 0;
}

.loginbar-submit {
    padding: 6px 18px;
    background: linear-gradient(135deg, var(--dark-red), var(--dark-red-darker));
    color: var(--white);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
    white-space: nowrap;
}

.loginbar-submit:hover {
    background: linear-gradient(135deg, var(--dark-red-light), var(--dark-red));
}

.loginbar-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* === LOGAT - user bar === */
.loginbar-user-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    flex-wrap: wrap;
}

.loginbar-mobile-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s;
    flex-shrink: 0;
}

.loginbar-mobile-toggle:hover {
    background: rgba(139, 0, 0, 0.15);
}

.loginbar-user-details {
    display: contents;
}

.loginbar-user-name {
    color: var(--white);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.loginbar-user-name i {
    color: var(--dark-red-light);
    font-size: 15px;
}

.loginbar-user-email {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

.loginbar-user-role,
.loginbar-user-ip {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.loginbar-user-role i,
.loginbar-user-ip i {
    color: var(--dark-red-light);
    font-size: 10px;
}

.loginbar-separator {
    color: rgba(255, 255, 255, 0.15);
    font-size: 12px;
}

.loginbar-spacer {
    flex: 1;
}

.loginbar-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    border-radius: 6px;
    font-size: 13px;
    font-family: inherit;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.loginbar-link:hover {
    background: rgba(139, 0, 0, 0.15);
    color: var(--white);
}

.loginbar-link i {
    font-size: 12px;
    color: var(--dark-red-light);
}

.loginbar-link-logout:hover {
    background: rgba(220, 53, 69, 0.12);
    color: #ff6b6b;
}

.loginbar-link-logout:hover i {
    color: #ff6b6b;
}

/* === NOTIFICARI === */
.loginbar-notif-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.loginbar-notif-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
    flex-shrink: 0;
}

.loginbar-notif-btn:hover {
    background: rgba(139, 0, 0, 0.15);
    border-color: var(--dark-red-light);
    color: var(--white);
}

.loginbar-notif-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    background: var(--dark-red);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.loginbar-notif-dropdown {
    position: fixed;
    top: auto;
    right: auto;
    width: 320px;
    max-width: calc(100vw - 20px);
    background: #1a1a1a;
    border: 1px solid rgba(139, 0, 0, 0.3);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.25s ease;
    z-index: 10001;
    overflow: hidden;
}

.loginbar-notif-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.loginbar-notif-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.15), rgba(102, 0, 0, 0.08));
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.loginbar-notif-header strong {
    color: var(--white);
    font-size: 14px;
}

.loginbar-notif-markall {
    background: none;
    border: none;
    color: var(--dark-red-light);
    font-size: 11px;
    cursor: pointer;
    font-family: inherit;
    transition: color 0.2s;
}

.loginbar-notif-markall:hover {
    color: var(--white);
}

.loginbar-notif-list {
    max-height: 300px;
    overflow-y: auto;
}

.loginbar-notif-empty {
    padding: 24px 16px;
    text-align: center;
    color: rgba(255, 255, 255, 0.35);
    font-size: 13px;
}

.loginbar-notif-item {
    display: flex;
    gap: 10px;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: background 0.2s;
    cursor: pointer;
}

.loginbar-notif-item:hover {
    background: rgba(139, 0, 0, 0.08);
}

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

.loginbar-notif-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
}

.loginbar-notif-icon.info {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
}

.loginbar-notif-icon.success {
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
}

.loginbar-notif-icon.warning {
    background: rgba(245, 158, 11, 0.15);
    color: #fbbf24;
}

.loginbar-notif-icon.danger {
    background: rgba(220, 53, 69, 0.15);
    color: #ff6b6b;
}

.loginbar-notif-body {
    flex: 1;
    min-width: 0;
}

.loginbar-notif-title {
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 2px;
}

.loginbar-notif-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    line-height: 1.4;
}

.loginbar-notif-time {
    color: rgba(255, 255, 255, 0.3);
    font-size: 11px;
    margin-top: 4px;
}

.loginbar-notif-item.unread {
    background: rgba(139, 0, 0, 0.05);
}

.loginbar-notif-item.unread .loginbar-notif-title::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--dark-red-light);
    border-radius: 50%;
    margin-right: 6px;
    vertical-align: middle;
}

/* Mobile */
@media (max-width: 768px) {
    .loginbar-input {
        width: 120px;
    }

    .loginbar-mobile-toggle {
        display: flex;
    }

    .loginbar-user-bar {
        flex-wrap: nowrap;
        justify-content: space-between;
        position: relative;
    }

    .loginbar-user-details {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: #111;
        border-bottom: 1px solid rgba(139, 0, 0, 0.25);
        padding: 10px 15px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        z-index: 1000;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    }

    .loginbar-user-details.active {
        display: flex;
    }

    .loginbar-user-details .loginbar-spacer {
        display: none;
    }

    .loginbar-user-email,
    .loginbar-user-ip {
        display: flex;
    }

    .loginbar-separator {
        display: none;
    }

    .loginbar-user-details .loginbar-link {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .loginbar-form-label {
        display: none;
    }

    .loginbar-input {
        width: calc(50% - 4px);
        flex: 1;
    }

    .loginbar-link {
        padding: 5px 10px;
        font-size: 12px;
    }
}
