/*
Theme Name: Jobify Ads Pro
Theme URI: https://jobifyads.com
Author: Jobify Team
Author URI: https://jobifyads.com
Description: A beautiful, AdSense-optimized WordPress theme for job postings. Features easy job posting, stunning job cards, multiple ad placements, and maximum earning potential.
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: jobify
Tags: job-board, jobs, adsense, responsive, ads, monetization, business
*/

/* ================================
   CSS VARIABLES & RESET
   ================================ */
:root {
    /* Primary Colors */
    --primary: #4f46e5;
    --primary-dark: #4338ca;
    --primary-light: #6366f1;
    --secondary: #0ea5e9;
    --accent: #10b981;
    
    /* Neutral Colors */
    --dark: #0f172a;
    --gray-900: #1e293b;
    --gray-700: #334155;
    --gray-500: #64748b;
    --gray-300: #cbd5e1;
    --gray-100: #f1f5f9;
    --gray-50: #f8fafc;
    --white: #ffffff;
    
    /* Status Colors */
    --success: #22c55e;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #3b82f6;
    
    /* Typography */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Poppins', sans-serif;
    
    /* Spacing */
    --container: 1200px;
    --section-pad: 60px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    /* Ad Slots */
    --ad-bg: #f8fafc;
    --ad-border: #e2e8f0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--gray-50);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

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

/* ================================
   CONTAINER & LAYOUT
   ================================ */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

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

.section {
    padding: var(--section-pad) 0;
}

/* ================================
   AD PLACEMENTS
   ================================ */
.ad-slot {
    background: var(--ad-bg);
    border: 1px dashed var(--ad-border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--gray-500);
    font-size: 14px;
    overflow: hidden;
}

.ad-slot-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-500);
    margin-bottom: 8px;
}

/* Header Ad */
.ad-header {
    min-height: 90px;
    margin: 15px 0;
}

.ad-header-leaderboard {
    width: 100%;
    max-width: 728px;
    min-height: 90px;
    margin: 0 auto;
}

/* Sidebar Ads */
.ad-sidebar {
    min-height: 250px;
    margin-bottom: 24px;
}

.ad-sidebar-wide {
    min-height: 600px;
}

/* In-Content Ads */
.ad-incontent {
    min-height: 250px;
    margin: 32px 0;
}

.ad-incontent-article {
    float: left;
    width: 336px;
    min-height: 280px;
    margin: 0 24px 24px 0;
}

/* Job Card Ads */
.ad-job-card {
    min-height: 250px;
    margin: 20px 0;
}

/* Sticky Footer Ad */
.ad-sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--ad-border);
    padding: 10px;
    z-index: 999;
    display: flex;
    justify-content: center;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}

.ad-sticky-footer .ad-content {
    width: 728px;
    height: 90px;
}

/* Mobile Ad Adjustments */
@media (max-width: 768px) {
    .ad-header-leaderboard {
        max-width: 320px;
        min-height: 100px;
    }
    
    .ad-incontent-article {
        float: none;
        width: 100%;
        margin: 20px 0;
    }
    
    .ad-sticky-footer .ad-content {
        width: 320px;
        height: 50px;
    }
}

/* ================================
   HEADER
   ================================ */
.site-header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-logo {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-logo i {
    color: var(--accent);
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 28px;
}

.nav-menu a {
    font-weight: 500;
    color: var(--gray-700);
    font-size: 15px;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.2s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ================================
   BUTTONS
   ================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--gray-100);
    color: var(--gray-700);
}

.btn-secondary:hover {
    background: var(--gray-300);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-accent {
    background: var(--accent);
    color: var(--white);
}

.btn-accent:hover {
    background: #059669;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

/* ================================
   HERO SECTION
   ================================ */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-title span {
    color: #a5b4fc;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 40px;
}

/* ================================
   SEARCH BOX
   ================================ */
.search-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-xl);
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.search-form {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr auto;
    gap: 16px;
    align-items: end;
}

.search-field {
    position: relative;
}

.search-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-field input,
.search-field select {
    width: 100%;
    padding: 14px 16px 14px 44px;
    border: 2px solid var(--gray-100);
    border-radius: var(--radius);
    font-size: 15px;
    transition: all 0.2s ease;
    background: var(--gray-50);
}

.search-field input:focus,
.search-field select:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
}

.search-field i {
    position: absolute;
    left: 16px;
    bottom: 16px;
    color: var(--gray-500);
    font-size: 18px;
}

/* ================================
   JOB CARDS - BEAUTIFUL DESIGN
   ================================ */
.jobs-grid {
    display: grid;
    gap: 20px;
}

.job-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border: 1px solid transparent;
    position: relative;
}

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

.job-card.featured {
    border-left: 4px solid var(--accent);
    background: linear-gradient(90deg, rgba(16, 185, 129, 0.03) 0%, var(--white) 100%);
}

.job-card.featured::before {
    content: 'Featured';
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--accent);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.job-card-sponsored {
    border: 2px solid #fbbf24;
    background: linear-gradient(135deg, #fffbeb 0%, var(--white) 100%);
}

.job-card-sponsored::before {
    content: 'Sponsored';
    position: absolute;
    top: -1px;
    right: 24px;
    background: #fbbf24;
    color: #92400e;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 0 0 8px 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Company Logo */
.job-logo {
    width: 64px;
    height: 64px;
    border-radius: var(--radius);
    object-fit: cover;
    flex-shrink: 0;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
}

.job-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.job-logo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    font-size: 24px;
}

/* Job Info */
.job-info {
    flex: 1;
    min-width: 0;
}

.job-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 6px;
    line-height: 1.4;
}

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

.job-company {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.job-company a {
    color: var(--primary);
    font-weight: 500;
}

/* Job Meta */
.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.job-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--gray-500);
}

.job-meta-item i {
    color: var(--primary);
    font-size: 14px;
}

/* Job Tags */
.job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.job-tag {
    background: var(--gray-100);
    color: var(--gray-700);
    font-size: 12px;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 20px;
}

.job-tag.type {
    background: #dbeafe;
    color: #1e40af;
}

.job-tag.remote {
    background: #d1fae5;
    color: #065f46;
}

/* Job Salary */
.job-salary {
    text-align: right;
    min-width: 140px;
}

.job-salary-amount {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--accent);
}

.job-salary-period {
    font-size: 12px;
    color: var(--gray-500);
}

/* Job Actions */
.job-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* ================================
   JOB POSTED CARD (Success)
   ================================ */
.job-posted-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--success);
}

.job-posted-icon {
    width: 80px;
    height: 80px;
    background: #d1fae5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.job-posted-icon i {
    font-size: 40px;
    color: var(--success);
}

.job-posted-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.job-posted-message {
    color: var(--gray-500);
    margin-bottom: 32px;
}

.job-posted-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ================================
   SECTION HEADERS
   ================================ */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-900);
}

.section-subtitle {
    color: var(--gray-500);
    margin-top: 8px;
}

.view-all {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
}

.view-all:hover {
    gap: 12px;
}

/* ================================
   STATS BAR
   ================================ */
.stats-bar {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
    padding: 16px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: var(--gray-500);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ================================
   CATEGORY CARDS
   ================================ */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.category-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.category-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
    transform: translateY(-4px);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--white);
    font-size: 24px;
}

.category-name {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.category-count {
    font-size: 13px;
    color: var(--gray-500);
}

/* ================================
   SINGLE JOB PAGE
   ================================ */
.job-single-header {
    background: var(--white);
    padding: 40px 0;
    border-bottom: 1px solid var(--gray-100);
}

.job-single-header-inner {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.job-single-logo {
    width: 100px;
    height: 100px;
    border-radius: var(--radius);
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.job-single-info {
    flex: 1;
}

.job-single-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.job-single-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.job-single-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray-500);
}

.job-single-actions {
    display: flex;
    gap: 12px;
}

/* Job Content */
.job-content-wrap {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    padding: 40px 0;
}

.job-content {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow-sm);
}

.job-content h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-900);
    margin: 32px 0 16px;
}

.job-content h3:first-child {
    margin-top: 0;
}

.job-content p {
    color: var(--gray-700);
    margin-bottom: 16px;
    line-height: 1.7;
}

.job-content ul {
    padding-left: 20px;
    margin-bottom: 16px;
}

.job-content li {
    color: var(--gray-700);
    margin-bottom: 8px;
}

/* Job Sidebar */
.job-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.sidebar-card h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-100);
}

.overview-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
}

.overview-item:last-child {
    border-bottom: none;
}

.overview-label {
    font-size: 14px;
    color: var(--gray-500);
}

.overview-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-900);
}

/* ================================
   POST JOB FORM
   ================================ */
.post-job-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.form-section {
    margin-bottom: 40px;
}

.form-section-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--gray-100);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.form-label .required {
    color: var(--danger);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-100);
    border-radius: var(--radius);
    font-size: 15px;
    font-family: inherit;
    transition: all 0.2s ease;
    background: var(--gray-50);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
}

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

.form-hint {
    font-size: 13px;
    color: var(--gray-500);
    margin-top: 6px;
}

/* ================================
   FOOTER
   ================================ */
.site-footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .site-logo {
    color: var(--white);
    margin-bottom: 16px;
}

.footer-desc {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.footer-social a:hover {
    background: var(--primary);
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: all 0.2s ease;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 36px;
    }
    
    .search-form {
        grid-template-columns: 1fr 1fr;
    }
    
    .job-content-wrap {
        grid-template-columns: 1fr;
    }
    
    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .header-main {
        height: 60px;
    }
    
    .main-nav {
        display: none;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .search-form {
        grid-template-columns: 1fr;
    }
    
    .search-box {
        margin-top: -30px;
        padding: 20px;
    }
    
    .job-card {
        flex-direction: column;
        padding: 20px;
    }
    
    .job-salary {
        text-align: left;
        width: 100%;
    }
    
    .job-actions {
        width: 100%;
        flex-direction: row;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .post-job-form {
        padding: 24px;
    }
    
    .job-single-header-inner {
        flex-direction: column;
    }
    
    .job-single-actions {
        flex-wrap: wrap;
    }
    
    .stats-bar {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

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

.text-primary {
    color: var(--primary);
}

.text-accent {
    color: var(--accent);
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 16px;
}

.mb-2 {
    margin-bottom: 24px;
}

.mt-2 {
    margin-top: 24px;
}

.hidden {
    display: none;
}

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

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

/* ================================
   PRINT STYLES
   ================================ */
@media print {
    .site-header,
    .site-footer,
    .ad-slot,
    .job-actions {
        display: none !important;
    }
    
    .job-content-wrap {
        display: block;
    }
}
