/* ===========================================
   PELOPJOBS POWER-UP ENHANCEMENTS
   Visual Upgrades Layer on Workable Theme
   =========================================== */

/* ===========================================
   ANIMATED HERO BACKGROUND
   =========================================== */

.hero-section {
    background: linear-gradient(135deg, #001D3D 0%, #003566 30%, #004E89 60%, #001A35 100%);
    padding: 160px var(--space-lg) 120px;
    position: relative;
    overflow: hidden;
}

.hero-background {
    background-image: none;
    opacity: 1;
}

/* Animated gradient orbs */
.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(16, 185, 129, 0.08) 0%, transparent 50%);
    animation: heroGradientShift 15s ease-in-out infinite alternate;
    z-index: 1;
}

@keyframes heroGradientShift {
    0% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-2%, 1%) rotate(1deg); }
    66% { transform: translate(1%, -2%) rotate(-1deg); }
    100% { transform: translate(-1%, 2%) rotate(0.5deg); }
}

/* Grid overlay */
.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 2;
}

/* Floating particles container */
#particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    z-index: 10;
}

/* ===========================================
   HERO TEXT - DARK THEME OVERRIDES
   =========================================== */

.hero-badge {
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid rgba(255, 107, 53, 0.4);
    backdrop-filter: blur(10px);
    animation: fadeInDown 0.8s ease-out;
}

.hero-title {
    color: #ffffff;
    font-size: 3.75rem;
    letter-spacing: -0.03em;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero-title span {
    background: linear-gradient(135deg, #FF8C5A 0%, #00BFA6 50%, #FF8C5A 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientText 4s ease-in-out infinite;
}

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

.hero-subtitle {
    color: rgba(255, 255, 255, 0.7);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-actions {
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-stats-inline {
    border-top-color: rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-stat-number {
    color: #ffffff;
    font-size: 2.25rem;
}

.hero-stat-label {
    color: rgba(255, 255, 255, 0.5);
}

/* ===========================================
   HERO BUTTONS - ENHANCED
   =========================================== */

.hero-actions .btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #FF8C5A 100%);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.hero-actions .btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.hero-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
}

.hero-actions .btn-primary:hover::after {
    transform: translateX(100%);
}

.hero-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* ===========================================
   HERO CARD - GLASSMORPHISM
   =========================================== */

.hero-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: floatCard 6s ease-in-out infinite, fadeInRight 1s ease-out 0.3s both;
}

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

.hero-card-header {
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.hero-card-icon {
    background: linear-gradient(135deg, var(--primary) 0%, #FF8C5A 100%);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.hero-card-title {
    color: #ffffff;
}

.hero-card-subtitle {
    color: rgba(255, 255, 255, 0.5);
}

.hero-job-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

.hero-job-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(4px);
    border-color: rgba(255, 107, 53, 0.3);
}

.hero-job-logo {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
    color: #FF8C5A;
}

.hero-job-title {
    color: #ffffff;
}

.hero-job-company {
    color: rgba(255, 255, 255, 0.5);
}

.hero-job-salary {
    color: #00BFA6;
    background: rgba(0, 191, 166, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
}

/* ===========================================
   TYPING CURSOR
   =========================================== */

.typing-cursor {
    display: inline-block;
    width: 3px;
    height: 1em;
    background: var(--primary);
    margin-left: 4px;
    animation: blink 1s step-end infinite;
    vertical-align: text-bottom;
}

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

/* ===========================================
   WAVE SEPARATORS
   =========================================== */

.wave-separator {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin-top: -2px;
}

.wave-separator svg {
    display: block;
    width: 100%;
    height: auto;
}

.wave-separator.wave-dark svg {
    fill: var(--gray-900);
}

.wave-separator.wave-light svg {
    fill: var(--gray-50);
}

.wave-separator.wave-white svg {
    fill: var(--white);
}

/* ===========================================
   SEARCH SECTION - ENHANCED
   =========================================== */

.search-section {
    margin-top: -80px;
    padding: var(--space-2xl) var(--space-lg) var(--space-3xl);
    background: transparent;
    position: relative;
    z-index: 20;
}

.search-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 107, 53, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
    border-radius: 16px;
}

.search-box:focus-within {
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.2),
        0 0 0 2px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-2px);
}

.search-btn {
    background: linear-gradient(135deg, var(--primary) 0%, #FF8C5A 100%);
    border-radius: 12px;
    padding: var(--space-md) var(--space-2xl);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.search-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.quick-filter-btn {
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.quick-filter-btn:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    transform: translateY(-1px);
}

/* ===========================================
   STATS SECTION - GRADIENT
   =========================================== */

.stats-section {
    background: linear-gradient(135deg, #001D3D 0%, #003566 50%, #004E89 100%);
    padding: var(--space-3xl) var(--space-lg);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 80% 50%, rgba(16, 185, 129, 0.08) 0%, transparent 60%);
}

.stat-item {
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 3rem;
    background: linear-gradient(135deg, #ffffff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: rgba(255, 255, 255, 0.6);
}

/* ===========================================
   SCROLL ANIMATIONS
   =========================================== */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.animate-fade-left {
    transform: translateX(-40px);
}

.animate-on-scroll.animate-fade-right {
    transform: translateX(40px);
}

.animate-on-scroll.animate-scale {
    transform: scale(0.9);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

/* Staggered children */
.stagger-children > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.stagger-children.animated > *:nth-child(1) { transition-delay: 0s; }
.stagger-children.animated > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children.animated > *:nth-child(3) { transition-delay: 0.2s; }
.stagger-children.animated > *:nth-child(4) { transition-delay: 0.3s; }
.stagger-children.animated > *:nth-child(5) { transition-delay: 0.4s; }
.stagger-children.animated > *:nth-child(6) { transition-delay: 0.5s; }

.stagger-children.animated > * {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================================
   JOB CARDS - ENHANCED
   =========================================== */

.job-card {
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #FF8C5A, var(--accent));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.job-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 107, 53, 0.1);
    border-color: transparent;
}

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

.job-salary {
    animation: none;
    transition: all 0.3s ease;
}

.job-card:hover .job-salary {
    background: rgba(16, 185, 129, 0.15);
    transform: scale(1.05);
}

/* ===========================================
   COMPANY CARDS - ENHANCED
   =========================================== */

.company-card {
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.company-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.company-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 107, 53, 0.08);
}

.company-card:hover::after {
    transform: scaleX(1);
}

.company-card-logo {
    border-radius: 16px;
    transition: transform 0.4s ease;
}

.company-card:hover .company-card-logo {
    transform: scale(1.1) rotate(3deg);
}

/* ===========================================
   FEATURE CARDS - ENHANCED
   =========================================== */

.feature-item {
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 107, 53, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-6px);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 107, 53, 0.08);
    border-color: transparent;
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-icon-wrap {
    transition: transform 0.4s ease;
}

.feature-item:hover .feature-icon-wrap {
    transform: scale(1.15) rotate(5deg);
}

.icon-bg {
    border-radius: 16px;
    transition: all 0.4s ease;
}

.feature-item:hover .icon-bg {
    opacity: 0.2;
    transform: scale(1.1);
}

/* ===========================================
   FEATURES SECTION HEADER
   =========================================== */

.features-header h2 {
    font-size: 2.5rem;
    letter-spacing: -0.02em;
}

/* ===========================================
   CV BUILDER BANNER - ENHANCED
   =========================================== */

.cv-banner-content {
    background: linear-gradient(135deg, #FF6B35 0%, #E55A2B 40%, #FF8C5A 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.cv-banner-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 0% 100%, rgba(0, 191, 166, 0.1) 0%, transparent 50%);
}

.cv-banner-content:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.3);
}

.cv-banner-icon {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    transition: transform 0.4s ease;
}

.cv-banner-content:hover .cv-banner-icon {
    transform: rotate(5deg) scale(1.1);
}

.cv-banner-text,
.cv-builder-btn {
    position: relative;
    z-index: 1;
}

.cv-builder-btn {
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cv-builder-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* ===========================================
   SECTION HEADERS - ENHANCED
   =========================================== */

.section-header h2,
.header-content h2 {
    font-size: 2.25rem;
    letter-spacing: -0.02em;
    position: relative;
}

/* ===========================================
   COMPANIES SECTION
   =========================================== */

.companies-beautiful {
    position: relative;
}

/* ===========================================
   FOOTER - ENHANCED
   =========================================== */

.landing-footer {
    background: linear-gradient(180deg, #001D3D 0%, #00162E 100%);
    position: relative;
    overflow: hidden;
}

.landing-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.5), transparent);
}

.footer-section h3 i {
    background: linear-gradient(135deg, #FF8C5A 0%, #00BFA6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.75);
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-section ul li a:hover {
    color: #fff;
    padding-left: 4px;
}

.footer-section ul li i {
    color: var(--primary-light, #FF8C5A);
}

.footer-section .footer-address {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.footer-section .footer-address i {
    color: var(--primary-light, #FF8C5A);
    margin-top: 3px;
}

.footer-bottom {
    border-top-color: rgba(255, 255, 255, 0.06);
}

/* ===========================================
   BACK TO TOP - ENHANCED
   =========================================== */

.back-to-top {
    background: linear-gradient(135deg, var(--primary) 0%, #FF8C5A 100%);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

/* ===========================================
   NAVIGATION - ENHANCED
   =========================================== */

.nav-bar {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.nav-bar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(0, 0, 0, 0.04);
}

.nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover::after {
    width: 60%;
}

.nav-links .btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #FF8C5A 100%);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.nav-links .btn-primary:hover {
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.35);
    transform: translateY(-1px);
}

/* ===========================================
   LOADING STATES - SKELETON
   =========================================== */

.loading-spinner {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.loading-spinner i {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary), #FF8C5A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===========================================
   GLOBAL ENHANCEMENTS
   =========================================== */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Better selection */
::selection {
    background: rgba(255, 107, 53, 0.15);
    color: inherit;
}

/* Focus styles */
:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* ===========================================
   KEYFRAME ANIMATIONS
   =========================================== */

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

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

/* ===========================================
   LATEST JOBS SECTION BACKGROUND
   =========================================== */

.latest-jobs-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
    position: relative;
}

/* ===========================================
   FEATURES SECTION BACKGROUND
   =========================================== */

.features-beautiful {
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
    position: relative;
}

/* ===========================================
   INNER PAGES - PAGE HEADER ENHANCEMENTS
   =========================================== */

.page-header {
    background: linear-gradient(135deg, #001D3D 0%, #003566 50%, #004E89 100%) !important;
    padding: 110px 24px 70px !important;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(255, 107, 53, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 70% 30%, rgba(99, 102, 241, 0.08) 0%, transparent 50%);
    animation: heroGradientShift 15s ease-in-out infinite alternate;
}

.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.page-header h1 {
    position: relative;
    z-index: 1;
    font-size: 3rem !important;
    font-weight: 800 !important;
    letter-spacing: -0.03em !important;
    color: #ffffff !important;
    animation: fadeInUp 0.8s ease-out;
}

.page-header p {
    position: relative;
    z-index: 1;
    font-size: 1.125rem !important;
    color: rgba(255, 255, 255, 0.7) !important;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

/* ===========================================
   INNER PAGES - SEARCH CARDS ENHANCED
   =========================================== */

.search-card {
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.08);
    transition: all 0.3s ease;
}

.search-card:focus-within {
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.15),
        0 0 0 2px rgba(255, 107, 53, 0.15);
    transform: translateY(-2px);
}

/* ===========================================
   INNER PAGES - JOB ITEMS ENHANCED
   =========================================== */

.job-item {
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.job-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--accent));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.job-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.job-item:hover::before {
    opacity: 1;
}

/* ===========================================
   INNER PAGES - BLOG CARDS ENHANCED
   =========================================== */

.blog-card {
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: transparent;
}

.blog-card-image {
    transition: all 0.4s ease;
    overflow: hidden;
}

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

.blog-card-image img {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card-category {
    transition: all 0.3s ease;
}

.blog-card:hover .blog-card-category {
    background: rgba(255, 107, 53, 0.15);
}

/* ===========================================
   INNER PAGES - ABOUT PAGE CARDS
   =========================================== */

.feature-card {
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #FF8C5A);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

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

.feature-icon {
    transition: transform 0.4s ease;
}

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

.value-card {
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.value-card i {
    transition: transform 0.4s ease;
}

.value-card:hover i {
    transform: scale(1.2);
}

.mission-card {
    border-radius: 20px;
    transition: all 0.4s ease;
}

.mission-card:hover {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.benefit-list li {
    border-radius: 12px;
    transition: all 0.3s ease;
}

.benefit-list li:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transform: translateX(4px);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #001D3D 0%, #003566 50%, #004E89 100%) !important;
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 70% 50%, rgba(16, 185, 129, 0.06) 0%, transparent 60%);
}

.cta-section h2,
.cta-section p,
.cta-buttons {
    position: relative;
    z-index: 1;
}

.cta-buttons .btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #FF8C5A 100%);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
}

/* ===========================================
   LOGIN PAGE ENHANCEMENTS
   =========================================== */

.login-page {
    background: linear-gradient(135deg, #001D3D 0%, #003566 30%, #004E89 60%, #001A35 100%) !important;
    position: relative;
    overflow: hidden;
}

.login-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
    animation: heroGradientShift 15s ease-in-out infinite alternate;
}

.login-page::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.login-wrapper {
    position: relative;
    z-index: 10;
}

.login-brand a {
    color: #ffffff !important;
}

.login-brand a i {
    background: linear-gradient(135deg, #FF8C5A 0%, #00BFA6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.login-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out;
}

.btn-login {
    background: linear-gradient(135deg, var(--primary) 0%, #FF8C5A 100%);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-login::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn-login:hover::after {
    transform: translateX(100%);
}

.login-footer {
    position: relative;
    z-index: 10;
}

.login-footer a {
    color: rgba(255, 255, 255, 0.6) !important;
}

.login-footer a:hover {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* ===========================================
   FILTER BUTTONS ENHANCED
   =========================================== */

.filter-btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.filter-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.15);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary) 0%, #FF8C5A 100%);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

/* Quick filter buttons */
.quick-filter-btn {
    transition: all 0.3s ease;
}

.quick-filter-btn:hover {
    transform: translateY(-1px);
}

/* ===========================================
   MODAL ENHANCEMENTS
   =========================================== */

.modal-overlay.active {
    backdrop-filter: blur(4px);
}

.modal-content {
    border-radius: 20px;
    animation: fadeInUp 0.4s ease-out;
}

.modal-header {
    background: linear-gradient(135deg, #001D3D 0%, #003566 50%, #004E89 100%);
    border-radius: 20px 20px 0 0;
    position: relative;
    overflow: hidden;
}

.modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 60%);
}

.apply-btn {
    background: linear-gradient(135deg, var(--primary) 0%, #FF8C5A 100%);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    border-radius: 12px;
}

.apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* ===========================================
   COMPANY CARD BUSINESS ENHANCED
   =========================================== */

.company-card-business {
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.company-card-business::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.company-card-business:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.company-card-business:hover::after {
    transform: scaleX(1);
}

/* ===========================================
   SHARE BUTTONS ENHANCED
   =========================================== */

.share-btn {
    border-radius: 10px;
    transition: all 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ===========================================
   RESPONSIVE ADJUSTMENTS
   =========================================== */

@media (max-width: 768px) {
    .hero-section {
        padding: 130px var(--space-md) 100px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .page-header h1 {
        font-size: 2.25rem !important;
    }

    .page-header {
        padding: 95px 20px 50px !important;
    }

    .stat-number {
        font-size: 2.25rem;
    }

    .features-header h2 {
        font-size: 2rem;
    }

    .search-section {
        margin-top: -60px;
    }

    .hero-card {
        animation: fadeInUp 1s ease-out 0.5s both;
    }

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 1.875rem !important;
    }

    .stat-number {
        font-size: 2rem;
    }

    .section-header h2,
    .header-content h2 {
        font-size: 1.75rem;
    }

    .features-header h2 {
        font-size: 1.75rem;
    }
}

/* ===========================================
   PREFERS REDUCED MOTION
   =========================================== */

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .animate-on-scroll {
        opacity: 1;
        transform: none;
    }

    .stagger-children > * {
        opacity: 1;
        transform: none;
    }

    .hero-card {
        animation: none;
    }
}
