/* ============================================================
   WORKPASS PTE LTD — DESIGN SYSTEM
   Fonts: Syne (headings) + DM Sans (body)
   ============================================================ */

:root {
    --primary:      #0a192f;
    --primary-mid:  #112240;
    --accent:       #2563eb;
    --accent-light: #3b82f6;
    --accent-glow:  rgba(37, 99, 235, 0.25);
    --text-dark:    #1e293b;
    --text-muted:   #64748b;
    --bg-light:     #f8fafc;
    --bg-mid:       #f1f5f9;
    --white:        #ffffff;
    --border:       #e2e8f0;
    --success:      #10b981;
    --transition:   all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.8;
    overflow-x: hidden;
}
.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
h1, h2, h3, h4, h5 { font-family: 'Syne', sans-serif; }

/* ---- REVEAL ANIMATIONS ---- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.reveal.active { opacity: 1; transform: translateY(0); }

/* Hero staggered reveals */
.reveal-hero { opacity: 0; transform: translateY(30px); animation: heroReveal 0.9s cubic-bezier(0.23,1,0.32,1) forwards; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
@keyframes heroReveal {
    to { opacity: 1; transform: translateY(0); }
}

/* ---- TOP ANNOUNCEMENT ---- */
.top-announcement {
    background: var(--primary);
    color: white;
    padding: 11px 0;
    overflow: hidden;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-family: 'DM Sans', sans-serif;
}
.announcement-ticker {
    display: flex;
    white-space: nowrap;
    animation: ticker 35s linear infinite;
}
.announcement-ticker span { padding-right: 60px; }
@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ---- HEADER ---- */
header {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s;
}
header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.08); }
.nav-wrapper { display: flex; justify-content: space-between; align-items: center; }
.logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    letter-spacing: -0.5px;
}
.header-logo { height: 40px; width: auto; }
nav { display: flex; align-items: center; gap: 10px; }
.nav-links { display: flex; list-style: none; align-items: center; }
.nav-links li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 14px;
    margin-left: 2rem;
    transition: color 0.3s;
    position: relative;
}
.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
}
.nav-links li a:hover::after, .nav-links li a.active::after { width: 100%; }
.nav-links li a:hover { color: var(--accent); }
.nav-cta {
    background: var(--accent) !important;
    color: white !important;
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 700 !important;
    font-size: 14px !important;
    transition: var(--transition) !important;
    margin-left: 2rem !important;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 20px var(--accent-glow); }
.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--primary); border-radius: 2px; transition: 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid var(--border);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    padding: 20px 28px 30px;
    z-index: 999;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; }
.mobile-menu ul li { border-bottom: 1px solid var(--border); }
.mobile-menu ul li a {
    display: block;
    padding: 14px 0;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 15px;
    transition: color 0.2s;
}
.mobile-menu ul li a:hover { color: var(--accent); }

/* ---- HERO ---- */
.hero {
    min-height: 88vh;
    background:
        linear-gradient(rgba(10, 25, 47, 0.82), rgba(10, 25, 47, 0.75)),
        url('herobackground.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}
.hero-content { position: relative; z-index: 2; padding: 100px 0 80px; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 32px;
    color: #93c5fd;
}
.badge-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--accent-light);
    box-shadow: 0 0 8px var(--accent-light);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 6px var(--accent-light); }
    50% { box-shadow: 0 0 16px var(--accent-light), 0 0 30px rgba(96,165,250,0.4); }
}
.hero h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 1.6rem;
    letter-spacing: -2px;
}
.hero-accent { color: #60a5fa; }
.hero p {
    font-size: clamp(1rem, 1.6vw, 1.25rem);
    color: #cbd5e1;
    margin-bottom: 2.8rem;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    line-height: 1.8;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 50px; }
.main-cta-btn {
    background: var(--accent);
    color: white;
    text-decoration: none;
    padding: 16px 36px;
    border-radius: 8px;
    font-weight: 700;
    font-family: 'Syne', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    font-size: 15px;
}
.main-cta-btn:hover { transform: translateY(-3px); box-shadow: 0 16px 40px var(--accent-glow); }
.secondary-btn {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.4);
    color: white;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition);
    font-size: 15px;
}
.secondary-btn:hover { background: rgba(255,255,255,0.1); border-color: white; }

/* FIXED STAT PILL CSS */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.stat-pill { text-align: center; }
.stat-pill strong { 
    display: block; 
    font-family: 'Syne', sans-serif; 
    font-size: 1.5rem; 
    font-weight: 800; 
    color: white; 
    min-width: 100px;              /* Ensures space for count-up */
    text-align: center;            /* Keeps numbers aligned */
    font-variant-numeric: tabular-nums; /* Prevents text "jitter" */
}
.stat-pill span { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: #94a3b8; font-weight: 600; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }

.hero-scroll-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
    0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ---- SECTION LAYOUTS ---- */
.white-section {
    background: white;
    padding: 110px 0;
    background-image: radial-gradient(#e2e8f0 1px, transparent 1px);
    background-size: 32px 32px;
}
.expertise-section {
    background: var(--bg-mid);
    padding: 110px 0;
    background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
    background-size: 40px 40px;
}
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -1px;
}
.section-header p { color: var(--text-muted); margin-top: 12px; font-size: 1.05rem; }
.header-line { width: 56px; height: 5px; background: var(--accent); margin: 18px auto 0; border-radius: 10px; }
.sub-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    background: rgba(37,99,235,0.08);
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 14px;
}
.sub-label.centered { display: block; text-align: center; width: fit-content; margin: 0 auto 14px; }
.sub-label.light { color: #93c5fd; background: rgba(147,197,253,0.12); }

/* ---- COMPASS BANNER ---- */
.compass-banner { background: var(--primary); padding: 0; }
.compass-banner-inner {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 48px 60px;
    flex-wrap: wrap;
}
.compass-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(37,99,235,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.compass-icon-wrap i { font-size: 1.8rem; color: #60a5fa; }
.compass-text { flex: 1; min-width: 200px; }
.compass-text h3 { font-size: 1.2rem; color: white; margin-bottom: 8px; font-family: 'Syne', sans-serif; }
.compass-text p { color: #94a3b8; font-size: 0.92rem; line-height: 1.7; }
.compass-learn-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
    transition: var(--transition);
    flex-shrink: 0;
}
.compass-learn-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px var(--accent-glow); }

/* ---- INTRO GRID ---- */
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.visual-container { position: relative; }
.card-image {
    width: 100%;
    border-radius: 16px;
    display: block;
    box-shadow: 0 30px 80px rgba(0,0,0,0.12);
    aspect-ratio: 4/3;
    object-fit: cover;
}
.img-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--accent);
    color: white;
    border-radius: 12px;
    padding: 16px 24px;
    text-align: center;
    box-shadow: 0 10px 30px var(--accent-glow);
}
.img-badge strong { display: block; font-family: 'Syne', sans-serif; font-size: 1.6rem; font-weight: 800; }
.img-badge span { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; opacity: 0.85; }
.text-block {}
.section-title { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; color: var(--primary); line-height: 1.25; margin-bottom: 18px; letter-spacing: -0.5px; }
.text-block p { color: var(--text-muted); margin-bottom: 16px; font-size: 0.97rem; }
.text-features { margin: 28px 0; display: flex; flex-direction: column; gap: 12px; }
.text-feature { display: flex; align-items: flex-start; gap: 10px; font-size: 0.93rem; font-weight: 500; color: var(--text-dark); }
.text-feature i { color: var(--accent); margin-top: 3px; flex-shrink: 0; }
.inline-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    padding-bottom: 2px;
    border-bottom: 2px solid var(--accent);
    transition: gap 0.3s;
}
.inline-cta:hover { gap: 14px; }

/* ---- SERVICE CARDS ---- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: white;
    padding: 44px 36px;
    border-radius: 12px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}
.service-card:hover { transform: translateY(-10px); box-shadow: 0 30px 70px rgba(0,0,0,0.1); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 56px; height: 56px;
    border-radius: 12px;
    background: rgba(37,99,235,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}
.service-icon i { font-size: 1.4rem; color: var(--accent); }
.service-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--primary); margin-bottom: 12px; }
.service-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 18px; }
.service-list { list-style: none; margin-bottom: 24px; display: flex; flex-direction: column; gap: 8px; }
.service-list li { font-size: 0.85rem; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }
.service-list li::before { content: '→'; color: var(--accent); font-weight: 700; }
.service-link { margin-top: auto; display: inline-flex; align-items: center; gap: 6px; color: var(--accent); font-weight: 700; font-size: 13px; text-decoration: none; transition: gap 0.3s; }
.service-link:hover { gap: 12px; }

/* ---- WHY US GRID ---- */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.why-card {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 40px 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.why-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.08); border-color: var(--accent-light); }
.why-num {
    font-family: 'Syne', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(37,99,235,0.08);
    line-height: 1;
    margin-bottom: 12px;
    transition: color 0.3s;
}
.why-card:hover .why-num { color: rgba(37,99,235,0.15); }
.why-card h4 { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.why-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

/* ---- COMPASS SECTION ---- */
.compass-section {
    background: var(--primary);
    padding: 110px 0;
    position: relative;
    overflow: hidden;
}
.compass-section::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37,99,235,0.15), transparent 70%);
}
.compass-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.compass-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 36px 28px;
    transition: var(--transition);
}
.compass-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(37,99,235,0.5); transform: translateY(-6px); }
.compass-card.bonus { border-color: rgba(37,99,235,0.25); background: rgba(37,99,235,0.06); }
.compass-letter {
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-light);
    margin-bottom: 12px;
}
.bonus-letter { color: #f59e0b; }
.compass-card h4 { font-size: 1rem; font-weight: 700; color: white; margin-bottom: 10px; }
.compass-card p { font-size: 0.88rem; color: #94a3b8; line-height: 1.7; margin-bottom: 18px; }
.compass-max { font-size: 12px; font-weight: 700; color: var(--accent-light); text-transform: uppercase; letter-spacing: 1px; }
.compass-card.bonus .compass-max { color: #f59e0b; }

.compass-threshold-bar {
    margin-top: 48px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 32px 40px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.threshold-label { color: #94a3b8; font-size: 13px; font-weight: 600; white-space: nowrap; }
.threshold-track {
    flex: 1;
    height: 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 100px;
    position: relative;
    min-width: 200px;
}
.threshold-fill {
    height: 100%;
    border-radius: 100px;
    background: linear-gradient(90deg, var(--accent), #60a5fa);
    position: relative;
    animation: fillBar 2s ease forwards;
}
@keyframes fillBar { from { width: 0; } }
.threshold-marker {
    position: absolute;
    top: 50%;
    left: 40%;
    transform: translate(-50%, -50%);
}
.threshold-marker span {
    background: var(--accent);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
    white-space: nowrap;
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
}
.threshold-max { color: #64748b; font-size: 13px; white-space: nowrap; }

/* ---- SALARY THRESHOLDS TABLE ---- */
.threshold-table-wrap { overflow-x: auto; }
.threshold-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    font-size: 0.9rem;
}
.threshold-table thead { background: var(--primary); }
.threshold-table thead th { color: white; padding: 18px 24px; text-align: left; font-family: 'Syne', sans-serif; font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px; }
.threshold-table tbody tr { border-bottom: 1px solid var(--border); transition: background 0.2s; }
.threshold-table tbody tr:last-child { border-bottom: none; }
.threshold-table tbody tr:hover { background: #f0f6ff; }
.threshold-table td { padding: 18px 24px; color: var(--text-dark); vertical-align: middle; }
.pass-tag {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 8px;
}
.pass-tag.ep { background: #dbeafe; color: #1d4ed8; }
.pass-tag.sp { background: #d1fae5; color: #065f46; }
.pass-tag.wp { background: #fef3c7; color: #92400e; }
.pass-tag.one { background: #f3e8ff; color: #6b21a8; }
.pass-tag.dp { background: #fce7f3; color: #9d174d; }
.pass-tag.ltvp { background: #fee2e2; color: #991b1b; }
.pass-tag.loc { background: #f0fdf4; color: #166534; }
.updated-tag { display: inline-block; background: #dcfce7; color: #166534; font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 100px; margin-left: 6px; vertical-align: middle; }
.table-note { margin-top: 18px; color: var(--text-muted); font-size: 13px; display: flex; align-items: flex-start; gap: 8px; }
.table-note i { color: var(--accent); flex-shrink: 0; margin-top: 2px; }

/* ---- ACCORDION ---- */
.accordion { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; background: white; }
.acc-item { border-bottom: 1px solid var(--border); }
.acc-item:last-child { border-bottom: none; }
.acc-header {
    padding: 26px 32px;
    cursor: pointer;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
    font-family: 'Syne', sans-serif;
}
.acc-header:hover { background: #f8fafc; color: var(--accent); }
.acc-header.open { background: #f0f6ff; color: var(--accent); }
.acc-title { display: flex; align-items: center; gap: 10px; font-size: 1rem; }
.acc-header i { color: var(--accent); transition: transform 0.3s; }
.acc-header.open i { transform: rotate(45deg); }
.acc-content {
    display: none;
    padding: 28px 32px 32px;
    background: #fafbfc;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.93rem;
    line-height: 1.9;
}
.acc-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent);
    font-weight: 700;
    text-decoration: none;
    font-size: 13px;
    margin-top: 16px;
    transition: gap 0.3s;
}
.acc-cta:hover { gap: 12px; }

/* ---- SLIDER ---- */
.slider-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,0.12);
    max-width: 960px;
    margin: 0 auto;
    position: relative;
}
.slider-track { display: flex; transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1); }
.slide { position: relative; min-width: 100%; }
.slide img { width: 100%; height: 460px; object-fit: cover; display: block; }
.slide-overlay { }
.slide-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(10,25,47,0.85));
    padding: 50px 40px 30px;
    color: white;
}
.slide-caption strong { display: block; font-family: 'Syne', sans-serif; font-size: 1.2rem; font-weight: 700; margin-bottom: 6px; }
.slide-caption span { font-size: 13px; color: #94a3b8; }
.slider-controls {
    position: absolute;
    bottom: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.slider-controls button {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    width: 44px; height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 13px;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-controls button:hover { background: var(--accent); border-color: var(--accent); }
.slide-dots { display: flex; gap: 8px; align-items: center; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.3); cursor: pointer; transition: 0.3s; }
.dot.active { background: white; width: 22px; border-radius: 100px; }

/* ---- NEWS GRID ---- */
.news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.news-card {
    background: white;
    padding: 36px;
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
.news-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--border);
    transition: background 0.3s;
}
.news-card:hover::before { background: var(--accent); }
.news-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(0,0,0,0.1); }
.news-card.featured-news { border-color: var(--accent-light); grid-row: span 1; }
.news-label {
    display: inline-block;
    background: var(--accent);
    color: white;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px 10px;
    border-radius: 100px;
    margin-bottom: 12px;
    width: fit-content;
}
.news-date { color: var(--text-muted); font-size: 12px; margin-bottom: 14px; display: flex; align-items: center; gap: 6px; }
.news-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--primary); margin-bottom: 12px; line-height: 1.4; }
.news-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.75; flex: 1; }
.read-more {
    text-decoration: none;
    font-weight: 700;
    color: var(--accent);
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    transition: gap 0.3s;
}
.read-more:hover { gap: 12px; }

/* ---- CONTACT SECTION ---- */
.contact-section {
    background: var(--primary);
    padding: 110px 0;
    position: relative;
    overflow: hidden;
}
.contact-section::before {
    content: '';
    position: absolute;
    bottom: -200px; left: -200px;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37,99,235,0.12), transparent 70%);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}
.contact-info h2 { font-size: 2.4rem; font-weight: 800; color: white; margin: 12px 0 20px; letter-spacing: -1px; }
.contact-info > p { color: #94a3b8; font-size: 0.95rem; line-height: 1.8; margin-bottom: 40px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-detail-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-detail-item i {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: rgba(37,99,235,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #60a5fa;
    flex-shrink: 0;
    font-size: 1rem;
}
.contact-detail-item div strong { display: block; color: white; font-size: 13px; font-weight: 700; margin-bottom: 3px; }
.contact-detail-item div span { color: #94a3b8; font-size: 0.88rem; }

/* Contact Form */
.contact-form-wrap {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 44px;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { color: #94a3b8; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    padding: 13px 16px;
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s;
    outline: none;
}
.form-group select option { background: var(--primary-mid); color: white; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent-light); }
.submit-btn {
    background: var(--accent);
    color: white;
    border: none;
    padding: 15px 32px;
    border-radius: 8px;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 30px var(--accent-glow); }
.form-note { color: rgba(255,255,255,0.25); font-size: 11px; text-align: center; margin-top: -8px; }
.form-success {
    text-align: center;
    padding: 60px 20px;
    color: white;
}
.form-success i { font-size: 3rem; color: var(--success); margin-bottom: 20px; display: block; }
.form-success h4 { font-size: 1.4rem; margin-bottom: 10px; }
.form-success p { color: #94a3b8; font-size: 0.9rem; }

/* ---- FOOTER ---- */
footer { background: #060f1d; border-top: 1px solid rgba(255,255,255,0.05); padding: 80px 0 0; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 60px;
}
.footer-logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.footer-logo-img { height: 36px; width: auto; }
.footer-brand-col p { color: #475569; font-size: 0.88rem; line-height: 1.8; max-width: 280px; }
.footer-license { margin-top: 10px; color: #334155 !important; font-size: 12px !important; }
footer h5 { font-family: 'Syne', sans-serif; font-weight: 700; color: white; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }
.footer-links-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links-col ul li a { color: #475569; font-size: 13px; text-decoration: none; transition: color 0.3s; }
.footer-links-col ul li a:hover { color: var(--accent-light); }
.footer-contact-col p { color: #475569; font-size: 13px; margin-bottom: 10px; display: flex; align-items: flex-start; gap: 10px; line-height: 1.6; }
.footer-contact-col p i { color: var(--accent-light); width: 16px; flex-shrink: 0; margin-top: 2px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); }
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    color: #334155;
    font-size: 12px;
}

/* ---- FLOATING BUTTONS ---- */
.wa-btn {
    position: fixed;
    bottom: 36px; right: 36px;
    background: #25d366;
    color: white;
    width: 60px; height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 10px 30px rgba(37,211,102,0.4);
    z-index: 9999;
    text-decoration: none;
    transition: 0.35s;
    position: fixed;
}
.wa-btn:hover { transform: scale(1.1); box-shadow: 0 16px 40px rgba(37,211,102,0.5); }
.wa-tooltip {
    position: absolute;
    right: 72px;
    background: var(--primary);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.wa-btn:hover .wa-tooltip { opacity: 1; }
.back-to-top {
    position: fixed;
    bottom: 36px; right: 108px;
    width: 44px; height: 44px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 14px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transition: 0.3s;
    z-index: 9998;
}
.back-to-top:hover { background: var(--accent); color: white; border-color: var(--accent); }
.back-to-top.visible { display: flex; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: 1fr 1fr; }
    .why-us-grid { grid-template-columns: 1fr 1fr; }
    .compass-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .intro-grid { grid-template-columns: 1fr; gap: 40px; }
    .img-badge { right: 0; bottom: -16px; }
    .services-grid { grid-template-columns: 1fr; }
    .why-us-grid { grid-template-columns: 1fr; }
    .compass-grid { grid-template-columns: 1fr; }
    .news-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
    .hero h1 { font-size: 2.6rem; letter-spacing: -1px; }
    .compass-banner-inner { padding: 36px 28px; }
    .threshold-table { font-size: 0.8rem; }
    .threshold-table th, .threshold-table td { padding: 14px 16px; }
    .contact-form-wrap { padding: 28px 24px; }
}

@media (max-width: 480px) {
    .hero-btns { flex-direction: column; align-items: center; }
    .hero-stats { gap: 20px; }
    .stat-divider { display: none; }
}