/*
Theme Name: Apply Bosnia
Theme URI: https://applybosnia.com
Author: Emre
Description: Profesionalna tema za platformu oglasa za posao
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: applybosnia
*/

/* ========== RESET & BASE ========== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary: #3d2314;
    --primary-light: #5a3520;
    --accent: #c9a227;
    --accent-light: #d4af37;
    --bg-cream: #fef7ed;
    --bg-light: #faf8f5;
    --text-dark: #3d2314;
    --text-medium: #6b5344;
    --text-light: #8b7c6b;
    --border: #e8e0d8;
    --white: #ffffff;
    --success: #2e7d32;
    --info: #1565c0;
    --warning: #e65100;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 15px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.1);
    --font-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-light);
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--accent);
}

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

/* ========== LAYOUT ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    gap: 30px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5em;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
}

.site-logo:hover {
    color: var(--primary);
}

.site-logo img {
    height: 40px;
    width: auto;
}

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

.main-nav a {
    padding: 10px 18px;
    color: var(--text-medium);
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all 0.2s;
}

.main-nav a:hover,
.main-nav a.active {
    background: var(--bg-cream);
    color: var(--primary);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95em;
    cursor: pointer;
    transition: all 0.2s;
    border: 2px solid transparent;
    text-decoration: none;
}

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

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

.btn-accent {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: var(--white);
    border-color: var(--accent);
    box-shadow: 0 4px 15px rgba(201,162,39,0.3);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201,162,39,0.4);
    color: var(--white);
}

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

.btn-outline:hover {
    background: var(--bg-cream);
    border-color: var(--primary);
}

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

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5em;
    cursor: pointer;
    padding: 10px;
    color: var(--primary);
}

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

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

.footer-brand p {
    color: rgba(255,255,255,0.7);
    margin-top: 15px;
    line-height: 1.7;
}

.footer-col h4 {
    font-size: 1em;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-col ul {
    list-style: none;
}

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

.footer-col a {
    color: rgba(255,255,255,0.7);
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--accent);
}

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

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9em;
}

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

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

.footer-social a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

/* ========== HERO SECTION ========== */
.hero-section {
    background: linear-gradient(135deg, var(--bg-cream) 0%, #fef3e2 100%);
    padding: 80px 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 3em;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-section p {
    font-size: 1.2em;
    color: var(--text-medium);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Search Box */
.search-box {
    max-width: 700px;
    margin: 0 auto 30px;
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 18px 20px 18px 55px;
    font-size: 1.05em;
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-md);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.search-box input:focus {
    border-color: var(--accent);
    box-shadow: 0 4px 25px rgba(201,162,39,0.15);
}

.search-box .search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
    color: var(--text-light);
}

.search-box button {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
}

/* Category Tags */
.category-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 900px;
    margin: 0 auto;
}

.category-tag {
    padding: 10px 20px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 25px;
    color: var(--text-medium);
    font-weight: 500;
    transition: all 0.2s;
}

.category-tag:hover,
.category-tag.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* ========== JOB CARDS ========== */
.job-card {
    background: var(--white);
    border: 1.5px solid #f0ebe5;
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 16px;
    display: flex;
    gap: 20px;
    transition: all 0.2s;
    position: relative;
}

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

.job-card.featured {
    background: linear-gradient(135deg, #fffbf0 0%, #fff9e6 100%);
    border-color: #f0e4c8;
}

.job-logo {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    object-fit: contain;
    background: var(--bg-light);
    flex-shrink: 0;
}

.job-logo-placeholder {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.4em;
    flex-shrink: 0;
}

.job-info {
    flex: 1;
    min-width: 0;
}

.job-title-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.job-title {
    font-size: 1.15em;
    font-weight: 700;
    color: var(--primary);
}

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

.job-company {
    color: var(--text-medium);
}

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

.job-tag {
    padding: 6px 14px;
    background: var(--bg-light);
    border-radius: 20px;
    font-size: 0.85em;
    color: var(--text-medium);
    font-weight: 500;
}

.job-tag.salary { background: #e8f5e9; color: var(--success); }
.job-tag.type { background: #fff3e0; color: var(--warning); }
.job-tag.location { background: #e3f2fd; color: var(--info); }

.job-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    flex-shrink: 0;
}

.job-date {
    font-size: 0.85em;
    color: var(--text-light);
}

.featured-badge {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: var(--white);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 600;
}

/* ========== SIDEBAR FILTERS ========== */
.jobs-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    margin-top: 50px;
}

.jobs-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.filter-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #f0ebe5;
}

.filter-section {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0ebe5;
}

.filter-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.filter-section h3 {
    font-size: 1em;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.filter-section label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    cursor: pointer;
    color: var(--text-medium);
    font-size: 0.95em;
    transition: color 0.2s;
}

.filter-section label:hover {
    color: var(--primary);
}

.filter-section input[type="checkbox"],
.filter-section input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

.filter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px 15px;
}

/* ========== SINGLE JOB PAGE ========== */
.single-job-header {
    background: linear-gradient(135deg, var(--bg-cream) 0%, #fef3e2 100%);
    padding: 50px 0;
}

.job-header-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.job-header-top {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    margin-bottom: 25px;
}

.job-header-logo {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-lg);
    object-fit: contain;
    background: var(--bg-light);
    padding: 10px;
}

.job-header-logo-placeholder {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 2em;
}

.job-header-info h1 {
    font-size: 1.8em;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
    line-height: 1.3;
}

.job-header-company {
    font-size: 1.2em;
    color: var(--text-medium);
    font-weight: 600;
}

.job-meta-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 25px 0;
}

.meta-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--bg-light);
    border-radius: 25px;
    font-weight: 500;
    color: var(--text-medium);
}

.meta-tag.salary { background: #e8f5e9; color: var(--success); }
.meta-tag.type { background: #fff3e0; color: var(--warning); }
.meta-tag.location { background: #e3f2fd; color: var(--info); }

.job-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Job Content */
.single-job-content {
    padding: 50px 0;
}

.job-description {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #f0ebe5;
}

.job-description h2 {
    font-size: 1.4em;
    color: var(--primary);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0ebe5;
}

.job-description-content {
    line-height: 1.9;
    color: #4a4a4a;
}

.job-description-content h1,
.job-description-content h2,
.job-description-content h3,
.job-description-content h4 {
    color: var(--primary);
    margin-top: 30px;
    margin-bottom: 15px;
}

.job-description-content ul,
.job-description-content ol {
    padding-left: 25px;
    margin: 20px 0;
}

.job-description-content li {
    margin-bottom: 10px;
}

/* Apply Box */
.apply-box {
    background: linear-gradient(135deg, #fffbf0 0%, #fff9e6 100%);
    border: 2px solid #f0e4c8;
    border-radius: var(--radius-lg);
    padding: 35px;
    margin-top: 40px;
    text-align: center;
}

.apply-box h3 {
    color: var(--primary);
    font-size: 1.3em;
    margin-bottom: 10px;
}

.apply-box p {
    color: var(--text-medium);
    margin-bottom: 20px;
}

/* Related Jobs */
.related-jobs {
    margin-top: 60px;
}

.related-jobs h2 {
    font-size: 1.4em;
    color: var(--primary);
    margin-bottom: 25px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.related-card {
    background: var(--white);
    border: 1.5px solid #f0ebe5;
    border-radius: var(--radius-lg);
    padding: 20px;
    transition: all 0.2s;
}

.related-card:hover {
    border-color: var(--border);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.related-card h4 {
    color: var(--primary);
    margin-bottom: 8px;
}

.related-card .company {
    color: var(--text-medium);
    font-size: 0.9em;
}

/* ========== PAGINATION ========== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 50px;
}

.pagination a,
.pagination span {
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    font-weight: 500;
}

.pagination a {
    background: var(--white);
    border: 1.5px solid var(--border);
    color: var(--primary);
}

.pagination a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.pagination span.current {
    background: var(--primary);
    color: var(--white);
}

/* ========== MOBILE RESPONSIVE ========== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {
    .jobs-layout {
        grid-template-columns: 1fr;
    }
    
    .jobs-sidebar {
        position: static;
        display: none;
    }
    
    .jobs-sidebar.active {
        display: block;
    }
    
    .mobile-filter-btn {
        display: flex !important;
    }
    
    .hero-section h1 {
        font-size: 2.2em;
    }
    
    .job-header-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .job-meta-tags {
        justify-content: center;
    }
    
    .job-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .header-inner {
        flex-wrap: wrap;
    }
    
    .main-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        order: 3;
        padding-top: 15px;
        border-top: 1px solid var(--border);
        margin-top: 15px;
    }
    
    .main-nav.active {
        display: flex;
    }
    
    .main-nav a {
        width: 100%;
        text-align: center;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .header-actions {
        order: 2;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .job-card {
        flex-direction: column;
    }
    
    .job-meta {
        flex-direction: row;
        width: 100%;
        justify-content: space-between;
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid #f0ebe5;
    }
    
    .job-header-card {
        padding: 25px;
    }
    
    .job-description {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 50px 0;
    }
    
    .hero-section h1 {
        font-size: 1.8em;
    }
    
    .search-box input {
        padding: 15px 15px 15px 45px;
        font-size: 1em;
    }
    
    .category-tags {
        gap: 8px;
    }
    
    .category-tag {
        padding: 8px 14px;
        font-size: 0.9em;
    }
    
    .btn {
        padding: 10px 18px;
        font-size: 0.9em;
    }
    
    .btn-lg {
        padding: 14px 24px;
        font-size: 1em;
    }
}

/* ========== UTILITIES ========== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }

.mobile-filter-btn {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    cursor: pointer;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
    width: 100%;
    justify-content: center;
}

/* Back Link */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-medium);
    font-weight: 500;
    margin-bottom: 20px;
    transition: color 0.2s;
}

.back-link:hover {
    color: var(--primary);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid #f0ebe5;
}

.empty-state-icon {
    font-size: 4em;
    margin-bottom: 20px;
}

.empty-state h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

.empty-state p {
    color: var(--text-medium);
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5em;
    color: var(--accent);
    margin-bottom: 10px;
}

.stat-item p {
    color: var(--text-medium);
    font-weight: 500;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* User Menu */
.user-menu {
    position: relative;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    cursor: pointer;
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    min-width: 200px;
    display: none;
    z-index: 100;
    border: 1px solid var(--border);
    margin-top: 10px;
}

.user-dropdown.active {
    display: block;
}

.user-dropdown a {
    display: block;
    padding: 12px 20px;
    color: var(--text-medium);
    border-bottom: 1px solid #f0ebe5;
}

.user-dropdown a:last-child {
    border-bottom: none;
}

.user-dropdown a:hover {
    background: var(--bg-light);
    color: var(--primary);
}

/* ================================================
   MOBILE OPTIMIZATIONS - Add to style.css
   ================================================ */

/* Mobile breakpoints */
@media (max-width: 768px) {
    
    /* GLOBAL */
    body {
        font-size: 14px;
    }
    
    h1 {
        font-size: 1.8em !important;
    }
    
    h2 {
        font-size: 1.4em !important;
    }
    
    h3 {
        font-size: 1.2em !important;
    }
    
    /* CONTAINER */
    .container,
    .container-narrow {
        padding: 0 15px !important;
    }
    
    /* HERO SECTION */
    .hero-section {
        padding: 40px 0 !important;
    }
    
    .hero-section h1 {
        font-size: 1.6em !important;
        line-height: 1.3;
    }
    
    .hero-section p {
        font-size: 0.95em !important;
    }
    
    .search-box {
        flex-direction: column !important;
        gap: 10px !important;
    }
    
    .search-box input {
        min-width: 100% !important;
    }
    
    .search-box button {
        width: 100% !important;
        padding: 14px !important;
    }
    
    .category-tags {
        gap: 6px !important;
        justify-content: flex-start !important;
    }
    
    .category-tag {
        font-size: 12px !important;
        padding: 6px 12px !important;
    }
    
    /* STATS SECTION */
    .stats-section {
        padding: 30px 0 !important;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
    
    .stat-item h3 {
        font-size: 1.8em !important;
    }
    
    .stat-item p {
        font-size: 0.85em !important;
    }
    
    /* JOB CARDS */
    .job-card,
    .gk-job-card {
        padding: 18px !important;
        margin-bottom: 15px !important;
    }
    
    .job-header,
    .gk-job-header {
        flex-direction: column !important;
        gap: 12px !important;
    }
    
    .job-logo,
    .gk-job-logo {
        width: 50px !important;
        height: 50px !important;
    }
    
    .job-title,
    .gk-job-title {
        font-size: 1em !important;
    }
    
    .job-company,
    .gk-job-company {
        font-size: 0.85em !important;
    }
    
    .job-meta-tags,
    .job-tags,
    .gk-job-meta {
        gap: 6px !important;
    }
    
    .meta-tag,
    .job-tag,
    .gk-job-tag {
        font-size: 11px !important;
        padding: 4px 10px !important;
    }
    
    .job-footer,
    .gk-job-footer {
        flex-direction: column !important;
        gap: 10px !important;
        align-items: stretch !important;
    }
    
    .job-btn,
    .gk-job-btn {
        width: 100% !important;
        text-align: center !important;
    }
    
    /* JOBS GRID */
    .gk-jobs-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    /* SINGLE JOB PAGE */
    .single-job-header {
        padding: 20px 0 !important;
    }
    
    .job-header-card {
        padding: 20px !important;
    }
    
    .job-header-top {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }
    
    .job-header-logo,
    .job-header-logo-placeholder {
        width: 60px !important;
        height: 60px !important;
    }
    
    .job-actions {
        flex-direction: column !important;
        gap: 10px !important;
    }
    
    .job-actions .btn {
        width: 100% !important;
    }
    
    .single-job-content {
        padding: 20px 0 !important;
    }
    
    .job-description {
        padding: 20px !important;
    }
    
    .apply-box {
        padding: 20px !important;
    }
    
    .apply-box h3 {
        font-size: 1.2em !important;
    }
    
    .apply-box .btn {
        width: 100% !important;
    }
    
    /* RELATED JOBS */
    .related-jobs {
        margin-top: 40px !important;
        padding-top: 30px !important;
    }
    
    .related-jobs h2 {
        font-size: 1.3em !important;
    }
    
    .related-grid,
    .related-jobs > div[style*="grid"] {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    /* DASHBOARD */
    .gk-access-wrap {
        padding: 25px 20px !important;
        margin: 20px 15px !important;
    }
    
    .gk-dashboard-wrap {
        padding: 20px 15px !important;
    }
    
    .gk-stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    
    .gk-stat-card {
        padding: 15px !important;
    }
    
    .gk-stat-card h3 {
        font-size: 1.5em !important;
    }
    
    .gk-profile-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* SEARCH FILTER */
    .gk-search-filter {
        padding: 20px !important;
        margin-bottom: 20px !important;
    }
    
    .gk-categories {
        gap: 6px !important;
    }
    
    .gk-cat-btn {
        font-size: 12px !important;
        padding: 8px 14px !important;
    }
    
    /* BUTTONS */
    .btn,
    .gk-btn {
        font-size: 14px !important;
        padding: 12px 20px !important;
    }
    
    .btn-lg {
        font-size: 15px !important;
        padding: 14px 24px !important;
    }
    
    /* FORMS */
    input[type="text"],
    input[type="email"],
    input[type="password"],
    input[type="tel"],
    textarea {
        font-size: 15px !important;
        padding: 12px !important;
    }
    
    /* POPUP */
    .gk-popup-content {
        max-width: 95% !important;
        margin: 0 10px !important;
    }
    
    .gk-tabbar button {
        font-size: 1em !important;
        padding: 12px 0 !important;
    }
    
    /* PAGINATION */
    .gk-pagination {
        gap: 6px !important;
    }
    
    .gk-pagination a,
    .gk-pagination span {
        padding: 8px 12px !important;
        font-size: 14px !important;
        min-width: 40px !important;
    }
    
    /* ADMIN PANEL */
    .gk-admin-wrap {
        padding: 15px !important;
    }
    
    .gk-admin-stats {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    
    .gk-table-wrap {
        overflow-x: auto !important;
    }
    
    .gk-table {
        font-size: 12px !important;
    }
    
    .gk-table th,
    .gk-table td {
        padding: 8px !important;
    }
    
    /* HIDE ON MOBILE */
    @media (max-width: 480px) {
        .job-date,
        .gk-job-date {
            font-size: 11px !important;
        }
        
        .back-link {
            font-size: 13px !important;
        }
    }
}

/* Small phones */
@media (max-width: 480px) {
    body {
        font-size: 13px;
    }
    
    h1 {
        font-size: 1.5em !important;
    }
    
    .hero-section h1 {
        font-size: 1.4em !important;
    }
    
    .stats-grid {
        grid-template-columns: 1fr !important;
    }
    
    .job-card,
    .gk-job-card {
        padding: 15px !important;
    }
    
    .category-tag {
        font-size: 11px !important;
        padding: 5px 10px !important;
    }
}


/* ==================== HEADER ==================== */
.site-header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 0; /* Padding'i kaldır */
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--brown);
    font-size: 1.5rem;
    font-weight: 800;
    padding: 0; /* Padding'i kaldır */
    margin: 0; /* Margin'i kaldır */
}

.site-logo img {
    display: block;
}

.site-logo span:first-child {
    font-size: 2rem;
}

.site-logo {
    margin-left: -10px !important; /* Gereken kadar ayarlayın */
}