/*
Theme Name: Jobspunu Pro
Theme URI: https://jobspunu.com
Description: Modern, professional job portal theme inspired by JobMonster and Workreap designs. Features stunning hero sections, job categories, and beautiful job cards.
Author: Jobspunu Team
Author URI: https://jobspunu.com
Template: generatepress
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: jobspunu-pro
Tags: jobs, employment, professional, modern, clean
*/

/* ========================================
   TABLE OF CONTENTS
   ========================================
   1. CSS Variables & Root Styles
   2. Global Styles & Typography
   3. Header & Navigation
   4. Hero Section
   5. Categories Section
   6. Featured Jobs Section
   7. How It Works Section
   8. Cities Section
   9. Call to Action Section
   10. Job Cards Styling
   11. Search Forms
   12. Buttons & Links
   13. Responsive Design
   14. Animations & Transitions
   15. Utilities
   ======================================== */

/* ========================================
   1. CSS VARIABLES & ROOT STYLES
   ======================================== */
:root {
    /* Primary Colors */
    --primary-blue: #2563EB;
    --primary-blue-dark: #1E40AF;
    --primary-blue-light: #3B82F6;
    --primary-blue-lighter: #60A5FA;
    
    /* Secondary Colors */
    --secondary-green: #10B981;
    --secondary-green-dark: #059669;
    --secondary-green-light: #34D399;
    
    /* Accent Colors */
    --accent-orange: #F59E0B;
    --accent-purple: #8B5CF6;
    --accent-pink: #EC4899;
    --accent-cyan: #06B6D4;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --black: #000000;
    
    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    
    /* Font Sizes */
    --text-xs: 0.75rem;      /* 12px */
    --text-sm: 0.875rem;     /* 14px */
    --text-base: 1rem;       /* 16px */
    --text-lg: 1.125rem;     /* 18px */
    --text-xl: 1.25rem;      /* 20px */
    --text-2xl: 1.5rem;      /* 24px */
    --text-3xl: 1.875rem;    /* 30px */
    --text-4xl: 2.25rem;     /* 36px */
    --text-5xl: 3rem;        /* 48px */
    --text-6xl: 3.75rem;     /* 60px */
    
    /* Spacing */
    --space-1: 0.25rem;      /* 4px */
    --space-2: 0.5rem;       /* 8px */
    --space-3: 0.75rem;      /* 12px */
    --space-4: 1rem;         /* 16px */
    --space-5: 1.25rem;      /* 20px */
    --space-6: 1.5rem;       /* 24px */
    --space-8: 2rem;         /* 32px */
    --space-10: 2.5rem;      /* 40px */
    --space-12: 3rem;        /* 48px */
    --space-16: 4rem;        /* 64px */
    --space-20: 5rem;        /* 80px */
    --space-24: 6rem;        /* 96px */
    
    /* Border Radius */
    --radius-sm: 0.375rem;   /* 6px */
    --radius-md: 0.5rem;     /* 8px */
    --radius-lg: 0.75rem;    /* 12px */
    --radius-xl: 1rem;       /* 16px */
    --radius-2xl: 1.5rem;    /* 24px */
    --radius-3xl: 2rem;      /* 32px */
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --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-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Z-Index */
    --z-base: 1;
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
}

/* ========================================
   2. GLOBAL STYLES & TYPOGRAPHY
   ======================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--gray-50);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
    margin-bottom: var(--space-4);
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-3xl); }
h4 { font-size: var(--text-2xl); }
h5 { font-size: var(--text-xl); }
h6 { font-size: var(--text-lg); }

p {
    margin-bottom: var(--space-4);
    line-height: 1.7;
}

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-blue-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding-left: var(--space-6);
    padding-right: var(--space-6);
}

.highlight {
    color: var(--primary-blue);
    position: relative;
}

/* ========================================
   3. HEADER & NAVIGATION
   ======================================== */
.site-header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: var(--z-sticky);
    border-bottom: 1px solid var(--gray-200);
}

.site-branding img {
    max-height: 50px;
    width: auto;
}

.main-navigation {
    background: transparent;
}

.main-navigation a {
    color: var(--gray-700);
    font-weight: 500;
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    display: inline-block;
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

/* ========================================
   4. HERO SECTION
   ======================================== */

/* Make homepage full-width (break out of parent theme container) */
.jobspunu-homepage {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100%;
}

/* Override parent theme containers */
.home .site-content,
.home .site,
.home #page,
.home #content {
    max-width: 100% !important;
    padding: 0 !important;
    width: 100%;
}

.jobspunu-homepage > section {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.hero-section {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 50%, var(--accent-purple) 100%);
    padding: var(--space-24) 0 var(--space-20);
    overflow: hidden;
    color: var(--white);
    width: 100%;
}

.hero-container {
    position: relative;
    z-index: var(--z-base);
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: var(--text-6xl);
    font-weight: 800;
    color: var(--white);
    margin-bottom: var(--space-6);
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--space-12);
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Search Box */
.hero-search-box {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-4);
    box-shadow: var(--shadow-2xl);
    margin-bottom: var(--space-12);
}

.hero-search-form {
    width: 100%;
}

.search-input-group {
    display: grid;
    grid-template-columns: 2fr 1.5fr auto;
    gap: var(--space-3);
    align-items: center;
}

.search-input-wrapper,
.search-location-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon,
.location-icon {
    position: absolute;
    left: var(--space-4);
    color: var(--gray-400);
    pointer-events: none;
}

.search-input,
.location-select {
    width: 100%;
    padding: var(--space-4) var(--space-4) var(--space-4) var(--space-12);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    font-size: var(--text-base);
    color: var(--gray-800);
    background: var(--white);
    transition: all var(--transition-base);
    font-family: var(--font-primary);
}

.search-input:focus,
.location-select:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.location-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236B7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
    background-position: right var(--space-3) center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: var(--space-10);
}

.search-submit-btn {
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: var(--space-4) var(--space-8);
    border-radius: var(--radius-lg);
    font-size: var(--text-base);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: var(--space-2);
    transition: all var(--transition-base);
    white-space: nowrap;
}

.search-submit-btn:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
    max-width: 900px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--white);
    margin-bottom: var(--space-2);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-label {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Hero Decorations */
.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.decoration-circle {
    position: absolute;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(2px);
}

.decoration-circle-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation: float 20s ease-in-out infinite;
}

.decoration-circle-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    animation: float 15s ease-in-out infinite reverse;
}

.decoration-circle-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 10%;
    animation: float 25s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(20px); }
}

/* ========================================
   5. SEO KEYWORDS SECTION
   ======================================== */
.seo-keywords-section {
    padding: var(--space-12) 0;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
}

.keywords-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.keywords-title {
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: var(--space-4);
    line-height: 1.3;
}

.keywords-description {
    font-size: var(--text-base);
    line-height: 1.8;
    color: var(--gray-700);
    text-align: justify;
}

.keywords-description strong {
    color: var(--primary-blue);
    font-weight: 600;
}

/* ========================================
   6. CATEGORIES SECTION
   ======================================== */
.categories-section {
    padding: var(--space-20) 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.section-title {
    font-size: var(--text-5xl);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: var(--space-4);
}

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

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-6);
    margin-bottom: var(--space-12);
}

.category-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    display: block;
    text-decoration: none;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--category-color, var(--primary-blue));
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.category-card:hover {
    border-color: var(--category-color, var(--primary-blue));
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

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

.category-icon {
    font-size: 3rem;
    margin-bottom: var(--space-4);
    display: inline-block;
    transition: transform var(--transition-base);
}

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

.category-name {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-2);
}

.category-count {
    font-size: var(--text-sm);
    color: var(--gray-600);
    font-weight: 500;
}

.category-arrow {
    margin-top: var(--space-4);
    color: var(--category-color, var(--primary-blue));
    font-size: var(--text-2xl);
    opacity: 0;
    transform: translateX(-10px);
    transition: all var(--transition-base);
}

.category-card:hover .category-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ========================================
   7. FEATURED JOBS SECTION
   ======================================== */
.featured-jobs-section {
    padding: var(--space-20) 0;
    background: var(--gray-50);
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--space-8);
    margin-bottom: var(--space-12);
}

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

.job-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-blue);
}

.job-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: var(--gray-100);
}

.job-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.job-badge {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    background: var(--secondary-green);
    color: var(--white);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
}

.job-content {
    padding: var(--space-6);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.job-meta-top {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
    flex-wrap: wrap;
}

.job-category {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-blue);
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-md);
    font-size: var(--text-xs);
    font-weight: 600;
}

.job-location {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    color: var(--gray-600);
    font-size: var(--text-sm);
    font-weight: 500;
}

.job-title {
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-3);
    line-height: 1.3;
}

.job-title a {
    color: var(--gray-900);
    transition: color var(--transition-fast);
}

.job-title a:hover {
    color: var(--primary-blue);
}

.job-excerpt {
    color: var(--gray-600);
    font-size: var(--text-sm);
    line-height: 1.6;
    margin-bottom: var(--space-4);
    flex: 1;
}

.job-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-4);
    border-top: 1px solid var(--gray-200);
}

.job-date {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--gray-500);
    font-size: var(--text-xs);
    font-weight: 500;
}

.job-apply-btn {
    background: var(--primary-blue);
    color: var(--white);
    padding: var(--space-2) var(--space-5);
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    font-weight: 600;
    transition: all var(--transition-base);
    border: none;
    cursor: pointer;
}

.job-apply-btn:hover {
    background: var(--primary-blue-dark);
    transform: translateX(5px);
    color: var(--white);
}

/* ========================================
   7. HOW IT WORKS SECTION
   ======================================== */
.how-it-works-section {
    padding: var(--space-20) 0;
    background: var(--white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
}

.step-card {
    background: var(--gray-50);
    border: 2px dashed var(--gray-300);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    text-align: center;
    position: relative;
    transition: all var(--transition-base);
}

.step-card:hover {
    background: var(--white);
    border-color: var(--primary-blue);
    border-style: solid;
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: var(--text-lg);
    box-shadow: var(--shadow-lg);
}

.step-icon {
    font-size: 4rem;
    margin: var(--space-6) 0 var(--space-4);
}

.step-title {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-3);
}

.step-description {
    color: var(--gray-600);
    line-height: 1.6;
}

/* ========================================
   8. CITIES SECTION
   ======================================== */
.cities-section {
    padding: var(--space-20) 0;
    background: var(--gray-50);
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-6);
}

.city-card {
    position: relative;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    border-radius: var(--radius-xl);
    padding: var(--space-10) var(--space-6);
    text-align: center;
    color: var(--white);
    overflow: hidden;
    transition: all var(--transition-base);
    display: block;
    text-decoration: none;
}

.city-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-2xl);
}

.city-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.city-card:hover .city-overlay {
    opacity: 1;
}

.city-icon {
    font-size: 4rem;
    margin-bottom: var(--space-4);
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.city-name {
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--white);
    margin-bottom: var(--space-2);
}

.city-count {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* ========================================
   9. CALL TO ACTION SECTION
   ======================================== */
.cta-section {
    padding: var(--space-20) 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-purple) 100%);
    position: relative;
    overflow: hidden;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: var(--z-base);
}

.cta-title {
    font-size: var(--text-5xl);
    font-weight: 800;
    color: var(--white);
    margin-bottom: var(--space-6);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-text {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--space-8);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    background: var(--white);
    color: var(--primary-blue);
    padding: var(--space-5) var(--space-10);
    border-radius: var(--radius-xl);
    font-size: var(--text-lg);
    font-weight: 700;
    box-shadow: var(--shadow-2xl);
    transition: all var(--transition-base);
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.3);
    color: var(--primary-blue);
}

/* ========================================
   10. BUTTONS & LINKS
   ======================================== */
.section-footer {
    text-align: center;
    margin-top: var(--space-12);
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--primary-blue);
    font-weight: 600;
    font-size: var(--text-base);
    padding: var(--space-3) var(--space-6);
    border: 2px solid var(--primary-blue);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.view-all-btn:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.view-all-btn-large {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    background: var(--primary-blue);
    color: var(--white);
    padding: var(--space-5) var(--space-10);
    border-radius: var(--radius-xl);
    font-size: var(--text-lg);
    font-weight: 700;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
}

.view-all-btn-large:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-5px);
    box-shadow: var(--shadow-2xl);
    color: var(--white);
}

/* ========================================
   11. RESPONSIVE DESIGN
   ======================================== */

/* Tablet (768px and below) */
@media (max-width: 768px) {
    :root {
        --text-6xl: 2.5rem;
        --text-5xl: 2rem;
        --text-4xl: 1.75rem;
        --text-3xl: 1.5rem;
        --space-20: 3rem;
        --space-24: 4rem;
    }
    
    .hero-title {
        font-size: var(--text-4xl);
    }
    
    .search-input-group {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-6);
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: var(--space-4);
    }
    
    .jobs-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .cities-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .cta-title {
        font-size: var(--text-3xl);
    }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
    :root {
        --space-16: 2.5rem;
        --space-20: 2.5rem;
    }
    
    .container {
        padding-left: var(--space-4);
        padding-right: var(--space-4);
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
    
    .stat-number {
        font-size: var(--text-3xl);
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .search-submit-btn span {
        display: none;
    }
    
    .search-submit-btn {
        padding: var(--space-4);
    }
}

/* ========================================
   12. ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.scale-in {
    animation: scaleIn 0.4s ease-out;
}

/* ========================================
   13. UTILITY CLASSES
   ======================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.my-4 { margin-top: var(--space-4); margin-bottom: var(--space-4); }
.my-8 { margin-top: var(--space-8); margin-bottom: var(--space-8); }

.hidden { display: none !important; }
.block { display: block !important; }
.inline-block { display: inline-block !important; }
.flex { display: flex !important; }

/* ========================================
   14. FOOTER
   ======================================== */
.site-footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: var(--space-16) 0 var(--space-6);
    margin-top: 0;
}

.site-info {
    text-align: center;
    padding-top: var(--space-8);
    border-top: 1px solid var(--gray-800);
    color: var(--gray-400);
    font-size: var(--text-sm);
}

.site-info a {
    color: var(--primary-blue-light);
}

.site-info a:hover {
    color: var(--primary-blue-lighter);
}

