/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --green:  #1a9e5c;
  --green2: #13784a;
  --dark:   #0e1a14;
  --mid:    #1e2d24;
  --card:   #f5f7f5;
  --text:   #1e2d24;
  --muted:  #6b7e72;
  --white:  #ffffff;
  --accent: #f5c842;
  --radius: 14px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
}
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===== NAVBAR ===== */
nav {
  position: sticky; top: 0; z-index: 200;
  background: var(--dark);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 64px;
}
.nav-logo { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.4rem; color: var(--white); letter-spacing: -0.5px; }
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { color: rgba(255,255,255,0.75); font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links .btn-nav { background: var(--green); color: var(--white) !important; padding: 0.45rem 1.1rem; border-radius: 8px; font-weight: 600; font-size: 0.85rem; transition: background 0.2s; }
.nav-links .btn-nav:hover { background: var(--green2); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.nav-hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }
.mobile-menu { display: none; position: fixed; top: 64px; left: 0; right: 0; background: var(--dark); padding: 1.5rem 5%; flex-direction: column; gap: 1.2rem; z-index: 199; border-top: 1px solid rgba(255,255,255,0.08); }
.mobile-menu.open { display: flex; }
.mobile-menu a { color: rgba(255,255,255,0.8); font-size: 1rem; font-weight: 500; padding: 0.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-menu a:last-child { border-bottom: none; }

/* ===== PAGE HERO ===== */
.page-hero { background: var(--dark); padding: 3.5rem 5% 3rem; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 60% 100%, rgba(26,158,92,0.15) 0%, transparent 65%); pointer-events: none; }
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { font-family: 'Syne', sans-serif; font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; color: var(--white); line-height: 1.1; letter-spacing: -1px; margin-bottom: 0.7rem; }
.page-hero h1 em { color: var(--accent); font-style: normal; }
.page-hero p { color: rgba(255,255,255,0.6); font-size: clamp(0.9rem, 2vw, 1.05rem); max-width: 540px; margin-bottom: 1.8rem; }
.page-hero-badge { display: inline-flex; align-items: center; gap: 0.4rem; background: rgba(26,158,92,0.18); border: 1px solid rgba(26,158,92,0.35); color: #5fd99b; padding: 0.35rem 0.85rem; border-radius: 40px; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.03em; margin-bottom: 1.2rem; }
.page-hero-badge::before { content: '●'; font-size: 0.55rem; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }
.hero-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.5rem; }
.hero-tags a { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.6); padding: 0.3rem 0.8rem; border-radius: 20px; font-size: 0.78rem; transition: all 0.2s; }
.hero-tags a:hover, .hero-tags a.cur { background: var(--green); border-color: var(--green); color: var(--white); }

/* ===== SECTION LABELS ===== */
.section-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); margin-bottom: 0.5rem; display: block; }
.section-title, .section-home { font-family: 'Syne', sans-serif; font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700; margin-bottom: 1.5rem; color: var(--text); }
.page-title { font-family: 'Syne', sans-serif; font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 1.5rem; color: var(--text); }

/* ===== MAIN LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
main > .container, main .container { padding-top: 2.5rem; padding-bottom: 3rem; }

/* ===== INTRO PARAGRAPH ===== */
.intro-paragraph { background: var(--card); border: 1.5px solid #e4ebe6; border-left: 4px solid var(--green); border-radius: var(--radius); padding: 1.2rem 1.5rem; margin-bottom: 2rem; font-size: 0.93rem; color: var(--muted); line-height: 1.7; }
.intro-paragraph h2 { font-family: 'Syne', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 0.5rem; }

/* ===== JOB CARDS ===== */
.job-listings { display: flex; flex-direction: column; gap: 1rem; }
.job-card { background: var(--card); border: 1.5px solid #e4ebe6; border-radius: var(--radius); padding: 1.4rem; transition: all 0.25s; }
.job-card:hover { border-color: var(--green); box-shadow: 0 8px 32px rgba(26,158,92,0.12); transform: translateY(-2px); }
.job-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; }
.job-main { flex: 1; }
.job-title { font-family: 'Syne', sans-serif; font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; line-height: 1.3; color: var(--text); }
.job-meta { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 0.5rem; }
.job-meta-item, .job-meta span { display: inline-flex; align-items: center; gap: 4px; font-size: 0.8rem; color: var(--muted); }
.job-meta-item i, .job-meta span i { color: var(--green); font-size: 0.75rem; }
.job-salary { background: rgba(26,158,92,0.1); color: var(--green); padding: 0.2rem 0.65rem; border-radius: 20px; font-size: 0.78rem; font-weight: 600; display: inline-flex; align-items: center; gap: 4px; }
.job-side { text-align: right; flex-shrink: 0; }
.job-date, .job-closing { font-size: 0.78rem; color: var(--muted); margin-bottom: 3px; }
.job-closing { color: #d97706; font-weight: 600; }
.company-name { font-size: 0.78rem; font-weight: 600; color: var(--green); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.4rem; display: flex; align-items: center; gap: 4px; }
.job-card-link { text-decoration: none; color: inherit; display: block; }
.no-jobs { background: var(--card); border: 1.5px solid #e4ebe6; border-radius: var(--radius); padding: 3rem; text-align: center; color: var(--muted); font-size: 0.95rem; }

/* ===== HOMEPAGE JOB POSTINGS GRID ===== */
.job-postings-container { display: grid; grid-template-columns: 1fr 280px; gap: 2rem; align-items: start; }
.job-postings { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.2rem; }
.job-posting { background: var(--card); border: 1.5px solid #e4ebe6; border-radius: var(--radius); padding: 1.4rem; transition: all 0.25s; display: flex; flex-direction: column; cursor: pointer; }
.job-posting:hover { border-color: var(--green); box-shadow: 0 8px 32px rgba(26,158,92,0.12); transform: translateY(-2px); }
.job-badge { font-size: 0.75rem; font-weight: 600; color: var(--green); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.5rem; }
.job-posting h3 { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; line-height: 1.3; margin-bottom: 0.5rem; color: var(--text); }
.job-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 1rem; border-top: 1px solid #e4ebe6; }
.job-footer span { font-size: 0.75rem; color: var(--muted); display: flex; align-items: center; gap: 4px; }
.job-footer i { color: var(--green); }
.apply-btn { background: var(--dark); color: var(--white); padding: 0.4rem 0.9rem; border-radius: 8px; font-size: 0.8rem; font-weight: 600; border: none; cursor: pointer; transition: background 0.2s; display: inline-block; }
.apply-btn:hover { background: var(--green); }

/* ===== SIDEBAR ===== */
.sidebar { display: flex; flex-direction: column; gap: 1.2rem; position: sticky; top: 80px; }
.sidebar-card { background: var(--white); border: 1.5px solid #e4ebe6; border-radius: var(--radius); padding: 1.3rem; }
.sidebar-title { font-family: 'Syne', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 1rem; padding-bottom: 0.6rem; border-bottom: 2px solid #e4ebe6; }
.sidebar-categories { display: flex; flex-direction: column; gap: 2px; }
.sidebar-category { display: flex; align-items: center; gap: 0.6rem; padding: 0.48rem 0.6rem; border-radius: 8px; font-size: 0.84rem; color: var(--text); transition: all 0.15s; }
.sidebar-category:hover { background: rgba(26,158,92,0.08); color: var(--green); }
.sidebar-category i { color: var(--green); font-size: 0.8rem; width: 16px; text-align: center; }

/* ===== WHY / BENEFITS ===== */
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.2rem; margin-bottom: 2.5rem; }
.benefit-card { background: var(--dark); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 1.5rem; text-align: center; transition: border-color 0.2s; }
.benefit-card:hover { border-color: rgba(26,158,92,0.5); }
.benefit-card i { font-size: 1.6rem; color: var(--accent); margin-bottom: 0.75rem; display: block; }
.benefit-card h3 { font-family: 'Syne', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 0.4rem; }
.benefit-card p { font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.5; }

/* ===== CATEGORIES / TIPS CARDS ===== */
.categories-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.2rem; margin-bottom: 2.5rem; }
.category-card { background: var(--card); border: 1.5px solid #e4ebe6; border-radius: var(--radius); padding: 1.5rem; transition: all 0.25s; }
.category-card:hover { border-color: var(--green); box-shadow: var(--shadow); transform: translateY(-2px); }
.category-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(26,158,92,0.12); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 1rem; color: var(--green); }
.category-card h3 { font-family: 'Syne', sans-serif; font-size: 0.98rem; font-weight: 700; color: var(--text); margin-bottom: 0.4rem; }
.category-card p { font-size: 0.82rem; color: var(--muted); line-height: 1.5; margin-bottom: 1rem; }
.view-all-btn { background: var(--dark); color: var(--white); padding: 0.4rem 0.9rem; border-radius: 8px; font-size: 0.8rem; font-weight: 600; display: inline-block; transition: background 0.2s; }
.view-all-btn:hover { background: var(--green); }

/* ===== STATS ===== */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1.2rem; margin-bottom: 2.5rem; }
.stat-card { background: var(--dark); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 1.5rem; text-align: center; }
.stat-card h3 { font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 800; color: var(--white); margin-bottom: 0.3rem; }
.stat-card h3 span { color: var(--accent); }
.stat-card p { font-size: 0.8rem; color: rgba(255,255,255,0.5); }

/* ===== RESOURCES ===== */
.resources-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.2rem; margin-bottom: 2.5rem; }
.resource-card { background: var(--card); border: 1.5px solid #e4ebe6; border-radius: var(--radius); padding: 1.4rem; display: flex; gap: 1rem; align-items: flex-start; transition: all 0.25s; }
.resource-card:hover { border-color: var(--green); box-shadow: var(--shadow); }
.resource-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(26,158,92,0.12); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--green); flex-shrink: 0; }
.resource-card h3 { font-family: 'Syne', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 0.3rem; }
.resource-card p { font-size: 0.82rem; color: var(--muted); line-height: 1.5; margin-bottom: 0.7rem; }
.resource-link { font-size: 0.82rem; font-weight: 600; color: var(--green); display: inline-flex; align-items: center; gap: 4px; transition: gap 0.2s; }
.resource-link:hover { gap: 8px; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--card); padding: 4rem 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.2rem; }
.testimonial-card { background: var(--white); border: 1.5px solid #e4ebe6; border-radius: var(--radius); padding: 1.5rem; }
.testimonial-content p { font-size: 0.88rem; color: var(--text); line-height: 1.65; margin-bottom: 1.2rem; position: relative; }
.testimonial-content p::before { content: '"'; font-size: 2rem; color: var(--green); line-height: 0; vertical-align: -0.6rem; margin-right: 0.2rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.author-info h4 { font-weight: 700; font-size: 0.88rem; color: var(--text); }
.author-info p { font-size: 0.75rem; color: var(--muted); margin: 0; }

/* ===== FAQ ===== */
.faq-container { max-width: 720px; display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 2.5rem; }
.faq-item { background: var(--white); border: 1.5px solid #e4ebe6; border-radius: 10px; overflow: hidden; }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 1rem 1.2rem; cursor: pointer; font-weight: 600; font-size: 0.9rem; width: 100%; background: none; border: none; text-align: left; color: var(--text); gap: 1rem; font-family: 'DM Sans', sans-serif; }
.faq-question i { font-size: 0.8rem; transition: transform 0.25s; flex-shrink: 0; color: var(--green); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer-content { padding: 0 1.2rem 1rem; font-size: 0.85rem; color: var(--muted); line-height: 1.6; }
.faq-item.active .faq-question i { transform: rotate(180deg); }

/* ===== CTA ===== */
.cta { background: var(--green); padding: 3.5rem 5%; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 2rem; border-radius: var(--radius); position: relative; overflow: hidden; margin: 2rem 0; }
.cta h2 { font-family: 'Syne', sans-serif; font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; color: var(--white); max-width: 480px; }
.cta h2 span { color: var(--accent); }
.cta p { color: rgba(255,255,255,0.8); font-size: 0.95rem; margin-top: 0.5rem; }
.cta .view-all-btn { background: var(--white); color: var(--green); padding: 0.85rem 2rem; border-radius: 10px; font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1rem; white-space: nowrap; transition: transform 0.2s; flex-shrink: 0; }
.cta .view-all-btn:hover { transform: scale(1.03); }
.cta-bg-image { display: none; }

/* ===== MOBILE HOME INDICATOR ===== */
.mobile-home-indicator { display: none; background: rgba(26,158,92,0.1); color: var(--green); text-align: center; padding: 0.5rem; font-size: 0.8rem; font-weight: 600; border-radius: 8px; margin: 1rem 0; }

/* ===== CONTENT PAGES (about, privacy, terms, tips) ===== */
.about-section, .cv-section, .scam-section, .tips-section { background: var(--white); border: 1.5px solid #e4ebe6; border-radius: var(--radius); padding: 2rem; margin-bottom: 1.5rem; }
.about-section h2, .cv-section h2, .scam-section h2, .tips-section h2, .content-title { font-family: 'Syne', sans-serif; font-size: 1.4rem; font-weight: 800; color: var(--text); margin-bottom: 1rem; padding-bottom: 0.7rem; border-bottom: 2px solid #e4ebe6; }
.about-section h3, .cv-section h3, .scam-section h3, .tips-section h3 { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; color: var(--green); margin: 1.2rem 0 0.4rem; }
.about-section p, .cv-section p, .scam-section p, .tips-section p { font-size: 0.9rem; color: var(--muted); line-height: 1.75; margin-bottom: 0.8rem; }
.about-section ul, .cv-section ul, .scam-section ul, .tips-section ul, .about-section ol { margin-left: 1.4rem; margin-bottom: 1rem; }
.about-section li, .cv-section li, .scam-section li, .tips-section li { font-size: 0.88rem; color: var(--muted); line-height: 1.7; margin-bottom: 0.3rem; }
.cv-tip-title, .red-flag { font-family: 'Syne', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 0.3rem; }
.cv-item, .scam-item, .tip-item { background: var(--card); border: 1.5px solid #e4ebe6; border-radius: 10px; padding: 1.1rem 1.3rem; margin-bottom: 0.8rem; }
.cv-item:hover, .scam-item:hover, .tip-item:hover { border-color: var(--green); }
.warning-note { background: #fff8f0; border-left: 4px solid #e05d00; border-radius: 8px; padding: 1rem 1.2rem; margin: 1rem 0; font-size: 0.87rem; color: #7a3000; }

/* ===== CONTACT ===== */
.contact-hero { background: var(--dark); padding: 4rem 5%; text-align: center; position: relative; overflow: hidden; }
.contact-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(26,158,92,0.15) 0%, transparent 70%); pointer-events: none; }
.contact-hero h1 { font-family: 'Syne', sans-serif; font-size: clamp(2rem,5vw,3rem); font-weight: 800; color: var(--white); margin-bottom: 1rem; position: relative; z-index: 1; }
.contact-hero p { color: rgba(255,255,255,0.6); font-size: 1.05rem; max-width: 600px; margin: 0 auto; position: relative; z-index: 1; }
.contact-content { padding: 3rem 5%; }
.contact-wrapper { background: var(--white); border: 1.5px solid #e4ebe6; border-radius: var(--radius); padding: 2rem; max-width: 700px; }
.contact-wrapper h1 { font-family: 'Syne', sans-serif; font-size: 1.6rem; font-weight: 800; margin-bottom: 1.5rem; padding-bottom: 0.8rem; border-bottom: 2px solid #e4ebe6; }
.login-section p, .facebook-section p { font-size: 0.93rem; color: var(--muted); line-height: 1.7; margin-bottom: 1rem; }
.facebook-link { display: inline-flex; align-items: center; gap: 8px; background: #1877f2; color: var(--white); padding: 0.7rem 1.5rem; border-radius: 8px; font-weight: 600; font-size: 0.9rem; transition: background 0.2s; }
.facebook-link:hover { background: #166fe5; }
.facebook-section { border-top: 1px solid #e4ebe6; padding-top: 1.5rem; margin-top: 1.5rem; }

/* ===== SEARCH ===== */
.search-box { display: flex; gap: 0.6rem; background: var(--card); border: 1.5px solid #e4ebe6; border-radius: 12px; padding: 0.5rem; margin-bottom: 2rem; max-width: 600px; }
.search-box input { flex: 1; background: none; border: none; outline: none; font-family: 'DM Sans', sans-serif; font-size: 0.95rem; padding: 0.5rem 0.8rem; color: var(--text); }
.search-box button { background: var(--green); color: var(--white); border: none; cursor: pointer; font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.9rem; padding: 0.65rem 1.4rem; border-radius: 8px; white-space: nowrap; transition: background 0.2s; }
.search-box button:hover { background: var(--green2); }

/* ===== FOOTER ===== */
footer { background: var(--dark); padding: 3rem 5% 2rem; margin-top: 4rem; }
.footer-grid, .footers-content { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.footer-brand p, .footers-column > p { color: rgba(255,255,255,0.45); font-size: 0.82rem; line-height: 1.6; }
.footer-col h4, .footers-column h3 { font-family: 'Syne', sans-serif; font-size: 0.85rem; font-weight: 700; color: var(--white); margin-bottom: 1rem; letter-spacing: 0.02em; }
.footer-col ul, .footers-links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a, .footers-links li a { color: rgba(255,255,255,0.45); font-size: 0.82rem; transition: color 0.2s; }
.footer-col ul li a:hover, .footers-links li a:hover { color: var(--white); }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-bottom: 1rem; }
.footer-links a { color: rgba(255,255,255,0.45); font-size: 0.82rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom, .footers-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p, .footers-bottom p { color: rgba(255,255,255,0.35); font-size: 0.78rem; }
.footer-brand .nav-logo { font-size: 1.5rem; margin-bottom: 0.8rem; }
.social-links { display: flex; gap: 0.8rem; margin-top: 0.8rem; }
.social-links a { width: 34px; height: 34px; border-radius: 8px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: all 0.2s; }
.social-links a:hover { background: var(--green); color: var(--white); }

/* ===== NEWS PAGE (keep existing structure but restyle) ===== */
.news-hero { background: var(--dark); padding: 3.5rem 5% 3rem; position: relative; overflow: hidden; }
.news-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 70% at 50% 100%, rgba(26,158,92,0.14) 0%, transparent 65%); pointer-events: none; }
.news-hero-inner { position: relative; z-index: 1; }
.news-live { display: inline-flex; align-items: center; gap: 6px; background: rgba(26,158,92,0.18); border: 1px solid rgba(26,158,92,0.35); color: #5fd99b; padding: 0.3rem 0.85rem; border-radius: 40px; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 1rem; }
.news-live i { font-size: 0.45rem; animation: blink 1.6s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.25} }
.news-hero h1 { font-family: 'Syne', sans-serif; font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; color: var(--white); line-height: 1.1; letter-spacing: -1px; margin-bottom: 0.7rem; }
.news-hero h1 em { color: var(--accent); font-style: normal; }
.news-hero p { color: rgba(255,255,255,0.6); font-size: 1rem; max-width: 520px; margin-bottom: 1.8rem; }
.news-filters { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.news-pill { display: inline-flex; align-items: center; gap: 0.4rem; background: rgba(255,255,255,0.07); border: 1.5px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.65); padding: 0.38rem 0.95rem; border-radius: 40px; font-size: 0.8rem; font-weight: 500; cursor: pointer; transition: all 0.2s; white-space: nowrap; }
.news-pill:hover { background: rgba(255,255,255,0.13); color: var(--white); }
.news-pill.active { background: var(--green); border-color: var(--green); color: var(--white); font-weight: 600; }
.news-ticker { background: var(--accent); display: flex; align-items: stretch; overflow: hidden; height: 38px; }
.news-ticker-label { background: rgba(0,0,0,0.18); color: var(--dark); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; padding: 0 1rem; display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.news-ticker-track { flex: 1; overflow: hidden; display: flex; align-items: center; }
.news-ticker-inner { display: inline-flex; align-items: center; color: var(--dark); font-size: 0.8rem; font-weight: 600; white-space: nowrap; animation: ticker 35s linear infinite; }
@keyframes ticker { from { transform: translateX(100vw); } to { transform: translateX(-100%); } }
.news-wrap { max-width: 1200px; margin: 0 auto; padding: 2rem 5% 4rem; }
.news-layout { display: grid; grid-template-columns: 1fr 300px; gap: 2rem; align-items: start; }
.news-featured { background: var(--white); border: 1.5px solid #e4ebe6; border-radius: var(--radius); overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; margin-bottom: 2rem; transition: box-shadow 0.25s; }
.news-featured:hover { box-shadow: 0 8px 32px rgba(26,158,92,0.1); }
.news-feat-img { position: relative; display: block; overflow: hidden; min-height: 300px; }
.news-feat-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.news-feat-img:hover img { transform: scale(1.04); }
.news-cat-tag { position: absolute; top: 12px; left: 12px; background: var(--green); color: var(--white); font-size: 0.68rem; font-weight: 700; padding: 3px 9px; border-radius: 6px; text-transform: uppercase; }
.news-feat-tag { position: absolute; top: 12px; right: 12px; background: var(--accent); color: var(--dark); font-size: 0.68rem; font-weight: 700; padding: 3px 9px; border-radius: 6px; }
.news-feat-body { padding: 2rem 1.8rem; display: flex; flex-direction: column; justify-content: center; }
.news-feat-body h2 { font-family: 'Syne', sans-serif; font-size: clamp(1.15rem, 2vw, 1.65rem); font-weight: 800; line-height: 1.25; color: var(--text); margin-bottom: 0.8rem; }
.news-feat-body h2 a { color: inherit; transition: color 0.2s; }
.news-feat-body h2 a:hover { color: var(--green); }
.news-meta { display: flex; flex-wrap: wrap; gap: 0.9rem; font-size: 0.78rem; color: var(--muted); margin-bottom: 1rem; }
.news-meta i { color: var(--green); margin-right: 3px; }
.news-excerpt { font-size: 0.88rem; color: var(--muted); line-height: 1.65; margin-bottom: 1.3rem; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
.btn-news { display: inline-flex; align-items: center; gap: 0.4rem; background: var(--dark); color: var(--white); padding: 0.55rem 1.2rem; border-radius: 8px; font-size: 0.85rem; font-weight: 600; transition: background 0.2s; align-self: flex-start; }
.btn-news:hover { background: var(--green); }
.news-grid-hd { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.2rem; padding-bottom: 0.8rem; border-bottom: 2px solid #e4ebe6; }
.news-grid-hd h3 { font-family: 'Syne', sans-serif; font-size: 1.15rem; font-weight: 700; }
.news-grid-hd span { font-size: 0.75rem; color: var(--muted); background: var(--card); padding: 3px 10px; border-radius: 20px; }
.news-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.news-card { background: var(--white); border: 1.5px solid #e4ebe6; border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: all 0.25s; }
.news-card:hover { border-color: var(--green); box-shadow: 0 8px 28px rgba(26,158,92,0.1); transform: translateY(-2px); }
.news-card-img { position: relative; display: block; overflow: hidden; height: 175px; }
.news-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s; }
.news-card-img:hover img { transform: scale(1.05); }
.news-card-body { padding: 1.1rem; flex: 1; display: flex; flex-direction: column; }
.news-card-body h4 { font-family: 'Syne', sans-serif; font-size: 0.95rem; font-weight: 700; line-height: 1.35; color: var(--text); margin-bottom: 0.4rem; }
.news-card-body h4 a { color: inherit; transition: color 0.2s; }
.news-card-body h4 a:hover { color: var(--green); }
.news-card-meta { display: flex; gap: 0.7rem; font-size: 0.75rem; color: var(--muted); margin-bottom: 0.6rem; }
.news-card-excerpt { font-size: 0.8rem; color: var(--muted); line-height: 1.5; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 0.8rem; }
.news-card-link { font-size: 0.8rem; font-weight: 600; color: var(--green); display: inline-flex; align-items: center; gap: 3px; margin-top: auto; transition: gap 0.2s; }
.news-card-link:hover { gap: 7px; }
.news-sidebar { display: flex; flex-direction: column; gap: 1.2rem; position: sticky; top: 80px; }
.news-widget { background: var(--white); border: 1.5px solid #e4ebe6; border-radius: var(--radius); padding: 1.3rem; }
.news-widget-title { font-family: 'Syne', sans-serif; font-size: 0.9rem; font-weight: 700; color: var(--text); margin-bottom: 1rem; padding-bottom: 0.65rem; border-bottom: 2px solid #e4ebe6; display: flex; align-items: center; gap: 0.5rem; }
.news-widget-title i { color: var(--green); }
.news-search { position: relative; }
.news-search input { width: 100%; padding: 0.55rem 2.2rem 0.55rem 0.85rem; border: 1.5px solid #e4ebe6; border-radius: 8px; font-family: 'DM Sans', sans-serif; font-size: 0.85rem; outline: none; transition: border-color 0.2s; background: var(--card); }
.news-search input:focus { border-color: var(--green); background: var(--white); }
.news-search i { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); color: var(--muted); font-size: 0.8rem; pointer-events: none; }
.news-widget-links { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.news-widget-links li a { display: flex; align-items: center; gap: 0.6rem; padding: 0.48rem 0.6rem; border-radius: 8px; font-size: 0.84rem; color: var(--text); transition: all 0.15s; }
.news-widget-links li a:hover { background: rgba(26,158,92,0.08); color: var(--green); }
.news-widget-links li a i { color: var(--green); font-size: 0.78rem; width: 16px; text-align: center; }
.news-recent-list { list-style: none; display: flex; flex-direction: column; gap: 0.9rem; }
.news-recent-list li a { display: flex; gap: 0.75rem; align-items: flex-start; transition: opacity 0.2s; }
.news-recent-list li a:hover { opacity: 0.8; }
.news-recent-list img { width: 56px; height: 46px; object-fit: cover; border-radius: 8px; flex-shrink: 0; border: 1.5px solid #e4ebe6; }
.rc-cat { font-size: 0.66rem; font-weight: 700; color: var(--green); text-transform: uppercase; letter-spacing: 0.04em; display: block; margin-bottom: 2px; }
.news-recent-list p { font-size: 0.79rem; font-weight: 600; color: var(--text); line-height: 1.3; margin: 0; }
.news-recent-list small { font-size: 0.7rem; color: var(--muted); }
.news-widget-tips { background: #fffdf0; border-color: #f5e090; }

/* ===== MODALS ===== */
.modal { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 1000; align-items: center; justify-content: center; }
.modal-content { background: var(--white); border-radius: var(--radius); padding: 2rem; max-width: 600px; width: 90%; max-height: 80vh; overflow-y: auto; position: relative; }
.modal-close { position: absolute; top: 1rem; right: 1rem; background: none; border: none; font-size: 1.2rem; cursor: pointer; color: var(--muted); transition: color 0.2s; }
.modal-close:hover { color: var(--text); }

/* ===== QUICK JOB LINKS (old nav, now reused as sub-nav) ===== */
.quick-job-links { display: none; }

/* ===== MEDIA QUERIES ===== */
@media only screen and (max-width: 1024px) {
  .footer-grid, .footers-content { grid-template-columns: 1fr 1fr; }
  .job-postings-container { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .news-layout { grid-template-columns: 1fr 270px; }
}
@media only screen and (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .job-postings-container { grid-template-columns: 1fr; }
  .sidebar { display: grid; grid-template-columns: 1fr 1fr; }
  .cta { flex-direction: column; text-align: center; align-items: center; }
  .footer-grid, .footers-content { grid-template-columns: 1fr 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .news-layout { grid-template-columns: 1fr; }
  .news-sidebar { position: static; display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
  .news-featured { grid-template-columns: 1fr; }
  .news-feat-img { min-height: 220px; }
  .news-grid { grid-template-columns: 1fr; }
  .job-header { flex-direction: column; gap: 0.5rem; }
  .job-side { text-align: left; }
}
@media only screen and (max-width: 480px) {
  nav { padding: 0 4%; }
  .nav-logo { font-size: 1.2rem; }
  main > .container { padding: 1.5rem 4% 2.5rem; }
  .page-hero { padding: 2rem 4% 1.8rem; }
  .page-hero h1 { font-size: 1.5rem; }
  .mobile-home-indicator { display: block; }
  .footer-grid, .footers-content { grid-template-columns: 1fr; }
  .footer-bottom, .footers-bottom { flex-direction: column; text-align: center; }
  .cta { padding: 2.5rem 4%; }
  .cta .view-all-btn { width: 100%; text-align: center; }
  .benefits-grid { grid-template-columns: 1fr; }
  .sidebar { grid-template-columns: 1fr; }
  .news-sidebar { grid-template-columns: 1fr; }
  .news-feat-img { min-height: 180px; }
  .news-ticker-label { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
}
@media only screen and (max-width: 360px) {
  .nav-logo { font-size: 1.1rem; }
  .page-hero h1 { font-size: 1.3rem; }
}