/* ===== CSS Variables - Premium Theme ===== */
:root {
    /* Primary Brand Colors */
    --navy: #0A192F;
    --gold: #C5A059;
    --white: #FFFFFF;
    --light-navy: #112240;
    --slate: #8892B0;
    --light-slate: #CCD6F6;
    
    /* Accent Colors */
    --green: #64FFDA;
    --orange: #F9A826;
    --red: #FF6B6B;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--navy) 0%, #152B4F 100%);
    --gradient-gold: linear-gradient(135deg, var(--gold) 0%, #E4B95B 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(10, 25, 47, 0.9) 0%, rgba(10, 25, 47, 0.7) 100%);
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    --glass-blur: blur(10px);
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 3rem;
    --space-xl: 5rem;
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 9999px;
}

/* ===== CSS Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-body);
    color: var(--slate);
    background-color: var(--navy);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--light-slate);
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-base);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

section {
    padding: var(--space-xl) 0;
}

/* ===== Premium Header with Glassmorphism ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--space-sm) 0;
    transition: all var(--transition-base);
    background: transparent;
}

.header.scrolled {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    padding: 0.75rem 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
}

/* Logo Styles */
.logo-wrapper {
    flex-shrink: 0;
}

.logo-visual {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.logo-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.logo-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin: 0;
    line-height: 1;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Navigation Styles */
.primary-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    gap: var(--space-md);
}

.nav-link {
    position: relative;
    color: var(--light-slate);
    font-weight: 500;
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition-base);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--white);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    flex-shrink: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    text-align: center;
    justify-content: center;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

.btn-xl {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--navy);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    border-color: var(--light-slate);
    color: var(--light-slate);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-toggle span {
    width: 100%;
    height: 2px;
    background: var(--white);
    transition: var(--transition-base);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-height: 100vh;
    overflow-y: auto;
    background: rgba(10, 25, 47, 0.9);
    z-index: 999;
    display: none;
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: auto;
}

#main-content.menu-open {
    filter: blur(8px);
    opacity: 0.5;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.mobile-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-nav {
    padding: var(--space-xl) var(--space-md);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-xl);
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 700;
}

.mobile-logo i {
    color: var(--gold);
    font-size: 2rem;
}

.mobile-logo img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.close-mobile {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-list {
    flex: 1;
}

.mobile-link {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    color: var(--light-slate);
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-link i {
    width: 24px;
    color: var(--gold);
}

.mobile-link.active {
    color: var(--white);
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin: var(--space-xl) 0;
}

.mobile-social {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
}

.mobile-social a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.mobile-social a:hover {
    background: var(--gold);
    transform: translateY(-3px);
}










/* ===== CSS Variables - Employers Page Theme ===== */
:root {
    /* Primary Brand Colors */
    --navy: #0A192F;
    --gold: #C5A059;
    --white: #FFFFFF;
    --light-navy: #112240;
    --slate: #8892B0;
    --light-slate: #CCD6F6;
    
    /* Accent Colors */
    --green: #64FFDA;
    --orange: #F9A826;
    --red: #FF6B6B;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--navy) 0%, #152B4F 100%);
    --gradient-gold: linear-gradient(135deg, var(--gold) 0%, #E4B95B 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(10, 25, 47, 0.9) 0%, rgba(10, 25, 47, 0.7) 100%);
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    --glass-blur: blur(10px);
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 3rem;
    --space-xl: 5rem;
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 9999px;
}

/* ===== CSS Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-body);
    color: var(--slate);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--navy);
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-base);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

section {
    padding: var(--space-xl) 0;
}

/* ===== Header Placeholder ===== */
.header-placeholder {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--navy);
    color: var(--white);
    padding: var(--space-sm) 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--white);
}

.logo i {
    color: var(--gold);
    font-size: 1.5rem;
}

.nav {
    display: flex;
    gap: var(--space-lg);
}

.nav a {
    color: var(--light-slate);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav a:hover,
.nav a.active {
    color: var(--white);
}

.nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
}

/* ===== Employers Hero Section ===== */
.employers-hero {
    background: var(--gradient-primary);
    color: var(--white);
    padding: calc(var(--space-xl) + 80px) 0 var(--space-xl);
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.employers-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
    opacity: 0.2;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: var(--space-lg);
    font-size: 0.875rem;
    color: var(--light-slate);
}

.breadcrumb a {
    color: var(--gold);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb i {
    font-size: 0.75rem;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: var(--space-md);
    color: var(--white);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--light-slate);
    margin-bottom: var(--space-xl);
    max-width: 700px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--light-slate);
    display: block;
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition-base);
    text-align: center;
    justify-content: center;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--navy);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.hero-wave svg {
    width: 100%;
    height: 100%;
}

.hero-wave path {
    fill: var(--white);
}

/* ===== Pillars Section ===== */
.pillars-section {
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-label {
    display: inline-block;
    color: var(--gold);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--space-sm);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
    color: var(--navy);
}

.section-description {
    font-size: 1.125rem;
    color: var(--slate);
    max-width: 600px;
    margin: 0 auto;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.pillar-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--gold);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.pillar-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: var(--space-md);
}

.pillar-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
    color: var(--navy);
}

.pillar-card p {
    color: var(--slate);
    margin-bottom: var(--space-md);
    line-height: 1.7;
    flex-grow: 1;
}

.pillar-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: var(--space-lg);
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--navy);
    font-size: 0.875rem;
    font-weight: 500;
}

.feature i {
    color: var(--gold);
}

.pillar-cta {
    margin-top: auto;
}

.pillar-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.875rem;
}

.pillar-link:hover {
    gap: 0.75rem;
}

/* ===== Process Section ===== */
.process-section {
    background: #F8F9FA;
}

.process-timeline {
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    display: grid;
    grid-template-columns: 100px 1fr 400px;
    gap: var(--space-lg);
    align-items: center;
    margin-bottom: var(--space-xl);
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 50px;
    top: 100%;
    width: 2px;
    height: calc(100% + var(--space-xl));
    background: rgba(197, 160, 89, 0.2);
    transform: translateX(-50%);
    z-index: 1;
}

.step-reverse {
    grid-template-columns: 400px 1fr 100px;
}

.step-reverse .step-number {
    order: 3;
}

.step-reverse .step-content {
    order: 2;
    text-align: right;
}

.step-reverse .step-visual {
    order: 1;
}

.step-number {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(10, 25, 47, 0.1);
    line-height: 1;
    text-align: center;
    z-index: 2;
}

.step-content {
    z-index: 2;
}

.step-content h3 {
    font-size: 1.75rem;
    margin-bottom: var(--space-sm);
    color: var(--navy);
}

.step-content p {
    color: var(--slate);
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.step-features {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.step-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(197, 160, 89, 0.1);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    color: var(--navy);
    font-weight: 500;
}

.step-feature i {
    color: var(--gold);
}

.step-visual {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.step-image {
    height: 250px;
    overflow: hidden;
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.process-step:hover .step-image img {
    transform: scale(1.05);
}

/* ===== Trust Section ===== */
.trust-section {
    background: var(--white);
}

.client-logos {
    margin-bottom: var(--space-xl);
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--space-md);
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: rgba(197, 160, 89, 0.05);
    border-radius: var(--radius-md);
    width: 100%;
    height: 100%;
    justify-content: center;
    transition: all var(--transition-base);
}

.logo-container:hover {
    background: rgba(197, 160, 89, 0.1);
    transform: translateY(-5px);
}

.logo-container i {
    font-size: 2rem;
    color: var(--gold);
}

.logo-text {
    font-size: 0.75rem;
    color: var(--navy);
    font-weight: 600;
    text-align: center;
}

.trust-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(10, 25, 47, 0.1);
}

.trust-stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--slate);
    display: block;
}

/* ===== Strategic Approach (Focus Effect) ===== */
.strategic-approach {
    background: var(--gradient-primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.strategic-approach .section-header {
    position: relative;
    z-index: 2;
}

.strategic-approach .section-title,
.strategic-approach .section-description {
    color: var(--white);
}

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    position: relative;
    z-index: 2;
}

.strategy-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 400px;
    cursor: pointer;
    transition: all var(--transition-base);
}

.strategy-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.strategy-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all var(--transition-slow);
}

.strategy-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(10, 25, 47, 0.9), rgba(10, 25, 47, 0.3));
    transition: all var(--transition-base);
    z-index: 2;
}

.strategy-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: var(--space-md);
}

.strategy-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
    color: var(--white);
}

.strategy-card p {
    color: var(--light-slate);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.strategy-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-top: var(--space-md);
}

.strategy-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--light-slate);
}

.strategy-list i {
    color: var(--gold);
    font-size: 0.75rem;
}

/* Focus Effect */
.strategy-card:hover .strategy-background {
    filter: blur(10px) brightness(0.7);
    transform: scale(1.1);
}

.strategy-card:hover .strategy-content {
    background: linear-gradient(to top, rgba(10, 25, 47, 0.95), rgba(10, 25, 47, 0.8));
    backdrop-filter: blur(5px);
}

.strategy-card:not(:hover) .strategy-content {
    backdrop-filter: blur(2px);
}

/* ===== Partner Form Section ===== */
.partner-form-section {
    background: #F8F9FA;
}

.form-container {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.form-header {
    padding: var(--space-xl);
    text-align: center;
    background: var(--gradient-primary);
    color: var(--white);
}

.form-label {
    display: inline-block;
    color: var(--gold);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--space-sm);
}

.form-title {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
    color: var(--white);
}

.form-description {
    font-size: 1.125rem;
    color: var(--light-slate);
    max-width: 600px;
    margin: 0 auto;
}

.partner-form {
    padding: var(--space-xl);
    display: block;
}

.form-success {
    padding: var(--space-xl);
    text-align: center;
    display: none;
}

.success-icon {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: var(--space-lg);
}

.form-success h3 {
    font-size: 2rem;
    margin-bottom: var(--space-md);
    color: var(--navy);
}

.form-success p {
    color: var(--slate);
    margin-bottom: var(--space-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--navy);
    font-size: 0.95rem;
}

.form-group label i {
    color: var(--gold);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid rgba(10, 25, 47, 0.1);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--navy);
    background: var(--white);
    transition: all var(--transition-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
}

.challenge-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
}

.challenge-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(197, 160, 89, 0.05);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-base);
}

.challenge-option:hover {
    background: rgba(197, 160, 89, 0.1);
}

.challenge-option input {
    margin: 0;
}

.challenge-option span {
    font-size: 0.875rem;
    color: var(--navy);
}

.consent-group {
    padding: var(--space-md);
    background: rgba(197, 160, 89, 0.05);
    border-radius: var(--radius-md);
}

.consent-label {
    display: flex;
    gap: var(--space-sm);
    align-items: flex-start;
    font-weight: normal;
    cursor: pointer;
}

.consent-label input {
    margin-top: 0.25rem;
}

.consent-label span {
    font-size: 0.875rem;
    color: var(--slate);
    line-height: 1.5;
}

.form-actions {
    text-align: center;
}

.form-note {
    margin-top: var(--space-md);
    font-size: 0.875rem;
    color: var(--slate);
}

/* ===== Final CTA ===== */
.final-cta {
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    color: var(--white);
}

.cta-description {
    font-size: 1.125rem;
    color: var(--light-slate);
    margin-bottom: var(--space-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* ===== Footer Placeholder ===== */
.footer-placeholder {
    background: var(--navy);
    color: var(--white);
    padding: var(--space-lg) 0;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
}

.footer-logo i {
    color: var(--gold);
    font-size: 1.5rem;
}

.footer-note {
    font-size: 0.875rem;
    color: var(--light-slate);
}

/* ===== Responsive Design ===== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .process-step {
        grid-template-columns: 80px 1fr 300px;
    }
    
    .step-reverse {
        grid-template-columns: 300px 1fr 80px;
    }
    
    .logo-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .process-step,
    .step-reverse {
        grid-template-columns: 1fr;
        gap: var(--space-md);
        text-align: center;
    }
    
    .process-step:not(:last-child)::after {
        display: none;
    }
    
    .step-number {
        order: 1;
        font-size: 3rem;
    }
    
    .step-content {
        order: 2;
    }
    
    .step-visual {
        order: 3;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .step-features {
        justify-content: center;
    }
    
    .strategy-grid {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .challenge-options {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    section {
        padding: var(--space-lg) 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .nav {
        display: none;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trust-stats {
        flex-direction: column;
        gap: var(--space-lg);
    }
    
    .strategy-list {
        grid-template-columns: 1fr;
    }
    
    .challenge-options {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .form-title {
        font-size: 2rem;
    }
    
    .logo-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Animation Classes ===== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stagger-animation > * {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.stagger-animation > *:nth-child(1) { animation-delay: 0.1s; }
.stagger-animation > *:nth-child(2) { animation-delay: 0.2s; }
.stagger-animation > *:nth-child(3) { animation-delay: 0.3s; }
.stagger-animation > *:nth-child(4) { animation-delay: 0.4s; }



/* ===== Premium Footer ===== */
.footer {
    background: var(--light-navy);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.footer-logo i {
    font-size: 2.5rem;
    color: var(--gold);
}

.footer-logo img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.footer-logo-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
    color: var(--white);
}

.footer-logo-text p {
    font-size: 0.875rem;
    color: var(--slate);
}

.footer-description {
    font-size: 0.875rem;
    color: var(--slate);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--light-slate);
    font-size: 0.875rem;
}

.footer-contact i {
    color: var(--gold);
    width: 16px;
}

.footer-title {
    font-size: 1.125rem;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--slate);
    font-size: 0.875rem;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 0.5rem;
}

.newsletter-form p {
    font-size: 0.875rem;
    color: var(--slate);
    margin-bottom: var(--space-sm);
}

.input-group {
    display: flex;
    margin-bottom: var(--space-md);
}

.input-group input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.875rem;
}

.input-group input:focus {
    outline: none;
    border-color: var(--gold);
}

.input-group button {
    background: var(--gold);
    color: var(--navy);
    border: none;
    padding: 0 1.5rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    cursor: pointer;
    font-size: 1rem;
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.875rem;
}

.footer-social a:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-info {
    font-size: 0.75rem;
    color: var(--slate);
}

.footer-info p {
    margin-bottom: 0.25rem;
}

.footer-certifications {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.cert-badge {
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    color: var(--light-slate);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ===== Chat Widget ===== */
.chat-widget {
    position: fixed;
    bottom: var(--space-lg);
    right: var(--space-lg);
    z-index: 1000;
}

.chat-toggle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gradient-gold);
    border: none;
    color: var(--navy);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    transition: all var(--transition-base);
    position: relative;
}

.chat-toggle:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

.chat-notification {
    position: absolute;
    top: 0;
    right: 0;
    width: 12px;
    height: 12px;
    background: var(--red);
    border-radius: 50%;
    border: 2px solid var(--navy);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.chat-container {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    background: var(--navy);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: none;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-base);
}

.chat-container.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.chat-header {
    padding: var(--space-md);
    background: var(--light-navy);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-agent {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.agent-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 1.25rem;
}

.agent-info h4 {
    font-size: 1rem;
    margin-bottom: 0.125rem;
    color: var(--white);
}

.agent-info p {
    font-size: 0.75rem;
    color: var(--slate);
}

.chat-close {
    background: transparent;
    border: none;
    color: var(--slate);
    font-size: 1rem;
    cursor: pointer;
}

.chat-close:hover {
    color: var(--white);
}

.chat-body {
    padding: var(--space-md);
    max-height: 400px;
    overflow-y: auto;
}

.chat-message {
    margin-bottom: var(--space-md);
}

.chat-message.agent {
    text-align: left;
}

.chat-message p {
    background: var(--light-navy);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-lg) var(--radius-lg) var(--radius-lg) 0;
    color: var(--light-slate);
    display: inline-block;
    max-width: 80%;
}

.message-time {
    display: block;
    font-size: 0.75rem;
    color: var(--slate);
    margin-top: 0.25rem;
    margin-left: var(--space-sm);
}

.chat-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: var(--space-md);
}

.chat-option {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--light-slate);
    padding: 0.75rem var(--space-md);
    border-radius: var(--radius-sm);
    cursor: pointer;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-base);
}

.chat-option:hover {
    background: rgba(197, 160, 89, 0.1);
    border-color: var(--gold);
    color: var(--gold);
}

.chat-input {
    padding: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: var(--space-sm);
}

.chat-input input {
    flex: 1;
    padding: 0.75rem var(--space-sm);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.875rem;
}

.chat-input input:focus {
    outline: none;
    border-color: var(--gold);
}

.send-btn {
    width: 48px;
    background: var(--gold);
    color: var(--navy);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== Responsive Design ===== */
@media (max-width: 1200px) {
    .slide-title {
        font-size: 3rem;
    }
    
    .bento-grid {
        grid-template-rows: repeat(6, 100px);
    }
}

@media (max-width: 992px) {
    .header-actions .btn span {
        display: none;
    }
    
    .header-actions .btn i {
        margin-right: 0;
    }
    
    .nav-list {
        gap: var(--space-sm);
    }
    
    .nav-link {
        font-size: 0.875rem;
    }
    
    .slide-title {
        font-size: 2.5rem;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .serve-container {
        flex-direction: column;
        height: auto;
    }
    
    .serve-panel {
        height: 400px;
    }
    
    .bento-grid {
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: auto;
    }
    
    .bento-card.large,
    .bento-card.wide {
        grid-column: span 6;
    }
    
    .bento-card.tall,
    .bento-card:not(.large):not(.tall):not(.wide) {
        grid-column: span 3;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .primary-nav {
        display: none;
    }
    
    .header-actions .btn {
        display: none;
    }
    
    .header-actions .btn-small:last-child {
        display: flex;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-description {
        font-size: 1rem;
    }
    
    .slide-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bento-card.large,
    .bento-card.wide,
    .bento-card.tall,
    .bento-card:not(.large):not(.tall):not(.wide) {
        grid-column: span 2;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .chat-container {
        width: calc(100vw - 40px);
        right: -20px;
    }
}

@media (max-width: 576px) {
    .slide-title {
        font-size: 1.75rem;
    }
    
    .slide-badge {
        font-size: 0.75rem;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .metric-card {
        justify-content: center;
        text-align: center;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .bento-card.large,
    .bento-card.wide,
    .bento-card.tall,
    .bento-card:not(.large):not(.tall):not(.wide) {
        grid-column: span 1;
    }
    
    .carousel-prev,
    .carousel-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carousel-prev {
        left: var(--space-sm);
    }
    
    .carousel-next {
        right: var(--space-sm);
    }
}

/* ===== Utility Classes ===== */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-employer {
    background: var(--gradient-gold);
    color: var(--navy);
}

.btn-jobseeker {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}

.btn-chat-small {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
    background: var(--accent-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}