/* ================================================================
   SPLASHGUY RECRUITMENT — PUBLIC STYLESHEET
   splashguyrecruitment.mr | Remote Sport Jobs
   ================================================================ */

/* ---------- DESIGN TOKENS ---------- */
:root {
    --brand-primary:   #0f2d5e;   /* deep navy */
    --brand-accent:    #e8530a;   /* energetic orange */
    --brand-accent2:   #f59e0b;   /* amber / gold */
    --brand-green:     #10b981;   /* success green */
    --bg-light:        #f5f7fb;
    --bg-white:        #ffffff;
    --text-dark:       #1a202c;
    --text-muted:      #64748b;
    --text-light:      #f8fafc;
    --border:          #e2e8f0;
    --card-shadow:     0 4px 24px rgba(15,45,94,.10);
    --card-hover:      0 12px 40px rgba(15,45,94,.18);
    --radius-sm:       8px;
    --radius-md:       14px;
    --radius-lg:       22px;
    --transition:      all .25s ease;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Tajawal', 'Inter', system-ui, sans-serif;
    font-size: 16px;
    color: var(--text-dark);
    background: #f0f4fa;
    line-height: 1.75;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }

/* ---------- NAVBAR ---------- */
.site-navbar {
    background: var(--brand-primary);
    padding: .75rem 0;
    position: sticky;
    top: 0;
    z-index: 1050;
    box-shadow: 0 2px 20px rgba(0,0,0,.25);
    backdrop-filter: blur(10px);
}

.site-brand {
    display: flex;
    align-items: center;
    gap: .55rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: -.01em;
    color: #fff !important;
}
.site-brand i {
    color: var(--brand-accent);
    font-size: 1.5rem;
}
.site-brand strong {
    color: var(--brand-accent);
}

.site-nav-links .nav-link {
    color: rgba(255,255,255,.85) !important;
    font-size: .9rem;
    font-weight: 500;
    padding: .4rem .9rem !important;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.site-nav-links .nav-link:hover {
    color: #fff !important;
    background: rgba(255,255,255,.12);
}

.navbar-phone {
    font-size: .85rem;
    color: rgba(255,255,255,.75);
    gap: .3rem;
}

/* ---------- HERO SECTION ---------- */
.hero-section {
    position: relative;
    min-height: 620px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 5rem 0 4rem;
    overflow: hidden;
}
/* Fallback gradient if no image loaded */
.hero-section:not([style*="background-image"]),
.hero-section[style*="none"] {
    background: linear-gradient(135deg, #0f2d5e 0%, #1a4a8a 100%) !important;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10,24,50,.88) 0%,
        rgba(15,45,94,.72) 60%,
        rgba(232,83,10,.25) 100%
    );
    z-index: 0;
}

.hero-section .container {
    z-index: 1;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    background: rgba(232,83,10,.18);
    border: 1px solid rgba(232,83,10,.5);
    color: var(--brand-accent2);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: .35rem .9rem;
    border-radius: 50px;
    margin-bottom: 1.4rem;
}

.hero-title {
    font-family: 'Tajawal', 'Barlow Condensed', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -.01em;
    margin-bottom: 1.2rem;
    text-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.hero-title span {
    color: var(--brand-accent);
    position: relative;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,.8);
    max-width: 620px;
    margin: 0 auto 2rem;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    background: var(--brand-accent);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    padding: .85rem 2rem;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(232,83,10,.45);
}
.hero-cta:hover {
    background: #c9430a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(232,83,10,.55);
}

.hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    background: rgba(255,255,255,.12);
    border: 1.5px solid rgba(255,255,255,.35);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    padding: .85rem 1.8rem;
    border-radius: 50px;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}
.hero-cta-secondary:hover {
    background: rgba(255,255,255,.2);
    color: #fff;
    transform: translateY(-2px);
}

.hero-tag-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: .75rem;
}
.hero-tag-row span {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .78rem;
    color: rgba(255,255,255,.7);
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18);
    padding: .3rem .8rem;
    border-radius: 50px;
}

/* ---------- STATS BAR ---------- */
.stats-row {
    background: var(--brand-primary);
    padding: .5rem 0;
    border-top: 3px solid var(--brand-accent);
}

.stat-item {
    padding: 1rem .5rem;
    border-right: 1px solid rgba(255,255,255,.12);
}
.stat-item:last-child { border-right: none; }

.stat-number {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--brand-accent);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: .72rem;
    color: rgba(255,255,255,.65);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-top: .25rem;
}

/* ---------- SECTION TITLES ---------- */
.section-title-block {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--brand-accent);
    background: rgba(232,83,10,.08);
    border: 1px solid rgba(232,83,10,.2);
    padding: .3rem 1rem;
    border-radius: 50px;
    margin-bottom: .75rem;
}

.section-title {
    font-family: 'Tajawal', 'Barlow Condensed', sans-serif;
    font-size: clamp(1.75rem, 3.5vw, 2.6rem);
    font-weight: 900;
    color: var(--brand-primary);
    letter-spacing: -.01em;
    margin-bottom: .6rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: .98rem;
    max-width: 540px;
    margin: 0 auto;
}

/* ---------- CATEGORY CHIPS ---------- */
.category-chips {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.chip {
    display: inline-block;
    padding: .4rem 1.1rem;
    border-radius: 50px;
    border: 1.5px solid var(--border);
    background: #fff;
    color: var(--text-muted);
    font-size: .83rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}
.chip:hover, .chip.active {
    background: var(--brand-primary);
    color: #fff;
    border-color: var(--brand-primary);
}

/* ---------- VACANCY CARDS ---------- */
.vacancy-card {
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--card-shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition);
    border: 1px solid var(--border);
}
.vacancy-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--card-hover);
    border-color: rgba(232,83,10,.3);
}

.vacancy-card-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
}
.vacancy-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.vacancy-card:hover .vacancy-card-img img {
    transform: scale(1.05);
}

.vacancy-card-top {
    padding: 1.25rem 1.25rem .5rem;
}

.vacancy-badge {
    display: inline-block;
    background: rgba(15,45,94,.08);
    color: var(--brand-primary);
    border: 1px solid rgba(15,45,94,.15);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: .22rem .7rem;
    border-radius: 50px;
    margin-bottom: .5rem;
    margin-right: .3rem;
}

.vacancy-sport-tag {
    display: inline-block;
    background: rgba(232,83,10,.1);
    color: var(--brand-accent);
    border: 1px solid rgba(232,83,10,.25);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: .22rem .7rem;
    border-radius: 50px;
    margin-bottom: .5rem;
}

.vacancy-card-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--brand-primary);
    margin: .4rem 0 .4rem;
    line-height: 1.25;
    transition: var(--transition);
}
.vacancy-title-link:hover .vacancy-card-title {
    color: var(--brand-accent);
}

.vacancy-company {
    display: flex;
    align-items: center;
    gap: .35rem;
    font-size: .83rem;
    color: var(--text-muted);
}

.vacancy-card-body {
    padding: .75rem 1.25rem;
    flex: 1;
}

.vacancy-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem .9rem;
    margin-bottom: .75rem;
}

.vacancy-meta-item {
    display: flex;
    align-items: center;
    gap: .3rem;
    font-size: .78rem;
    color: var(--text-muted);
}
.vacancy-meta-item i {
    color: var(--brand-accent);
}

.vacancy-desc {
    font-size: .84rem;
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vacancy-card-footer {
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--border);
    background: #fafbfc;
}

.btn-vacancy-read {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .85rem;
    font-weight: 700;
    color: var(--brand-primary);
    transition: var(--transition);
}
.btn-vacancy-read:hover {
    color: var(--brand-accent);
    gap: .6rem;
}

.no-vacancies-block {
    text-align: center;
    padding: 4rem 1rem;
    color: var(--text-muted);
}
.no-vacancies-block i {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: block;
    opacity: .35;
}

/* ---------- HOW IT WORKS ---------- */
.how-section {
    background: var(--bg-light);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.how-step {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    position: relative;
}
.how-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-hover);
    border-color: var(--brand-accent);
}

.how-step-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(15,45,94,.06);
    line-height: 1;
    position: absolute;
    top: .5rem;
    right: 1rem;
}

.how-step-icon {
    font-size: 2.5rem;
    color: var(--brand-accent);
    margin-bottom: 1rem;
    display: block;
}

.how-step h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--brand-primary);
    margin-bottom: .6rem;
}

.how-step p {
    font-size: .88rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ---------- ABOUT / E-E-A-T ---------- */
.about-eeat-section {
    background: #fff;
    border-top: 1px solid var(--border);
}

.eeat-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}
.eeat-list li {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .4rem 0;
    font-size: .92rem;
    color: #4a5568;
    border-bottom: 1px solid var(--border);
}
.eeat-list li:last-child { border-bottom: none; }
.eeat-list li i {
    color: var(--brand-green);
    flex-shrink: 0;
}

.eeat-card {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
}
.eeat-card:hover {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    transform: translateY(-3px);
}
.eeat-card i {
    font-size: 2rem;
    color: var(--brand-primary);
    display: block;
    margin-bottom: .6rem;
    transition: var(--transition);
}
.eeat-card:hover i { color: var(--brand-accent); }
.eeat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--brand-primary);
    transition: var(--transition);
}
.eeat-card:hover .eeat-num { color: #fff; }
.eeat-lbl {
    font-size: .78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .05em;
    transition: var(--transition);
}
.eeat-card:hover .eeat-lbl { color: rgba(255,255,255,.7); }

.testimonial-mini {
    background: var(--bg-light);
    border-inline-start: 4px solid var(--brand-accent);
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
}
.testimonial-mini blockquote {
    font-size: .88rem;
    font-style: italic;
    color: #4a5568;
    line-height: 1.65;
    margin: 0 0 .4rem;
}
.testimonial-mini cite {
    font-size: .78rem;
    color: var(--brand-accent);
    font-style: normal;
    font-weight: 600;
}

/* ---------- SECTORS ---------- */
.sectors-section {
    background: var(--bg-light);
    border-top: 1px solid var(--border);
}

.sector-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    padding: 1.4rem 1rem;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}
.sector-card:hover {
    border-color: var(--brand-accent);
    box-shadow: var(--card-hover);
    transform: translateY(-4px);
}
.sector-icon {
    font-size: 2rem;
    line-height: 1;
}
.sector-name {
    font-size: .82rem;
    font-weight: 700;
    color: var(--brand-primary);
}
.sector-count {
    font-size: .72rem;
    color: var(--brand-accent);
    font-weight: 600;
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
    background: linear-gradient(135deg, var(--brand-primary) 0%, #1a4a8a 100%);
    color: #fff;
    text-align: center;
}
.cta-icon {
    font-size: 3rem;
    color: var(--brand-accent);
    margin-bottom: 1rem;
    display: block;
}
.cta-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: .75rem;
}
.cta-sub {
    color: rgba(255,255,255,.75);
    font-size: 1rem;
    margin-bottom: 2rem;
}

/* ---------- VACANCY DETAIL PAGE ---------- */
.breadcrumb-section {
    background: var(--bg-light);
    padding: .85rem 0;
    border-bottom: 1px solid var(--border);
}
.breadcrumb-section .breadcrumb {
    font-size: .82rem;
    margin: 0;
}
.breadcrumb-section a { color: var(--brand-accent); }

.vacancy-detail-header {
    background: var(--brand-primary);
    color: #fff;
    padding: 3rem 0 2.5rem;
}
.vacancy-detail-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: .5rem;
    line-height: 1.15;
    letter-spacing: -.02em;
}
.vacancy-detail-company {
    font-size: .95rem;
    color: rgba(255,255,255,.75);
    display: flex;
    align-items: center;
    gap: .4rem;
    margin-top: .5rem;
}

.detail-meta-bar {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 1.25rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
}
.detail-meta-item {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .88rem;
    padding: .4rem 0;
}
.detail-meta-item i {
    font-size: 1.2rem;
    color: var(--brand-accent);
}
.detail-meta-label {
    font-size: .73rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .05em;
}

/* Vacancy detail image */
.vacancy-detail-img {
    width: 100%;
    max-height: 380px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    box-shadow: var(--card-shadow);
}

.detail-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--card-shadow);
}
.detail-card-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--brand-primary);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}
.detail-card-title i { color: var(--brand-accent); }
.detail-text {
    font-size: .93rem;
    color: #4a5568;
    line-height: 1.85;
    white-space: pre-line;
}

.apply-card {
    background: linear-gradient(135deg, var(--brand-primary) 0%, #1a4a8a 100%);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    color: #fff;
    position: sticky;
    top: 85px;
    box-shadow: var(--card-hover);
}
.apply-card-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: .75rem;
}
.apply-card-title i { color: var(--brand-accent); }
.apply-card-sub {
    font-size: .85rem;
    opacity: .8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.btn-apply {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    background: var(--brand-accent);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    padding: .9rem 1.5rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(232,83,10,.4);
}
.btn-apply:hover {
    background: #c9430a;
    color: #fff;
    transform: translateY(-2px);
}

/* ---------- FOOTER ---------- */
.site-footer {
    background: #0b1f3a;
    color: rgba(255,255,255,.8);
    padding: 4rem 0 0;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: .55rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: .75rem;
}
.footer-logo i { color: var(--brand-accent); font-size: 1.6rem; }
.footer-logo strong { color: var(--brand-accent); }

.footer-slogan {
    font-size: .9rem;
    color: rgba(255,255,255,.7);
    line-height: 1.6;
    margin-bottom: .4rem;
}
.footer-sub {
    font-size: .8rem;
    color: rgba(255,255,255,.45);
    line-height: 1.55;
}

.footer-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: 1.1rem;
}
.footer-trust-badges span {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    font-size: .72rem;
    color: rgba(255,255,255,.6);
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.15);
    padding: .25rem .7rem;
    border-radius: 50px;
}
.footer-trust-badges i { color: var(--brand-green); }

.footer-heading {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 1rem;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links-list li {
    margin-bottom: .4rem;
}
.footer-links-list a {
    font-size: .85rem;
    color: rgba(255,255,255,.6);
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    transition: var(--transition);
}
.footer-links-list a:hover {
    color: var(--brand-accent);
    padding-left: .25rem;
}
.footer-links-list i { font-size: .65rem; }

.footer-contact-info p {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    font-size: .85rem;
    color: rgba(255,255,255,.65);
    margin-bottom: .5rem;
}
.footer-contact-info i { color: var(--brand-accent); flex-shrink: 0; margin-top: .15rem; }
.footer-contact-info a { color: inherit; }
.footer-contact-info a:hover { color: var(--brand-accent); }

.footer-hr {
    border: none;
    border-top: 1px solid rgba(255,255,255,.1);
    margin: 2.5rem 0 1.25rem;
}

.footer-copy {
    font-size: .8rem;
    color: rgba(255,255,255,.4);
}

.footer-small-badge {
    font-size: .75rem;
    color: rgba(255,255,255,.5);
    background: rgba(255,255,255,.06);
    padding: .25rem .7rem;
    border-radius: 50px;
    display: inline-block;
}
.footer-small-badge i { color: var(--brand-accent2); }

/* Make footer-copy row section have bottom padding */
.site-footer .row:last-child {
    padding-bottom: 2rem;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
    .hero-section { min-height: 520px; padding: 3.5rem 0 3rem; }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); }
    .hero-title { font-size: 2.2rem; }
    .apply-card { position: static; }
}

@media (max-width: 576px) {
    .hero-actions { flex-direction: column; align-items: center; }
    .how-step-num { font-size: 2.5rem; }
}
