/*
Theme Name: FresherJobs Uganda
Theme URI: https://fresherjobs.ug
Author: FresherJobs Uganda
Author URI: https://fresherjobs.ug
Description: A modern, mobile-friendly job board theme for Fresher Jobs in Uganda. Designed for entry-level jobs, internships, graduate trainee programs, and volunteer opportunities for fresh graduates and students in Uganda.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fresherjobs
Tags: job-board, careers, Uganda, internships, custom-colors, custom-logo, featured-images, full-width-template, responsive-layout, translation-ready
*/

/* =============================================
   CSS CUSTOM PROPERTIES
   ============================================= */
:root {
  --sky: #0EA5E9;
  --sky-dark: #0284C7;
  --sky-light: #BAE6FD;
  --sky-xlight: #E0F2FE;
  --sky-xxlight: #F0F9FF;
  --navy: #0C4A6E;
  --navy-mid: #075985;
  --white: #FFFFFF;
  --gray50: #F8FAFC;
  --gray100: #F1F5F9;
  --gray200: #E2E8F0;
  --gray400: #94A3B8;
  --gray600: #475569;
  --gray700: #334155;
  --gray800: #1E293B;
  --green: #16A34A;
  --amber: #D97706;
  --red: #DC2626;
  --font-head: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 8px 30px rgba(14,165,233,.12);
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray800);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--sky-dark); text-decoration: none; transition: color .2s; }
a:hover { color: var(--sky); }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }
input, select, textarea { font-family: var(--font-body); }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); font-weight: 700; line-height: 1.2; color: var(--gray800); }

/* =============================================
   LAYOUT UTILITIES
   ============================================= */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: 900px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 4rem 1.5rem; }
.section-gray { background: var(--gray50); }
.section-skyblue { background: var(--sky-xxlight); }

/* =============================================
   TYPOGRAPHY
   ============================================= */
.section-title { font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; color: var(--gray800); }
.section-title span { color: var(--sky); }
.page-title { font-family: var(--font-head); font-size: 1.75rem; font-weight: 800; color: var(--navy); }

/* =============================================
   BUTTONS
   ============================================= */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; padding: .65rem 1.5rem; border-radius: var(--radius-md); font-size: .9rem; font-weight: 700; transition: all .2s; cursor: pointer; border: none; }
.btn-primary { background: var(--sky); color: var(--white); }
.btn-primary:hover { background: var(--sky-dark); color: var(--white); }
.btn-outline { background: transparent; color: var(--sky-dark); border: 1.5px solid var(--sky); }
.btn-outline:hover { background: var(--sky); color: var(--white); }
.btn-white { background: var(--white); color: var(--navy); }
.btn-white:hover { background: var(--sky-xxlight); color: var(--navy); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.45); }
.btn-outline-white:hover { background: rgba(255,255,255,.12); color: var(--white); }
.btn-lg { padding: .85rem 2rem; font-size: 1rem; }
.btn-sm { padding: .4rem 1rem; font-size: .8rem; }
.btn-full { width: 100%; }

/* =============================================
   TAGS & BADGES
   ============================================= */
.tag { display: inline-flex; align-items: center; font-size: .75rem; font-weight: 700; padding: .3rem .75rem; border-radius: 999px; white-space: nowrap; }
.tag-type { background: var(--sky-xlight); color: var(--sky-dark); }
.tag-urgent { background: #FEF3C7; color: #92400E; }
.tag-new { background: #D1FAE5; color: #065F46; }
.tag-gray { background: var(--gray100); color: var(--gray600); }

/* =============================================
   HEADER / NAVIGATION
   ============================================= */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--gray200);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.site-branding { flex-shrink: 0; }
.site-logo { font-family: var(--font-head); font-size: 1.2rem; font-weight: 800; color: var(--navy); white-space: nowrap; }
.site-logo span { color: var(--sky); }
.site-logo img { height: 40px; width: auto; }
.main-navigation { flex: 1; }
.main-navigation ul { display: flex; align-items: center; gap: 1.5rem; }
.main-navigation li a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--gray600);
  padding: .35rem 0;
  border-bottom: 2px solid transparent;
  transition: all .2s;
}
.main-navigation li a:hover,
.main-navigation li.current-menu-item a,
.main-navigation li.current_page_item a {
  color: var(--sky-dark);
  border-bottom-color: var(--sky);
}
.header-actions { margin-left: auto; display: flex; align-items: center; gap: .75rem; }
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}
.menu-toggle span { width: 22px; height: 2px; background: var(--gray800); display: block; border-radius: 2px; transition: all .3s; }
.menu-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-active span:nth-child(2) { opacity: 0; }
.menu-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--gray200);
  padding: 1rem 1.5rem 1.5rem;
}
.mobile-nav.is-open { display: block; }
.mobile-nav ul { display: flex; flex-direction: column; gap: .25rem; }
.mobile-nav li a {
  display: block;
  padding: .65rem .75rem;
  font-size: .95rem;
  font-weight: 500;
  color: var(--gray600);
  border-radius: var(--radius-sm);
  transition: all .2s;
}
.mobile-nav li a:hover { background: var(--sky-xxlight); color: var(--sky-dark); }
.mobile-nav .btn { width: 100%; margin-top: 1rem; justify-content: center; }

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  background: linear-gradient(135deg, #0C4A6E 0%, #075985 40%, #0369A1 100%);
  padding: 5rem 1.5rem 4.5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner { max-width: 900px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.hero-badge {
  display: inline-block;
  background: rgba(14,165,233,.22);
  border: 1px solid rgba(14,165,233,.4);
  color: #7DD3FC;
  font-size: .8rem;
  font-weight: 700;
  padding: .35rem 1.1rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
  letter-spacing: .04em;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.hero h1 em { font-style: normal; color: #7DD3FC; }
.hero .hero-subtitle {
  color: #BAE6FD;
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-search {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1rem;
  display: flex;
  gap: .75rem;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
  flex-wrap: wrap;
}
.hero-search input,
.hero-search select {
  border: 1.5px solid var(--gray200);
  border-radius: var(--radius-sm);
  padding: .75rem 1rem;
  font-size: .9rem;
  flex: 1;
  min-width: 180px;
  outline: none;
  color: var(--gray800);
  transition: border-color .2s;
}
.hero-search input:focus,
.hero-search select:focus { border-color: var(--sky); }
.hero-search .btn { white-space: nowrap; padding: .75rem 1.75rem; }
.hero-stats {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num { font-family: var(--font-head); font-size: 1.75rem; font-weight: 800; color: var(--white); }
.stat-label { font-size: .8rem; color: #93C5FD; margin-top: .2rem; }

/* =============================================
   JOB CARDS
   ============================================= */
.jobs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.25rem; }
.job-card {
  background: var(--white);
  border: 1.5px solid var(--gray200);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  transition: all .25s;
  display: flex;
  flex-direction: column;
}
.job-card:hover {
  border-color: var(--sky);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.job-card-top { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1rem; }
.company-logo {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: var(--sky-xxlight);
  border: 1.5px solid var(--sky-xlight);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  color: var(--sky-dark);
  flex-shrink: 0;
  overflow: hidden;
}
.company-logo img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.job-info { flex: 1; min-width: 0; }
.job-title { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--gray800); margin-bottom: .25rem; }
.company-name { font-size: .85rem; color: var(--gray600); }
.job-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1rem; }
.job-meta { display: flex; flex-wrap: wrap; gap: 1rem; font-size: .82rem; color: var(--gray600); }
.job-meta span { display: flex; align-items: center; gap: .3rem; }
.job-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--gray100);
}
.job-salary { font-weight: 700; color: var(--green); font-size: .875rem; }

/* =============================================
   CATEGORIES GRID
   ============================================= */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 1rem; }
.cat-card {
  background: var(--sky-xxlight);
  border: 1.5px solid var(--sky-xlight);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  text-align: center;
  transition: all .2s;
  cursor: pointer;
  text-decoration: none;
}
.cat-card:hover { background: var(--sky-xlight); border-color: var(--sky); transform: translateY(-2px); }
.cat-icon { font-size: 1.75rem; margin-bottom: .5rem; display: block; }
.cat-name { font-family: var(--font-head); font-size: .875rem; font-weight: 700; color: var(--navy); display: block; }
.cat-count { font-size: .75rem; color: var(--sky-dark); margin-top: .2rem; display: block; }

/* =============================================
   SECTION HEADER
   ============================================= */
.section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem; gap: 1rem; flex-wrap: wrap; }
.see-all-link { font-size: .875rem; font-weight: 700; color: var(--sky-dark); border: 1.5px solid var(--sky); border-radius: var(--radius-md); padding: .4rem 1rem; transition: all .2s; }
.see-all-link:hover { background: var(--sky); color: var(--white); }

/* =============================================
   EMPLOYER CTA BANNER
   ============================================= */
.employer-cta {
  background: linear-gradient(135deg, #0C4A6E, #0369A1);
  border-radius: var(--radius-xl);
  padding: 3.5rem 2rem;
  text-align: center;
  color: var(--white);
}
.employer-cta h2 { font-family: var(--font-head); font-size: 1.85rem; font-weight: 800; color: var(--white); margin-bottom: .75rem; }
.employer-cta p { color: #BAE6FD; margin-bottom: 2rem; font-size: 1rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* =============================================
   PAGE HEADER BANNER
   ============================================= */
.page-header-banner {
  background: var(--sky-xxlight);
  border-bottom: 1px solid var(--sky-xlight);
  padding: 2.5rem 1.5rem;
}
.page-header-banner h1 { color: var(--navy); margin-bottom: .5rem; }
.page-header-banner p { color: var(--gray600); font-size: .95rem; }

/* =============================================
   JOBS PAGE LAYOUT (Filters + Listings)
   ============================================= */
.jobs-page-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2rem;
  align-items: start;
}
.filters-panel {
  background: var(--white);
  border: 1.5px solid var(--gray200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: sticky;
  top: 88px;
}
.filters-title { font-family: var(--font-head); font-weight: 800; font-size: 1rem; color: var(--gray800); margin-bottom: 1.25rem; }
.filter-group { margin-bottom: 1.5rem; }
.filter-group-label { font-size: .75rem; font-weight: 700; color: var(--gray400); letter-spacing: .08em; text-transform: uppercase; margin-bottom: .75rem; display: block; }
.filter-option { display: flex; align-items: center; gap: .6rem; margin-bottom: .5rem; cursor: pointer; font-size: .875rem; color: var(--gray700); }
.filter-option input[type="checkbox"] { accent-color: var(--sky); width: 15px; height: 15px; cursor: pointer; }
.filter-divider { border: none; border-top: 1px solid var(--gray200); margin: 1.25rem 0; }
.jobs-results-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.25rem; flex-wrap: wrap; gap: .75rem; }
.jobs-count { font-size: .875rem; color: var(--gray600); }
.jobs-count strong { color: var(--gray800); font-weight: 700; }
.jobs-sort select { border: 1.5px solid var(--gray200); border-radius: var(--radius-sm); padding: .4rem .75rem; font-size: .85rem; color: var(--gray700); outline: none; }

/* =============================================
   JOB DETAIL PAGE
   ============================================= */
.job-detail-layout {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2rem;
  align-items: start;
}
.detail-card {
  background: var(--white);
  border: 1.5px solid var(--gray200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.detail-company-logo {
  width: 76px; height: 76px;
  border-radius: 14px;
  background: var(--sky-xxlight);
  border: 2px solid var(--sky-xlight);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 1.5rem;
  color: var(--sky-dark); flex-shrink: 0; overflow: hidden;
}
.detail-company-logo img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.detail-job-title { font-family: var(--font-head); font-size: 1.6rem; font-weight: 800; color: var(--gray800); margin-bottom: .4rem; }
.detail-company-name { font-size: 1rem; color: var(--sky-dark); font-weight: 600; margin-bottom: .75rem; }
.detail-meta { display: flex; flex-wrap: wrap; gap: 1rem; font-size: .875rem; color: var(--gray600); }
.content-section-title { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--gray800); margin-top: 1.75rem; margin-bottom: .75rem; }
.prose { font-size: .925rem; line-height: 1.85; color: var(--gray600); }
.prose ul, .prose ol { padding-left: 1.5rem; }
.prose li { margin-bottom: .4rem; }
.prose p { margin-bottom: 1rem; }
.detail-sidebar-card {
  background: var(--white);
  border: 1.5px solid var(--gray200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.25rem;
  position: sticky;
  top: 88px;
}
.info-row { display: flex; justify-content: space-between; align-items: center; font-size: .85rem; padding: .65rem 0; border-bottom: 1px solid var(--gray100); }
.info-row:last-child { border-bottom: none; }
.info-key { color: var(--gray400); font-weight: 500; }
.info-val { color: var(--gray800); font-weight: 600; text-align: right; }
.deadline-notice {
  background: #FEF3C7;
  border: 1px solid #FCD34D;
  border-radius: var(--radius-sm);
  padding: .75rem 1rem;
  font-size: .85rem;
  color: #92400E;
  text-align: center;
  font-weight: 600;
  margin-top: 1rem;
}

/* =============================================
   POST A JOB FORM PAGE
   ============================================= */
.post-job-page { max-width: 760px; margin: 0 auto; padding: 3rem 1.5rem; }
.form-card { background: var(--white); border: 1.5px solid var(--gray200); border-radius: 16px; padding: 2.5rem; }
.form-title { font-family: var(--font-head); font-size: 1.25rem; font-weight: 800; color: var(--gray800); margin-bottom: 1.5rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .45rem; }
.form-group.full-width { grid-column: 1 / -1; }
.form-label { font-size: .875rem; font-weight: 600; color: var(--gray700); }
.form-required { color: var(--red); }
.form-input {
  border: 1.5px solid var(--gray200);
  border-radius: var(--radius-sm);
  padding: .75rem 1rem;
  font-size: .9rem;
  outline: none;
  transition: border-color .2s;
  color: var(--gray800);
  width: 100%;
  background: var(--white);
}
.form-input:focus { border-color: var(--sky); box-shadow: 0 0 0 3px rgba(14,165,233,.1); }
textarea.form-input { resize: vertical; min-height: 120px; }
.form-hint { font-size: .78rem; color: var(--gray400); margin-top: .25rem; }
.form-success {
  background: #D1FAE5;
  border: 1.5px solid #6EE7B7;
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: center;
  color: #065F46;
  font-weight: 600;
  display: none;
  margin-top: 1rem;
  font-size: .95rem;
}
.form-success.visible { display: block; }

/* =============================================
   INTERNSHIPS PAGE
   ============================================= */
.intern-highlight-banner {
  background: linear-gradient(135deg, #0C4A6E, #0369A1);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  color: var(--white);
  margin-bottom: 2rem;
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}
.intern-highlight-banner h2 { font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; color: var(--white); margin-bottom: .5rem; }
.intern-highlight-banner p { color: #BAE6FD; font-size: .9rem; }
.intern-stat-big { text-align: center; flex-shrink: 0; }
.intern-stat-big .num { font-family: var(--font-head); font-size: 2.5rem; font-weight: 800; color: var(--white); display: block; }
.intern-stat-big .lbl { color: #BAE6FD; font-size: .85rem; display: block; margin-top: .2rem; }
.intern-card {
  background: var(--white);
  border: 1.5px solid var(--sky-xlight);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
  transition: all .25s;
  cursor: pointer;
}
.intern-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--sky); }
.intern-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }

/* =============================================
   BLOG / CAREER TIPS
   ============================================= */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.blog-card {
  background: var(--white);
  border: 1.5px solid var(--gray200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .25s;
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.blog-card a { color: inherit; }
.blog-thumbnail { width: 100%; height: 200px; object-fit: cover; }
.blog-thumbnail-placeholder { height: 180px; display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.blog-thumbnail-placeholder.blue { background: var(--sky-xxlight); }
.blog-thumbnail-placeholder.green { background: #F0FDF4; }
.blog-thumbnail-placeholder.amber { background: #FFFBEB; }
.blog-body { padding: 1.25rem; }
.blog-category { font-size: .75rem; font-weight: 700; color: var(--sky-dark); text-transform: uppercase; letter-spacing: .06em; margin-bottom: .5rem; display: block; }
.blog-title { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--gray800); margin-bottom: .5rem; line-height: 1.4; }
.blog-title:hover { color: var(--sky-dark); }
.blog-excerpt { font-size: .85rem; color: var(--gray600); line-height: 1.65; }
.blog-footer-meta { display: flex; align-items: center; justify-content: space-between; padding: .75rem 1.25rem 1.25rem; }
.blog-date { font-size: .8rem; color: var(--gray400); }
.blog-read-more { font-size: .82rem; font-weight: 700; color: var(--sky-dark); }

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-hero {
  background: linear-gradient(135deg, #0C4A6E, #0369A1);
  padding: 4.5rem 1.5rem;
  text-align: center;
  color: var(--white);
}
.about-hero h1 { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--white); margin-bottom: 1rem; }
.about-hero p { color: #BAE6FD; font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.25rem; }
.value-card { background: var(--sky-xxlight); border: 1.5px solid var(--sky-xlight); border-radius: var(--radius-lg); padding: 1.5rem; text-align: center; }
.value-icon { font-size: 2rem; margin-bottom: .75rem; display: block; }
.value-title { font-family: var(--font-head); font-weight: 700; color: var(--navy); margin-bottom: .5rem; font-size: .95rem; }
.value-text { font-size: .875rem; color: var(--gray600); line-height: 1.6; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1.25rem; }
.team-card { background: var(--white); border: 1.5px solid var(--gray200); border-radius: var(--radius-lg); padding: 1.5rem; text-align: center; }
.team-avatar { width: 64px; height: 64px; border-radius: 50%; background: var(--sky-xxlight); border: 2px solid var(--sky-xlight); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 800; font-size: 1.1rem; color: var(--sky-dark); margin: 0 auto .75rem; overflow: hidden; }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-weight: 700; color: var(--gray800); margin-bottom: .25rem; font-size: .95rem; }
.team-role { font-size: .85rem; color: var(--gray600); }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; max-width: 960px; margin: 0 auto; }
.contact-info-panel { background: linear-gradient(135deg, #0C4A6E, #0369A1); border-radius: var(--radius-xl); padding: 2.5rem; color: var(--white); }
.contact-info-panel h3 { font-family: var(--font-head); font-size: 1.25rem; font-weight: 800; color: var(--white); margin-bottom: 1.5rem; }
.contact-item { display: flex; gap: .75rem; margin-bottom: 1.5rem; align-items: flex-start; }
.contact-icon { width: 40px; height: 40px; background: rgba(255,255,255,.15); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1rem; }
.contact-detail-label { font-size: .8rem; color: #93C5FD; display: block; margin-bottom: .2rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.contact-detail-value { font-size: .9rem; color: var(--white); font-weight: 500; }
.social-row { display: flex; gap: .75rem; margin-top: 2rem; }
.social-btn { background: rgba(255,255,255,.15); border: none; border-radius: var(--radius-sm); width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: .85rem; font-weight: 800; cursor: pointer; transition: background .2s; }
.social-btn:hover { background: rgba(255,255,255,.28); }
.contact-form-panel { background: var(--white); border: 1.5px solid var(--gray200); border-radius: var(--radius-xl); padding: 2.5rem; }
.contact-form-panel h3 { font-family: var(--font-head); font-weight: 800; font-size: 1.1rem; color: var(--gray800); margin-bottom: 1.5rem; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer { background: var(--gray800); color: var(--gray400); padding: 3.5rem 1.5rem 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2.5rem; max-width: 1200px; margin-left: auto; margin-right: auto; }
.footer-brand .site-logo { color: var(--white); display: block; margin-bottom: .75rem; }
.footer-desc { font-size: .875rem; line-height: 1.75; margin-bottom: 1rem; }
.footer-email { font-size: .85rem; }
.footer-col h4 { font-size: .875rem; font-weight: 700; color: var(--white); margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col a { font-size: .85rem; color: var(--gray400); transition: color .2s; }
.footer-col a:hover { color: var(--sky); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; max-width: 1200px; margin: 0 auto; flex-wrap: wrap; }
.footer-bottom p { font-size: .8rem; }
.footer-seo { font-size: .78rem; color: var(--gray600); }

/* =============================================
   WHATSAPP FLOATING BUTTON
   ============================================= */
.whatsapp-fab {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  background: #25D366;
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  cursor: pointer;
  z-index: 999;
  transition: transform .2s;
  text-decoration: none;
}
.whatsapp-fab:hover { transform: scale(1.1); }

/* =============================================
   WORDPRESS CORE CLASSES
   ============================================= */
.alignwide { max-width: 1200px; margin-left: auto; margin-right: auto; }
.alignfull { width: 100%; }
.aligncenter { text-align: center; }
.wp-block-image { margin: 1.5rem 0; }
.wp-block-image img { border-radius: var(--radius-md); }
.wp-caption { font-size: .85rem; color: var(--gray600); margin-top: .5rem; }
.sticky { /* WordPress sticky post */ }
.bypostauthor { /* WordPress author */ }
.screen-reader-text { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 1rem; top: 1rem; z-index: 9999; background: var(--sky); color: var(--white); padding: .5rem 1rem; border-radius: 4px; }

/* =============================================
   PAGINATION
   ============================================= */
.pagination { display: flex; align-items: center; justify-content: center; gap: .5rem; margin-top: 2.5rem; }
.pagination a, .pagination span {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  font-size: .875rem; font-weight: 600;
  border: 1.5px solid var(--gray200);
  color: var(--gray700);
  transition: all .2s;
}
.pagination a:hover { border-color: var(--sky); color: var(--sky); }
.pagination .current { background: var(--sky); color: var(--white); border-color: var(--sky); }

/* =============================================
   SINGLE POST / PAGE CONTENT
   ============================================= */
.entry-content { max-width: 760px; }
.entry-content h2 { font-size: 1.4rem; margin-top: 2rem; margin-bottom: .75rem; }
.entry-content h3 { font-size: 1.15rem; margin-top: 1.5rem; margin-bottom: .6rem; }
.entry-content p { margin-bottom: 1.25rem; color: var(--gray600); }
.entry-content ul, .entry-content ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.entry-content li { margin-bottom: .4rem; color: var(--gray600); }
.entry-content blockquote { border-left: 4px solid var(--sky); padding: 1rem 1.5rem; margin: 1.5rem 0; background: var(--sky-xxlight); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.entry-content blockquote p { color: var(--navy); font-style: italic; margin: 0; }

/* =============================================
   WIDGETS
   ============================================= */
.widget { margin-bottom: 2rem; }
.widget-title { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--gray800); margin-bottom: 1rem; padding-bottom: .5rem; border-bottom: 2px solid var(--sky-xlight); }
.widget ul { display: flex; flex-direction: column; gap: .5rem; }
.widget ul li a { font-size: .875rem; color: var(--gray600); transition: color .2s; }
.widget ul li a:hover { color: var(--sky-dark); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .jobs-page-layout { grid-template-columns: 1fr; }
  .filters-panel { position: static; }
  .job-detail-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  .main-navigation { display: none; }
  .header-actions .btn { display: none; }
  .contact-layout { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full-width { grid-column: 1; }
  .intern-highlight-banner { flex-direction: column; }
  .hero-stats { gap: 1.5rem; }
  .cta-btn-group { flex-direction: column; align-items: center; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-search { flex-direction: column; }
  .hero-search input, .hero-search select, .hero-search .btn { width: 100%; min-width: unset; }
  .job-detail-layout, .jobs-page-layout { padding: 1.5rem 1rem; }
}

/* =============================================
   PRINT STYLES
   ============================================= */
@media print {
  .site-header, .site-footer, .whatsapp-fab { display: none; }
  body { font-size: 12pt; }
}
