@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600;1,700&display=swap');

:root {
    --primary-navy: #0c1a3a;
    --primary-navy-dark: #091428;
    --primary-orange: #f47920;
    --orange-hover: #d96a18;
    --orange-light: #fff7f0;
    --orange-pale: #fef3e8;
    --body-bg: #f5f6fa;
    --white: #ffffff;
    --text-dark: #1a1a2e;
    --text-secondary: #555555;
    --text-muted: #888888;
    --border-color: #e8e8e8;
    --border-light: #f0f0f0;
    --card-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    --card-shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
    --star-color: #ffc107;
    --verified-green: #28a745;
    --verified-blue: #1da1f2;
    --featured-orange: #ff6b35;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--body-bg);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* ===== NAVBAR ===== */
.navbar-main {
    background-color: #ffffff;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1050;
    transition: box-shadow 0.3s ease;
    border-bottom: 1px solid var(--border-light);
}

.navbar-main.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.navbar-main .navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

/* ===== BRAND LOGO ===== */
.brand-logo-container {
    background: transparent;
    padding: 0;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    transition: transform 0.2s ease;
}

.brand-logo-container:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.brand-logo-img {
    height: 42px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
}

@media (max-width: 575px) {
    .brand-logo-container {
        padding: 4px 8px;
    }
    .brand-logo-img {
        height: 34px;
        max-width: 140px;
    }
}

.logo-icon-wrap {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 17px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: white;
    line-height: 1.1;
    letter-spacing: 0.5px;
}

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

.logo-tagline {
    font-size: 7.5px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.navbar-main .nav-link {
    color: var(--text-secondary) !important;
    font-size: 13.5px;
    font-weight: 500;
    padding: 8px 15px !important;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.navbar-main .nav-link:hover,
.navbar-main .nav-link.active {
    color: var(--primary-navy) !important;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-selector {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
    font-size: 13px;
    cursor: pointer;
    padding: 6px 14px;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.location-selector:hover {
    border-color: var(--primary-navy);
}

.location-selector i:first-child {
    color: var(--primary-orange);
}

.btn-login {
    border: 1.5px solid var(--primary-navy) !important;
    color: var(--primary-navy) !important;
    border-radius: 22px;
    padding: 6px 22px !important;
    font-size: 13.5px;
    font-weight: 500;
    background: transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-login:hover {
    background: var(--primary-navy) !important;
    color: white !important;
}

.btn-post-job {
    background: var(--primary-orange);
    color: white !important;
    border-radius: 22px;
    padding: 7px 22px;
    font-size: 13.5px;
    font-weight: 600;
    border: 1.5px solid var(--primary-orange);
    transition: all 0.3s ease;
    white-space: nowrap;
    display: inline-block;
    text-align: center;
}

.btn-post-job:hover {
    background: var(--orange-hover);
    border-color: var(--orange-hover);
}

.navbar-toggler {
    border: 1px solid var(--border-color);
    padding: 6px 10px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: var(--primary-navy);
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    min-height: 520px;
    width: 100%;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(12, 26, 58, 0.92) 0%, rgba(12, 26, 58, 0.75) 100%);
    z-index: 1;
}

.hero-inner {
    position: relative;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-left {
    background: var(--primary-navy);
    display: flex;
    align-items: center;
}

.hero-content {
    padding: 60px 50px 60px 0;
    max-width: 620px;
    margin-left: auto;
    padding-left: 30px;
}

.hero-label {
    color: var(--primary-orange);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.hero-label::before {
    content: '';
    width: 28px;
    height: 2.5px;
    background: var(--primary-orange);
    border-radius: 2px;
}

.hero-title {
    font-size: 40px;
    font-weight: 800;
    color: white;
    line-height: 1.15;
    margin-bottom: 18px;
}

.hero-title .highlight {
    color: var(--primary-orange);
    display: block;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 480px;
    font-weight: 300;
}

.hero-search {
    background: white;
    border-radius: 50px;
    padding: 5px 5px 5px 18px;
    display: flex;
    align-items: center;
    max-width: 540px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.search-input-group {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 10px;
    min-width: 0;
}

.search-input-group > i {
    color: #b0b0b0;
    font-size: 15px;
    flex-shrink: 0;
}

.search-field {
    flex: 1;
    min-width: 0;
}

.search-field-label {
    display: block;
    font-size: 10px;
    color: #999;
    font-weight: 500;
    line-height: 1.2;
}

.search-field input {
    border: none;
    outline: none;
    font-size: 12px;
    color: #333;
    width: 100%;
    font-family: 'Poppins', sans-serif;
    padding: 0;
    background: transparent;
}

.search-field input::placeholder {
    color: #bbb;
    font-size: 11.5px;
}

.search-divider {
    width: 1px;
    height: 32px;
    background: #e0e0e0;
    margin: 0 14px;
    flex-shrink: 0;
}

.location-group {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 110px;
    flex-shrink: 0;
}

.location-group > i {
    color: var(--primary-orange);
    font-size: 14px;
}

.location-group select {
    border: none;
    outline: none;
    font-size: 13px;
    color: #333;
    font-weight: 500;
    background: transparent;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    -webkit-appearance: auto;
    appearance: auto;
    padding: 0;
}

.btn-search {
    background: var(--primary-orange);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 11px 26px;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-search:hover {
    background: var(--orange-hover);
}

.btn-search i {
    margin-right: 5px;
    font-size: 12px;
}

.trust-badges {
    display: flex;
    gap: 20px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-badge .badge-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--primary-orange);
    flex-shrink: 0;
}

.trust-badge .badge-text h6 {
    font-size: 11.5px;
    font-weight: 600;
    margin: 0;
    color: white;
    line-height: 1.3;
}

.trust-badge .badge-text p {
    font-size: 9.5px;
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

/* ===== LISTINGS SECTION ===== */
.listings-section {
    padding: 48px 0 30px;
}

.section-label {
    color: var(--primary-orange);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.section-label::before {
    content: '';
    width: 18px;
    height: 2px;
    background: var(--primary-orange);
    border-radius: 2px;
}

.section-label::after {
    content: '';
    width: 18px;
    height: 2px;
    background: var(--primary-orange);
    border-radius: 2px;
}

.section-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0;
}

.sort-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-controls label {
    font-size: 13px;
    color: var(--text-muted);
    white-space: nowrap;
    margin-bottom: 0;
}

.sort-controls select {
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    outline: none;
    background: white;
}

.view-toggle {
    display: flex;
    gap: 2px;
}

.view-toggle .btn {
    padding: 6px 10px;
    border: 1px solid var(--border-color);
    background: white;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1;
    border-radius: 4px;
}

.view-toggle .btn.active {
    background: var(--primary-navy);
    color: white;
    border-color: var(--primary-navy);
}

/* ===== FILTER SIDEBAR ===== */
.filter-sidebar {
    background: white;
    border-radius: 12px;
    padding: 22px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-light);
    position: sticky;
    top: 80px;
}

.filter-sidebar h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 14px;
}

.filter-category-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.filter-category-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0;
}

.filter-category-list li label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: var(--text-dark);
    cursor: pointer;
    margin-bottom: 0;
    font-weight: 400;
}

.filter-category-list li label input[type="checkbox"] {
    accent-color: var(--primary-navy);
    width: 15px;
    height: 15px;
    cursor: pointer;
}

.filter-category-list li .count {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 400;
}

.filter-group {
    margin-bottom: 18px;
}

.filter-group > label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    display: block;
}

.filter-group select {
    width: 100%;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    outline: none;
    background: white;
    appearance: auto;
}

.filter-group .rating-filter {
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 4px 0;
}

.filter-group .rating-filter i {
    font-size: 15px;
    cursor: pointer;
}

.filter-group .rating-filter i.filled {
    color: var(--star-color);
}

.filter-group .rating-filter i.empty {
    color: #ddd;
}

.filter-group .rating-filter .rating-text {
    font-size: 13px;
    color: var(--text-muted);
    margin-left: 6px;
}

.btn-apply-filters {
    width: 100%;
    background: var(--primary-orange);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px;
    font-size: 13.5px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: 'Poppins', sans-serif;
    margin-top: 6px;
}

.btn-apply-filters:hover {
    background: var(--orange-hover);
}

/* ===== WORKER CARDS ===== */
.worker-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 24px;
    border: 1px solid var(--border-light);
}

.worker-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
}

.worker-card .card-image {
    position: relative;
    height: 190px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a3a5c, #2d5a8e);
}

.worker-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.worker-card:hover .card-image img {
    transform: scale(1.05);
}

.card-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: rgba(255, 255, 255, 0.2);
}

.worker-card .card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 10.5px;
    font-weight: 600;
    color: white;
    z-index: 2;
}

.worker-card .card-badge.featured {
    background: var(--featured-orange);
}

.worker-card .card-badge.verified {
    background: var(--verified-green);
}

.worker-card .card-badge i {
    margin-right: 4px;
    font-size: 10px;
}

.worker-card .card-favorite {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    color: #aaa;
    font-size: 13px;
    z-index: 2;
    padding: 0;
}

.worker-card .card-favorite:hover,
.worker-card .card-favorite.active {
    color: #ff4757;
    background: white;
}

.worker-card .card-body-content {
    padding: 14px 16px 16px;
}

.worker-card .card-name-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1px;
}

.worker-card .worker-name {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--primary-navy);
    display: flex;
    align-items: center;
    gap: 5px;
    line-height: 1.3;
}

.worker-card .worker-name .verified-tick {
    color: var(--verified-blue);
    font-size: 13px;
}

.worker-card .worker-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-orange);
    white-space: nowrap;
    line-height: 1.3;
}

.worker-card .worker-price .price-period {
    font-size: 11px;
    font-weight: 400;
    color: var(--text-muted);
}

.worker-card .worker-profession {
    font-size: 12.5px;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-weight: 400;
}

.worker-card .worker-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 5px;
}

.worker-card .worker-rating .stars {
    display: flex;
    gap: 1px;
}

.worker-card .worker-rating .stars i {
    color: var(--star-color);
    font-size: 11px;
}

.worker-card .worker-rating .rating-value {
    font-weight: 600;
    font-size: 12.5px;
    color: var(--text-dark);
}

.worker-card .worker-rating .review-count {
    color: var(--text-muted);
    font-size: 11.5px;
}

.worker-card .worker-location {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11.5px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.worker-card .worker-location i {
    color: var(--primary-orange);
    font-size: 11px;
}

.worker-card .worker-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 14px;
    min-height: 26px;
}

.worker-card .skill-tag {
    padding: 3px 10px;
    background: #f7f7f7;
    border-radius: 20px;
    font-size: 10.5px;
    color: var(--text-secondary);
    border: 1px solid #eeeeee;
    white-space: nowrap;
}

.worker-card .card-actions {
    display: flex;
    gap: 8px;
}

.btn-view-profile {
    flex: 1;
    border: 1.5px solid var(--primary-navy);
    color: var(--primary-navy);
    background: transparent;
    border-radius: 8px;
    padding: 7px 10px;
    font-size: 11.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    display: inline-block;
}

.btn-view-profile:hover {
    background: var(--primary-navy);
    color: white;
}

.btn-hire-now {
    flex: 1;
    background: var(--primary-orange);
    color: white;
    border: 1.5px solid var(--primary-orange);
    border-radius: 8px;
    padding: 7px 10px;
    font-size: 11.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    display: inline-block;
}

.btn-hire-now:hover {
    background: var(--orange-hover);
    border-color: var(--orange-hover);
}

/* ===== CTA SECTION ===== */
.cta-wrapper {
    padding: 10px 0 30px;
}

.cta-section {
    background: var(--primary-navy);
    border-radius: 16px;
    padding: 30px 40px;
    overflow: hidden;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cta-left {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1;
}

.cta-icon {
    width: 60px;
    height: 60px;
    background: rgba(244, 121, 32, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--primary-orange);
    flex-shrink: 0;
}

.cta-text h3 {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 3px;
    line-height: 1.3;
}

.cta-text p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-weight: 400;
}

.btn-register-worker {
    background: var(--primary-orange);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 28px;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.btn-register-worker:hover {
    background: var(--orange-hover);
    color: white;
}

.cta-stats {
    text-align: center;
    padding: 10px 0 10px 30px;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    flex-shrink: 0;
    min-width: 140px;
}

.cta-stats .stat-number {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-orange);
    display: block;
    line-height: 1.3;
}

.cta-stats .stat-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

/* ===== CATEGORIES SECTION ===== */
.categories-section {
    padding: 30px 0 40px;
}

.categories-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 24px;
}

.view-all-link {
    color: var(--primary-orange);
    font-size: 13.5px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.view-all-link:hover {
    color: var(--orange-hover);
}

.view-all-link i {
    font-size: 11px;
}

.category-card {
    background: white;
    border-radius: 12px;
    padding: 22px 12px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 1px solid var(--border-light);
    cursor: pointer;
    height: 100%;
}

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

.category-card .category-icon {
    width: 54px;
    height: 54px;
    background: var(--orange-pale);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 22px;
    color: var(--primary-orange);
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    background: var(--primary-orange);
    color: white;
}

.category-card .category-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.category-card .category-count {
    font-size: 11.5px;
    color: var(--text-muted);
    font-weight: 400;
}

/* ===== HOW IT WORKS ===== */
.how-it-works-section {
    padding: 20px 0 50px;
}

.steps-row {
    position: relative;
}

.steps-row::before {
    content: '';
    position: absolute;
    top: 55px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: repeating-linear-gradient(to right, #ddd 0, #ddd 8px, transparent 8px, transparent 14px);
    z-index: 0;
}

.step-card {
    text-align: center;
    padding: 16px 10px;
    position: relative;
    z-index: 1;
}

.step-number-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 14px;
}

.step-number {
    width: 28px;
    height: 28px;
    background: var(--primary-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-icon {
    font-size: 34px;
    color: var(--primary-navy);
}

.step-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.step-desc {
    font-size: 12.5px;
    color: var(--text-muted);
    line-height: 1.5;
    font-weight: 400;
    max-width: 200px;
    margin: 0 auto;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-navy);
    padding: 48px 0 0;
    color: rgba(255, 255, 255, 0.65);
}

.footer-brand {
    margin-bottom: 14px;
}

.footer-brand .logo-text {
    font-size: 26px;
}

.footer-tagline {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 18px;
    line-height: 1.6;
    max-width: 240px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--primary-orange);
    color: white;
}

.footer h5 {
    font-size: 15px;
    font-weight: 600;
    color: white;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links li a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 12.5px;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
}

.footer-links li a:hover {
    color: var(--primary-orange);
}

.app-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.app-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 8px 14px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.app-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.app-btn i {
    font-size: 22px;
}

.app-btn .app-btn-text {
    line-height: 1.1;
}

.app-btn .app-btn-text small {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.6);
    display: block;
}

.app-btn .app-btn-text span {
    font-size: 13px;
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 0;
    margin-top: 36px;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
    text-align: right;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1399px) {
    .hero-content {
        padding: 50px 40px 50px 20px;
    }

    .hero-title {
        font-size: 36px;
    }
}

@media (max-width: 1199px) {
    .hero-content {
        padding: 40px 30px;
    }

    .hero-title {
        font-size: 32px;
    }

    .trust-badges {
        gap: 14px;
    }

    .trust-badge .badge-text h6 {
        font-size: 10.5px;
    }

    .cta-section {
        padding: 26px 30px;
    }
}

@media (max-width: 991px) {
    .hero-content {
        padding: 50px 20px;
        text-align: center;
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-label {
        justify-content: center;
    }

    .hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-search {
        max-width: 100%;
        margin: 0 auto;
    }

    .trust-badges {
        justify-content: center;
    }

    .filter-sidebar {
        margin-bottom: 24px;
        position: static;
    }

    .cta-inner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .cta-left {
        flex-direction: column;
    }

    .cta-stats {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        padding: 16px 0 0;
        width: 100%;
    }

    .steps-row::before {
        display: none;
    }

    .categories-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .sort-controls {
        flex-wrap: wrap;
    }

    .listings-header {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 12px;
    }

    .nav-actions {
        flex-direction: column;
        gap: 8px;
        margin-top: 10px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-search {
        flex-direction: column;
        border-radius: 16px;
        padding: 14px;
        gap: 0;
    }

    .search-input-group {
        width: 100%;
        padding: 8px 0;
    }

    .search-divider {
        width: 100%;
        height: 1px;
        margin: 6px 0;
    }

    .location-group {
        width: 100%;
        padding: 8px 0;
        min-width: auto;
    }

    .btn-search {
        width: 100%;
        margin-top: 8px;
        padding: 12px;
    }

    .trust-badges {
        gap: 12px;
    }

    .trust-badge {
        flex-basis: calc(50% - 6px);
    }

    .section-title {
        font-size: 22px;
    }

    .cta-section {
        padding: 24px 20px;
    }

    .cta-text h3 {
        font-size: 18px;
    }

    .worker-card .card-actions {
        flex-direction: column;
    }

    .footer-bottom p {
        text-align: center;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 13px;
    }

    .trust-badge {
        flex-basis: 100%;
    }

    .step-card {
        padding: 12px 0;
    }
}

/* ===== ANIMATED BRAND PRELOADER ===== */
.site-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #091428;
    background: radial-gradient(circle at center, #112349 0%, #081120 100%);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.site-preloader.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-content {
    text-align: center;
    max-width: 320px;
    padding: 20px;
}

.preloader-logo-ring {
    position: relative;
    width: 86px;
    height: 86px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-logo-wrap {
    width: 68px;
    height: 68px;
    background: #ffffff;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    box-shadow: 0 10px 25px rgba(244, 121, 32, 0.35);
    animation: preloaderPulse 1.8s ease-in-out infinite;
}

.preloader-logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.preloader-spinner-orbit {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px solid rgba(244, 121, 32, 0.15);
    border-top-color: #f47920;
    border-right-color: #28a745;
    animation: preloaderSpin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.preloader-brand {
    font-size: 30px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.preloader-brand span {
    color: #f47920;
}

.preloader-tagline {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.preloader-progress-track {
    width: 180px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.preloader-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 40%;
    background: linear-gradient(90deg, #28a745, #f47920);
    border-radius: 10px;
    animation: preloaderLoading 1.5s ease-in-out infinite;
}

@keyframes preloaderSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes preloaderPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.06); }
}

@keyframes preloaderLoading {
    0% { left: -40%; width: 30%; }
    50% { left: 35%; width: 50%; }
    100% { left: 100%; width: 40%; }
}

/* ===== MOBILE BOTTOM APP DOCK ===== */
.mobile-bottom-dock {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    height: 64px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-around;
    z-index: 1040;
    padding: 0 10px;
    padding-bottom: env(safe-area-inset-bottom, 0px);
}

.dock-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    text-decoration: none;
    font-size: 10px;
    font-weight: 500;
    gap: 3px;
    transition: all 0.2s ease;
    flex: 1;
    height: 100%;
}

.dock-item i {
    font-size: 18px;
    transition: transform 0.2s ease, color 0.2s ease;
}

.dock-item:hover,
.dock-item.active {
    color: var(--primary-orange);
}

.dock-item.active i {
    transform: translateY(-2px);
    color: var(--primary-orange);
}

.dock-item-highlight {
    position: relative;
    top: -12px;
}

.dock-highlight-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, #f47920, #e05e04);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    font-size: 20px;
    box-shadow: 0 6px 16px rgba(244, 121, 32, 0.4);
    border: 3px solid #ffffff;
    transition: transform 0.2s ease;
}

.dock-item-highlight:hover .dock-highlight-icon {
    transform: scale(1.08);
}

@media (max-width: 991px) {
    body {
        padding-bottom: 70px;
    }
    .footer {
        padding-bottom: 40px;
    }
}

/* ===== MOBILE FILTER DRAWER / TRIGGER ===== */
.btn-mobile-filter {
    background: var(--primary-navy);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 10px 18px;
    font-size: 13.5px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(12, 26, 58, 0.15);
}

.btn-mobile-filter:hover {
    background: var(--primary-orange);
    color: #ffffff;
}

@media (max-width: 991px) {
    .filter-sidebar-mobile-collapse {
        display: none;
    }
    .filter-sidebar-mobile-collapse.show {
        display: block;
        animation: slideDown 0.3s ease;
    }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Worker Card Images & Badges Polish */
.worker-card .card-image {
    position: relative;
    overflow: hidden;
}

.worker-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.worker-card:hover .card-image img {
    transform: scale(1.06);
}

.card-favorite.active i {
    color: #e63946 !important;
}

