/* =============================================
   CareerBridge - FIXED CSS (No Blur Version)
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
    --primary:     #0143A7;   /* Dark Blue */
    --secondary:   #03307a;
    --accent:      #6CC5F4;   /* Light Blue */
    --accent-dark: #3faee6;
    --accent2:     #38bdf8;

    --light:       #f0f8ff;
    --white:       #ffffff;

    --text:        #1e3a5f;
    --text-light:  #5c7c99;

    --border:      #d6e9f7;

    --gradient:    linear-gradient(135deg, #0143A7 0%, #6CC5F4 100%);
    --accent-gradient: linear-gradient(135deg, #6CC5F4, #3faee6);

    --shadow:      0 2px 12px rgba(1,67,167,0.08);
    --shadow-lg:   0 8px 28px rgba(1,67,167,0.15);
}

/* =============================================
   GLOBAL RESET + BLUR FIX
   ============================================= */
*, *::before, *::after {
    margin: 0; padding: 0;
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

/* KEY BLUR FIX: font-smoothing on body */
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text);
    background: var(--light);
    line-height: 1.6;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* KEY BLUR FIX: Sharp headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    color: var(--primary);
    line-height: 1.2;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
}

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

/* =============================================
   UTILITIES
   ============================================= */
.container   { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section     { padding: 88px 0; }
.section-sm  { padding: 56px 0; }
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-white  { color: #fff; }
.mt-8        { margin-top: 8px; }
.mt-16       { margin-top: 16px; }
.mt-24       { margin-top: 24px; }
.mt-40       { margin-top: 40px; }
.mb-40       { margin-bottom: 40px; }

.section-label {
    display: inline-block;
    background: rgba(249,115,22,0.1);
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 14px;
    font-family: 'Inter', sans-serif;
}

.section-title {
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 700;
    letter-spacing: -0.4px;
    margin-bottom: 14px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-light);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.75;
    font-family: 'Inter', sans-serif;
}

/* =============================================
   BUTTONS — no translateY on hover
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 12px 26px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    border: none;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    letter-spacing: 0.1px;
}

.btn-primary {
    background: #6CC5F4;
    color: #003366;
}
.btn-primary:hover {
    background: #3faee6;
    box-shadow: 0 4px 16px rgba(108,197,244,0.4);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.45);
}
.btn-outline:hover { background: #fff; color: var(--primary); border-color: #fff; }

.btn-dark { background: var(--primary); color: #fff; }
.btn-dark:hover { background: #1e293b; box-shadow: var(--shadow-lg); }

.btn-sm  { padding: 8px 18px;  font-size: 13px; }
.btn-lg  { padding: 14px 32px; font-size: 15px; }
.btn-xs  { padding: 4px 10px;  font-size: 11px; border-radius: 5px; }

/* =============================================
   NAVBAR — NO backdrop-filter (BLUR FIX)
   ============================================= */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    transition: background 0.3s, box-shadow 0.3s;
    background: transparent;
}

/* BLUR FIX: solid bg, NO backdrop-filter */
.navbar.scrolled {
    background: #0143A7;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
}

.nav-logo {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 21px;
    font-weight: 800;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 9px;
    letter-spacing: -0.3px;
    -webkit-font-smoothing: antialiased;
}
.nav-logo span { color: var(--accent); }

.logo-icon {
    width: 34px; height: 34px;
    background: var(--accent);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 17px;
}

.nav-menu { display: flex; align-items: center; gap: 2px; }

.nav-menu a {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    font-weight: 500;
    padding: 7px 13px;
    border-radius: 6px;
    transition: color 0.15s, background 0.15s;
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
}
.nav-menu a:hover,
.nav-menu a.active { color: #fff; background: rgba(255,255,255,0.1); }

.nav-cta { margin-left: 10px; }

.hamburger {
    display: none; flex-direction: column;
    gap: 5px; cursor: pointer; padding: 4px;
}
.hamburger span {
    display: block; width: 24px; height: 2px;
    background: #fff; border-radius: 2px;
    transition: all 0.3s;
}

/* =============================================
   MOBILE NAV
   ============================================= */
.mobile-nav {
    display: none; position: fixed; inset: 0;
    background: rgba(15,23,42,0.98);
    z-index: 999;
    flex-direction: column;
    align-items: center; justify-content: center;
    gap: 6px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
    color: #fff; font-size: 22px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700; padding: 10px 24px;
    -webkit-font-smoothing: antialiased;
}
.mobile-nav a:hover { color: var(--accent); }
.mobile-nav-close {
    position: absolute; top: 22px; right: 22px;
    background: none; border: none; color: #fff;
    font-size: 26px; cursor: pointer;
}

/* =============================================
   HERO — BLUR FIX: clean font, no transform on text
   ============================================= */
.hero {
    background: linear-gradient(135deg, #0143A7 0%, #6CC5F4 100%) !important;
}

.hero::before {
    content: '';
    position: absolute; top: -30%; right: -8%;
    width: 580px; height: 580px;
    background: radial-gradient(circle, rgba(249,115,22,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute; bottom: -20%; left: -8%;
    width: 460px; height: 460px;
    background: radial-gradient(circle, rgba(6,182,212,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative; z-index: 2;
    padding: 120px 0 80px;
    isolation: isolate;
}

.hero-badge {
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(249,115,22,0.12);
    border: 1px solid rgba(249,115,22,0.28);
    color: #ffa366;
    padding: 5px 14px; border-radius: 100px;
    font-size: 13px; font-weight: 600; margin-bottom: 22px;
    font-family: 'Inter', sans-serif;
}

/* BLUR FIX: 700 renders sharper than 800 on Windows Chrome */
.hero-title {
    font-size: clamp(36px, 5.5vw, 62px);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 18px;
    letter-spacing: -0.8px;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
}
.hero-title .highlight { color: var(--accent); }

.hero-subtitle {
    font-size: 17px;
    color: rgba(255,255,255,0.7);
    max-width: 500px;
    margin-bottom: 34px;
    line-height: 1.75;
    font-family: 'Inter', sans-serif;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }

.hero-stats {
    display: flex; gap: 36px; flex-wrap: wrap;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat h3 {
    font-size: 34px; font-weight: 700; color: #fff;
    letter-spacing: -0.5px;
    -webkit-font-smoothing: antialiased;
}
.hero-stat p {
    font-size: 12px; color: rgba(255,255,255,0.5);
    margin-top: 2px; font-family: 'Inter', sans-serif;
}

/* =============================================
   FLOATING CARDS — BLUR FIX: integer px, will-change
   ============================================= */
.floating-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.13);
    border-radius: var(--radius); padding: 18px;
    position: absolute;
    animation: floatCard 4s ease-in-out infinite;
    will-change: transform;
    -webkit-font-smoothing: antialiased;
}
.floating-card.card1 { top: 15%; right: 5%; animation-delay: 0s; }
.floating-card.card2 { bottom: 25%; left: 5%; animation-delay: 1.5s; }
.floating-card.card3 { top: 55%; right: 10%; animation-delay: 0.8s; }

/* BLUR FIX: integer px values only */
@keyframes floatCard {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-10px); }
}

.fc-label { font-size: 11px; color: rgba(255,255,255,0.5); margin-bottom: 5px; font-family: 'Inter', sans-serif; }
.fc-value { font-size: 18px; font-weight: 700; color: #fff; font-family: 'Plus Jakarta Sans', sans-serif; -webkit-font-smoothing: antialiased; }
.fc-sub   { font-size: 11px; color: var(--accent); margin-top: 2px; font-family: 'Inter', sans-serif; }
.fc-icon  { font-size: 26px; margin-bottom: 7px; }

/* =============================================
   MARQUEE
   ============================================= */
.marquee-section {
    background: white;
    padding: 22px 0;
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.marquee-track {
    display: flex;
    gap: 52px;
    animation: marqueeScroll 35s linear infinite;
    white-space: nowrap;
    width: max-content;
    align-items: center;
}
.marquee-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    opacity: 0.55;
    transition: opacity 0.2s;
    cursor: default;
}
.marquee-item:hover { opacity: 1; }
.marquee-logo {
    height: 40px;
    width: auto;
    max-width: 100px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.2s;
    display: block;
}
.marquee-item:hover .marquee-logo { filter: grayscale(0%); }
.marquee-name {
    color: var(--text-light);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}
@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* =============================================
   SERVICE CARDS — BLUR FIX: no translateY hover
   ============================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 22px; margin-top: 44px;
}
.service-card {
    background: #fff; border-radius: var(--radius-lg);
    padding: 32px; border: 1px solid var(--border);
    transition: box-shadow 0.25s, border-color 0.25s;
    position: relative; overflow: hidden;
}
.service-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.09);
    border-color: rgba(249,115,22,0.2);
}
.service-card::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: var(--accent-gradient);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.3s;
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    width: 54px; height: 54px;
    background: rgba(249,115,22,0.09);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 23px; margin-bottom: 18px;
}
.service-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.2px; }
.service-card p  { color: var(--text-light); font-size: 14px; line-height: 1.7; margin-bottom: 12px; }
.service-price   { font-weight: 700; color: var(--accent); font-size: 17px; }
.service-link    { color: var(--accent); font-weight: 600; font-size: 13px; display: inline-flex; align-items: center; gap: 5px; margin-top: 14px; transition: gap 0.2s; }
.service-link:hover { gap: 9px; }

/* =============================================
   PROCESS
   ============================================= */
.process-section { background: var(--primary); }
.process-section .section-title    { color: #fff; }
.process-section .section-subtitle { color: rgba(255,255,255,0.5); }
.process-section .section-label    { background: rgba(249,115,22,0.18); }

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0; margin-top: 52px; position: relative;
}
.process-steps::before {
    content: ''; position: absolute;
    top: 38px; left: 10%; right: 10%; height: 1px;
    background: linear-gradient(90deg, var(--accent) 0%, rgba(249,115,22,0.15) 100%);
}
.step-item { text-align: center; position: relative; z-index: 1; padding: 0 12px; }
.step-num {
    width: 76px; height: 76px;
    background: var(--accent); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px; font-weight: 700; color: #fff;
    margin: 0 auto 18px;
    border: 4px solid var(--primary);
    -webkit-font-smoothing: antialiased;
}
.step-item h4 { color: #fff; font-size: 13px; font-weight: 700; margin-bottom: 5px; }
.step-item p  { color: rgba(255,255,255,0.4); font-size: 11px; font-family: 'Inter', sans-serif; }

/* =============================================
   JOB CARDS — BLUR FIX: no translateY
   ============================================= */
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px; margin-top: 36px;
}
.job-card {
    background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius); padding: 26px;
    transition: border-color 0.2s, box-shadow 0.2s;
    position: relative;
}
.job-card:hover {
    border-color: rgba(249,115,22,0.3);
    box-shadow: 0 6px 22px rgba(249,115,22,0.09);
}
.job-card.featured::after {
    content: '⭐ Featured';
    position: absolute; top: -1px; right: 18px;
    background: var(--accent); color: #fff;
    font-size: 10px; font-weight: 700;
    padding: 3px 11px; border-radius: 0 0 7px 7px;
    font-family: 'Inter', sans-serif;
}

.job-header { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 14px; }
.job-logo {
    width: 48px; height: 48px; background: var(--gradient);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800; color: #fff; font-size: 17px; flex-shrink: 0;
    -webkit-font-smoothing: antialiased;
}
.job-info h3 { font-size: 16px; font-weight: 700; margin-bottom: 3px; letter-spacing: -0.1px; }
.job-company { font-size: 13px; color: var(--text-light); font-family: 'Inter', sans-serif; }

.job-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 13px; }
.tag {
    display: inline-flex; align-items: center; gap: 3px;
    background: var(--light); color: var(--text);
    font-size: 11px; font-weight: 500; padding: 3px 9px;
    border-radius: 5px; font-family: 'Inter', sans-serif;
}
.tag.accent {
    background: rgba(108,197,244,0.15);
    color: #0143A7;
}
.tag.blue   { background: rgba(6,182,212,0.08);  color: var(--accent2); }

.job-skills { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 17px; }
.skill-tag {
    font-size: 11px; color: var(--text-light);
    background: var(--light); border: 1px solid var(--border);
    padding: 2px 7px; border-radius: 4px; font-family: 'Inter', sans-serif;
}

.job-footer {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 14px; border-top: 1px solid var(--border);
}
.job-salary    { font-size: 15px; font-weight: 700; color: var(--primary); }
.job-type-badge {
    font-size: 10px; color: #15803d; background: #dcfce7;
    padding: 3px 9px; border-radius: 100px; font-weight: 700;
    font-family: 'Inter', sans-serif;
}

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
    background: #6CC5F4;
}
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; text-align: center; }
.stat-item h3 {
    font-size: 38px; font-weight: 700; color: #fff;
    letter-spacing: -0.5px; -webkit-font-smoothing: antialiased;
}
.stat-item p { font-size: 13px; color: rgba(255,255,255,0.78); margin-top: 4px; font-family: 'Inter', sans-serif; }

/* =============================================
   TESTIMONIALS — BLUR FIX: no translateY
   ============================================= */
.testimonials-section { background: var(--light); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px; margin-top: 44px;
}
.testimonial-card {
    background: #fff; border-radius: var(--radius-lg);
    padding: 28px; border: 1px solid var(--border);
    transition: box-shadow 0.25s;
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); }

.quote-icon { font-size: 34px; color: var(--accent); opacity: 0.22; margin-bottom: 10px; line-height: 1; }
.rating     { color: #fbbf24; font-size: 13px; margin-bottom: 10px; }
.testimonial-card p {
    color: var(--text); font-size: 14px; line-height: 1.8;
    margin-bottom: 20px; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--gradient);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700; color: #fff; font-size: 16px; flex-shrink: 0;
    -webkit-font-smoothing: antialiased;
}
.author-name { font-weight: 700; font-size: 14px; }
.author-role { font-size: 12px; color: var(--text-light); font-family: 'Inter', sans-serif; }

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
    background: linear-gradient(135deg, #0143A7, #6CC5F4);
}
.cta-section::before {
    content: ''; position: absolute; top: -40%; right: -8%;
    width: 460px; height: 460px;
    background: radial-gradient(circle, rgba(249,115,22,0.14) 0%, transparent 70%);
    pointer-events: none;
}
.cta-section .section-title    { color: #fff; }
.cta-section .section-subtitle { color: rgba(255,255,255,0.62); }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }

/* =============================================
   BLOG CARDS — BLUR FIX: no translateY
   ============================================= */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px,1fr));
    gap: 24px; margin-top: 44px;
}
.blog-card {
    background: #fff; border-radius: var(--radius-lg);
    overflow: hidden; border: 1px solid var(--border);
    transition: box-shadow 0.25s;
}
.blog-card:hover { box-shadow: var(--shadow-lg); }

.blog-img {
    height: 188px; background: var(--gradient);
    display: flex; align-items: center; justify-content: center;
    font-size: 56px;
}
.blog-body { padding: 22px; }
.blog-cat  { font-size: 11px; color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 7px; font-family: 'Inter', sans-serif; }
.blog-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; line-height: 1.4; letter-spacing: -0.1px; }
.blog-card p  { color: var(--text-light); font-size: 13px; margin-bottom: 14px; line-height: 1.7; }
.blog-meta { display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: var(--text-light); font-family: 'Inter', sans-serif; }
.read-more { color: var(--accent); font-weight: 600; display: inline-flex; align-items: center; gap: 4px; }

/* =============================================
   FORMS
   ============================================= */
.form-section { background: #fff; }
.form-card {
    background: #fff; border-radius: var(--radius-lg);
    padding: 44px; box-shadow: var(--shadow-lg); border: 1px solid var(--border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block; font-size: 13px; font-weight: 600;
    color: var(--primary); margin-bottom: 7px; font-family: 'Inter', sans-serif;
}
.form-control {
    width: 100%; padding: 11px 14px;
    border: 1.5px solid var(--border); border-radius: 7px;
    font-size: 14px; font-family: 'Inter', sans-serif;
    color: var(--text); background: var(--light);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    -webkit-font-smoothing: antialiased;
}
.form-control:focus {
    border-color: var(--accent); background: #fff;
    box-shadow: 0 0 0 3px rgba(249,115,22,0.1);
}
textarea.form-control { resize: vertical; min-height: 112px; }

/* =============================================
   PAGE HEADER
   ============================================= */
.page-header {
    background: var(--gradient);
    padding: 130px 0 64px;
    position: relative; overflow: hidden;
}
.page-header::before {
    content: ''; position: absolute; top: -30%; right: -5%;
    width: 360px; height: 360px;
    background: radial-gradient(circle, rgba(249,115,22,0.11) 0%, transparent 70%);
}
.page-header h1 {
    font-size: clamp(28px, 4.5vw, 48px); font-weight: 700;
    color: #fff; margin-bottom: 10px; letter-spacing: -0.5px;
    -webkit-font-smoothing: antialiased;
}
.page-header p { color: rgba(255,255,255,0.62); font-size: 16px; font-family: 'Inter', sans-serif; }
.breadcrumb {
    display: flex; align-items: center; gap: 7px;
    font-size: 12px; color: rgba(255,255,255,0.5);
    margin-bottom: 14px; font-family: 'Inter', sans-serif;
}
.breadcrumb a       { color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span    { color: var(--accent); }

/* =============================================
   FILTER BAR
   ============================================= */
.filter-bar {
    background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius); padding: 20px;
    margin-bottom: 28px; display: flex; gap: 14px; flex-wrap: wrap; align-items: center;
}

/* =============================================
   ALERTS
   ============================================= */
.alert {
    padding: 12px 18px; border-radius: 7px; font-size: 14px;
    margin-bottom: 18px; display: flex; align-items: center; gap: 9px;
    font-family: 'Inter', sans-serif;
}
.alert-success { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }
.alert-error   { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }
.alert-info    { background: #dbeafe; color: #1e40af; border: 1px solid #bfdbfe; }

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img {
    background: var(--gradient); border-radius: var(--radius-lg);
    height: 460px; display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
}
.about-features { margin-top: 24px; }
.feature-item { display: flex; gap: 14px; margin-bottom: 22px; }
.feature-icon {
    width: 44px; height: 44px; background: rgba(249,115,22,0.09);
    border-radius: 10px; display: flex; align-items: center;
    justify-content: center; font-size: 19px; flex-shrink: 0;
}
.feature-item h4 { font-size: 15px; font-weight: 700; margin-bottom: 3px; }
.feature-item p  { font-size: 13px; color: var(--text-light); line-height: 1.6; }

/* =============================================
   TEAM
   ============================================= */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 20px; }
.team-card {
    background: #fff; border-radius: var(--radius-lg);
    overflow: hidden; border: 1px solid var(--border);
    text-align: center; transition: box-shadow 0.25s;
}
.team-card:hover { box-shadow: var(--shadow-lg); }
.team-img { height: 180px; background: var(--gradient); display: flex; align-items: center; justify-content: center; font-size: 60px; }
.team-body       { padding: 18px; }
.team-body h3    { font-size: 16px; font-weight: 700; }
.team-body p     { font-size: 12px; color: var(--accent); font-weight: 600; margin-top: 3px; font-family: 'Inter', sans-serif; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; }
.contact-info-card { background: var(--gradient); border-radius: var(--radius-lg); padding: 36px; height: 100%; }
.contact-info-card h3 { color: #fff; font-size: 22px; margin-bottom: 6px; -webkit-font-smoothing: antialiased; }
.contact-info-card > p { color: rgba(255,255,255,0.62); font-size: 14px; margin-bottom: 28px; font-family: 'Inter', sans-serif; }
.info-item { display: flex; gap: 14px; margin-bottom: 22px; align-items: flex-start; }
.info-icon {
    width: 42px; height: 42px; background: rgba(255,255,255,0.09);
    border-radius: 9px; display: flex; align-items: center; justify-content: center;
    font-size: 17px; flex-shrink: 0;
}
.info-label { font-size: 11px; color: rgba(255,255,255,0.42); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-family: 'Inter', sans-serif; }
.info-value { color: #fff; font-size: 14px; margin-top: 2px; font-family: 'Inter', sans-serif; }

/* =============================================
   JOB DETAIL
   ============================================= */
.job-detail-grid   { display: grid; grid-template-columns: 2fr 1fr; gap: 24px; }
.job-detail-header { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; margin-bottom: 24px; }
.job-detail-body   { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; }
.sidebar-card      { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 18px; }
.sidebar-card h4   { font-size: 15px; font-weight: 700; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.detail-row        { display: flex; justify-content: space-between; margin-bottom: 11px; font-size: 13px; }
.detail-label      { color: var(--text-light); font-family: 'Inter', sans-serif; }
.detail-value      { font-weight: 600; }

/* =============================================
   FOOTER
   ============================================= */
.footer { background: var(--primary); color: rgba(255,255,255,0.62); padding: 64px 0 0; }
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 44px; padding-bottom: 44px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p { font-size: 13px; line-height: 1.8; margin: 14px 0 22px; max-width: 260px; font-family: 'Inter', sans-serif; }
.footer-social  { display: flex; gap: 10px; }
.social-btn {
    width: 36px; height: 36px; background: rgba(255,255,255,0.07);
    border-radius: 7px; display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.62); font-size: 14px; transition: background 0.2s, color 0.2s;
}
.social-btn:hover { background: var(--accent); color: #fff; }
.footer h4 { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 18px; -webkit-font-smoothing: antialiased; }
.footer-links li  { margin-bottom: 9px; }
.footer-links a   { font-size: 13px; transition: color 0.2s; font-family: 'Inter', sans-serif; }
.footer-links a:hover { color: var(--accent); }
.footer-contact li { display: flex; gap: 11px; font-size: 13px; margin-bottom: 13px; align-items: flex-start; font-family: 'Inter', sans-serif; }
.footer-contact .icon { color: var(--accent); font-size: 15px; flex-shrink: 0; margin-top: 1px; }
.newsletter-form  { display: flex; gap: 7px; margin-top: 14px; }
.newsletter-input {
    flex: 1; padding: 9px 13px;
    background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
    border-radius: 7px; color: #fff; font-size: 13px; outline: none;
    font-family: 'Inter', sans-serif;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.32); }
.newsletter-input:focus { border-color: var(--accent); }
.footer-bottom {
    display: flex; align-items: center; justify-content: space-between;
    padding: 22px 0; font-size: 12px; flex-wrap: wrap; gap: 10px;
    font-family: 'Inter', sans-serif;
}
.footer-bottom-links { display: flex; gap: 18px; }
.footer-bottom-links a:hover { color: var(--accent); }

/* =============================================
   SCROLL TO TOP
   ============================================= */
.scroll-top {
    position: fixed; bottom: 24px; right: 24px;
    width: 44px; height: 44px; background: var(--accent);
    color: #fff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; cursor: pointer; z-index: 999;
    box-shadow: 0 4px 14px rgba(249,115,22,0.36);
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s, background 0.2s;
    border: none; text-decoration: none;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover   { background: var(--accent-dark); }

/* =============================================
   PAGINATION
   ============================================= */
.pagination { display: flex; gap: 7px; justify-content: center; margin-top: 36px; }
.page-btn {
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--border); border-radius: 7px;
    font-size: 13px; font-weight: 600; color: var(--text);
    transition: all 0.2s; cursor: pointer;
    text-decoration: none; font-family: 'Inter', sans-serif;
}
.page-btn:hover,
.page-btn.active { background: var(--accent); color: #fff; border-color: var(--accent); }

/* =============================================
   EMPTY STATE
   ============================================= */
.empty-state { text-align: center; padding: 72px 40px; color: var(--text-light); }
.empty-state .icon { font-size: 52px; margin-bottom: 14px; }
.empty-state h3    { font-size: 18px; color: var(--primary); margin-bottom: 7px; }

/* =============================================
   FADE IN — BLUR FIX: opacity only, no translateY
   ============================================= */
.fade-in { opacity: 0; transition: opacity 0.5s ease; }
.fade-in.visible { opacity: 1; }

/* =============================================
   FLASH MESSAGE
   ============================================= */
.flash-msg { padding: 11px 18px; border-radius: 7px; margin: 10px 0; font-weight: 600; font-size: 14px; font-family: 'Inter', sans-serif; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
    .nav-menu    { display: none; }
    .hamburger   { display: flex; }
    .about-grid,
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid  { grid-template-columns: 1fr 1fr; }
    .stats-grid   { grid-template-columns: repeat(2,1fr); }
    .process-steps::before { display: none; }
    .form-row         { grid-template-columns: 1fr; }
    .job-detail-grid  { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .section     { padding: 56px 0; }
    .hero-stats  { gap: 18px; }
    .footer-grid { grid-template-columns: 1fr; }
    .stats-grid  { grid-template-columns: repeat(2,1fr); }
    .hero-btns   { flex-direction: column; }
    .btn-lg      { width: 100%; justify-content: center; }
    .form-card   { padding: 24px 16px; }
    /* Hide floating cards on mobile to prevent any rendering issues */
    .floating-card { display: none; }
}

/* ===== VIDEO BACKGROUND ADD ===== */

.hero {
    position: relative;
    overflow: hidden;
}

/* Video */
.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Overlay for dark effect */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.75);
    z-index: 1;
}

/* Content above video */
.hero-content {
    position: relative;
    z-index: 2;
}
