/* ========================================================
   Shanchao Recruitment Services — Premium Corporate CSS
   ======================================================== */

/* ---------- CSS Variables ---------- */
:root {
    --navy: #0A2540;
    --navy-light: #0D3060;
    --gold: #C9A961;
    --gold-light: #DFC27D;
    --gold-dark: #A88940;
    --white: #FFFFFF;
    --off-white: #F7F8FA;
    --light-gray: #E8EDF2;
    --medium-gray: #B0BBC8;
    --text-dark: #1A2942;
    --text-body: #3D4F6B;
    --text-muted: #6B7A94;
    --success: #2EB88A;
    --danger: #E53E3E;
    --shadow-sm: 0 2px 8px rgba(10,37,64,.08);
    --shadow-md: 0 8px 24px rgba(10,37,64,.12);
    --shadow-lg: 0 20px 60px rgba(10,37,64,.15);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --transition: all .3s cubic-bezier(.4,0,.2,1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; max-width: 100%; }
body {
    font-family: 'Inter', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-body);
    background: var(--white);
    overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6 { font-family: 'Poppins','Noto Sans SC',sans-serif; color: var(--text-dark); font-weight: 700; line-height: 1.2; }
a { color: var(--navy); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold); }
img { max-width: 100%; height: auto; }

/* ---------- Utility ---------- */
.text-navy { color: var(--navy) !important; }
.text-gold { color: var(--gold) !important; }
.bg-navy { background-color: var(--navy) !important; }
.bg-gold { background-color: var(--gold) !important; }
.bg-off-white { background-color: var(--off-white) !important; }
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 60px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: clamp(1.8rem,4vw,2.6rem); margin-bottom: 16px; }
.section-header p { font-size: 1.05rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; }
.gold-line { display: inline-block; width: 60px; height: 3px; background: var(--gold); border-radius: 2px; margin: 12px auto 20px; }

/* ---------- Buttons ---------- */
.btn-primary-sc {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px; background: var(--gold); color: var(--navy);
    border: 2px solid var(--gold); border-radius: 50px;
    font-weight: 700; font-size: .95rem; cursor: pointer; transition: var(--transition);
    text-decoration: none;
}
.btn-primary-sc:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,169,97,.4); text-decoration: none; }
.btn-outline-sc {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 32px; background: transparent; color: var(--white);
    border: 2px solid rgba(255,255,255,.6); border-radius: 50px;
    font-weight: 600; font-size: .95rem; cursor: pointer; transition: var(--transition); text-decoration: none;
}
.btn-outline-sc:hover { background: var(--white); color: var(--navy); border-color: var(--white); transform: translateY(-2px); text-decoration: none; }
.btn-navy {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 32px; background: var(--navy); color: var(--white);
    border: 2px solid var(--navy); border-radius: 50px;
    font-weight: 600; font-size: .95rem; cursor: pointer; transition: var(--transition); text-decoration: none;
}
.btn-navy:hover { background: var(--navy-light); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); text-decoration: none; }

/* ---------- Navigation ---------- */
.sc-navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 0;
    transition: background .35s ease, box-shadow .35s ease;
    background: transparent;
    border-bottom: none;
}
/* Full-width inner row */
.sc-main-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 68px;
}
/* Logo hidden at top (transparent state) — slides in on scroll */
.sc-navbar .navbar-brand {
    display: flex;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-14px);
    transition: opacity .3s ease, transform .3s ease;
}
/* Links span full width when logo is hidden */
.sc-desktop-nav {
    display: flex; align-items: center; gap: 0;
    width: 61%; justify-content: space-evenly;
}

/* Scrolled — white bar, logo slides in, dark navy text */
.sc-navbar.scrolled {
    background: #fff;
    box-shadow: 0 2px 16px rgba(0,0,0,.10);
}
.sc-navbar.scrolled .navbar-brand { opacity: 1; pointer-events: auto; transform: translateX(0); }
.sc-navbar.scrolled .sc-desktop-nav { width: 61%; }
.sc-navbar.scrolled .sc-nav-link { color: var(--navy) !important; }
.sc-navbar.scrolled .sc-nav-link:hover { color: var(--gold) !important; }
.sc-navbar.scrolled .brand-logo { background: var(--gold); }
.sc-navbar.scrolled .brand-logo span { color: var(--navy); }
.sc-navbar.scrolled .brand-logo small { color: var(--navy); }
.sc-navbar.scrolled .brand-stack-line { color: var(--navy); }
.sc-navbar.scrolled .brand-stack-line.gold { color: var(--gold); }
.sc-navbar.scrolled .sc-nav-contact { border-color: rgba(10,37,64,.3) !important; }
.sc-navbar.scrolled .sc-nav-apply { background: var(--gold); color: var(--navy) !important; }
.sc-navbar.scrolled .lang-btn { border-color: rgba(10,37,64,.3); color: var(--navy) !important; }

/* Solid pages (About, Contact, etc.) — same as scrolled: white bar, logo visible */
.sc-navbar.solid {
    background: #fff;
    box-shadow: 0 2px 16px rgba(0,0,0,.10);
}
.sc-navbar.solid .navbar-brand { opacity: 1; pointer-events: auto; transform: translateX(0); }
.sc-navbar.solid .sc-desktop-nav { width: 61%; }
.sc-navbar.solid .sc-nav-link { color: var(--navy) !important; }
.sc-navbar.solid .sc-nav-link:hover { color: var(--gold) !important; }
.sc-navbar.solid .brand-logo { background: var(--gold); }
.sc-navbar.solid .brand-logo span { color: var(--navy); }
.sc-navbar.solid .brand-logo small { color: var(--navy); }
.sc-navbar.solid .brand-stack-line { color: var(--navy); }
.sc-navbar.solid .brand-stack-line.gold { color: var(--gold); }
.sc-navbar.solid .sc-nav-contact { border-color: rgba(10,37,64,.3) !important; }
.sc-navbar.solid .sc-nav-apply { background: var(--gold); color: var(--navy) !important; }
.sc-navbar.solid .lang-btn { border-color: rgba(10,37,64,.3); color: var(--navy) !important; }

/* Brand — GTU stacked style */
.sc-navbar .navbar-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-stack {
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 1px;
}
.brand-stack-line {
    font-family: 'Oswald', sans-serif;
    font-size: .68rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    line-height: 1.15;
}
.brand-stack-line.gold { color: var(--gold); }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    font-family: 'Oswald', 'Montserrat', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.brand-tagline {
    font-size: .48rem;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}
.brand-logo {
    width: 44px; height: 44px;
    background: var(--gold);
    border-radius: 3px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    flex-shrink: 0;
    gap: 1px;
}
.brand-logo span { color: var(--navy); font-size: 1.1rem; font-weight: 700; font-family: 'Oswald', sans-serif; line-height: 1; }
.brand-logo small { color: var(--navy); font-size: .32rem; font-weight: 700; font-family: 'Oswald', sans-serif; letter-spacing: 1.5px; text-transform: uppercase; }
/* (brand colors handled per-state above) */

/* Nav links — GTU reference style */
.sc-nav-link {
    color: rgba(255,255,255,.88) !important;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: .8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 14px !important;
    border-radius: 0;
    position: relative;
    background: transparent !important;
    transition: color .2s ease;
    line-height: 1;
    text-decoration: none;
}
.sc-nav-link::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 14px; right: 14px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform .2s ease;
    transform-origin: left;
}
.sc-nav-link:hover::after,
.sc-nav-link.active::after { transform: scaleX(1); }
.sc-nav-link:hover { color: var(--gold) !important; }
.sc-nav-link.active { color: var(--gold) !important; }

/* Contact — plain white link on transparent; border added on scrolled/solid */
.sc-nav-contact {
    border: none !important;
    padding: 4px 14px !important;
    margin-left: 0;
}
.sc-nav-contact:hover { border-color: transparent !important; }

/* Apply Now — plain white on transparent; gold button on scrolled/solid */
.sc-nav-apply {
    font-family: 'Oswald', sans-serif;
    font-size: .8rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,.88) !important;
    background: transparent;
    padding: 4px 14px;
    margin-left: 0;
    text-decoration: none !important;
    transition: color .2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
}
.sc-nav-apply::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 14px; right: 14px;
    height: 2px; background: var(--gold);
    transform: scaleX(0); transition: transform .2s ease; transform-origin: left;
}
.sc-nav-apply:hover { background: transparent; color: var(--gold) !important; transform: none; }
.sc-nav-apply:hover::after { transform: scaleX(1); }

/* Language toggle — plain on transparent; border on scrolled/solid */
.lang-btn {
    padding: 4px 14px;
    border: none;
    border-radius: 0;
    color: rgba(255,255,255,.88) !important;
    font-size: .8rem;
    font-weight: 400;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color .2s;
    margin-left: 0;
    text-decoration: none;
}
.lang-btn:hover { color: var(--gold) !important; }

/* Scrolled/solid — restore Contact border + Apply gold + lang border */
.sc-navbar.scrolled .sc-nav-contact,
.sc-navbar.solid .sc-nav-contact {
    padding: 7px 16px !important;
    margin-left: 4px;
}
.sc-navbar.scrolled .sc-nav-apply,
.sc-navbar.solid .sc-nav-apply {
    background: var(--gold);
    color: var(--navy) !important;
    padding: 10px 22px;
    margin-left: 10px;
}
.sc-navbar.scrolled .sc-nav-apply::after,
.sc-navbar.solid .sc-nav-apply::after { display: none; }
.sc-navbar.scrolled .sc-nav-apply:hover,
.sc-navbar.solid .sc-nav-apply:hover { background: var(--navy); color: #fff !important; transform: translateY(-1px); }
.sc-navbar.scrolled .lang-btn,
.sc-navbar.solid .lang-btn {
    border: 1px solid rgba(10,37,64,.3);
    color: var(--navy) !important;
    padding: 5px 12px;
    margin-left: 8px;
}
.sc-navbar.scrolled .lang-btn:hover,
.sc-navbar.solid .lang-btn:hover { background: var(--gold); color: var(--navy) !important; border-color: var(--gold); }
.sc-mobile-toggle {
    background: none;
    border: 1.5px solid rgba(255,255,255,.45);
    border-radius: 3px;
    padding: 7px 11px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.sc-toggle-icon { font-size: 1.1rem; color: #fff; transition: transform .25s ease; }
.sc-navbar.solid .sc-mobile-toggle,
.sc-navbar.scrolled .sc-mobile-toggle { border-color: rgba(10,37,64,.3); }
.sc-navbar.solid .sc-toggle-icon,
.sc-navbar.scrolled .sc-toggle-icon { color: var(--navy); }
/* Swap bars → X when menu is open */
.sc-mobile-toggle[aria-expanded="true"] .sc-toggle-icon::before { content: "\f00d"; }
.sc-mobile-toggle[aria-expanded="true"] .sc-toggle-icon { transform: rotate(90deg); }
/* ── Premium Mobile Drawer ── */
.sc-mobile-menu-body {
    background: var(--navy);
    padding: 24px 20px 28px;
    border-top: 2px solid var(--gold);
}
.sc-mm-eyebrow {
    font-family: 'Oswald', sans-serif;
    font-size: .55rem;
    letter-spacing: 5px;
    color: var(--gold);
    opacity: .7;
    margin-bottom: 12px;
}
.sc-mm-nav { display: flex; flex-direction: column; }
.sc-mm-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
    text-decoration: none;
    transition: all .2s ease;
}
.sc-mm-link:last-child { border-bottom: none; }
.sc-mm-num {
    font-family: 'Oswald', sans-serif;
    font-size: .6rem;
    color: var(--gold);
    opacity: .5;
    min-width: 20px;
    letter-spacing: 1px;
}
.sc-mm-label {
    font-family: 'Oswald', sans-serif;
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,.85);
    flex: 1;
    transition: color .2s;
}
.sc-mm-arrow {
    font-size: .65rem;
    color: var(--gold);
    opacity: 0;
    transform: translateX(-6px);
    transition: all .2s ease;
}
.sc-mm-link:hover .sc-mm-label { color: var(--gold); }
.sc-mm-link:hover .sc-mm-arrow { opacity: 1; transform: translateX(0); }
.sc-mm-link:hover .sc-mm-num { opacity: 1; }
.sc-mm-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.1);
}
.sc-mm-lang {
    font-family: 'Oswald', sans-serif;
    font-size: .7rem;
    letter-spacing: 2px;
    color: rgba(255,255,255,.6);
    border: 1px solid rgba(255,255,255,.2);
    padding: 8px 14px;
    text-transform: uppercase;
    transition: all .2s;
    text-decoration: none;
}
.sc-mm-lang:hover { color: var(--gold); border-color: var(--gold); }
.sc-mm-apply {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--gold);
    color: var(--navy) !important;
    font-family: 'Oswald', sans-serif;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 12px 20px;
    text-decoration: none;
    transition: opacity .2s;
}
.sc-mm-apply:hover { opacity: .88; }

/* ---------- Hero ---------- */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; background: linear-gradient(135deg,#0A2540 0%,#0D3060 50%,#152d55 100%); }
.hero::before { content: ''; position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat; opacity: .12; }
.hero-pattern { position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 80%,rgba(201,169,97,.08) 0%,transparent 50%),radial-gradient(circle at 80% 20%,rgba(201,169,97,.08) 0%,transparent 50%); }
.hero-content { position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 20px; background: rgba(201,169,97,.15); border: 1px solid rgba(201,169,97,.3); border-radius: 50px; color: var(--gold); font-size: .78rem; font-weight: 600; letter-spacing: .8px; text-transform: uppercase; margin-bottom: 24px; }
.hero h1 { font-size: clamp(2.2rem,5vw,3.8rem); color: var(--white); font-weight: 800; line-height: 1.15; margin-bottom: 12px; }
.hero h1 .gold { color: var(--gold); }
.hero-subtitle { font-size: clamp(1rem,2vw,1.1rem); color: rgba(255,255,255,.75); margin-bottom: 12px; max-width: 560px; }
.hero-zh { font-size: .92rem; color: rgba(201,169,97,.8); margin-bottom: 36px; font-family: 'Noto Sans SC',sans-serif; max-width: 560px; line-height: 1.7; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; margin-top: 60px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,.12); flex-wrap: wrap; }
.hero-stat .num { font-size: 2rem; font-weight: 800; color: var(--gold); line-height: 1; }
.hero-stat .label { font-size: .75rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .8px; margin-top: 4px; }
.hero-card-float { background: rgba(255,255,255,.1); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius); padding: 20px 24px; display: flex; align-items: center; gap: 14px; animation: float 3s ease-in-out infinite; }
.hero-card-float .icon { font-size: 2rem; }
.hero-card-float .text { color: var(--white); }
.hero-card-float .text strong { display: block; font-size: 1.1rem; font-weight: 700; }
.hero-card-float .text span { font-size: .78rem; opacity: .7; }
.card-float-1 { position: absolute; top: 10%; right: 30px; animation-delay: 0s; }
.card-float-2 { position: absolute; bottom: 15%; right: 30px; animation-delay: 1.5s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ---------- Intro ---------- */
.intro-card { background: var(--off-white); border-radius: var(--radius-lg); padding: 50px 40px; position: relative; overflow: hidden; }
.intro-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: var(--gold); }
.intro-en { font-size: 1.05rem; color: var(--text-body); line-height: 1.8; margin-bottom: 20px; }
.intro-zh { font-size: .98rem; color: var(--text-muted); font-family: 'Noto Sans SC',sans-serif; line-height: 1.9; }

/* ---------- Service Cards ---------- */
.service-card { background: var(--white); border-radius: var(--radius); padding: 36px 28px; border: 1.5px solid var(--light-gray); transition: var(--transition); text-align: center; height: 100%; }
.service-card:hover { border-color: var(--gold); transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-icon { width: 72px; height: 72px; border-radius: 18px; background: rgba(201,169,97,.1); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin: 0 auto 20px; transition: var(--transition); }
.service-card:hover .service-icon { background: var(--gold); transform: scale(1.1) rotate(-5deg); }
.service-card h4 { font-size: 1rem; color: var(--text-dark); margin-bottom: 10px; }
.service-card p { font-size: .88rem; color: var(--text-muted); line-height: 1.7; }

/* ---------- Stats ---------- */
.stats-section { background: var(--navy); padding: 80px 0; }
.stat-item { text-align: center; }
.stat-num { font-size: clamp(2.2rem,5vw,3.5rem); font-weight: 900; color: var(--gold); font-family: 'Poppins',sans-serif; line-height: 1; }
.stat-label { font-size: .82rem; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: 1.2px; margin-top: 8px; }

/* ---------- Job Cards ---------- */
.job-card { background: var(--white); border-radius: var(--radius); border: 1.5px solid var(--light-gray); padding: 28px; transition: var(--transition); position: relative; overflow: hidden; height: 100%; display: flex; flex-direction: column; }
.job-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.job-card-featured::before { content: 'Featured'; position: absolute; top: 16px; right: -28px; background: var(--gold); color: var(--navy); font-size: .68rem; font-weight: 700; padding: 3px 40px; transform: rotate(45deg); letter-spacing: .5px; }
.job-country-flag { font-size: 1.8rem; margin-bottom: 8px; }
.job-title { font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.job-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.job-tag { padding: 3px 12px; border-radius: 50px; font-size: .74rem; font-weight: 600; }
.job-tag-country { background: rgba(10,37,64,.08); color: var(--navy); }
.job-tag-cat { background: rgba(201,169,97,.15); color: var(--gold-dark); }
.job-salary { font-size: .9rem; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.job-salary-sub { font-size: .74rem; color: var(--text-muted); margin-bottom: 16px; }
.job-footer { margin-top: auto; display: flex; gap: 10px; align-items: center; justify-content: space-between; }
.job-deadline { font-size: .75rem; color: var(--text-muted); }
.job-vacancies { font-size: .75rem; color: var(--success); font-weight: 600; }
.btn-apply { padding: 8px 20px; background: var(--navy); color: var(--white); border-radius: 50px; font-size: .8rem; font-weight: 600; transition: var(--transition); border: 2px solid var(--navy); text-decoration: none; white-space: nowrap; }
.btn-apply:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); text-decoration: none; }

/* ---------- Testimonials ---------- */
.testimonial-card { background: var(--white); border-radius: var(--radius); padding: 36px; border: 1.5px solid var(--light-gray); position: relative; transition: var(--transition); height: 100%; }
.testimonial-card::before { content: '"'; position: absolute; top: 20px; left: 30px; font-size: 6rem; color: var(--gold); opacity: .15; font-family: Georgia,serif; line-height: 1; }
.testimonial-card:hover { box-shadow: var(--shadow-md); border-color: var(--gold); }
.testimonial-content { font-size: .92rem; color: var(--text-body); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar { width: 50px; height: 50px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; color: var(--gold); font-weight: 700; font-size: 1.1rem; flex-shrink: 0; }
.testimonial-name { font-weight: 700; font-size: .92rem; color: var(--text-dark); }
.testimonial-role { font-size: .76rem; color: var(--text-muted); }
.star-rating { color: var(--gold); font-size: .82rem; margin-bottom: 12px; }
.badge-worker { display: inline-flex; align-items: center; gap: 4px; padding: 2px 10px; border-radius: 50px; font-size: .68rem; font-weight: 700; background: rgba(46,184,138,.12); color: var(--success); margin-top: 4px; }
.badge-employer { display: inline-flex; align-items: center; gap: 4px; padding: 2px 10px; border-radius: 50px; font-size: .68rem; font-weight: 700; background: rgba(10,37,64,.08); color: var(--navy); margin-top: 4px; }

/* ---------- CTA Banner ---------- */
.cta-section { background: linear-gradient(135deg,var(--navy) 0%,var(--navy-light) 100%); padding: 80px 0; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; right: -100px; top: -100px; width: 400px; height: 400px; border: 1px solid rgba(201,169,97,.1); border-radius: 50%; }
.cta-section h2 { color: var(--white); }
.cta-section p { color: rgba(255,255,255,.75); }

/* ---------- Footer ---------- */
.sc-footer { background: #E8E8E8; color: #1a1a1a; padding: 0; }
.footer-info-band { padding: 60px 0; border-bottom: 1px solid #d0d0d0; }
.footer-section-title {
    font-family: 'Bebas Neue', 'Oswald', sans-serif;
    font-size: 2.25rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #1a1a1a;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid #1a1a1a;
    display: inline-block;
    line-height: 1;
}
.footer-info-text { font-family: 'Montserrat', sans-serif; font-weight: 300; font-size: .875rem; color: #444; line-height: 1.9; }
.footer-info-text a { color: #444; text-decoration: none; }
.footer-info-text a:hover { color: var(--gold); }
.footer-hours-row { display: flex; gap: 48px; flex-wrap: wrap; }

.footer-hours-label { font-size: .72rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: #1a1a1a; margin-bottom: 6px; font-family: 'Montserrat', sans-serif; }
.footer-hours-val { font-family: 'Montserrat', sans-serif; font-weight: 300; font-size: .875rem; color: #555; line-height: 1.8; }
.footer-social-band { background: #fff; padding: 48px 0 36px; text-align: center; }
.footer-follow-label {
    font-family: 'Bebas Neue', 'Oswald', sans-serif;
    font-size: 2.25rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #aaa;
    margin-bottom: 20px;
    line-height: 1;
}
.footer-social-icons { display: flex; justify-content: center; gap: 16px; margin-bottom: 28px; }
.footer-social-icon { width: 44px; height: 44px; border: 1.5px solid #1a1a1a; display: flex; align-items: center; justify-content: center; color: #1a1a1a; font-size: 1rem; transition: var(--transition); }
.footer-social-icon:hover { background: #1a1a1a; color: var(--white); transform: translateY(-2px); }
.footer-bottom-links { display: flex; justify-content: center; gap: 28px; margin-bottom: 20px; }
.footer-bottom-link { font-size: .7rem; letter-spacing: 1.5px; text-transform: uppercase; color: #888; font-family: 'Montserrat', sans-serif; transition: var(--transition); }
.footer-bottom-link:hover { color: #1a1a1a; }
.footer-copyright { font-size: .72rem; color: #aaa; letter-spacing: .5px; font-family: 'Montserrat', sans-serif; }
.social-links { display: flex; gap: 10px; margin-top: 20px; }
.social-link { width: 38px; height: 38px; border: 1.5px solid rgba(255,255,255,.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.6); font-size: .9rem; transition: var(--transition); }
.social-link:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); transform: translateY(-3px); }

/* ---------- WhatsApp Float ---------- */
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; z-index: 999; display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.whatsapp-btn { width: 60px; height: 60px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; box-shadow: 0 8px 24px rgba(37,211,102,.4); transition: var(--transition); animation: pulse-green 2.5s infinite; }
.whatsapp-btn:hover { transform: scale(1.1); }
.whatsapp-tooltip { background: var(--white); padding: 6px 14px; border-radius: 50px; font-size: .76rem; font-weight: 600; color: var(--text-dark); box-shadow: var(--shadow-md); white-space: nowrap; opacity: 0; transform: translateX(10px); transition: var(--transition); pointer-events: none; }
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; transform: translateX(0); }
@keyframes pulse-green { 0%,100% { box-shadow: 0 8px 24px rgba(37,211,102,.4); } 50% { box-shadow: 0 8px 24px rgba(37,211,102,.7),0 0 0 10px rgba(37,211,102,.08); } }

/* ---------- Page Hero (inner pages) ---------- */
/* ── Shared page hero (About, Apply, etc.) ── */
.page-hero {
    background: linear-gradient(135deg,var(--navy) 0%,var(--navy-light) 100%);
    padding: 140px 0 70px;
    position: relative; overflow: hidden;
}
.page-hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at right,rgba(201,169,97,.1) 0%,transparent 65%);
}
.page-hero::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px; background: linear-gradient(to right, var(--gold) 0%, transparent 60%);
}
/* animated line decoration */
.page-hero-line {
    width: 50px; height: 3px; background: var(--gold); margin-bottom: 18px;
    animation: phLineGrow .6s ease .15s both;
    transform-origin: left;
}
@keyframes phLineGrow { from{transform:scaleX(0)} to{transform:scaleX(1)} }
.page-hero h1 {
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.2rem,5vw,4rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: phSlideUp .75s cubic-bezier(.22,1,.36,1) .25s both;
}
.page-hero p {
    color: rgba(255,255,255,.65);
    max-width: 500px;
    animation: phSlideUp .75s cubic-bezier(.22,1,.36,1) .42s both;
}
.page-hero .breadcrumb {
    animation: phFade .6s ease .05s both;
}
@keyframes phSlideUp { from{opacity:0;transform:translateY(36px)} to{opacity:1;transform:none} }
@keyframes phFade    { from{opacity:0} to{opacity:1} }
.breadcrumb { background: transparent; padding: 0; margin: 0 0 16px; flex-wrap: nowrap; align-items: center; }
.breadcrumb-item { white-space: nowrap; }
.breadcrumb-item a { color: rgba(255,255,255,.5); font-size: .8rem; }
.breadcrumb-item a:hover { color: var(--gold); }
.breadcrumb-item.active { color: var(--gold); font-size: .8rem; }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.3); }

/* ---------- About / Values ---------- */
.value-card { background: var(--off-white); border-radius: var(--radius); padding: 30px 24px; text-align: center; border: 1.5px solid var(--light-gray); transition: var(--transition); }
.value-card:hover { border-color: var(--gold); background: var(--white); box-shadow: var(--shadow-sm); }
.value-icon { font-size: 2.5rem; margin-bottom: 16px; }
.value-card h4 { font-size: 1rem; color: var(--text-dark); margin-bottom: 8px; }
.value-card p { font-size: .86rem; color: var(--text-muted); }
.timeline { position: relative; padding-left: 30px; }
.timeline::before { content: ''; position: absolute; left: 8px; top: 0; bottom: 0; width: 2px; background: var(--gold); opacity: .3; }
.timeline-item { position: relative; padding-bottom: 32px; }
.timeline-dot { position: absolute; left: -26px; top: 6px; width: 14px; height: 14px; background: var(--gold); border-radius: 50%; border: 3px solid var(--white); box-shadow: 0 0 0 2px var(--gold); }
.timeline-year { font-size: .75rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: .8px; margin-bottom: 4px; }
.timeline-title { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.timeline-desc { font-size: .86rem; color: var(--text-muted); }

/* ---------- Services Process ---------- */
.process-step { text-align: center; position: relative; padding: 0 10px; }
.process-icon-wrap { width: 80px; height: 80px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin: 0 auto 16px; position: relative; transition: var(--transition); }
.process-icon-wrap:hover { background: var(--gold); transform: scale(1.1); }
.process-step-num { position: absolute; top: -5px; right: -5px; width: 24px; height: 24px; background: var(--gold); color: var(--navy); border-radius: 50%; font-size: .7rem; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.process-arrow { position: absolute; top: 40px; right: -20px; font-size: 1.4rem; color: var(--gold); opacity: .5; }
.process-step h5 { font-size: .92rem; color: var(--text-dark); font-weight: 700; margin-bottom: 6px; }
.process-step p { font-size: .8rem; color: var(--text-muted); }
.service-track-card { background: var(--white); border-radius: var(--radius-lg); border: 1.5px solid var(--light-gray); padding: 40px 36px; transition: var(--transition); }
.service-track-card:hover { border-color: var(--gold); box-shadow: var(--shadow-lg); }
.service-track-icon { font-size: 3rem; margin-bottom: 16px; }
.service-track-card h3 { font-size: 1.4rem; color: var(--text-dark); margin-bottom: 20px; }
.service-list { list-style: none; padding: 0; }
.service-list li { padding: 12px 0; border-bottom: 1px solid var(--light-gray); display: flex; align-items: center; gap: 12px; font-size: .92rem; color: var(--text-body); }
.service-list li:last-child { border-bottom: none; }
.service-list li::before { content: '✓'; background: var(--gold); color: var(--navy); width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .7rem; font-weight: 800; flex-shrink: 0; }

/* ---------- Filters ---------- */
.filter-bar { background: var(--white); border: 1.5px solid var(--light-gray); border-radius: var(--radius); padding: 24px; margin-bottom: 32px; box-shadow: var(--shadow-sm); }
.filter-bar .form-select,.filter-bar .form-control { border: 1.5px solid var(--light-gray); border-radius: var(--radius-sm); color: var(--text-dark); padding: 10px 16px; font-size: .9rem; transition: var(--transition); }
.filter-bar .form-select:focus,.filter-bar .form-control:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,169,97,.15); outline: none; }

/* ---------- Contact ---------- */
/* ── Contact Page (reference style) ── */
.contact-info-band { background: #E8E8E8; padding: 72px 0; }
.contact-hours-band { background: #fff; padding: 72px 0; border-top: 1px solid #d8d8d8; }
.contact-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #1a1a1a;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #1a1a1a;
    display: inline-block;
}
.contact-data-row { display: flex; flex-direction: column; gap: 0; }
.contact-data-item { display: flex; align-items: flex-start; gap: 0; padding: 14px 0; border-bottom: 1px solid #d0d0d0; }
.contact-data-item:last-child { border-bottom: none; }
.contact-data-label { font-family: 'Montserrat', sans-serif; font-size: .62rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: #888; width: 120px; flex-shrink: 0; padding-top: 2px; }
.contact-data-value { font-size: .9rem; color: #1a1a1a; line-height: 1.7; }
.contact-data-value a { color: #1a1a1a; text-decoration: none; border-bottom: 1px solid transparent; transition: border-color .2s; }
.contact-data-value a:hover { border-bottom-color: var(--gold); color: var(--gold); }
.contact-hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-hours-block .ch-label { font-family: 'Montserrat', sans-serif; font-size: .62rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #888; margin-bottom: 10px; }
.contact-hours-block .ch-value { font-size: .95rem; color: #1a1a1a; line-height: 1.9; }
/* legacy — kept for other uses */
.contact-info-item { display: flex; gap: 16px; padding: 14px 0; border-bottom: 1px solid #d8d8d8; }
.contact-info-item:last-of-type { border-bottom: none; }
.contact-icon { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1.1rem; flex-shrink: 0; }
.contact-detail h5 { font-size: .72rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: #888; margin-bottom: 2px; font-family: 'Montserrat', sans-serif; }
.contact-detail span,.contact-detail a { font-size: .9rem; color: #1a1a1a; }

/* ---------- Forms ---------- */
.sc-form .form-label { font-weight: 600; font-size: .86rem; color: var(--text-dark); margin-bottom: 6px; }
.sc-form .form-control,.sc-form .form-select { border: 1.5px solid var(--light-gray); border-radius: var(--radius-sm); padding: 12px 16px; font-size: .9rem; color: var(--text-dark); transition: var(--transition); background: var(--off-white); }
.sc-form .form-control:focus,.sc-form .form-select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,169,97,.15); background: var(--white); outline: none; }
.sc-form .form-control::placeholder { color: var(--text-muted); }
.upload-area { border: 2px dashed var(--medium-gray); border-radius: var(--radius-sm); padding: 30px; text-align: center; cursor: pointer; transition: var(--transition); background: var(--off-white); }
.upload-area:hover,.upload-area.dragover { border-color: var(--gold); background: rgba(201,169,97,.05); }
.upload-icon { font-size: 2.5rem; color: var(--medium-gray); margin-bottom: 8px; }
.upload-text { font-size: .86rem; color: var(--text-muted); }
.required-star { color: var(--danger); }

/* ---------- Blog ---------- */
.blog-card { background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1.5px solid var(--light-gray); transition: var(--transition); height: 100%; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.blog-img { height: 200px; background: linear-gradient(135deg,var(--navy) 0%,var(--navy-light) 100%); display: flex; align-items: center; justify-content: center; font-size: 3rem; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-cat { display: inline-block; padding: 3px 12px; background: rgba(201,169,97,.12); color: var(--gold-dark); border-radius: 50px; font-size: .7rem; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; margin-bottom: 12px; }
.blog-title { font-size: .98rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; line-height: 1.4; }
.blog-excerpt { font-size: .84rem; color: var(--text-muted); line-height: 1.7; flex: 1; }
.blog-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--light-gray); }
.blog-date { font-size: .74rem; color: var(--text-muted); }
.blog-read-more { font-size: .8rem; color: var(--navy); font-weight: 600; display: flex; align-items: center; gap: 4px; }
.blog-read-more:hover { color: var(--gold); }

/* ---------- Admin ---------- */
.admin-sidebar { background: var(--navy); min-height: 100vh; width: 260px; position: fixed; left: 0; top: 0; bottom: 0; overflow-y: auto; z-index: 100; }
.admin-main { margin-left: 260px; min-height: 100vh; background: var(--off-white); }
.admin-header { background: var(--white); padding: 16px 32px; border-bottom: 1px solid var(--light-gray); display: flex; align-items: center; justify-content: space-between; }
.admin-header h4 { color: var(--text-dark); font-size: 1.05rem; margin: 0; }
.admin-content { padding: 32px; }
.admin-sidebar-brand { padding: 28px 24px; border-bottom: 1px solid rgba(255,255,255,.08); }
.admin-sidebar-brand .b-name { font-size: .95rem; font-weight: 700; color: var(--white); }
.admin-sidebar-brand .b-sub { font-size: .68rem; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }
.admin-nav-label { font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,.3); padding: 12px 24px 6px; }
.admin-nav-link { display: flex; align-items: center; gap: 12px; padding: 11px 24px; color: rgba(255,255,255,.65); font-size: .86rem; font-weight: 500; transition: var(--transition); text-decoration: none; }
.admin-nav-link i { font-size: .95rem; width: 18px; text-align: center; }
.admin-nav-link:hover,.admin-nav-link.active { color: var(--white); background: rgba(201,169,97,.12); border-right: 3px solid var(--gold); text-decoration: none; }
.admin-stat-card { background: var(--white); border-radius: var(--radius); padding: 24px; border: 1.5px solid var(--light-gray); display: flex; align-items: center; gap: 20px; transition: var(--transition); }
.admin-stat-card:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.admin-stat-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; }
.icon-navy { background: rgba(10,37,64,.08); color: var(--navy); }
.icon-gold { background: rgba(201,169,97,.12); color: var(--gold-dark); }
.icon-green { background: rgba(46,184,138,.1); color: var(--success); }
.icon-blue { background: rgba(59,130,246,.1); color: #3B82F6; }
.admin-stat-num { font-size: 1.8rem; font-weight: 800; color: var(--text-dark); line-height: 1; }
.admin-stat-label { font-size: .78rem; color: var(--text-muted); margin-top: 2px; }
/* Admin search bar */
.admin-search-bar { background: var(--white); border: 1.5px solid var(--light-gray); border-radius: var(--radius); padding: 14px 16px; }
.admin-search-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.admin-search-input-wrap { position: relative; flex: 1; min-width: 200px; }
.admin-search-icon { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--text-muted); font-size: .8rem; pointer-events: none; }
.admin-search-input { width: 100%; padding: 8px 12px 8px 34px; border: 1.5px solid var(--light-gray); border-radius: 8px; font-size: .85rem; color: var(--text-dark); font-family: 'Inter', sans-serif; outline: none; transition: border-color .2s; background: var(--off-white); }
.admin-search-input:focus { border-color: var(--navy); background: #fff; }
.admin-search-input::placeholder { color: var(--text-muted); }
.admin-filter-select { padding: 8px 12px; border: 1.5px solid var(--light-gray); border-radius: 8px; font-size: .85rem; color: var(--text-dark); font-family: 'Inter', sans-serif; background: var(--off-white); outline: none; cursor: pointer; transition: border-color .2s; }
.admin-filter-select:focus { border-color: var(--navy); }
.admin-search-btn { padding: 8px 18px; background: var(--navy); color: #fff; border: none; border-radius: 8px; font-size: .82rem; font-weight: 600; cursor: pointer; display: inline-flex; align-items: center; gap: 6px; transition: background .2s; white-space: nowrap; }
.admin-search-btn:hover { background: var(--navy-light); }
.admin-clear-btn { padding: 8px 14px; background: var(--off-white); color: var(--text-muted); border: 1.5px solid var(--light-gray); border-radius: 8px; font-size: .82rem; font-weight: 500; cursor: pointer; display: inline-flex; align-items: center; gap: 6px; text-decoration: none; transition: all .2s; white-space: nowrap; }
.admin-clear-btn:hover { background: rgba(229,62,62,.08); border-color: rgba(229,62,62,.3); color: #E53E3E; }

.admin-table { background: var(--white); border-radius: var(--radius); border: 1.5px solid var(--light-gray); overflow: hidden; }
.admin-table .table { margin: 0; }
.admin-table .table thead th { background: var(--off-white); border-bottom: 1.5px solid var(--light-gray); color: var(--text-muted); font-size: .75rem; text-transform: uppercase; letter-spacing: .8px; font-weight: 700; padding: 14px 16px; }
.admin-table .table tbody td { padding: 14px 16px; font-size: .86rem; color: var(--text-body); vertical-align: middle; border-bottom: 1px solid var(--light-gray); }
.admin-table .table tbody tr:hover { background: var(--off-white); }
.admin-table .table tbody tr:last-child td { border-bottom: none; }
.status-badge { padding: 3px 12px; border-radius: 50px; font-size: .7rem; font-weight: 700; text-transform: capitalize; }
.status-new { background: rgba(59,130,246,.1); color: #3B82F6; }
.status-reviewed { background: rgba(201,169,97,.12); color: var(--gold-dark); }
.status-shortlisted { background: rgba(46,184,138,.1); color: var(--success); }
.status-deployed { background: rgba(10,37,64,.08); color: var(--navy); }
.status-rejected { background: rgba(229,62,62,.08); color: var(--danger); }
.status-active { background: rgba(46,184,138,.1); color: var(--success); }
.status-inactive { background: rgba(229,62,62,.08); color: var(--danger); }

/* ---------- Partners ---------- */
.partner-card { background: var(--white); border: 1.5px solid var(--light-gray); border-radius: var(--radius-sm); padding: 24px; display: flex; align-items: center; justify-content: center; height: 90px; transition: var(--transition); }
.partner-card:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }

/* ---------- Alerts ---------- */
.alert-success-sc { background: rgba(46,184,138,.1); border: 1.5px solid rgba(46,184,138,.3); color: #1a6b50; border-radius: var(--radius-sm); padding: 16px 20px; font-size: .9rem; display: flex; align-items: center; gap: 10px; }
.alert-error-sc { background: rgba(229,62,62,.08); border: 1.5px solid rgba(229,62,62,.2); color: #9b2626; border-radius: var(--radius-sm); padding: 16px 20px; font-size: .9rem; }

/* ---------- Cookie Banner ---------- */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999; background: rgba(10,37,64,.97); backdrop-filter: blur(12px); padding: 18px 24px; display: flex; align-items: center; gap: 20px; box-shadow: 0 -4px 20px rgba(0,0,0,.2); transition: transform .4s ease; }
.cookie-banner.hidden { transform: translateY(100%); }
.cookie-banner p { color: rgba(255,255,255,.8); font-size: .82rem; margin: 0; flex: 1; }
.cookie-banner a { color: var(--gold); }

/* ---------- Animations ---------- */
/* ── Global scroll animations ── */
.fade-in-up    { opacity:0; transform:translateY(44px);   transition:opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1); }
.fade-in-left  { opacity:0; transform:translateX(-44px);  transition:opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1); }
.fade-in-right { opacity:0; transform:translateX(44px);   transition:opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1); }
.fade-in-scale { opacity:0; transform:scale(.92);         transition:opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1); }
.fade-in-up.visible,.fade-in-left.visible,.fade-in-right.visible,.fade-in-scale.visible { opacity:1; transform:none; }
.delay-1 { transition-delay:.12s; }
.delay-2 { transition-delay:.24s; }
.delay-3 { transition-delay:.36s; }
.delay-4 { transition-delay:.48s; }
.delay-5 { transition-delay:.60s; }
.delay-6 { transition-delay:.72s; }

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
    .section-pad { padding: 70px 0; }
    .hero { min-height: 85vh; }
    .hero-stats { gap: 24px; }
    .card-float-1,.card-float-2 { display: none; }
    .admin-sidebar { width: 100%; min-height: auto; position: relative; }
    .admin-main { margin-left: 0; }
}
@media (max-width: 768px) {
    .section-pad { padding: 56px 0; }
    .hero h1 { font-size: 1.9rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn-primary-sc,.hero-actions .btn-outline-sc { justify-content: center; }
    .whatsapp-float { bottom: 20px; right: 20px; }
    .cta-section h2 { font-size: 1.6rem; }
    .cookie-banner { flex-direction: column; text-align: center; }
    .process-arrow { display: none; }
    .intro-card { padding: 30px 24px; }
}
@media (max-width: 576px) {
    .section-pad { padding: 48px 0; }
    .section-header h2 { font-size: 1.6rem; }
    .sc-footer { padding: 60px 0 24px; }
    .hero-stats { gap: 16px; }
    .hero-stat .num { font-size: 1.5rem; }
}
