/* ================================================================
   workbook-home.css  —  custom overrides for the Workbook homepage
   Place at: public/assets/css/workbook-home.css
   Load AFTER styles.css in main.php
   ================================================================ */

/* ---------------------------------------------------------------
   1. SEARCH BAR — custom flex row, fully responsive
   (replaces the old Bootstrap .row approach entirely)
--------------------------------------------------------------- */
.homepage-3 .rld-main-search {
    background: rgba(255,255,255,0.97);
    border-radius: 8px;
    padding: 14px 16px;
}
.wb-search-row {
    display: flex;
    align-items: stretch;
    gap: 10px;
}
.wb-search-row .wb-kw-wrap {
    position: relative;
    flex: 1 1 auto;
    min-width: 0;
}
.wb-search-row .wb-kw-wrap input {
    width: 100%;
    height: 48px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 0 16px;
    font-size: 14px;
    background: #fff;
}
.wb-search-row .wb-state-wrap {
    flex: 0 0 190px;
}
.wb-search-row select.wb-state-select {
    width: 100%;
    height: 48px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 0 12px;
    font-size: 14px;
    background: #fff;
    color: #333;
    -webkit-appearance: menulist;
    appearance: menulist;
}
.wb-search-row .wb-btn-wrap {
    flex: 0 0 auto;
}
.wb-search-row .btn-yellow {
    height: 48px;
    padding: 0 26px;
    white-space: nowrap;
    font-weight: 700;
    font-size: 14px;
    border-radius: 6px;
    line-height: 48px;
    display: inline-block;
    border: none;
}
/* Kill the theme's hardcoded 253px input width */
.homepage-3.the-search .rld-single-input input,
.homepage-3.the-search .wb-kw-wrap input {
    width: 100% !important;
}
/* MOBILE: stack fields vertically with tight spacing */
@media (max-width: 767px) {
    .wb-search-row {
        flex-direction: column;
        gap: 8px;
    }
    .wb-search-row .wb-state-wrap { flex: 1 1 auto; }
    .wb-search-row .btn-yellow { width: 100%; }
    .homepage-3 .parallax-search .hero-inner { padding: 140px 0 80px; }
    .homepage-3 .rld-banner-tab .nav-item a { padding: 8px 12px; font-size: 13px; }
}
/* keyword suggestion box */
.wb-sug-box {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 200px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 0 0 6px 6px;
    z-index: 1060;
    display: none;
    text-align: left;
}
.wb-sug-box .wb-sug-item {
    padding: 9px 16px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
}
.wb-sug-box .wb-sug-item:hover { background: #f2f2f2; }

/* ---------------------------------------------------------------
   2. VR SHOWROOM CARD (from vr-snippet.php, full styles here)
--------------------------------------------------------------- */
.wb-vr-section { padding: 0; }
.vr-showroom-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    margin: 0;
}
.vr-showroom-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(46,204,113,0.25);
}
.vr-badge {
    position: absolute; top: 20px; right: 20px;
    background: rgba(46,204,113,0.2);
    padding: 5px 14px; border-radius: 20px;
    font-size: 12px; color: #2ecc71; font-weight: 700;
    letter-spacing: 0.5px;
}
.vr-icon {
    margin-bottom: 20px;
    display: inline-block;
    animation: wb-float 3s ease-in-out infinite;
}
.vr-icon img { width: 100px; height: 100px; }
.vr-icon i { font-size: 70px; color: #2ecc71; }
@keyframes wb-float {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-12px); }
}
.vr-showroom-card h3 { color: #fff; font-size: 30px; margin-bottom: 14px; font-weight: 700; }
.vr-showroom-card p  { color: #ccc; font-size: 16px; margin: 0 auto 28px; max-width: 620px; }
.vr-enter-btn {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    padding: 13px 32px; border-radius: 50px;
    color: #fff !important; font-weight: 700; font-size: 16px;
    display: inline-flex; align-items: center; gap: 12px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.vr-enter-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(46,204,113,0.45);
}
@media (max-width: 768px) {
    .vr-showroom-card { padding: 35px 16px; }
    .vr-showroom-card h3 { font-size: 22px; }
    .vr-icon img { width: 70px; height: 70px; }
}

/* ---------------------------------------------------------------
   3. ABOUT WORKBOOK section (two-col layout from info.php)
--------------------------------------------------------------- */
/* ---------------------------------------------------------------
   ABOUT WORKBOOK — redesigned
--------------------------------------------------------------- */
.wb-about-section {
    padding: 90px 0;
    background: #f8f9fb;
}

/* Image column */
.wb-about-img-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    height: 100%;
    min-height: 420px;
}
.wb-about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

/* Floating stat badges */
.wb-about-badge {
    position: absolute;
    background: #fff;
    border-radius: 12px;
    padding: 14px 20px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.14);
    min-width: 110px;
}
.wb-about-badge--tl { top: 28px; left: -20px; }
.wb-about-badge--br { bottom: 28px; right: -20px; }
.wb-about-badge .wb-badge-num {
    display: block;
    font-size: 26px;
    font-weight: 800;
    color: #fa2964;
    line-height: 1;
}
.wb-about-badge .wb-badge-lbl {
    display: block;
    font-size: 12px;
    color: #888;
    font-weight: 600;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Text column */
.wb-about-tag {
    display: inline-block;
    color: green;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 18px;
}
.wb-about-heading {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.25;
    margin-bottom: 18px;
}
.wb-about-lead {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 32px;
}

/* 2x2 feature grid */
.wb-feat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 10px;
}
.wb-feat-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    border-radius: 12px;
    padding: 18px 16px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.wb-feat-item:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}
.wb-feat-icon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
}
.wb-feat-body h6 {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 4px;
}
.wb-feat-body p {
    font-size: 13px;
    color: #888;
    margin: 0;
    line-height: 1.6;
}

.wb-about-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 32px;
}
.wb-cta-primary {
    display: inline-flex;
    align-items: center;
    background: #fa2964;
    color: #fff !important;
    font-weight: 700;
    font-size: 15px;
    padding: 13px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}
.wb-cta-primary:hover {
    background: #d4224f;
    transform: translateY(-2px);
    color: #fff !important;
}
.wb-cta-ghost {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #1a1a2e !important;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    padding: 13px 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}
.wb-cta-ghost:hover {
    color: #fa2964 !important;
    border-color: #fa2964;
}
@media (max-width: 480px) {
    .wb-about-cta { flex-direction: column; align-items: flex-start; }
    .wb-cta-primary { width: 100%; justify-content: center; }
}

/* Mobile adjustments */
@media (max-width: 991px) {
    .wb-about-img-wrap { min-height: 300px; margin-bottom: 50px; }
    .wb-about-badge--tl { left: 10px; }
    .wb-about-badge--br { right: 10px; }
    .wb-about-heading  { font-size: 28px; }
}
@media (max-width: 576px) {
    .wb-feat-grid { grid-template-columns: 1fr; }
    .wb-about-section { padding: 60px 0; }
}

/* ---------------------------------------------------------------
   4. PARTNERS section (from slider.php trusted-by-section)
--------------------------------------------------------------- */
.wb-partners-section {
    background: #f9f9f9;
    padding: 30px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
.wb-partners-section .partners-label {
    font-weight: 700; color: #888; font-size: 13px;
    text-transform: uppercase; letter-spacing: 1px;
    margin-right: 20px; white-space: nowrap;
}
.wb-partners-section .partners-wrap {
    display: flex; align-items: center;
    flex-wrap: wrap; gap: 24px;
    justify-content: center;
}
.wb-partners-section .partners-wrap img {
    height: 48px; width: auto;
    opacity: 0.65;
    filter: grayscale(100%);
    transition: opacity 0.3s, filter 0.3s;
}
.wb-partners-section .partners-wrap img:hover {
    opacity: 1; filter: none;
}

/* ---------------------------------------------------------------
   5. PROFILE CARD — skilled professionals section
--------------------------------------------------------------- */
.wb-prof-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 28px;
    transition: box-shadow 0.3s ease;
}
.wb-prof-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.1); }
.wb-prof-card .card-img-wrap {
    position: relative; height: 200px;
    overflow: hidden; background: #f4f4f4;
}
.wb-prof-card .card-img-wrap img {
    width: 100%; height: 100%; object-fit: cover;
}
.wb-prof-card .card-initials {
    width: 100%; height: 100%;
    background: linear-gradient(135deg,#007bff,#0056b3);
    color: #fff; font-size: 56px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
}
.wb-prof-card .card-avatar-thumb {
    position: absolute; bottom: -24px; left: 16px;
    width: 52px; height: 52px; border-radius: 50%;
    border: 3px solid #fff;
    overflow: hidden; background: #1a1a2e;
    color: #fff; font-size: 16px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}
.wb-prof-card .card-avatar-thumb img { width:100%;height:100%;object-fit:cover; }
.wb-prof-card .card-body-wrap { padding: 34px 16px 16px; }
.wb-prof-card .card-body-wrap h3 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.wb-prof-card .card-body-wrap h3 a { color: #1a1a2e; }
.wb-prof-card .card-body-wrap h3 a:hover { color: #fa2964; }
.wb-prof-card .card-meta { list-style: none; padding: 0; margin: 10px 0; }
.wb-prof-card .card-meta li { font-size: 13px; color: #777; margin-bottom: 4px; }
.wb-prof-card .card-meta li i { color: #fa2964; width: 16px; }
.wb-prof-card .card-footer-bar {
    display: flex; justify-content: space-between; align-items: center;
    border-top: 1px solid #f0f0f0; padding-top: 10px; margin-top: 8px;
}
.wb-prof-card .card-footer-bar a { font-size: 13px; color: #fa2964; }
.wb-prof-card .card-status { font-size: 12px; color: #2ecc71; font-weight: 600; }
.wb-prof-card .card-status i { margin-right: 3px; }

/* ---------------------------------------------------------------
   6. GENERAL BUSINESSES — full-cover image cards
   Image fills the entire card; text + button overlay on top.
--------------------------------------------------------------- */
.wb-biz-card {
    position: relative;
    display: block;
    height: 300px;               /* card = image, nothing below it */
    border-radius: 12px;
    overflow: hidden;
    margin: 0 8px;
    background: #1a1a2e;
}
.wb-biz-bg {
    position: absolute;
    inset: 0;                    /* image covers 100% of the card */
    background-size: cover;
    background-position: center;
    transition: transform 0.45s ease;
}
.wb-biz-card:hover .wb-biz-bg {
    transform: scale(1.07);
}
.wb-biz-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(0,0,0,0)   40%,
        rgba(0,0,0,0.72) 100%);   /* dark fade so text is readable */
}
.wb-biz-info {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 18px 16px;
    z-index: 2;
}
.wb-biz-title {
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}
.wb-biz-btn {
    display: inline-block;
    background: #fa2964;          /* always visible — no hover needed */
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 50px;
    transition: background 0.3s ease, transform 0.3s ease;
}
.wb-biz-card:hover .wb-biz-btn {
    background: #2ecc71;
    transform: translateX(4px);
}
/* if slick isn't initialized yet, tiles still lay out in a row */
.slick-lancers:not(.slick-initialized) {
    display: flex;
    gap: 0;
    overflow-x: auto;
}
.slick-lancers:not(.slick-initialized) .agents-grid {
    flex: 0 0 280px;
}
@media (max-width: 767px) {
    .wb-biz-card { height: 240px; }
}

/* ---------------------------------------------------------------
   7. SECTION TITLE alignment fix
--------------------------------------------------------------- */
.sec-title { text-align: center; padding: 50px 0 30px; }
.sec-title h2 { font-size: 30px; font-weight: 800; color: #1a1a2e; }
.sec-title h2 span { color: #fa2964; }
.sec-title p { color: #888; margin-top: 6px; }
/* ---------------------------------------------------------------
   8 & 9. NON-HOMEPAGE HEADER + PAGE GAP FIX
   Root cause: .header.head-tr is position:absolute in styles.css (theme global).
   On homepage this is correct — it floats over the hero.
   Previously we overrode to position:relative which caused an 80px gap.
   Correct fix: keep absolute, hide the clearfix spacer, use padding-top
   on the first content section so it starts visually below the header.
--------------------------------------------------------------- */

/* Hide clearfix on all non-homepage — header is absolute, no spacer needed */
body:not(.homepage-3) #header-container + .clearfix {
    display: none;
}

/* Dark background on the absolute header for non-homepage pages */
body:not(.homepage-3) #header.head-tr {
    background: #1a1a2e;
}

/* White nav links */
body:not(.homepage-3) #navigation.style-1 > ul > li > a { color: #fff; }
body:not(.homepage-3) #navigation.style-1 > ul > li:hover > a { color: #2ecc71; }
body:not(.homepage-3) #navigation.style-1 ul ul { background: #fff; }
body:not(.homepage-3) #navigation.style-1 ul ul li a { color: #333 !important; }
body:not(.homepage-3) .header-widget.sign-in a,
body:not(.homepage-3) .header-widget .button.border {
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}
body:not(.homepage-3) .header-user-menu .header-user-name { color: #fff; }
body:not(.homepage-3) .hamburger-inner,
body:not(.homepage-3) .hamburger-inner::before,
body:not(.homepage-3) .hamburger-inner::after {
    background-color: #fff !important;
}

/* Headings section: padding-top pushes content below the absolute header.
   80px = header height, +30px breathing room = 110px total. */
body:not(.homepage-3) section.headings {
    padding-top: 110px;
    padding-bottom: 40px;
    background: #f5f6f8;
}
body:not(.homepage-3) section.headings h1 {
    color: #1a1a2e;
    font-size: 32px;
    font-weight: 800;
}
body:not(.homepage-3) section.headings h2,
body:not(.homepage-3) section.headings h2 a {
    color: #888;
    font-size: 14px;
}

/* Swiper hero on detail pages: same padding-top so hero starts below header */
body.inner-pages .int_bannerr_slider {
    padding-top: 80px;
    box-sizing: border-box;
    margin-top: 0;
    display: block;
}
body.inner-pages .int_bannerr_slider .swiper-slide img,
body.inner-pages .int_bannerr_slider .swiper-slide > div {
    min-height: 340px;
}
body.inner-pages section.listing.blog.details { padding-top: 40px; }

/* ---------------------------------------------------------------
   10. MOBILE HEADER — two targeted fixes only
   Fix 1: logo height (inline style removed from main.php, controlled here)
   Fix 2: hamburger trigger box bg (#eee grey → transparent + white bars)
   Everything else (bar size, animation, position) left exactly as theme intended.
--------------------------------------------------------------- */
/* Desktop logo — beats the inline style="height:60px" via !important */
#logo img {
    height: 50px !important;
    width: auto !important;
}

@media (max-width: 1024px) {
    /* Mobile logo: smaller + centered between hamburger and auth button */
    #logo img {
        height: 44px !important;
        width: auto !important;
    }
    #logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
}
@media (max-width: 480px) {
    #logo img {
        height: 28px !important;
        width: auto !important;
        position: relative; left:50px; top:5px;
    }
}

/* Trigger box: remove the grey background — that's the only thing that looks "basic" */
.mmenu-trigger {
    background-color: transparent !important;
    border: none !important;
}

/* Bars: white on all dark headers (homepage, inner-pages, index pages with dark bg) */
.homepage-3 .hamburger-inner,
.homepage-3 .hamburger-inner::before,
.homepage-3 .hamburger-inner::after,
body.inner-pages .hamburger-inner,
body.inner-pages .hamburger-inner::before,
body.inner-pages .hamburger-inner::after,
body:not(.homepage-3):not(.inner-pages) .hamburger-inner,
body:not(.homepage-3):not(.inner-pages) .hamburger-inner::before,
body:not(.homepage-3):not(.inner-pages) .hamburger-inner::after {
    background-color: #fff !important;
}

/* ---------------------------------------------------------------
   11. JOB CARDS (views/jobs/index.php)
--------------------------------------------------------------- */
.wb-job-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 22px;
    height: 100%;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
}
.wb-job-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.09);
    transform: translateY(-3px);
}
.wb-job-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}
.wb-job-company-logo {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    flex-shrink: 0;
}
.wb-job-company-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.wb-job-logo-fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,#1a1a2e,#16213e);
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wb-job-meta {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.wb-job-type-badge {
    display: inline-block;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    white-space: nowrap;
}
.wb-job-level-badge {
    display: inline-block;
    background: #f4f4f4;
    color: #555;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    white-space: nowrap;
}
.wb-job-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 4px;
    line-height: 1.3;
}
.wb-job-title a {
    color: #1a1a2e;
}
.wb-job-title a:hover { color: #fa2964; }
.wb-job-company {
    color: #888;
    font-size: 13px;
    margin-bottom: 12px;
}
.wb-job-details {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
}
.wb-job-details li {
    font-size: 13px;
    color: #666;
    margin-bottom: 5px;
}
.wb-job-details li i {
    color: #fa2964;
    width: 16px;
    margin-right: 4px;
}
.wb-job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}
.wb-tag {
    background: #f4f6f8;
    color: #555;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
}
.wb-job-card__foot {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid #f0f0f0;
}
.wb-job-posted {
    font-size: 12px;
    color: #aaa;
}
.wb-job-posted i { margin-right: 4px; }
.wb-job-apply-btn {
    background: #1a1a2e;
    color: #fff !important;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.3s ease;
    white-space: nowrap;
}
.wb-job-apply-btn:hover {
    background: #fa2964;
    color: #fff !important;
}
@media (max-width: 576px) {
    .wb-job-card { padding: 16px; }
    .wb-job-filter-form .wb-search-row { flex-direction: column; }
    .wb-job-filter-form .wb-state-wrap { flex: 1 1 auto; }
}

/* Verified badge (section 5 addition) */
.wb-verified-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 5;
    background: rgba(46, 204, 113, 0.92);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.3px;
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 8px rgba(46,204,113,0.35);
}

/* ---------------------------------------------------------------
   12. NAV HOVER — green background, white text on all pages
--------------------------------------------------------------- */
/* Top-level items */
#navigation.style-1 ul li:hover > a,
#navigation.style-1 ul li.active > a {
    background: #2ecc71 !important;
    color: #fff !important;
    border-radius: 4px;
}

/* Dropdown items */
#navigation.style-1 ul ul li:hover > a {
    background: #2ecc71 !important;
    color: #fff !important;
}

/* Make sure the dropdown panel itself has no conflicting bg */
#navigation.style-1 ul ul li a {
    transition: background 0.2s ease, color 0.2s ease;
}
/* ---------------------------------------------------------------
   13. PROJECT CARDS (views/projects/index.php)
   Reuses .wb-job-* styles from section 11 for shared elements.
--------------------------------------------------------------- */
.wb-proj-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 22px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.wb-proj-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.09);
    transform: translateY(-3px);
}
.wb-proj-card__head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.wb-proj-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid #f0f0f0;
}
.wb-proj-avatar img {
    width: 100%; height: 100%; object-fit: cover;
}
.wb-proj-avatar-fb {
    width: 100%; height: 100%;
    background: linear-gradient(135deg,#1a1a2e,#16213e);
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wb-proj-poster {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.wb-proj-date {
    font-size: 11px;
    color: #aaa;
    margin: 2px 0 0;
}
.wb-proj-budget {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    white-space: nowrap;
    margin-left: auto;
}
.wb-proj-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 8px;
    line-height: 1.3;
}
.wb-proj-title a { color: #1a1a2e; }
.wb-proj-title a:hover { color: #fa2964; }
.wb-proj-desc {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
    margin-bottom: 10px;
}
/* ---------------------------------------------------------------
   HIRE PAGE — section styles (replaces previous section 14)
--------------------------------------------------------------- */
.wb-hire-hero {
    background: #1a1a2e;
    padding: 70px 0 60px;
}
.wb-hire-hero__title {
    color: #fff;
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 12px;
}
.wb-hire-hero__sub {
    color: rgba(255,255,255,0.65);
    font-size: 16px;
    max-width: 560px;
    margin: 0 auto;
}
.wb-stat-box {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    padding: 28px 20px;
}
.wb-stat-num {
    display: block;
    font-size: 42px;
    font-weight: 900;
    color: #2ecc71;
    line-height: 1;
    margin-bottom: 8px;
}
.wb-stat-lbl {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.wb-hire-cat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 32px 20px;
    text-decoration: none;
    height: 100%;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.wb-hire-cat-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-4px);
    text-decoration: none;
}
.wb-hire-cat-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 26px;
    color: #fff;
}
.wb-hire-cat-card h5 {
    color: #1a1a2e;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
}
.wb-hire-cat-card p {
    color: #888;
    font-size: 13px;
    margin: 0;
    line-height: 1.5;
}
@media (max-width: 767px) {
    .wb-hire-hero { padding: 50px 0 40px; }
    .wb-hire-hero__title { font-size: 22px; }
    .wb-stat-num { font-size: 32px; }
}

/* ---------------------------------------------------------------
   15. TEAM CARDS — fixed image height so all cards are uniform
--------------------------------------------------------------- */
.team .image.team-head a,
.team .image.team-head {
    display: block;
    width: 100%;
    height: 280px;
    overflow: hidden;
}
.team .image.team-head img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;  /* keeps faces in frame */
    display: block;
}
/* ---------------------------------------------------------------
   16. CONTACT PAGE — full redesign
--------------------------------------------------------------- */

/* Sidebar */
.wb-contact-sidebar {
    background: linear-gradient(160deg, #1a1a2e 0%, #16213e 100%);
    min-height: 100%;
    padding: 56px 40px;
    display: flex;
    flex-direction: column;
}
.wb-contact-sidebar__top h2 {
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
}
.wb-contact-sidebar__top p {
    color: rgba(255,255,255,0.6);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 40px;
}
.wb-contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    flex: 1;
}
.wb-contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}
.wb-ci-icon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    background: rgba(46,204,113,0.15);
    border: 1px solid rgba(46,204,113,0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2ecc71;
    font-size: 16px;
}
.wb-contact-info-list li > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.wb-contact-info-list li strong {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.wb-contact-info-list li span {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}
.wb-contact-info-list li a {
    color: rgba(255,255,255,0.6);
    transition: color 0.2s;
}
.wb-contact-info-list li a:hover { color: #2ecc71; }

/* Social icons */
.wb-contact-social {
    display: flex;
    gap: 10px;
    margin-top: auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.wb-contact-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.07);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 15px;
    transition: background 0.2s, color 0.2s;
}
.wb-contact-social a:hover {
    background: #2ecc71;
    color: #fff;
}

/* Form panel */
.wb-contact-form-wrap {
    padding: 56px 50px 40px;
    background: #f4f6f8;
}
.wb-form-header h3 {
    font-size: 24px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 6px;
}
.wb-form-header p {
    color: #888;
    font-size: 14px;
    margin-bottom: 30px;
}
.wb-field {
    margin-bottom: 20px;
}
.wb-field label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 6px;
}
.wb-field label span { color: #fa2964; }
.wb-input-wrap {
    position: relative;
}
.wb-input-wrap i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    font-size: 14px;
    pointer-events: none;
}
.wb-textarea-wrap i {
    top: 16px;
    transform: none;
}
.wb-input-wrap input,
.wb-input-wrap textarea {
    width: 100%;
    background: #fff;
    border: 1.5px solid #e8e8e8;
    border-radius: 10px;
    padding: 13px 16px 13px 42px;
    font-size: 14px;
    color: #333;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}
.wb-input-wrap input:focus,
.wb-input-wrap textarea:focus {
    border-color: #2ecc71;
    box-shadow: 0 0 0 3px rgba(46,204,113,0.1);
}
.wb-input-wrap textarea {
    resize: vertical;
    min-height: 148px;
}
.wb-contact-submit {
    width: 100%;
    background: green
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 15px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.wb-contact-submit:hover {
    opacity: 0.92;
    transform: translateY(-2px);
}

/* Map */
.wb-contact-map { line-height: 0; }
.wb-contact-map iframe { display: block; width: 100%; height: 300px; border: 0; }

/* Mobile */
@media (max-width: 991px) {
    .wb-contact-sidebar { padding: 40px 28px; min-height: auto; }
    .wb-contact-form-wrap { padding: 40px 24px; }
}
@media (max-width: 576px) {
    .wb-contact-sidebar { padding: 30px 20px; }
    .wb-contact-form-wrap { padding: 30px 16px; }
    .wb-form-header h3 { font-size: 20px; }
}

/* ---------------------------------------------------------------
   17. AUTH PAGES — login, register, 2FA, Google completion
--------------------------------------------------------------- */
body.wb-auth-body {
    margin: 0;
    background: #f4f6f8;
}
.wb-auth-wrap {
    display: flex;
    min-height: 100vh;
}

/* LEFT brand panel */
.wb-auth-brand {
    flex: 0 0 42%;
    background: linear-gradient(160deg, #1a1a2e 0%, #16213e 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 48px;
    position: relative;
    overflow: hidden;
}
.wb-auth-brand::after {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(46,204,113,0.12) 0%, transparent 70%);
    bottom: -200px; right: -150px;
    border-radius: 50%;
}
.wb-auth-logo img { height: 40px; width: auto; }
.wb-auth-brand__body { margin-top: auto; padding-top: 60px; position: relative; z-index: 1; }
.wb-auth-brand__body h2 {
    color: #fff;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 16px;
}
.wb-auth-brand__body p {
    color: rgba(255,255,255,0.6);
    font-size: 15px;
    line-height: 1.7;
    max-width: 380px;
    margin-bottom: 28px;
}
.wb-auth-brand__list { list-style: none; padding: 0; margin: 0; }
.wb-auth-brand__list li {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    margin-bottom: 12px;
}
.wb-auth-brand__list li i { color: #2ecc71; margin-right: 10px; }

/* RIGHT form panel */
.wb-auth-panel {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    overflow-y: auto;
}
.wb-auth-card {
    width: 100%;
    max-width: 420px;
}
.wb-auth-mobile-logo { display: block; text-align: center; margin-bottom: 24px; }
.wb-auth-mobile-logo img { height: 36px; }

.wb-auth-title { font-size: 24px; font-weight: 800; color: #1a1a2e; margin-bottom: 6px; }
.wb-auth-sub { color: #888; font-size: 14px; margin-bottom: 24px; line-height: 1.6; }

.wb-auth-alert {
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 13px;
    margin-bottom: 20px;
}
.wb-auth-alert--success { background: #eafaf1; color: #1e8449; }
.wb-auth-alert--error   { background: #fdecea; color: #c0392b; }
.wb-auth-alert--info    { background: #eaf4fd; color: #2874a6; }

/* Google button */
.wb-google-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: #fff;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.wb-google-btn:hover {
    border-color: #ccc;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    color: #333;
    text-decoration: none;
}
.wb-google-btn img { width: 18px; height: 18px; }

.wb-auth-divider {
    text-align: center;
    position: relative;
    margin: 20px 0;
}
.wb-auth-divider::before {
    content: '';
    position: absolute;
    top: 50%; left: 0; right: 0;
    height: 1px;
    background: #e5e5e5;
}
.wb-auth-divider span {
    background: #fff;
    padding: 0 14px;
    position: relative;
    color: #999;
    font-size: 12px;
}

/* Form fields */
.wb-field { margin-bottom: 18px; }
.wb-field label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 6px;
}
.wb-input-wrap { position: relative; }
.wb-input-wrap i {
    position: absolute;
    left: 14px; top: 50%;
    transform: translateY(-50%);
    color: #aaa; font-size: 14px;
}
.wb-input-wrap input {
    width: 100%;
    border: 1.5px solid #e8e8e8;
    border-radius: 10px;
    padding: 12px 16px 12px 42px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.wb-input-wrap input:focus {
    border-color: #2ecc71;
    box-shadow: 0 0 0 3px rgba(46,204,113,0.1);
}
.wb-field-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}
.wb-checkbox { display: flex; align-items: center; gap: 6px; font-size: 13px; color: #666; cursor: pointer; }
.wb-checkbox input { margin: 0; }
.wb-auth-link { color: #fa2964; font-size: 13px; font-weight: 600; text-decoration: none; }
.wb-auth-link:hover { color: #1a1a2e; text-decoration: underline; }
.wb-auth-link--strong { font-weight: 800; }

.wb-auth-submit {
    width: 100%;
    background: green;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 14px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, opacity 0.2s;
}
.wb-auth-submit:hover { transform: translateY(-2px); opacity: 0.94; }
.wb-auth-submit:disabled { opacity: 0.45; cursor: not-allowed; transform: none; }

.wb-auth-link-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: none;
    border: none;
    color: #666;
    font-size: 13px;
    font-weight: 600;
    padding: 10px;
    cursor: pointer;
}
.wb-auth-link-btn:hover { color: #fa2964; }

/* Device account picker tiles */
.wb-account-tiles { margin-bottom: 20px; }
.wb-account-tile {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    background: #fff;
    border: 1.5px solid #eee;
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
    text-align: left;
}
.wb-account-tile:hover {
    border-color: #2ecc71;
    box-shadow: 0 4px 14px rgba(46,204,113,0.12);
}
.wb-account-tile__avatar {
    flex: 0 0 44px;
    width: 44px; height: 44px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}
.wb-account-tile__avatar img { width: 100%; height: 100%; object-fit: cover; }
.wb-account-tile__fallback {
    width: 100%; height: 100%;
    background: linear-gradient(135deg,#1a1a2e,#16213e);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 16px;
}
.wb-account-tile__body { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.wb-account-tile__body strong { font-size: 14px; color: #1a1a2e; }
.wb-account-tile__meta { font-size: 12px; color: #999; }
.wb-account-tile__type {
    font-size: 10px;
    font-weight: 700;
    color: #2ecc71;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-top: 2px;
}
.wb-account-tile__arrow { color: #ccc; font-size: 13px; }
.wb-account-tile:hover .wb-account-tile__arrow { color: #2ecc71; }

/* 2FA code entry */
.wb-2fa-icon {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 26px;
    margin: 0 auto 20px;
}
.wb-2fa-form { margin-top: 10px; }
.wb-code-input-wrap { margin-bottom: 20px; }
.wb-code-input-wrap input {
    width: 100%;
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 12px;
    padding: 16px;
    border: 1.5px solid #e8e8e8;
    border-radius: 12px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.wb-code-input-wrap input:focus {
    border-color: #2ecc71;
    box-shadow: 0 0 0 3px rgba(46,204,113,0.12);
}
.wb-2fa-note {
    font-size: 12px;
    color: #999;
    line-height: 1.6;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

/* Google account-type completion grid */
.wb-account-type-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.wb-account-type-opt {
    display: block;
    position: relative;
    cursor: pointer;
}
.wb-account-type-opt input { position: absolute; opacity: 0; }
.wb-account-type-opt span {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid #e8e8e8;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.wb-account-type-opt span i { color: #aaa; font-size: 15px; }
.wb-account-type-opt input:checked + span {
    border-color: #2ecc71;
    background: rgba(46,204,113,0.06);
    color: #1a1a2e;
}
.wb-account-type-opt input:checked + span i { color: #2ecc71; }

/* Mobile */
@media (max-width: 991px) {
    .wb-auth-brand { display: none; }
    .wb-auth-panel { padding: 30px 16px; }
}
@media (max-width: 480px) {
    .wb-account-type-grid { grid-template-columns: 1fr; }
    .wb-code-input-wrap input { font-size: 22px; letter-spacing: 8px; }
}