/**
 * Job-Gateaway Main Stylesheet
 * 
 * A modern, professional CSS design for a job networking platform.
 * Uses CSS custom properties for easy theming and maintenance.
 * 
 * @package Job-Gateaway
 * @version 1.0.0
 * 
 * Table of Contents:
 * 1. CSS Variables / Custom Properties
 * 2. Reset & Base Styles
 * 3. Typography
 * 4. Layout & Container
 * 5. Header & Navigation
 * 6. Buttons & Links
 * 7. Hero Section
 * 8. Features Section
 * 9. How It Works Section
 * 10. Statistics Section
 * 11. Testimonials Section
 * 12. CTA Section
 * 13. Footer
 * 14. Utility Classes
 * 15. Animations
 * 16. Responsive Styles
 */

/* =====================================================
   1. CSS Variables / Custom Properties
   ===================================================== */
:root {
    /* Primary Colors - Professional Blue Palette */
    --color-primary: #0a66c2;
    --color-primary-dark: #004182;
    --color-primary-light: #378fe9;
    --color-primary-lighter: #e8f3fc;
    
    /* Secondary Colors */
    --color-secondary: #057642;
    --color-secondary-light: #44a574;
    
    /* Accent Colors */
    --color-accent: #f5c75d;
    --color-accent-orange: #e7a33e;
    
    /* Neutral Colors */
    --color-white: #ffffff;
    --color-gray-50: #f8fafc;
    --color-gray-100: #f3f6f8;
    --color-gray-200: #e8eef3;
    --color-gray-300: #dce6f1;
    --color-gray-400: #b0bec5;
    --color-gray-500: #86939e;
    --color-gray-600: #5e6d77;
    --color-gray-700: #38434f;
    --color-gray-800: #1d2226;
    --color-gray-900: #0d1117;
    
    /* Semantic Colors */
    --color-success: #057642;
    --color-warning: #f5c75d;
    --color-error: #cc1016;
    --color-info: #0a66c2;
    
    /* Background Colors */
    --bg-body: #f3f6f8;
    --bg-card: #ffffff;
    --bg-section-alt: #f8fafc;
    
    /* Text Colors */
    --text-primary: #1d2226;
    --text-secondary: #5e6d77;
    --text-muted: #86939e;
    --text-inverse: #ffffff;
    
    /* Typography */
    --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 3.75rem;
    
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    
    --line-height-tight: 1.25;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.75;
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-card-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 250ms ease;
    --transition-slow: 350ms ease;
    
    /* Z-Index Scale */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal-backdrop: 400;
    --z-modal: 500;
    --z-tooltip: 600;
    
    /* Container */
    --container-max: 1280px;
    --container-padding: 1.5rem;
    
    /* Header */
    --header-height: 72px;
}

/* =====================================================
   2. Reset & Base Styles
   ===================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-normal);
    color: var(--text-primary);
    background-color: var(--bg-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.nav-open {
    overflow: hidden;
}

img,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
}

/* =====================================================
   3. Typography
   ===================================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
    color: var(--text-primary);
}

h1 {
    font-size: var(--font-size-5xl);
}

h2 {
    font-size: var(--font-size-4xl);
}

h3 {
    font-size: var(--font-size-2xl);
}

h4 {
    font-size: var(--font-size-xl);
}

h5 {
    font-size: var(--font-size-lg);
}

h6 {
    font-size: var(--font-size-base);
}

p {
    color: var(--text-secondary);
}

/* =====================================================
   4. Layout & Container
   ===================================================== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.main-content {
    min-height: calc(100vh - var(--header-height));
    padding-top: var(--header-height);
}

.section {
    padding: var(--space-20) 0;
}

.section-alt {
    background-color: var(--bg-section-alt);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.section-title {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-extrabold);
    margin-bottom: var(--space-4);
}

.section-subtitle {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* =====================================================
   5. Header & Navigation
   ===================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background-color: var(--color-white);
    z-index: var(--z-fixed);
    transition: all var(--transition-normal);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header.header-hidden {
    transform: translateY(-100%);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    gap: var(--space-8);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    transition: opacity var(--transition-fast);
}

.logo:hover {
    opacity: 0.85;
}

.logo-icon {
    display: flex;
    align-items: center;
    color: var(--color-primary);
}

.logo-text {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-1);
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: var(--space-2) var(--space-4);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    color: var(--text-secondary);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.nav-link:hover {
    color: var(--text-primary);
    background-color: var(--color-gray-100);
}

.nav-link.active {
    color: var(--color-primary);
    background-color: var(--color-primary-lighter);
}

/* Auth Buttons */
.nav-auth {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    transition: background var(--transition-fast);
}

.nav-toggle:hover {
    background-color: var(--color-gray-100);
}

.hamburger {
    position: relative;
    width: 20px;
    height: 2px;
    background-color: var(--text-primary);
    transition: all var(--transition-fast);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    transition: all var(--transition-fast);
}

.hamburger::before {
    top: -6px;
}

.hamburger::after {
    bottom: -6px;
}

.nav-toggle.active .hamburger {
    background-color: transparent;
}

.nav-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle.active .hamburger::after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* =====================================================
   6. Buttons & Links
   ===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    line-height: 1;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    color: var(--color-white);
    background-color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    color: var(--color-primary);
    background-color: transparent;
    border: 2px solid var(--color-primary);
}

.btn-outline:hover {
    color: var(--color-white);
    background-color: var(--color-primary);
    transform: translateY(-2px);
}

.btn-secondary {
    color: var(--text-primary);
    background-color: var(--color-white);
    border: 2px solid var(--color-gray-300);
}

.btn-secondary:hover {
    background-color: var(--color-gray-100);
    border-color: var(--color-gray-400);
}

.btn-lg {
    padding: var(--space-4) var(--space-8);
    font-size: var(--font-size-base);
}

.btn-xl {
    padding: var(--space-5) var(--space-10);
    font-size: var(--font-size-lg);
}

.btn-icon {
    padding: var(--space-3);
}

/* =====================================================
   7. Hero Section
   ===================================================== */
.hero {
    position: relative;
    padding: var(--space-24) 0 var(--space-32);
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-primary-lighter) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 150%;
    background: radial-gradient(circle, rgba(10, 102, 194, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 50%;
    height: 80%;
    background: radial-gradient(circle, rgba(5, 118, 66, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    color: var(--color-primary);
    background-color: var(--color-primary-lighter);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-6);
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

.hero-title {
    font-size: clamp(var(--font-size-4xl), 5vw, var(--font-size-6xl));
    font-weight: var(--font-weight-extrabold);
    line-height: 1.1;
    margin-bottom: var(--space-6);
}

.hero-title .highlight {
    position: relative;
    color: var(--color-primary);
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 0.1em;
    left: 0;
    width: 100%;
    height: 0.15em;
    background-color: var(--color-accent);
    opacity: 0.6;
    z-index: -1;
}

.hero-description {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--space-8);
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    margin-bottom: var(--space-10);
}

/* Hero Search Form */
.hero-search {
    display: flex;
    background-color: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    padding: var(--space-2);
    max-width: 540px;
}

.search-field {
    flex: 1;
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
}

.search-field svg {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    flex-shrink: 0;
}

.search-field input {
    width: 100%;
    border: none;
    outline: none;
    font-size: var(--font-size-sm);
    color: var(--text-primary);
    background: transparent;
}

.search-field input::placeholder {
    color: var(--text-muted);
}

.search-divider {
    width: 1px;
    height: 40px;
    background-color: var(--color-gray-200);
    align-self: center;
}

.search-btn {
    padding: var(--space-3) var(--space-6);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--color-white);
    background-color: var(--color-primary);
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
}

.search-btn:hover {
    background-color: var(--color-primary-dark);
}

/* Hero Image/Illustration */
.hero-visual {
    position: relative;
    z-index: 1;
}

.hero-image {
    position: relative;
    width: 100%;
    max-width: 580px;
    margin-left: auto;
}

.hero-image-main {
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background-color: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: var(--space-4);
    animation: float 6s ease-in-out infinite;
}

.floating-card-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.floating-card-2 {
    bottom: 20%;
    right: -5%;
    animation-delay: 2s;
}

.floating-card-3 {
    bottom: 5%;
    left: 5%;
    animation-delay: 4s;
}

.card-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-2);
}

.card-icon.blue {
    background-color: var(--color-primary-lighter);
    color: var(--color-primary);
}

.card-icon.green {
    background-color: rgba(5, 118, 66, 0.1);
    color: var(--color-secondary);
}

.card-icon.orange {
    background-color: rgba(231, 163, 62, 0.15);
    color: var(--color-accent-orange);
}

.floating-card h4 {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--space-1);
}

.floating-card p {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
}

/* =====================================================
   8. Features Section
   ===================================================== */
.features {
    padding: var(--space-24) 0;
    background-color: var(--color-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
}

.feature-card {
    padding: var(--space-8);
    background-color: var(--bg-section-alt);
    border-radius: var(--radius-2xl);
    transition: all var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    background-color: var(--color-white);
}

.feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-6);
    transition: transform var(--transition-normal);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon.blue {
    background: linear-gradient(135deg, var(--color-primary-lighter) 0%, rgba(10, 102, 194, 0.2) 100%);
    color: var(--color-primary);
}

.feature-icon.green {
    background: linear-gradient(135deg, rgba(5, 118, 66, 0.1) 0%, rgba(5, 118, 66, 0.2) 100%);
    color: var(--color-secondary);
}

.feature-icon.purple {
    background: linear-gradient(135deg, rgba(130, 80, 223, 0.1) 0%, rgba(130, 80, 223, 0.2) 100%);
    color: #8250df;
}

.feature-icon.orange {
    background: linear-gradient(135deg, rgba(231, 163, 62, 0.15) 0%, rgba(231, 163, 62, 0.25) 100%);
    color: var(--color-accent-orange);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
}

.feature-title {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-3);
}

.feature-description {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    line-height: var(--line-height-relaxed);
}

/* =====================================================
   9. How It Works Section
   ===================================================== */
.how-it-works {
    padding: var(--space-24) 0;
    background-color: var(--bg-section-alt);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    position: relative;
}

/* Connecting Line */
.steps-container::before {
    content: '';
    position: absolute;
    top: 60px;
    left: calc(16.66% + 40px);
    right: calc(16.66% + 40px);
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-radius: var(--radius-full);
}

.step-card {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-6);
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-extrabold);
    color: var(--color-white);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(10, 102, 194, 0.3);
}

.step-card:nth-child(2) .step-number {
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
}

.step-card:nth-child(3) .step-number {
    background: linear-gradient(135deg, var(--color-secondary-light) 0%, var(--color-secondary) 100%);
}

.step-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-4);
    background-color: var(--color-white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
}

.step-icon svg {
    width: 48px;
    height: 48px;
    color: var(--color-primary);
}

.step-title {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-3);
}

.step-description {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    line-height: var(--line-height-relaxed);
    max-width: 280px;
    margin: 0 auto;
}

/* =====================================================
   10. Statistics Section
   ===================================================== */
.stats {
    padding: var(--space-16) 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: var(--font-size-5xl);
    font-weight: var(--font-weight-extrabold);
    line-height: 1;
    margin-bottom: var(--space-2);
}

.stat-label {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* =====================================================
   11. Testimonials Section
   ===================================================== */
.testimonials {
    padding: var(--space-24) 0;
    background-color: var(--color-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.testimonial-card {
    padding: var(--space-8);
    background-color: var(--bg-section-alt);
    border-radius: var(--radius-2xl);
    transition: all var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-quote {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--space-6);
    font-style: italic;
}

.testimonial-quote::before {
    content: '"';
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    line-height: 0;
    display: block;
    margin-bottom: var(--space-2);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary-lighter) 0%, var(--color-primary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-lg);
}

.author-info h5 {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--space-1);
}

.author-info p {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
}

/* =====================================================
   12. CTA Section
   ===================================================== */
.cta {
    padding: var(--space-24) 0;
    background: linear-gradient(135deg, var(--bg-section-alt) 0%, var(--color-white) 100%);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(10, 102, 194, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(5, 118, 66, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-extrabold);
    margin-bottom: var(--space-4);
}

.cta-description {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    margin-bottom: var(--space-8);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
}

/* =====================================================
   13. Footer
   ===================================================== */
.footer {
    padding: var(--space-16) 0 var(--space-8);
    background-color: var(--color-gray-800);
    color: var(--color-white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: var(--space-10);
    margin-bottom: var(--space-12);
}

.footer-col:first-child {
    padding-right: var(--space-8);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    margin-bottom: var(--space-4);
}

.footer-logo .logo-icon {
    color: var(--color-primary-light);
}

.footer-about {
    font-size: var(--font-size-sm);
    color: var(--color-gray-400);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--space-6);
}

.social-links {
    display: flex;
    gap: var(--space-3);
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray-400);
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
}

.social-link:hover {
    color: var(--color-white);
    background-color: var(--color-primary);
    transform: translateY(-2px);
}

.footer-heading {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-5);
}

.footer-links li {
    margin-bottom: var(--space-3);
}

.footer-links a {
    font-size: var(--font-size-sm);
    color: var(--color-gray-400);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-primary-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    font-size: var(--font-size-sm);
    color: var(--color-gray-500);
}

.footer-tagline {
    font-size: var(--font-size-sm);
    color: var(--color-gray-500);
}

.footer-tagline .heart {
    color: #e74c3c;
}

/* =====================================================
   14. Utility Classes
   ===================================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-4 { margin-top: var(--space-4); }
.mt-8 { margin-top: var(--space-8); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-8 { margin-bottom: var(--space-8); }

.hidden { display: none; }
.visible { visibility: visible; }
.invisible { visibility: hidden; }

/* =====================================================
   15. Animations
   ===================================================== */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Animation Delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* =====================================================
   16. Responsive Styles
   ===================================================== */

/* Large Tablets & Small Desktops */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-container {
        gap: var(--space-10);
    }
}

/* Tablets */
@media (max-width: 992px) {
    :root {
        --header-height: 64px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-visual {
        order: 0;
        margin-bottom: var(--space-8);
    }
    
    .hero-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero-description {
        max-width: 100%;
        margin: 0 auto var(--space-8);
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-search {
        margin: 0 auto;
    }
    
    .floating-card {
        display: none;
    }
    
    .steps-container::before {
        display: none;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-10);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-col:first-child {
        grid-column: 1 / -1;
        padding-right: 0;
    }
}

/* Mobile Landscape & Small Tablets */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background-color: var(--color-white);
        flex-direction: column;
        padding: var(--space-4);
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-normal);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link {
        width: 100%;
        padding: var(--space-4);
        justify-content: center;
    }
    
    .nav-auth {
        position: fixed;
        top: calc(var(--header-height) + 200px);
        left: 0;
        right: 0;
        background-color: var(--color-white);
        flex-direction: column;
        padding: var(--space-4);
        border-top: 1px solid var(--color-gray-200);
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-normal);
    }
    
    .nav-auth.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-auth .btn {
        width: 100%;
    }
    
    .section {
        padding: var(--space-16) 0;
    }
    
    .section-title {
        font-size: var(--font-size-3xl);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: var(--space-10);
    }
    
    .hero-search {
        flex-direction: column;
        gap: 0;
    }
    
    .search-field {
        border-bottom: 1px solid var(--color-gray-200);
    }
    
    .search-field:last-of-type {
        border-bottom: none;
    }
    
    .search-divider {
        display: none;
    }
    
    .search-btn {
        width: 100%;
        margin-top: var(--space-2);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-4);
        text-align: center;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    :root {
        --container-padding: 1rem;
    }
    
    .hero {
        padding: var(--space-16) 0 var(--space-20);
    }
    
    .hero-title {
        font-size: var(--font-size-3xl);
    }
    
    .hero-description {
        font-size: var(--font-size-base);
    }
    
    .btn-lg {
        padding: var(--space-3) var(--space-6);
        font-size: var(--font-size-sm);
    }
    
    .feature-card {
        padding: var(--space-6);
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    .stat-number {
        font-size: var(--font-size-4xl);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Prefer Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    .floating-card {
        animation: none;
    }
}

/* =====================================================
   17. Authentication Pages
   ===================================================== */
.auth-section {
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    padding: var(--space-12) 0;
    background: linear-gradient(135deg, var(--bg-body) 0%, var(--color-primary-lighter) 100%);
}

.auth-card {
    max-width: 480px;
    margin: 0 auto;
    background: var(--color-white);
    padding: var(--space-10);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.auth-header {
    text-align: center;
    margin-bottom: var(--space-8);
}

.auth-header h1 {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--space-2);
}

.auth-header p {
    color: var(--text-secondary);
}

.auth-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-6);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-lighter);
    color: var(--color-primary);
    border-radius: 50%;
}

.auth-icon.warning {
    background: rgba(245, 199, 93, 0.2);
    color: var(--color-accent-orange);
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.form-group label {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    color: var(--text-primary);
}

.form-control {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    font-size: var(--font-size-base);
    border: 2px solid var(--color-gray-300);
    border-radius: var(--radius-lg);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    outline: none;
}

.form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px var(--color-primary-lighter);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
}

.form-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form-link {
    font-size: var(--font-size-sm);
    color: var(--color-primary);
}

.form-hint {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
}

.form-separator {
    display: flex;
    align-items: center;
    color: var(--text-muted);
}

.password-input {
    position: relative;
}

.password-input .form-control {
    padding-right: var(--space-12);
}

.password-toggle {
    position: absolute;
    right: var(--space-3);
    top: 50%;
    transform: translateY(-50%);
    padding: var(--space-2);
    color: var(--text-muted);
    background: none;
    border: none;
    cursor: pointer;
}

.password-strength {
    min-height: 20px;
}

.strength-weak { color: var(--color-error); font-size: var(--font-size-xs); }
.strength-medium { color: var(--color-warning); font-size: var(--font-size-xs); }
.strength-strong { color: var(--color-success); font-size: var(--font-size-xs); }

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    cursor: pointer;
    font-size: var(--font-size-sm);
}

.checkbox-label input {
    width: 18px;
    height: 18px;
    accent-color: var(--color-primary);
    margin-top: 2px;
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
}

.user-type-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3);
}

.type-option {
    cursor: pointer;
}

.type-option input {
    display: none;
}

.type-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-5);
    border: 2px solid var(--color-gray-300);
    border-radius: var(--radius-xl);
    transition: all var(--transition-fast);
}

.type-option input:checked + .type-content {
    border-color: var(--color-primary);
    background-color: var(--color-primary-lighter);
}

.type-icon {
    color: var(--color-primary);
}

.type-label {
    font-weight: var(--font-weight-semibold);
}

.type-desc {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
}

.btn-block {
    width: 100%;
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin: var(--space-6) 0;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--color-gray-200);
}

.auth-divider span {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}

.social-buttons {
    display: flex;
    gap: var(--space-3);
}

.btn-social {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3);
    background: var(--color-white);
    border: 2px solid var(--color-gray-300);
    border-radius: var(--radius-lg);
    font-weight: var(--font-weight-medium);
    transition: all var(--transition-fast);
}

.btn-social:hover {
    background: var(--color-gray-100);
    border-color: var(--color-gray-400);
}

.auth-footer {
    text-align: center;
    margin-top: var(--space-8);
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

.auth-footer a {
    color: var(--color-primary);
    font-weight: var(--font-weight-semibold);
}

.success-state,
.error-state {
    text-align: center;
    padding: var(--space-8) 0;
}

.success-icon,
.error-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--space-6);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--color-primary-lighter);
    color: var(--color-primary);
}

.success-icon.success {
    background: rgba(5, 118, 66, 0.1);
    color: var(--color-success);
}

.error-icon {
    background: rgba(204, 16, 22, 0.1);
    color: var(--color-error);
}

.success-state h2,
.error-state h2 {
    margin-bottom: var(--space-4);
}

.success-state p,
.error-state p {
    margin-bottom: var(--space-6);
}

.action-buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
}

.code-input {
    text-align: center;
    font-size: var(--font-size-2xl);
    letter-spacing: 0.5em;
    font-weight: var(--font-weight-bold);
}

/* Alerts */
.alert {
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-6);
}

.alert-success {
    background: rgba(5, 118, 66, 0.1);
    color: var(--color-success);
    border: 1px solid rgba(5, 118, 66, 0.2);
}

.alert-error {
    background: rgba(204, 16, 22, 0.1);
    color: var(--color-error);
    border: 1px solid rgba(204, 16, 22, 0.2);
}

.alert-warning {
    background: rgba(245, 199, 93, 0.2);
    color: #92400e;
    border: 1px solid rgba(245, 199, 93, 0.3);
}

/* =====================================================
   18. User Menu Dropdown
   ===================================================== */
.user-menu {
    position: relative;
}

.user-menu-trigger {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2);
    background: none;
    border: none;
    cursor: pointer;
    border-radius: var(--radius-lg);
    transition: background var(--transition-fast);
}

.user-menu-trigger:hover {
    background: var(--color-gray-100);
}

.user-avatar-sm {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-sm);
    overflow: hidden;
}

.user-avatar-sm img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-name {
    font-weight: var(--font-weight-medium);
    color: var(--text-primary);
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: var(--space-2);
    min-width: 240px;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-fast);
    z-index: var(--z-dropdown);
}

.user-menu:hover .user-dropdown,
.user-dropdown:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-header {
    padding: var(--space-4);
}

.dropdown-name {
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
}

.dropdown-email {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}

.dropdown-divider {
    height: 1px;
    background: var(--color-gray-200);
    margin: var(--space-2) 0;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.dropdown-item:hover {
    background: var(--color-gray-100);
    color: var(--text-primary);
}

.dropdown-item.logout {
    color: var(--color-error);
}

/* =====================================================
   19. Dashboard Styles
   ===================================================== */
.dashboard {
    padding: var(--space-8) 0;
    min-height: calc(100vh - var(--header-height));
    background: var(--bg-section-alt);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-8);
}

.welcome-section h1 {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--space-2);
}

.welcome-section p {
    color: var(--text-secondary);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.dashboard-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    box-shadow: var(--shadow-sm);
}

.dashboard-card.full-width {
    grid-column: 1 / -1;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-6);
}

.card-header h3 {
    font-size: var(--font-size-lg);
}

.card-link {
    font-size: var(--font-size-sm);
    color: var(--color-primary);
    font-weight: var(--font-weight-medium);
}

/* Profile Completeness */
.profile-completeness {
    display: flex;
    gap: var(--space-6);
    align-items: center;
}

.completeness-circle {
    position: relative;
    width: 100px;
    height: 100px;
}

.completeness-circle svg {
    transform: rotate(-90deg);
}

.completeness-circle .bg {
    fill: none;
    stroke: var(--color-gray-200);
    stroke-width: 8;
}

.completeness-circle .progress {
    fill: none;
    stroke: var(--color-primary);
    stroke-width: 8;
    stroke-linecap: round;
    transition: stroke-dasharray 0.5s ease;
}

.completeness-circle .percentage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
}

.completeness-info .status {
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--space-2);
}

.completeness-info .status.good { color: var(--color-success); }
.completeness-info .status.medium { color: var(--color-accent-orange); }
.completeness-info .status.low { color: var(--color-error); }

.completeness-info .hint {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    margin-bottom: var(--space-3);
}

.missing-items {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.missing-item {
    font-size: var(--font-size-xs);
    padding: var(--space-1) var(--space-2);
    background: var(--color-gray-100);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-4);
}

.stat-box {
    text-align: center;
    padding: var(--space-4);
    background: var(--color-gray-100);
    border-radius: var(--radius-lg);
}

.stat-box .stat-value {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    display: block;
}

.stat-box .stat-label {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
}

.stat-box.pending { background: rgba(107, 114, 128, 0.1); }
.stat-box.reviewing { background: var(--color-primary-lighter); }
.stat-box.interviews { background: rgba(245, 158, 11, 0.1); }

/* Quick Actions */
.quick-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
}

.action-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4);
    background: var(--color-gray-100);
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
}

.action-item:hover {
    background: var(--color-gray-200);
    transform: translateX(4px);
}

.action-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
}

.action-icon.blue { background: var(--color-primary-lighter); color: var(--color-primary); }
.action-icon.green { background: rgba(5, 118, 66, 0.1); color: var(--color-success); }
.action-icon.purple { background: rgba(139, 92, 246, 0.1); color: #8b5cf6; }
.action-icon.orange { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }

.action-item span {
    font-weight: var(--font-weight-medium);
    color: var(--text-primary);
}

/* Availability Status */
.availability-status .status-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-weight: var(--font-weight-medium);
    font-size: var(--font-size-sm);
}

.status-badge .status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
}

.status-badge.green { background: rgba(5, 118, 66, 0.1); color: var(--color-success); }
.status-badge.blue { background: var(--color-primary-lighter); color: var(--color-primary); }
.status-badge.gray { background: var(--color-gray-200); color: var(--text-muted); }
.status-badge.purple { background: rgba(139, 92, 246, 0.1); color: #8b5cf6; }

.status-hint {
    margin-top: var(--space-3);
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}

/* Applications List */
.applications-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.application-item {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-4);
    background: var(--color-gray-100);
    border-radius: var(--radius-lg);
}

.company-logo {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-lg);
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-weight: var(--font-weight-bold);
    overflow: hidden;
}

.company-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.application-info {
    flex: 1;
}

.application-info h4 {
    font-size: var(--font-size-base);
    margin-bottom: var(--space-1);
}

.application-info p {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}

.application-status {
    text-align: right;
}

.status-tag {
    display: inline-block;
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-medium);
    text-transform: capitalize;
}

.status-tag.pending { background: var(--color-gray-200); color: var(--text-secondary); }
.status-tag.reviewing { background: var(--color-primary-lighter); color: var(--color-primary); }
.status-tag.shortlisted { background: rgba(139, 92, 246, 0.1); color: #8b5cf6; }
.status-tag.interviewed { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }
.status-tag.offered { background: rgba(5, 118, 66, 0.1); color: var(--color-success); }
.status-tag.hired { background: rgba(5, 118, 66, 0.2); color: var(--color-success); }
.status-tag.rejected { background: rgba(204, 16, 22, 0.1); color: var(--color-error); }

.applied-date {
    display: block;
    font-size: var(--font-size-xs);
    color: var(--text-muted);
    margin-top: var(--space-1);
}

/* Empty State */
.empty-state,
.empty-state-large {
    text-align: center;
    padding: var(--space-10);
}

.empty-state-large {
    padding: var(--space-16);
    background: var(--color-white);
    border-radius: var(--radius-xl);
}

.empty-state svg,
.empty-icon svg {
    margin: 0 auto var(--space-4);
    color: var(--text-muted);
}

.empty-state h3,
.empty-state-large h2 {
    margin-bottom: var(--space-2);
}

.empty-state p,
.empty-state-large p {
    color: var(--text-muted);
    margin-bottom: var(--space-6);
}

/* =====================================================
   20. Profile Page Styles
   ===================================================== */
.profile-page {
    padding: var(--space-8) 0;
    background: var(--bg-section-alt);
    min-height: calc(100vh - var(--header-height));
}

.profile-header-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: var(--space-6);
}

.cover-photo {
    height: 200px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    position: relative;
}

.cover-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.edit-cover-btn {
    position: absolute;
    bottom: var(--space-4);
    right: var(--space-4);
    padding: var(--space-2) var(--space-3);
    background: rgba(0,0,0,0.5);
    color: var(--color-white);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
}

.profile-header-content {
    display: flex;
    align-items: flex-end;
    gap: var(--space-6);
    padding: 0 var(--space-6) var(--space-6);
    margin-top: -60px;
    position: relative;
}

.profile-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: var(--color-white);
    border: 4px solid var(--color-white);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-initials {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    background: var(--color-primary-lighter);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.edit-avatar-btn {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 36px;
    height: 36px;
    background: var(--color-primary);
    color: var(--color-white);
    border: 3px solid var(--color-white);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-info {
    flex: 1;
    padding-bottom: var(--space-4);
}

.profile-info h1 {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--space-1);
}

.profile-info .headline {
    color: var(--text-secondary);
    margin-bottom: var(--space-2);
}

.profile-info .location {
    display: flex;
    align-items: center;
    gap: var(--space-1);
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}

.profile-completeness-badge {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: var(--color-gray-100);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
}

.mini-progress {
    width: 60px;
    height: 6px;
    background: var(--color-gray-300);
    border-radius: var(--radius-full);
    position: relative;
    overflow: hidden;
}

.mini-progress::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: var(--progress);
    background: var(--color-primary);
    border-radius: var(--radius-full);
}

.profile-content {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: var(--space-6);
}

.profile-nav {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-4);
    height: fit-content;
    position: sticky;
    top: calc(var(--header-height) + var(--space-4));
}

.profile-nav .nav-item {
    display: block;
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-lg);
    color: var(--text-secondary);
    font-weight: var(--font-weight-medium);
    transition: all var(--transition-fast);
}

.profile-nav .nav-item:hover {
    background: var(--color-gray-100);
    color: var(--text-primary);
}

.profile-nav .nav-item.active {
    background: var(--color-primary-lighter);
    color: var(--color-primary);
}

.profile-sections {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.profile-section {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
}

.profile-section h2 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid var(--color-gray-200);
}

.profile-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid var(--color-gray-200);
}

.profile-section .section-header h2 {
    margin-bottom: 0;
    padding-bottom: 0;
    border: none;
}

.profile-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
}

/* Status Options */
.status-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
}

.status-option {
    cursor: pointer;
}

.status-option input {
    display: none;
}

.status-content {
    padding: var(--space-4);
    border: 2px solid var(--color-gray-300);
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
}

.status-option input:checked + .status-content {
    border-color: var(--color-primary);
    background: var(--color-primary-lighter);
}

.status-name {
    display: block;
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--space-1);
}

.status-desc {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
}

/* Experience & Education Lists */
.experience-list,
.education-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.experience-item,
.education-item {
    display: flex;
    gap: var(--space-4);
}

.exp-icon,
.edu-icon {
    width: 48px;
    height: 48px;
    background: var(--color-primary-lighter);
    color: var(--color-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.exp-content,
.edu-content {
    flex: 1;
}

.exp-content h4,
.edu-content h4 {
    font-size: var(--font-size-base);
    margin-bottom: var(--space-1);
}

.exp-content .company,
.edu-content .degree {
    color: var(--text-secondary);
    margin-bottom: var(--space-1);
}

.exp-content .dates,
.edu-content .dates {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}

.exp-content .description {
    margin-top: var(--space-3);
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

.exp-actions {
    flex-shrink: 0;
}

/* Skills Grid */
.skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
}

.skill-tag {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: var(--color-gray-100);
    border-radius: var(--radius-full);
}

.skill-name {
    font-weight: var(--font-weight-medium);
}

.skill-level {
    font-size: var(--font-size-xs);
    padding: var(--space-1) var(--space-2);
    border-radius: var(--radius-sm);
    background: var(--color-white);
}

.skill-level.beginner { color: var(--text-muted); }
.skill-level.intermediate { color: var(--color-primary); }
.skill-level.advanced { color: var(--color-secondary); }
.skill-level.expert { color: #8b5cf6; }

.security-actions {
    margin-top: var(--space-8);
    padding-top: var(--space-6);
    border-top: 1px solid var(--color-gray-200);
}

/* =====================================================
   21. Modal Styles
   ===================================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-modal);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    padding: var(--space-4);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(20px);
    transition: transform var(--transition-fast);
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-content.modal-lg {
    max-width: 700px;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-6);
    border-bottom: 1px solid var(--color-gray-200);
}

.modal-header h3 {
    font-size: var(--font-size-xl);
}

.modal-close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: var(--color-gray-100);
    border-radius: var(--radius-md);
    font-size: var(--font-size-xl);
    cursor: pointer;
    color: var(--text-muted);
}

.modal-close:hover {
    background: var(--color-gray-200);
}

.modal-form {
    padding: var(--space-6);
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: var(--space-3);
    margin-top: var(--space-6);
    padding-top: var(--space-6);
    border-top: 1px solid var(--color-gray-200);
}

/* =====================================================
   22. Page-Specific Styles
   ===================================================== */
.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-8);
}

.page-header h1 {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--space-2);
}

.page-header p {
    color: var(--text-secondary);
}

.section-block {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    margin-bottom: var(--space-6);
}

.section-block h2 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-6);
}

/* Portfolio Grid */
.portfolio-page,
.certifications-page,
.job-alerts-page,
.applications-page,
.resume-builder {
    padding: var(--space-8) 0;
    background: var(--bg-section-alt);
    min-height: calc(100vh - var(--header-height));
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--space-6);
}

.portfolio-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    position: relative;
}

.portfolio-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.portfolio-card.featured {
    border: 2px solid var(--color-accent);
}

.featured-badge {
    position: absolute;
    top: var(--space-3);
    right: var(--space-3);
    background: var(--color-accent);
    color: var(--text-primary);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    z-index: 1;
}

.project-image {
    height: 200px;
    background: var(--color-gray-100);
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.project-content {
    padding: var(--space-5);
}

.project-content h3 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-2);
}

.project-description {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    margin-bottom: var(--space-4);
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
}

.tech-tag {
    padding: var(--space-1) var(--space-2);
    background: var(--color-primary-lighter);
    color: var(--color-primary);
    border-radius: var(--radius-sm);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-medium);
}

.tech-tag.more {
    background: var(--color-gray-200);
    color: var(--text-muted);
}

.project-links {
    display: flex;
    gap: var(--space-4);
}

.project-link {
    display: flex;
    align-items: center;
    gap: var(--space-1);
    font-size: var(--font-size-sm);
    color: var(--color-primary);
    font-weight: var(--font-weight-medium);
}

.project-actions {
    display: flex;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-5);
    border-top: 1px solid var(--color-gray-200);
}

.btn-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: var(--color-gray-100);
    border-radius: var(--radius-md);
    cursor: pointer;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.btn-icon:hover {
    background: var(--color-gray-200);
    color: var(--text-primary);
}

.btn-icon.danger:hover {
    background: rgba(204, 16, 22, 0.1);
    color: var(--color-error);
}

/* Certifications */
.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--space-6);
}

.certification-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    box-shadow: var(--shadow-sm);
}

.certification-card.verified {
    border: 2px solid var(--color-success);
}

.cert-badge {
    width: 64px;
    height: 64px;
    position: relative;
}

.cert-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.default-badge {
    width: 100%;
    height: 100%;
    background: var(--color-primary-lighter);
    color: var(--color-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.verified-badge {
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 24px;
    height: 24px;
    background: var(--color-success);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--color-white);
}

.cert-content h3 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-1);
}

.cert-content .issuer {
    color: var(--text-secondary);
}

.cert-dates {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    font-size: var(--font-size-sm);
}

.cert-dates .issued {
    color: var(--text-muted);
}

.cert-dates .expiry {
    color: var(--text-muted);
}

.cert-dates .expiry.expired {
    color: var(--color-error);
}

.cert-dates .no-expiry {
    color: var(--color-success);
}

.credential-id {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}

.cert-actions {
    display: flex;
    gap: var(--space-3);
    margin-top: auto;
}

/* Job Alerts */
.alerts-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.alert-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: var(--space-4);
    align-items: start;
    box-shadow: var(--shadow-sm);
}

.alert-card.paused {
    opacity: 0.7;
}

.alert-status {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
}

.status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-success);
}

.alert-card.paused .status-indicator {
    background: var(--color-gray-400);
}

.alert-content h3 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-3);
}

.alert-criteria {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-bottom: var(--space-3);
}

.criteria-tag {
    display: flex;
    align-items: center;
    gap: var(--space-1);
    padding: var(--space-1) var(--space-3);
    background: var(--color-gray-100);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

.criteria-tag.remote {
    background: rgba(5, 118, 66, 0.1);
    color: var(--color-success);
}

.alert-meta {
    display: flex;
    gap: var(--space-4);
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}

.alert-meta .frequency {
    display: flex;
    align-items: center;
    gap: var(--space-1);
}

.alert-actions {
    display: flex;
    gap: var(--space-2);
}

/* Applications */
.application-stats {
    display: flex;
    gap: var(--space-3);
    margin-bottom: var(--space-8);
    overflow-x: auto;
    padding-bottom: var(--space-2);
}

.stat-card {
    padding: var(--space-4) var(--space-6);
    background: var(--color-white);
    border-radius: var(--radius-xl);
    text-align: center;
    min-width: 100px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

.stat-card:hover,
.stat-card.active {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.stat-card.active {
    border: 2px solid var(--color-primary);
}

.stat-card .stat-number {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    display: block;
}

.stat-card .stat-label {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
}

.stat-card.gray .stat-number { color: var(--text-muted); }
.stat-card.blue .stat-number { color: var(--color-primary); }
.stat-card.purple .stat-number { color: #8b5cf6; }
.stat-card.orange .stat-number { color: #f59e0b; }
.stat-card.green .stat-number { color: var(--color-success); }
.stat-card.red .stat-number { color: var(--color-error); }

/* Pipeline View */
.pipeline-view {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    margin-bottom: var(--space-6);
}

.pipeline-view h2 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-6);
}

.pipeline {
    display: flex;
    gap: var(--space-4);
}

.pipeline-stage {
    flex: 1;
}

.stage-header {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-2);
}

.stage-icon {
    font-size: var(--font-size-lg);
}

.stage-name {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
}

.stage-count {
    margin-left: auto;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-bold);
}

.stage-bar {
    height: 8px;
    background: var(--color-gray-200);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    border-radius: var(--radius-full);
    transition: width 0.5s ease;
}

.pipeline-stage.gray .bar-fill { background: var(--text-muted); }
.pipeline-stage.blue .bar-fill { background: var(--color-primary); }
.pipeline-stage.purple .bar-fill { background: #8b5cf6; }
.pipeline-stage.orange .bar-fill { background: #f59e0b; }
.pipeline-stage.green .bar-fill { background: var(--color-success); }

/* Applications Table */
.applications-list-view {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-6);
    border-bottom: 1px solid var(--color-gray-200);
}

.list-header h2 {
    font-size: var(--font-size-lg);
}

.applications-table {
    min-width: 100%;
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr 1fr auto;
    gap: var(--space-4);
    padding: var(--space-4) var(--space-6);
    background: var(--color-gray-100);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--text-muted);
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr 1fr auto;
    gap: var(--space-4);
    padding: var(--space-4) var(--space-6);
    border-bottom: 1px solid var(--color-gray-200);
    align-items: center;
}

.table-row:hover {
    background: var(--color-gray-50);
}

.job-info h4 {
    font-size: var(--font-size-base);
    margin-bottom: var(--space-1);
}

.job-meta {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}

.company-info {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.company-logo-sm {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-md);
    background: var(--color-primary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-bold);
    overflow: hidden;
}

.company-logo-sm img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.date-primary {
    display: block;
    font-weight: var(--font-weight-medium);
}

.date-secondary {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
}

.col-actions {
    display: flex;
    gap: var(--space-2);
}

/* Resume Builder */
.templates-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-4);
}

.template-card {
    cursor: pointer;
    border: 2px solid var(--color-gray-200);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-fast);
}

.template-card:hover,
.template-card.selected {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

.template-preview {
    height: 180px;
    background: var(--color-gray-100);
    padding: var(--space-4);
}

.preview-header {
    height: 30%;
    background: var(--accent-color, var(--color-primary));
    border-radius: var(--radius-md);
    margin-bottom: var(--space-3);
}

.preview-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.preview-line {
    height: 8px;
    background: var(--color-gray-300);
    border-radius: var(--radius-sm);
}

.preview-line.long { width: 100%; }
.preview-line.medium { width: 70%; }
.preview-line.short { width: 40%; }

.template-info {
    padding: var(--space-4);
    text-align: center;
}

.template-info h4 {
    font-size: var(--font-size-base);
    margin-bottom: var(--space-1);
}

.template-info p {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}

.resumes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-4);
}

.resume-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.resume-preview {
    height: 120px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--color-gray-800) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-badge {
    padding: var(--space-2) var(--space-4);
    background: rgba(255,255,255,0.2);
    color: var(--color-white);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
}

.resume-info {
    padding: var(--space-4);
}

.resume-info h4 {
    font-size: var(--font-size-base);
    margin-bottom: var(--space-1);
}

.resume-info .primary-badge {
    font-size: var(--font-size-xs);
    padding: var(--space-1) var(--space-2);
    background: var(--color-primary-lighter);
    color: var(--color-primary);
    border-radius: var(--radius-sm);
    margin-left: var(--space-2);
}

.resume-info p {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}

.resume-actions {
    display: flex;
    gap: var(--space-2);
    padding: var(--space-4);
    border-top: 1px solid var(--color-gray-200);
}

.btn-sm {
    padding: var(--space-2) var(--space-4);
    font-size: var(--font-size-sm);
}

/* Resume Editor */
.resume-editor {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: var(--space-6);
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.editor-sidebar {
    padding: var(--space-6);
    background: var(--color-gray-100);
}

.editor-section {
    margin-bottom: var(--space-6);
}

.editor-section h3 {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--space-3);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-preview p {
    font-size: var(--font-size-sm);
    margin-bottom: var(--space-1);
}

.skills-preview {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.skill-tag-sm {
    padding: var(--space-1) var(--space-2);
    background: var(--color-white);
    border-radius: var(--radius-sm);
    font-size: var(--font-size-xs);
}

.editor-preview {
    padding: var(--space-6);
    background: var(--color-gray-200);
    overflow-y: auto;
    max-height: 700px;
}

.resume-document {
    background: var(--color-white);
    padding: var(--space-10);
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
}

.resume-document .resume-header {
    text-align: center;
    margin-bottom: var(--space-8);
    padding-bottom: var(--space-6);
    border-bottom: 2px solid var(--color-primary);
}

.resume-document .resume-header h1 {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--space-2);
}

.resume-document .headline {
    color: var(--text-secondary);
    margin-bottom: var(--space-3);
}

.resume-document .contact-info {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}

.resume-document .resume-section {
    margin-bottom: var(--space-6);
}

.resume-document .resume-section h2 {
    font-size: var(--font-size-lg);
    color: var(--color-primary);
    margin-bottom: var(--space-4);
    padding-bottom: var(--space-2);
    border-bottom: 1px solid var(--color-gray-200);
}

.resume-document .resume-item {
    margin-bottom: var(--space-4);
}

.resume-document .item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.resume-document .item-header h3 {
    font-size: var(--font-size-base);
}

.resume-document .dates {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}

.resume-document .company {
    color: var(--text-secondary);
    margin-bottom: var(--space-2);
}

.resume-document .description {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

.resume-document .skills-list {
    color: var(--text-secondary);
}

/* Suggestions */
.suggestions {
    margin: var(--space-6) 0;
}

.suggestions-title {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    margin-bottom: var(--space-3);
}

.suggestion-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    justify-content: center;
}

.suggestion-tag {
    padding: var(--space-2) var(--space-4);
    background: var(--color-gray-100);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

/* Template Selector in Modal */
.template-selector {
    display: flex;
    gap: var(--space-3);
}

.template-option {
    cursor: pointer;
}

.template-option input {
    display: none;
}

.option-preview {
    width: 60px;
    height: 80px;
    border-radius: var(--radius-md);
    border: 2px solid var(--color-gray-300);
    background: linear-gradient(to bottom, var(--accent-color) 30%, var(--color-gray-100) 30%);
    transition: all var(--transition-fast);
}

.template-option input:checked + .option-preview {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px var(--color-primary-lighter);
}

.template-option span {
    display: block;
    text-align: center;
    font-size: var(--font-size-xs);
    margin-top: var(--space-2);
}

/* Responsive Adjustments for New Components */
@media (max-width: 992px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .profile-content {
        grid-template-columns: 1fr;
    }
    
    .profile-nav {
        position: static;
        display: flex;
        overflow-x: auto;
        gap: var(--space-2);
    }
    
    .profile-nav .nav-item {
        white-space: nowrap;
    }
    
    .profile-header-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .profile-avatar {
        margin-top: -80px;
    }
    
    .status-options {
        grid-template-columns: 1fr;
    }
    
    .templates-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .resume-editor {
        grid-template-columns: 1fr;
    }
    
    .pipeline {
        flex-direction: column;
    }
    
    .table-header,
    .table-row {
        grid-template-columns: 1fr;
        gap: var(--space-2);
    }
    
    .table-header > div:not(.col-job) {
        display: none;
    }
    
    .table-row .col-company,
    .table-row .col-date {
        display: none;
    }
}

@media (max-width: 768px) {
    .auth-card {
        padding: var(--space-6);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .user-type-selector {
        grid-template-columns: 1fr;
    }
    
    .social-buttons {
        flex-direction: column;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .quick-actions {
        grid-template-columns: 1fr;
    }
    
    .application-stats {
        flex-wrap: wrap;
    }
    
    .stat-card {
        flex: 1 1 calc(33% - var(--space-3));
        min-width: 80px;
    }
    
    .alert-card {
        grid-template-columns: 1fr;
    }
    
    .alert-status {
        order: -1;
    }
    
    .templates-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-4);
    }
    
    .page-header .btn {
        width: 100%;
    }
}

/* =====================================================
   WhatsApp Job Assistance Section
   ===================================================== */

/* Main Section Container */
.whatsapp-assistance {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 50%, #bbf7d0 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative background pattern */
.whatsapp-assistance::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(37, 211, 102, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(37, 211, 102, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.whatsapp-assistance .container {
    position: relative;
    z-index: 1;
}

/* WhatsApp Badge */
.wa-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: var(--space-4);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

.wa-badge svg {
    flex-shrink: 0;
}

/* Section Header Override for WhatsApp Section */
.whatsapp-assistance .section-header {
    margin-bottom: var(--space-12);
}

.whatsapp-assistance .section-title {
    color: var(--neutral-900);
}

.whatsapp-assistance .section-subtitle {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--neutral-700);
}

/* Primary WhatsApp CTA Button */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: var(--space-4) var(--space-6);
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: var(--text-base);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    background: linear-gradient(135deg, #22c55e 0%, #15803d 100%);
}

.btn-whatsapp:active {
    transform: translateY(0);
}

.btn-whatsapp svg {
    flex-shrink: 0;
}

/* Outline WhatsApp Button */
.btn-whatsapp-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    background: transparent;
    color: #25D366;
    padding: var(--space-3) var(--space-5);
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: var(--text-sm);
    text-decoration: none;
    border: 2px solid #25D366;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-whatsapp-outline:hover {
    background: #25D366;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-outline svg {
    flex-shrink: 0;
}

/* Main CTA Styling */
.wa-main-cta {
    margin-top: var(--space-6);
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-lg);
}

/* Service Packages Grid */
.wa-packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    margin-bottom: var(--space-10);
}

/* Package Card */
.wa-package-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
}

.wa-package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

/* Featured Package Card */
.wa-package-card.featured {
    border-color: #25D366;
    background: linear-gradient(180deg, #f0fdf4 0%, white 30%);
    transform: scale(1.02);
}

.wa-package-card.featured:hover {
    transform: scale(1.02) translateY(-8px);
}

/* Package Badge for Featured */
.wa-package-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: var(--space-1) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* Package Header */
.wa-package-header {
    text-align: center;
    padding-bottom: var(--space-4);
    border-bottom: 1px solid var(--neutral-200);
    margin-bottom: var(--space-4);
}

/* Package Icon */
.wa-package-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-3);
}

.wa-package-icon.basic {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #2563eb;
}

.wa-package-icon.active {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    color: #16a34a;
}

.wa-package-icon.priority {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #d97706;
}

/* Package Name */
.wa-package-name {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: var(--space-1);
}

/* Package Tier */
.wa-package-tier {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--neutral-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Package Features List */
.wa-package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-6) 0;
    flex-grow: 1;
}

.wa-package-features li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-2) 0;
    color: var(--neutral-700);
    font-size: var(--text-sm);
}

.wa-package-features li svg {
    flex-shrink: 0;
    color: #22c55e;
    margin-top: 2px;
}

/* Package Button */
.wa-package-btn {
    width: 100%;
    margin-top: auto;
}

/* Featured Package Button Override */
.wa-package-card.featured .wa-package-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border-color: transparent;
}

.wa-package-card.featured .wa-package-btn:hover {
    background: linear-gradient(135deg, #22c55e 0%, #15803d 100%);
}

/* Trust Indicators */
.wa-trust-indicators {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-6);
}

.wa-trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--neutral-700);
    font-size: var(--text-sm);
    font-weight: 500;
}

.wa-trust-item svg {
    color: #25D366;
}

/* =====================================================
   WhatsApp Section Responsive Styles
   ===================================================== */

@media (max-width: 1024px) {
    .wa-packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .wa-package-card.featured {
        transform: scale(1);
        grid-column: span 2;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .wa-package-card.featured:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 768px) {
    .wa-packages-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
    
    .wa-package-card.featured {
        grid-column: span 1;
        max-width: none;
    }
    
    .wa-main-cta {
        width: 100%;
        font-size: var(--text-base);
        padding: var(--space-4) var(--space-5);
    }
    
    .wa-trust-indicators {
        gap: var(--space-4);
    }
    
    .wa-trust-item {
        flex: 1 1 calc(50% - var(--space-4));
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .whatsapp-assistance {
        padding: var(--space-10) 0;
    }
    
    .wa-badge {
        font-size: var(--text-xs);
        padding: var(--space-1) var(--space-3);
    }
    
    .wa-package-card {
        padding: var(--space-5);
    }
    
    .wa-package-icon {
        width: 56px;
        height: 56px;
    }
    
    .wa-package-name {
        font-size: var(--text-lg);
    }
    
    .wa-trust-indicators {
        flex-direction: column;
        align-items: center;
        gap: var(--space-3);
    }
    
    .wa-trust-item {
        justify-content: center;
    }
}

/* =====================================================
   WhatsApp Services Page Styles
   ===================================================== */

/* Page Hero Section */
.wa-page-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    padding: var(--space-16) 0 var(--space-12);
    position: relative;
    overflow: hidden;
}

.wa-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(37, 211, 102, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(37, 211, 102, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.wa-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.wa-hero-title {
    font-size: var(--text-4xl);
    font-weight: 800;
    color: white;
    margin-bottom: var(--space-4);
    line-height: 1.2;
}

.wa-hero-subtitle {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-8);
    line-height: 1.7;
}

/* XL Button */
.btn-xl {
    padding: var(--space-5) var(--space-8) !important;
    font-size: var(--text-lg) !important;
}

/* Detailed Services Section */
.wa-services-detailed {
    padding: var(--space-16) 0;
}

.wa-detailed-packages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    align-items: stretch;
}

/* Detailed Card Styles */
.wa-detailed-card {
    background: white;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    border: 2px solid var(--neutral-200);
}

.wa-detailed-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.wa-detailed-card.featured {
    border-color: #25D366;
    transform: scale(1.03);
}

.wa-detailed-card.featured:hover {
    transform: scale(1.03) translateY(-8px);
}

.wa-popular-badge {
    position: absolute;
    top: 0;
    right: var(--space-6);
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: var(--space-2) var(--space-4);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Card Header */
.wa-card-header {
    padding: var(--space-6);
    text-align: center;
}

.wa-card-header.basic {
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
}

.wa-card-header.active {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
}

.wa-card-header.priority {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.wa-tier-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.8);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-2);
    color: var(--neutral-700);
}

.wa-card-header h3 {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: var(--space-2);
}

.wa-card-tagline {
    font-size: var(--text-sm);
    color: var(--neutral-600);
    margin: 0;
}

/* Card Body */
.wa-card-body {
    padding: var(--space-6);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.wa-features-section h4 {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--neutral-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-4);
}

.wa-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-6) 0;
    flex-grow: 1;
}

.wa-features-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--neutral-100);
}

.wa-features-list li:last-child {
    border-bottom: none;
}

.wa-feature-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--neutral-100);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--neutral-500);
}

.wa-feature-icon.green {
    background: #dcfce7;
    color: #16a34a;
}

.wa-feature-icon.gold {
    background: #fef3c7;
    color: #d97706;
}

.wa-features-list li strong {
    display: block;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--neutral-800);
    margin-bottom: 2px;
}

.wa-features-list li p {
    font-size: var(--text-xs);
    color: var(--neutral-500);
    margin: 0;
    line-height: 1.4;
}

/* Response Time */
.wa-response-time {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3);
    background: var(--neutral-50);
    border-radius: var(--radius-lg);
    font-size: var(--text-sm);
    color: var(--neutral-600);
}

.wa-response-time.featured {
    background: #dcfce7;
    color: #16a34a;
}

.wa-response-time.premium {
    background: #fef3c7;
    color: #d97706;
}

/* Card Footer */
.wa-card-footer {
    padding: var(--space-6);
    border-top: 1px solid var(--neutral-100);
}

.wa-full-btn {
    width: 100%;
}

/* How It Works Steps */
.wa-how-it-works {
    background: var(--neutral-50);
}

.wa-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

.wa-step {
    text-align: center;
    position: relative;
}

.wa-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #25D366, transparent);
    z-index: 0;
}

.wa-step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    font-size: var(--text-2xl);
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-4);
    position: relative;
    z-index: 1;
}

.wa-step-content h3 {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: var(--space-2);
}

.wa-step-content p {
    font-size: var(--text-sm);
    color: var(--neutral-600);
    line-height: 1.6;
}

/* FAQ Section */
.wa-faq {
    padding: var(--space-16) 0;
}

.wa-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.wa-faq-item {
    background: white;
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-3);
    overflow: hidden;
    transition: all 0.3s ease;
}

.wa-faq-item:hover {
    border-color: #25D366;
}

.wa-faq-item.open {
    border-color: #25D366;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.1);
}

.wa-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--space-5);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--neutral-800);
    transition: color 0.3s ease;
}

.wa-faq-question:hover {
    color: #25D366;
}

.wa-faq-question svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--neutral-400);
}

.wa-faq-item.open .wa-faq-question svg {
    transform: rotate(180deg);
    color: #25D366;
}

.wa-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.wa-faq-item.open .wa-faq-answer {
    max-height: 300px;
    padding: 0 var(--space-5) var(--space-5);
}

.wa-faq-answer p {
    color: var(--neutral-600);
    line-height: 1.7;
    margin: 0;
}

/* Final CTA Section */
.wa-final-cta {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: var(--space-16) 0;
}

.wa-cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.wa-cta-content h2 {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: white;
    margin-bottom: var(--space-4);
}

.wa-cta-content p {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-8);
}

/* WhatsApp Services Page Responsive */
@media (max-width: 1024px) {
    .wa-detailed-packages {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .wa-detailed-card.featured {
        transform: none;
        order: -1;
    }
    
    .wa-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .wa-step:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .wa-hero-title {
        font-size: var(--text-3xl);
    }
    
    .wa-hero-subtitle {
        font-size: var(--text-base);
    }
    
    .wa-steps {
        grid-template-columns: 1fr;
    }
    
    .wa-step {
        display: flex;
        align-items: flex-start;
        text-align: left;
        gap: var(--space-4);
    }
    
    .wa-step-number {
        margin: 0;
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .wa-page-hero {
        padding: var(--space-12) 0 var(--space-8);
    }
    
    .wa-hero-title {
        font-size: var(--text-2xl);
    }
    
    .btn-xl {
        padding: var(--space-4) var(--space-6) !important;
        font-size: var(--text-base) !important;
    }
    
    .wa-card-header h3 {
        font-size: var(--text-xl);
    }
    
    .wa-cta-content h2 {
        font-size: var(--text-2xl);
    }
}

/* =====================================================
   Floating WhatsApp Button
   ===================================================== */

.wa-floating-btn {
    position: fixed;
    bottom: var(--space-6);
    right: var(--space-6);
    z-index: 999;
}

.wa-float-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: wa-pulse 2s infinite;
}

.wa-float-link:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.wa-float-link:active {
    transform: scale(1.05);
}

/* Pulse animation for attention */
@keyframes wa-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Tooltip */
.wa-float-tooltip {
    position: absolute;
    bottom: 100%;
    right: 0;
    background: var(--neutral-900);
    color: white;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-lg);
    font-size: var(--text-sm);
    font-weight: 500;
    white-space: nowrap;
    margin-bottom: var(--space-3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.wa-float-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    right: var(--space-5);
    border: 8px solid transparent;
    border-top-color: var(--neutral-900);
}

.wa-floating-btn:hover .wa-float-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Footer WhatsApp Link Highlight */
.footer-links .wa-link {
    color: #25D366 !important;
    font-weight: 500;
}

.footer-links .wa-link:hover {
    color: #128C7E !important;
}

/* Floating Button Responsive */
@media (max-width: 768px) {
    .wa-floating-btn {
        bottom: var(--space-4);
        right: var(--space-4);
    }
    
    .wa-float-link {
        width: 54px;
        height: 54px;
    }
    
    .wa-float-link svg {
        width: 24px;
        height: 24px;
    }
    
    .wa-float-tooltip {
        display: none;
    }
}

