

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors */
    --primary: #1B8C5E;
    --primary-dark: #146B48;
    --primary-light: #E8F5EE;
    --primary-lighter: #F0FAF5;

    /* Neutral Colors */
    --dark: #1A1F2B;
    --dark-soft: #2D3342;
    --grey-900: #374151;
    --grey-700: #4B5563;
    --grey-500: #6B7280;
    --grey-400: #9CA3AF;
    --grey-300: #D1D5DB;
    --grey-200: #E5E7EB;
    --grey-100: #F3F4F6;
    --grey-50: #F9FAFB;
    --white: #FFFFFF;

    /* Accent */
    --accent: #0D9488;
    --warning: #D97706;
    --danger: #DC2626;
    --info: #2563EB;

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.03);

    /* Border Radius */
    --radius-sm: 6px;
    --radius: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Transitions */
    --transition: all 0.25s ease;
    --transition-slow: all 0.4s ease;

    /* Header Height */
    --header-height: 72px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-family);
    font-size: 15px;
    line-height: 1.6;
    color: var(--grey-700);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
    font-family: inherit;
}

input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    outline: none;
    border: none;
}

/* ---------- UTILITY ---------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-grey {
    background-color: var(--grey-50);
}

.section-dark {
    background-color: var(--dark);
    color: var(--white);
}

.text-accent {
    color: var(--primary);
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius);
    transition: var(--transition);
    white-space: nowrap;
    cursor: pointer;
    border: 2px solid transparent;
    line-height: 1.4;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(27, 140, 94, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-1px);
}

.btn-white {
    background-color: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.btn-white:hover {
    background-color: var(--grey-50);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-sm {
    padding: 7px 16px;
    font-size: 13px;
}

/* ---------- SECTION HEADER ---------- */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    background-color: var(--primary-light);
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.section-tag i {
    font-size: 16px;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.3;
    margin-bottom: 12px;
}

.section-desc {
    font-size: 16px;
    color: var(--grey-500);
    max-width: 520px;
    margin: 0 auto;
}

.section-footer {
    text-align: center;
    margin-top: 40px;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(8px);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 22px;
    font-weight: 800;
    color: var(--dark);
}

.logo-icon {
    font-size: 28px;
    color: var(--primary);
}
.logo-img {
    width: 70px;
    height: 70px;
}
.logo-accent {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--grey-700);
    border-radius: var(--radius);
    transition: var(--transition);
}

.nav-link i {
    font-size: 18px;
}

.nav-link:hover {
    color: var(--primary);
    background-color: var(--primary-lighter);
}

.nav-link.active {
    color: var(--primary);
    background-color: var(--primary-light);
    font-weight: 600;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-toggle {
    display: none;
    font-size: 26px;
    color: var(--dark);
    padding: 4px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    padding-top: calc(var(--header-height) + 48px);
    padding-bottom: 64px;
    background-color: var(--white);
    overflow: hidden;
    margin-top: 72px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-badge i {
    font-size: 18px;
}

.hero-title {
    font-size: 44px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.hero-desc {
    font-size: 16px;
    color: var(--grey-500);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 500px;
}

/* Search Box */
.hero-search {
    max-width: 540px;
}

.search-box {
    display: flex;
    align-items: center;
    background-color: var(--white);
    border: 2px solid var(--grey-200);
    border-radius: var(--radius-md);
    padding: 6px;
    transition: var(--transition);
}

.search-box:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(27, 140, 94, 0.1);
}

.search-field {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    flex: 1;
}

.search-field i {
    font-size: 20px;
    color: var(--grey-400);
}

.search-field input,
.search-field select {
    width: 100%;
    background: transparent;
    color: var(--dark);
    font-size: 14px;
}

.search-field input::placeholder {
    color: var(--grey-400);
}

.search-field select {
    cursor: pointer;
    color: var(--grey-500);
    -webkit-appearance: none;
}

.search-divider {
    width: 1px;
    height: 28px;
    background-color: var(--grey-200);
    flex-shrink: 0;
}

.search-btn {
    padding: 12px 20px;
    border-radius: var(--radius);
    flex-shrink: 0;
}

.search-btn i {
    font-size: 18px;
}

.search-tags {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.search-tags span {
    font-size: 13px;
    color: var(--grey-500);
}

.search-tags a {
    font-size: 12px;
    color: var(--primary);
    background-color: var(--primary-light);
    padding: 4px 12px;
    border-radius: 50px;
    font-weight: 500;
}

.search-tags a:hover {
    background-color: var(--primary);
    color: var(--white);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-illustration {
    position: relative;
    width: 260px;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.illustration-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--primary-light);
    border: 2px dashed var(--grey-300);
    animation: rotate 25s linear infinite;
}

.illustration-dots {
    position: absolute;
    width: 85%;
    height: 85%;
    border-radius: 50%;
    border: 2px dotted var(--primary);
    opacity: 0.3;
    animation: rotate 20s linear infinite reverse;
}

.illustration-icon {
    font-size: 80px;
    color: var(--primary);
    position: relative;
    z-index: 2;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.hero-image {
width: 90%;
height: auto;
}
.hero-image img{
   
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    
    z-index: 1;
}

.hero-image img:hover {
    transform: scale(1.05);
    transition: var(--transition);
    box-shadow: 0 0 0 4px rgba(27, 140, 94, 0.3);

}
/* Hero Cards */
.hero-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: var(--white);
    padding: 14px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 3;
    animation: float 4s ease-in-out infinite;
}

.hero-card-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius);
    background-color: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.hero-card strong {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    display: block;
    line-height: 1.2;
}

.hero-card span {
    font-size: 12px;
    color: var(--grey-500);
}

.hero-card-1 {
    top: 20px;
    left: 10px;
    animation-delay: 0s;
}

.hero-card-2 {
    top: 50px;
    right: -10px;
    animation-delay: 1.3s;
}

.hero-card-3 {
    bottom: 30px;
    left: 30px;
    animation-delay: 2.6s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* ============================================
   CATEGORIES
   ============================================ */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 20px;
    background-color: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.category-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.category-card:hover .category-icon {
    background-color: var(--primary);
    color: var(--white);
}

.category-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background-color: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 16px;
    transition: var(--transition);
}

.category-card h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
}

.category-count {
    font-size: 12px;
    color: var(--grey-500);
}

/* ============================================
   JOBS LIST
   ============================================ */
.jobs-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.job-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background-color: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.job-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.job-card-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.job-company-logo {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    background-color: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.job-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 2px;
}

.job-company {
    font-size: 13px;
    color: var(--grey-500);
    margin-bottom: 6px;
    display: block;
}

.job-meta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.job-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--grey-500);
}

.job-meta span i {
    font-size: 14px;
    color: var(--grey-400);
}

.job-card-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.job-salary {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
}

.step-card {
    flex: 1;
    max-width: 300px;
    text-align: center;
    padding: 32px 24px;
    position: relative;
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-light);
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -2px;
}

.step-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.step-card:hover .step-icon {
    background-color: var(--primary);
    color: var(--white);
    transform: scale(1.08);
}

.step-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.step-card p {
    font-size: 14px;
    color: var(--grey-500);
    line-height: 1.6;
}

.step-connector {
    display: flex;
    align-items: center;
    padding-top: 90px;
    color: var(--grey-300);
    font-size: 24px;
}


/* ============================================
   CTA SECTION
   ============================================ */
.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.cta-card {
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
}

.cta-jobseeker {
    background-color: var(--primary);
    color: var(--white);
}

.cta-employer {
    background-color: var(--dark);
    color: var(--white);
}

.cta-card-content {
    position: relative;
    z-index: 2;
}

.cta-card-content i {
    font-size: 40px;
    margin-bottom: 16px;
    opacity: 0.9;
}

.cta-card-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.cta-card-content p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
    opacity: 0.85;
}
.cta-card-content a{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: var(--white);
    color: var(--primary);
    border-radius: var(--radius);
    font-weight: 600;
    transition: var(--transition);
    width: 200px;
    height: 44px;
}   
        /* ============================================
           FOOTER - STAFFIX (TAM RESPONSIVE)
           ============================================ */
        .footer {
            width: 100%;
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            color: #e2e8f0;
            padding: 60px 0 20px;
            margin-top: auto;
            position: relative;
            border-top: 1px solid rgba(20, 184, 166, 0.2);
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(135deg, #14b8a6 0%, #0f766e 100%);
        }

        .footer-container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 clamp(14px, 3vw, 40px);
        }

        /* ============================================
           FOOTER GRID
           ============================================ */
        .footer-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr 1.5fr 1.2fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        /* ============================================
           BRAND KOLON
           ============================================ */
        .footer-brand-col {
            grid-column: span 1;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
        }

        .footer-brand .brand-icon {
            width: 90px;
            height: 90px;
            min-width: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .footer-brand .brand-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        /* SVG logo fallback */
        .footer-brand .brand-icon svg {
            width: 100%;
            height: 100%;
        }

        .footer-brand .brand-text {
            font-size: clamp(1.2rem, 2vw, 1.5rem);
            font-weight: 800;
            background: linear-gradient(135deg, #fff 0%, #5eead4 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            white-space: nowrap;
        }

        .footer-brand .brand-text span {
            background: linear-gradient(135deg, #14b8a6 0%, #0f766e 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .footer-desc {
            color: #94a3b8;
            line-height: 1.7;
            margin-bottom: 24px;
            font-size: clamp(0.82rem, 1.5vw, 0.92rem);
        }

        /* ============================================
           SOCIAL LINKS
           ============================================ */
        .social-links {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .social-links a {
            width: 38px;
            height: 38px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #e2e8f0;
            transition: all 0.3s ease;
            font-size: 1rem;
            text-decoration: none;
        }

        .social-links a:hover {
            background: #14b8a6;
            color: #ffffff;
            transform: translateY(-3px);
        }

        /* ============================================
           FOOTER KOLONLAR
           ============================================ */
        .footer-col h4 {
            color: #ffffff;
            font-size: clamp(0.95rem, 1.5vw, 1.1rem);
            font-weight: 600;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            gap: 10px;
            padding-bottom: 12px;
            position: relative;
        }

        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: linear-gradient(135deg, #14b8a6 0%, #0f766e 100%);
            border-radius: 2px;
        }

        .footer-col h4 i {
            color: #14b8a6;
            font-size: 1rem;
        }

        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-col ul li {
            margin-bottom: 12px;
        }

        .footer-col ul li a {
            color: #94a3b8;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: clamp(0.82rem, 1.3vw, 0.92rem);
        }

        .footer-col ul li a i {
            font-size: 0.7rem;
            transition: all 0.3s ease;
        }

        .footer-col ul li a:hover {
            color: #14b8a6;
            transform: translateX(5px);
        }

        .footer-col ul li a:hover i {
            transform: translateX(3px);
        }

        /* ============================================
           KATEQORİYALAR
           ============================================ */
        .categories-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 8px 16px;
        }

        .categories-list li {
            margin-bottom: 0 !important;
        }

        .categories-list li a {
            display: flex !important;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            font-size: clamp(0.78rem, 1.2vw, 0.88rem);
        }

        .categories-list li a i {
            margin-right: 8px;
        }

        .job-count {
            font-size: 0.7rem;
            background: rgba(20, 184, 166, 0.15);
            padding: 2px 6px;
            border-radius: 20px;
            color: #14b8a6;
            font-weight: 500;
            transition: all 0.3s ease;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .categories-list li a:hover .job-count {
            background: #14b8a6;
            color: #ffffff;
        }

        /* ============================================
           CONTACT LIST
           ============================================ */
        .contact-list li {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            margin-bottom: 20px !important;
        }

        .contact-list li i {
            width: 20px;
            min-width: 20px;
            color: #14b8a6;
            font-size: 1rem;
            margin-top: 2px;
        }

        .contact-list li div {
            flex: 1;
            min-width: 0;
        }

        .contact-list li div span:first-child {
            display: block;
            font-size: 0.7rem;
            color: #64748b;
            margin-bottom: 4px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .contact-list li div span:last-child,
        .contact-list li div a {
            color: #cbd5e1;
            font-size: clamp(0.82rem, 1.3vw, 0.92rem);
            text-decoration: none;
            transition: all 0.3s ease;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        .contact-list li div a:hover {
            color: #14b8a6;
        }

        /* ============================================
           AUTH LINKS
           ============================================ */
        .footer-auth {
            display: flex;
            justify-content: center;
            gap: 20px;
            padding: 30px 0;
            margin-bottom: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            flex-wrap: wrap;
        }

        .auth-link {
            padding: 10px 28px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.9rem;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            white-space: nowrap;
        }

        .auth-link.login {
            border: 2px solid #14b8a6;
            color: #14b8a6;
            background: transparent;
        }

        .auth-link.login:hover {
            background: #14b8a6;
            color: #ffffff;
            transform: translateY(-2px);
        }

        .auth-link.register {
            background: linear-gradient(135deg, #14b8a6 0%, #0f766e 100%);
            color: #ffffff;
            box-shadow: 0 4px 12px rgba(20, 184, 166, 0.25);
            border: 2px solid transparent;
        }

        .auth-link.register:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(20, 184, 166, 0.4);
        }

        /* ============================================
           FOOTER BOTTOM
           ============================================ */
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
            padding-top: 20px;
            font-size: clamp(0.72rem, 1.2vw, 0.82rem);
            color: #64748b;
        }

        .footer-bottom p {
            margin: 0;
        }

        .footer-bottom-links {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
        }

        .footer-bottom-links a {
            color: #64748b;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: inherit;
            white-space: nowrap;
        }

        .footer-bottom-links a i {
            font-size: 0.7rem;
        }

        .footer-bottom-links a:hover {
            color: #14b8a6;
        }

        /* ============================================
           MOBILE ACCORDION (Collapse/Expand)
           ============================================ */
        .footer-col-toggle {
            display: none;
        }

        /* ============================================
           RESPONSIVE - FIXED & IMPROVED
           ============================================ */

        /* Large Desktop (1400px+) — handled by max-width on container */

        /* Desktop-Small / Laptop (max-width: 1200px) */
        @media (max-width: 1200px) {
            .footer-grid {
                gap: 30px;
            }

            .categories-list {
                gap: 8px 12px;
            }
        }

        /* Tablet Landscape (max-width: 1024px) */
        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 36px;
            }

            .footer-brand-col {
                grid-column: span 2;
            }

            .footer-brand {
                justify-content: flex-start;
            }

            .footer-desc {
                max-width: 85%;
            }

            .social-links {
                justify-content: flex-start;
            }

            .categories-list {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Tablet Portrait (max-width: 768px) */
        @media (max-width: 768px) {
            .footer {
                padding: 44px 0 18px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 0;
            }

            .footer-brand-col {
                grid-column: span 1;
                text-align: center;
                padding-bottom: 28px;
                margin-bottom: 8px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            }

            .footer-brand {
                justify-content: center;
            }

            .footer-brand .brand-icon {
                width: 72px;
                height: 72px;
            }

            .footer-desc {
                max-width: 100%;
                text-align: center;
            }

            .social-links {
                justify-content: center;
            }

            /* --- Mobile Accordion Style --- */
            .footer-col {
                border-bottom: 1px solid rgba(255, 255, 255, 0.06);
                padding: 0;
                text-align: left;
            }

            .footer-col:last-child {
                border-bottom: none;
            }

            .footer-col h4 {
                justify-content: space-between;
                cursor: pointer;
                padding: 18px 0 18px;
                margin-bottom: 0;
                user-select: none;
                -webkit-user-select: none;
                position: relative;
            }

            .footer-col h4::after {
                /* Remove the underline on mobile, use chevron instead */
                display: none;
            }

            .footer-col-toggle {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 28px;
                height: 28px;
                border-radius: 50%;
                background: rgba(20, 184, 166, 0.1);
                color: #14b8a6;
                font-size: 0.75rem;
                transition: all 0.3s ease;
                flex-shrink: 0;
            }

            .footer-col.active .footer-col-toggle {
                transform: rotate(180deg);
                background: rgba(20, 184, 166, 0.2);
            }

            .footer-col-content {
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.4s ease, padding 0.3s ease;
                padding-bottom: 0;
            }

            .footer-col.active .footer-col-content {
                max-height: 600px;
                padding-bottom: 20px;
            }

            .footer-col ul li a {
                justify-content: flex-start;
            }

            .categories-list {
                grid-template-columns: repeat(2, 1fr);
                max-width: 100%;
                margin: 0;
            }

            .categories-list li a {
                justify-content: space-between;
            }

            .contact-list li {
                justify-content: flex-start;
                max-width: 100%;
                margin-left: 0;
                margin-right: 0;
            }

            /* Auth */
            .footer-auth {
                flex-direction: row;
                justify-content: center;
                gap: 14px;
                padding: 24px 0;
            }

            .auth-link {
                padding: 10px 24px;
                font-size: 0.85rem;
            }

            /* Bottom */
            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 12px;
            }

            .footer-bottom-links {
                justify-content: center;
                gap: 16px;
                flex-wrap: wrap;
            }
        }

        /* Small Mobile (max-width: 576px) */
        @media (max-width: 576px) {
            .footer {
                padding: 36px 0 16px;
            }

            .footer-brand .brand-icon {
                width: 60px;
                height: 60px;
            }

            .footer-desc {
                font-size: 0.84rem;
            }

            .social-links a {
                width: 36px;
                height: 36px;
                font-size: 0.92rem;
            }

            .categories-list {
                grid-template-columns: 1fr 1fr;
                gap: 6px 10px;
            }

            .footer-auth {
                flex-direction: column;
                align-items: center;
                gap: 12px;
            }

            .auth-link {
                width: 100%;
                max-width: 260px;
                justify-content: center;
                padding: 10px 20px;
                font-size: 0.85rem;
            }

            .footer-bottom-links {
                flex-direction: column;
                gap: 8px;
            }
        }

        /* Extra Small Mobile (max-width: 400px) */
        @media (max-width: 400px) {
            .footer-brand .brand-icon {
                width: 50px;
                height: 50px;
            }

            .footer-brand .brand-text {
                font-size: 1.1rem;
            }

            .social-links a {
                width: 34px;
                height: 34px;
                font-size: 0.85rem;
            }

            .social-links {
                gap: 8px;
            }

            .categories-list {
                grid-template-columns: 1fr;
                gap: 6px;
            }

            .contact-list li {
                gap: 10px;
            }

            .auth-link {
                max-width: 220px;
                font-size: 0.82rem;
            }
        }

        /* Landscape on phones */
        @media (max-height: 500px) and (orientation: landscape) {
            .footer {
                padding: 24px 0 12px;
            }

            .footer-grid {
                gap: 16px;
            }

            .footer-brand .brand-icon {
                width: 48px;
                height: 48px;
            }

            .footer-desc {
                font-size: 0.8rem;
                margin-bottom: 14px;
            }

            .footer-col h4 {
                margin-bottom: 14px;
                font-size: 0.95rem;
            }

            .footer-auth {
                padding: 16px 0;
            }
        }

        /* Landscape tablet — 2-col grid still */
        @media (max-height: 500px) and (min-width: 600px) and (orientation: landscape) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-brand-col {
                grid-column: span 2;
                text-align: left;
            }

            .footer-brand {
                justify-content: flex-start;
            }

            .footer-desc {
                text-align: left;
            }

            .social-links {
                justify-content: flex-start;
            }

            .footer-col {
                text-align: left;
            }
        }
/* ============================================
   SCROLL TOP
   ============================================ */
.scroll-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    background-color: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: var(--transition);
    z-index: 900;
    box-shadow: var(--shadow-md);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

/* ---------- 1024px ---------- */
@media screen and (max-width: 1024px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-content {
        gap: 32px;
    }

    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

/* ---------- 768px ---------- */
@media screen and (max-width: 768px) {
    .section {
        padding: 56px 0;
    }

    /* Navigation Mobile */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 24px 32px;
        gap: 4px;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
        transition: var(--transition-slow);
        z-index: 999;
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-link {
        width: 100%;
        padding: 12px 16px;
        font-size: 15px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-actions .btn-outline,
    .nav-actions .btn-primary {
        display: none;
    }

    /* Hero */
    .hero {
        padding-top: calc(var(--header-height) + 32px);
        padding-bottom: 40px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-desc {
        max-width: 100%;
    }

    .hero-search {
        max-width: 100%;
    }

    .search-box {
        flex-direction: column;
        align-items: stretch;
    }

    .search-divider {
        width: 100%;
        height: 1px;
    }

    .search-btn {
        width: 100%;
    }

    .hero-visual {
        height: 300px;
        order: -1;
    }

    .hero-illustration {
        width: 200px;
        height: 200px;
    }

    .illustration-icon {
        font-size: 60px;
    }

    .hero-card {
        padding: 10px 14px;
        gap: 10px;
    }

    .hero-card-icon {
        width: 36px;
        height: 36px;
        font-size: 17px;
    }

    .hero-card strong {
        font-size: 15px;
    }

    /* Categories */
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .category-card {
        padding: 20px 16px;
    }

    /* Jobs */
    .job-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 18px 20px;
    }

    .job-card-right {
        width: 100%;
        justify-content: space-between;
    }

    .job-meta {
        flex-wrap: wrap;
        gap: 10px;
    }

    /* Steps */
    .steps-grid {
        flex-direction: column;
        align-items: center;
    }

    .step-connector {
        padding-top: 0;
        transform: rotate(90deg);
    }

    .step-card {
        max-width: 100%;
    }

    /* CTA */
    .cta-grid {
        grid-template-columns: 1fr;
    }

    .cta-card {
        padding: 36px 28px;
    }

    /* Section */
    .section-title {
        font-size: 26px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* ---------- 480px ---------- */
@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 26px;
    }

    .hero-badge {
        font-size: 12px;
    }
.hero-image  {
        width: 100%;
        height: auto;
        
    }
    .categories-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .category-icon {
        width: 44px;
        height: 44px;
        font-size: 22px;
        margin-bottom: 12px;
    }

    .category-card h3 {
        font-size: 13px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-number {
        font-size: 28px;
    }

    .hero-card-2 {
        right: 0;
    }

    .hero-card-3 {
        left: 5px;
    }
}

/* Mobile menu overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}
/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation for grid items */
.categories-grid .fade-in:nth-child(1) { transition-delay: 0.05s; }
.categories-grid .fade-in:nth-child(2) { transition-delay: 0.1s; }
.categories-grid .fade-in:nth-child(3) { transition-delay: 0.15s; }
.categories-grid .fade-in:nth-child(4) { transition-delay: 0.2s; }
.categories-grid .fade-in:nth-child(5) { transition-delay: 0.25s; }
.categories-grid .fade-in:nth-child(6) { transition-delay: 0.3s; }
.categories-grid .fade-in:nth-child(7) { transition-delay: 0.35s; }
.categories-grid .fade-in:nth-child(8) { transition-delay: 0.4s; }

.jobs-list .fade-in:nth-child(1) { transition-delay: 0.05s; }
.jobs-list .fade-in:nth-child(2) { transition-delay: 0.1s; }
.jobs-list .fade-in:nth-child(3) { transition-delay: 0.15s; }
.jobs-list .fade-in:nth-child(4) { transition-delay: 0.2s; }
.jobs-list .fade-in:nth-child(5) { transition-delay: 0.25s; }
