/* ============================================================
   SERVICE PAGE STYLES — Techxpert
   Modelled after JLL's open, spacious service page structure
============================================================ */

:root {
    --primary-blue: #1b5fad;
    --secondary-blue: #022c5c;
    --primary-red: #d42f2f;
    --dark-blue: #0a1628;
    --navy: #0e1d34;
    --light-bg: #f8f9fa;
    --cream-bg: #f0ece6;
    --teal-bg: #e8f0ee;
    --text-dark: #222;
    --text-muted: #666;
    --white: #fff;
    --navbar-height: 70px;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
}

/* ── TOP BAR ─────────────────────────────────────────────── */
.top-bar {
    background: var(--secondary-blue);
    padding: 8px 0;
    font-size: 13px;
    color: var(--white);
}

.top-bar .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.top-bar a {
    color: var(--white);
    text-decoration: none;
    margin-left: 20px;
}

.top-bar a:hover {
    opacity: 0.8;
}

.top-bar .bi {
    margin-right: 5px;
}

/* ── NAVBAR ───────────────────────────────────────────────── */
.navbar {
    background: var(--white);
    padding: 0;
    min-height: var(--navbar-height);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 9999;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    /* No fixed height — mobile collapse must expand below */
}

@media (min-width: 992px) {
    .navbar {
        height: var(--navbar-height);
        overflow: visible;
    }
}

.navbar-brand {
    background: transparent;
    padding: 15px 25px;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 30px;
}

.navbar .nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    font-size: 14px;
    padding: 20px 18px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s;
    position: relative;
}

.navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    width: 60%;
    height: 2px;
    background: var(--primary-red);
    transition: transform 0.25s ease;
}

.navbar .nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.navbar .nav-link:hover {
    color: var(--primary-blue) !important;
}

.navbar .nav-login-link {
    display: inline-block;
    margin: 20px 18px;
    text-decoration: none;
}

.navbar .nav-login-link span {
    display: inline-block;
    background: var(--primary-red);
    color: var(--white);
    padding: 8px 14px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.navbar .nav-login-link:hover span {
    background: #b92424;
}

.nav-social a {
    color: var(--text-dark);
    width: 36px;
    height: 36px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 5px;
    font-size: 14px;
    transition: background 0.2s, color 0.2s;
    border-radius: 3px;
}

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

/* Services Dropdown */
.services-dropdown {
    position: relative;
}

.services-dropdown .dropdown-toggle {
    cursor: pointer;
    user-select: none;
}

.svc-chevron {
    font-size: 11px;
    transition: transform 0.25s ease;
    margin-left: 4px;
}

.services-dropdown.open .svc-chevron {
    transform: rotate(180deg);
}

.services-mega-menu {
    display: none;
    position: absolute;
    top: calc(100% + 2px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    min-width: 520px;
    padding: 10px;
    border-top: 3px solid var(--primary-red);
    animation: menuSlideDown 0.2s ease;
}

@keyframes menuSlideDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.services-dropdown.open .services-mega-menu {
    display: block;
}

.svc-menu-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
}

.svc-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 6px;
    text-decoration: none;
    color: var(--text-dark);
    transition: background 0.15s;
}

.svc-menu-item:hover {
    background: #f0f4fb;
    color: var(--primary-blue);
}

.svc-menu-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.svc-menu-item strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
}

.svc-menu-item span {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ── BREADCRUMB ───────────────────────────────────────────── */
.svc-breadcrumb {
    padding: 14px 0;
    background: var(--white);
    border-bottom: 1px solid #eee;
    font-size: 13px;
    color: var(--text-muted);
}

.svc-breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
}

.svc-breadcrumb a:hover {
    color: var(--primary-blue);
}

.svc-breadcrumb .bi-chevron-right {
    font-size: 10px;
    margin: 0 6px;
}

.svc-breadcrumb span {
    color: var(--text-dark);
    font-weight: 500;
}

/* ── SERVICE HERO ─────────────────────────────────────────── */
.svc-hero {
    padding: 80px 0 60px;
    background: var(--white);
}

.svc-hero-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-red);
    margin-bottom: 14px;
    display: block;
}

.svc-hero h1 {
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--dark-blue);
    margin-bottom: 0;
}

.svc-hero-desc {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 600px;
}

.svc-hero-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 8px;
}

.btn-svc-cta {
    display: inline-block;
    background: var(--dark-blue);
    color: var(--white);
    padding: 14px 32px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border-radius: 3px;
    transition: background 0.2s, transform 0.2s;
    margin-top: 28px;
}

.btn-svc-cta:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-svc-outline {
    display: inline-block;
    border: 2px solid var(--dark-blue);
    color: var(--dark-blue);
    padding: 12px 30px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border-radius: 3px;
    transition: background 0.2s, color 0.2s;
    margin-top: 28px;
    margin-left: 12px;
}

.btn-svc-outline:hover {
    background: var(--dark-blue);
    color: var(--white);
}

/* ── KPI STRIP ────────────────────────────────────────────── */
.kpi-strip {
    background: var(--dark-blue);
    padding: 40px 0;
}

.kpi-strip-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.kpi-box {
    text-align: center;
    padding: 24px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--white);
}

.kpi-box:last-child {
    border-right: none;
}

.kpi-box i {
    font-size: 28px;
    color: var(--primary-red);
    display: block;
    margin-bottom: 10px;
}

.kpi-num {
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    display: block;
    line-height: 1;
    margin-bottom: 6px;
}

.kpi-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.4;
}

/* ── MEETING NEEDS ────────────────────────────────────────── */
.meeting-needs {
    padding: 80px 0;
    background: var(--white);
}

.section-eyebrow {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-blue);
    margin-bottom: 12px;
    display: block;
}

.meeting-needs h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 50px;
}

.need-card {
    background: var(--cream-bg);
    border-radius: 10px;
    padding: 32px 28px;
    height: 100%;
}

.need-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 14px;
    line-height: 1.3;
}

.need-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ── FEATURE SPLIT (text + image) ─────────────────────────── */
.feature-split {
    padding: 80px 0;
    background: var(--white);
}

.feature-split.alt {
    background: var(--light-bg);
}

.feature-split h2 {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 16px;
    line-height: 1.2;
}

.feature-split .lead {
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-blue);
    margin-bottom: 16px;
}

.feature-split p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 14px;
}

.feature-split-img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 8px;
}

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

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.5;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list .bi {
    color: var(--primary-blue);
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ── SCOPE GRID ───────────────────────────────────────────── */
.scope-section {
    padding: 80px 0;
    background: var(--white);
}

.scope-section.alt {
    background: var(--light-bg);
}

.scope-section h2 {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 12px;
}

.scope-section .lead {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 50px;
    max-width: 680px;
}

.scope-card {
    background: var(--white);
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 28px 24px;
    height: 100%;
    transition: box-shadow 0.25s, transform 0.25s;
}

.scope-section.alt .scope-card {
    background: var(--white);
}

.scope-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.scope-card-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary-blue), #2980d9);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
}

.scope-card h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.scope-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.scope-card ul li {
    font-size: 13px;
    color: var(--text-muted);
    padding: 5px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.4;
}

.scope-card ul li:last-child {
    border-bottom: none;
}

.scope-card ul li .bi {
    color: var(--primary-blue);
    font-size: 12px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* ── QUOTE BLOCK ──────────────────────────────────────────── */
.quote-block {
    background: var(--teal-bg);
    padding: 80px 0;
}

.quote-block blockquote {
    font-size: clamp(22px, 3.5vw, 40px);
    font-weight: 700;
    color: var(--dark-blue);
    line-height: 1.35;
    max-width: 900px;
    margin: 0 auto;
}

.quote-block .btn-outline-dark {
    display: inline-block;
    border: 2px solid var(--dark-blue);
    color: var(--dark-blue);
    padding: 12px 28px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border-radius: 3px;
    margin-top: 32px;
    transition: background 0.2s, color 0.2s;
}

.quote-block .btn-outline-dark:hover {
    background: var(--dark-blue);
    color: var(--white);
}

/* ── INDUSTRIES ───────────────────────────────────────────── */
.industries-section {
    padding: 80px 0;
    background: var(--white);
}

.industries-section.alt {
    background: var(--light-bg);
}

.industries-section h2 {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 12px;
}

.industries-section .lead {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.industry-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid #dde4f0;
    border-radius: 50px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-blue);
    margin: 6px 4px;
    transition: background 0.2s, border-color 0.2s;
}

.industries-section.alt .industry-tag {
    background: #f8f9fa;
}

.industry-tag:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--white);
}

.industry-tag .bi {
    font-size: 16px;
}

/* ── SLA GRID ─────────────────────────────────────────────── */
.sla-section {
    padding: 80px 0;
    background: var(--secondary-blue);
    color: var(--white);
}

.sla-section h2 {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}

.sla-section .lead {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 50px;
}

.sla-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 28px 24px;
    height: 100%;
}

.sla-card h5 {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.sla-card p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    line-height: 1.6;
}

.sla-num {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-red);
    display: block;
    line-height: 1;
    margin-bottom: 4px;
}

/* ── DELIVERY MODEL ───────────────────────────────────────── */
.delivery-section {
    padding: 80px 0;
    background: var(--white);
}

.delivery-section h2 {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 12px;
}

.delivery-section .lead {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 50px;
}

.delivery-step {
    display: flex;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid #eee;
    align-items: flex-start;
}

.delivery-step:last-child {
    border-bottom: none;
}

.step-num {
    width: 48px;
    height: 48px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    flex-shrink: 0;
}

.step-content h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 6px;
}

.step-content p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ── CLIENT STORY CARD ────────────────────────────────────── */
.story-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.story-section h2 {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 40px;
}

.story-card {
    background: var(--teal-bg);
    border-radius: 8px;
    overflow: hidden;
}

.story-card-img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
}

.story-card-body {
    padding: 40px 36px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-blue);
    margin-bottom: 16px;
}

.story-card-body h3 {
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 800;
    color: var(--dark-blue);
    line-height: 1.25;
    margin-bottom: 14px;
}

.story-card-body p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.btn-story {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--dark-blue);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border-bottom: 2px solid var(--dark-blue);
    padding-bottom: 2px;
    width: fit-content;
    transition: color 0.2s, border-color 0.2s;
}

.btn-story:hover {
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

/* ── FINAL CTA ────────────────────────────────────────────── */
.svc-final-cta {
    padding: 80px 0;
    background: var(--dark-blue);
    text-align: center;
    color: var(--white);
}

.svc-final-cta h2 {
    font-size: clamp(26px, 4vw, 44px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.svc-final-cta p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta-white {
    display: inline-block;
    background: var(--white);
    color: var(--dark-blue);
    padding: 14px 36px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 3px;
    margin: 6px;
    transition: background 0.2s, color 0.2s;
}

.btn-cta-white:hover {
    background: var(--primary-red);
    color: var(--white);
}

.btn-cta-red {
    display: inline-block;
    background: var(--primary-red);
    color: var(--white);
    padding: 14px 36px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 3px;
    margin: 6px;
    transition: opacity 0.2s;
}

.btn-cta-red:hover {
    opacity: 0.88;
    color: var(--white);
}

/* ── FOOTER ───────────────────────────────────────────────── */
footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.85);
    padding: 50px 0 20px;
    font-size: 14px;
}

footer h5 {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-contact .item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.footer-contact .bi {
    color: var(--primary-red);
    font-size: 16px;
    margin-top: 2px;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    margin-bottom: 8px;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 30px;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

footer a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
}

footer a:hover {
    color: var(--white);
}

/* ── MOBILE NAVBAR COLLAPSE ───────────────────────────────── */
@media (max-width: 991px) {

    /* The navbar toggler bar — keep it vertically centered */
    .navbar-collapse {
        background: var(--white);
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        padding: 8px 0 16px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    }

    .navbar .nav-link {
        padding: 12px 20px !important;
    }

    /* Remove the red underline animation on mobile */
    .navbar .nav-link::after {
        display: none;
    }

    .navbar .nav-login-link {
        margin: 8px 20px;
    }
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 991px) {
    .kpi-strip-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .kpi-box {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .kpi-box:nth-child(even) {}

    .svc-hero h1 {
        font-size: 32px;
    }

    .svc-hero {
        padding: 50px 0 40px;
    }

    .svc-hero-img {
        height: 280px;
        margin-top: 30px;
    }

    .feature-split-img {
        height: 300px;
    }

    .services-mega-menu {
        min-width: 320px;
    }

    .svc-menu-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .kpi-strip-inner {
        grid-template-columns: 1fr 1fr;
    }

    .story-card-body {
        padding: 28px 20px;
    }
}


/* ═══════════════════════════════════════════════════════════
   COMMON FOOTER — used across all pages
═══════════════════════════════════════════════════════════ */

.site-footer {
    background: #0d1117;
    color: rgba(255, 255, 255, 0.65);
    padding: 70px 0 0;
    font-size: 14px;
}

/* Brand */
.footer-logo img {
    height: 32px;
    margin-bottom: 14px;
    display: block;
}

.footer-tagline {
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.footer-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-bottom: 18px;
}

/* Inline contact items */
.footer-contact-inline .item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 13px;
}

.footer-contact-inline .item i {
    color: var(--primary-red);
    font-size: 15px;
    flex-shrink: 0;
}

.footer-contact-inline .item a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact-inline .item a:hover {
    color: var(--white);
}

/* Column headings */
.footer-heading {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 18px;
}

/* Link lists */
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 10px;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s, padding-left 0.2s;
    display: inline-block;
}

.footer-list a:hover {
    color: var(--primary-red);
    padding-left: 4px;
}

/* Social icons */
.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.footer-socials a:hover {
    background: var(--primary-red);
    color: var(--white);
}

/* Google Play badge */
.footer-playstore img {
    height: 40px;
    display: block;
    opacity: 0.85;
    transition: opacity 0.2s;
}

.footer-playstore:hover img {
    opacity: 1;
}

/* Locations strip */
.footer-locations {
    margin-top: 50px;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 16px;
    font-size: 12px;
}

.footer-locations span {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.footer-locations a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-locations a:hover {
    color: var(--white);
}

.footer-locations .view-more {
    color: var(--primary-blue);
    font-weight: 600;
}

.footer-locations .view-more:hover {
    color: var(--primary-red);
}

/* Bottom bar */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 13px;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.45);
}

.footer-bottom p strong {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: var(--white);
}

/* Responsive */
@media (max-width: 767px) {
    .site-footer {
        padding: 50px 0 0;
    }

    .footer-top {
        row-gap: 35px !important;
    }

    .footer-locations {
        gap: 8px 12px;
        margin-top: 35px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .footer-legal {
        gap: 16px;
        justify-content: center;
    }
}

/* ═══════════════════════════════════════════════════════════
   CAREER MODAL
═══════════════════════════════════════════════════════════ */

.career-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(3px);
}

.career-modal-overlay.active {
    display: flex;
}

.career-modal {
    background: #fff;
    border-radius: 12px;
    width: 100%;
    max-width: 580px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    animation: careerSlideIn 0.25s ease;
}

@keyframes careerSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.career-modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 24px 28px 20px;
    border-bottom: 1px solid #eee;
}

.career-modal-header h4 {
    font-size: 20px;
    font-weight: 700;
    color: #0a1628;
    margin: 0 0 4px;
}

.career-modal-header p {
    font-size: 13px;
    color: #888;
    margin: 0;
}

.career-modal-close {
    background: none;
    border: none;
    font-size: 26px;
    line-height: 1;
    color: #999;
    cursor: pointer;
    padding: 0 0 0 16px;
    transition: color 0.2s;
    flex-shrink: 0;
}

.career-modal-close:hover {
    color: #d42f2f;
}

.career-modal-body {
    padding: 24px 28px 28px;
}

/* Success state */
.career-success {
    display: none;
    text-align: center;
    padding: 30px 0 10px;
}

.career-success.visible {
    display: block;
}

.career-success i {
    font-size: 52px;
    color: #22c55e;
    margin-bottom: 14px;
    display: block;
}

.career-success h5 {
    font-size: 20px;
    font-weight: 700;
    color: #0a1628;
    margin-bottom: 8px;
}

.career-success p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Row layout */
.career-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Field */
.career-field {
    margin-bottom: 18px;
}

.career-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 7px;
}

.career-field label span {
    color: #d42f2f;
}

.career-field input[type="text"],
.career-field input[type="email"],
.career-field input[type="tel"] {
    width: 100%;
    border: 2px solid #e8e8e8;
    border-radius: 6px;
    padding: 11px 14px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    outline: none;
    transition: border-color 0.2s;
    color: #222;
}

.career-field input:focus {
    border-color: #1b5fad;
    box-shadow: 0 0 0 3px rgba(27, 95, 173, 0.1);
}

.career-field input.invalid {
    border-color: #d42f2f;
}

/* File upload */
.career-file-wrap {
    border: 2px dashed #d0d0d0;
    border-radius: 6px;
    padding: 18px 16px;
    text-align: center;
    cursor: pointer;
    position: relative;
    transition: border-color 0.2s, background 0.2s;
    background: #fafafa;
}

.career-file-wrap:hover {
    border-color: #1b5fad;
    background: #f0f4fb;
}

.career-file-wrap.has-file {
    border-color: #22c55e;
    background: #f0fdf4;
}

.career-file-wrap i {
    font-size: 24px;
    color: #1b5fad;
    display: block;
    margin-bottom: 8px;
}

.career-file-wrap span {
    font-size: 13px;
    color: #666;
}

.career-file-wrap input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

/* Error */
.career-error {
    display: block;
    font-size: 12px;
    color: #d42f2f;
    margin-top: 5px;
    min-height: 16px;
}

/* Submit button */
.career-submit {
    width: 100%;
    background: #d42f2f;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 13px;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    margin-top: 4px;
}

.career-submit:hover:not(:disabled) {
    background: #b52525;
    transform: translateY(-2px);
}

.career-submit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

/* Spinner */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.spin {
    display: inline-block;
    animation: spin 0.8s linear infinite;
}

/* Responsive */
@media (max-width: 540px) {

    .career-modal-header,
    .career-modal-body {
        padding-left: 20px;
        padding-right: 20px;
    }

    .career-row {
        grid-template-columns: 1fr;
    }
}