/* =============================================
   COREBRIDGE OPERATIONS — COMPLETE STYLESHEET
   Navy #1B2B5E | Gold #B8922A | White #FFFFFF
   ============================================= */

:root {
  --navy: #1B2B5E;
  --navy-dark: #0f1a3d;
  --navy-light: #263d82;
  --gold: #B8922A;
  --gold-light: #d4a83a;
  --gold-pale: #f5ead6;
  --white: #FFFFFF;
  --gray-50: #F8F9FA;
  --gray-100: #F1F3F5;
  --gray-200: #E9ECEF;
  --gray-400: #ADB5BD;
  --gray-600: #6C757D;
  --gray-800: #343A40;
  --text: #1a1a2e;
  --shadow-sm: 0 2px 8px rgba(27,43,94,0.08);
  --shadow-md: 0 4px 20px rgba(27,43,94,0.12);
  --shadow-lg: 0 8px 40px rgba(27,43,94,0.18);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: #fff; line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; font-size: inherit; }
input, select, textarea { font-family: inherit; }

/* ---- TYPOGRAPHY ---- */
h1,h2,h3,h4,h5 { line-height: 1.25; font-weight: 700; }
.section-eyebrow { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 0.75rem; }
.section-title { font-size: clamp(1.6rem, 4vw, 2.6rem); color: var(--navy); margin-bottom: 1rem; }
.section-subtitle { font-size: 1rem; color: var(--gray-600); max-width: 560px; line-height: 1.7; }

/* ---- BUTTONS ---- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.75rem 1.75rem; border-radius: var(--radius); font-size: 0.9rem; font-weight: 600; transition: all var(--transition); cursor: pointer; white-space: nowrap; }
.btn-primary { background: var(--gold); color: #fff; box-shadow: 0 4px 12px rgba(184,146,42,0.35); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(184,146,42,0.45); }
.btn-secondary { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-secondary:hover { background: var(--navy); color: #fff; }
.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { background: var(--gold-pale); }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.7); }
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: #fff; }
.btn-sm { padding: 0.45rem 1rem; font-size: 0.78rem; border-radius: 6px; }
.btn-danger { background: #dc3545; color: #fff; }
.btn-danger:hover { background: #c82333; }
.btn-success { background: #28a745; color: #fff; }
.btn-success:hover { background: #218838; }
.btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none !important; }

/* ---- NAVBAR ---- */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255,255,255,0.97); backdrop-filter: blur(10px); border-bottom: 1px solid var(--gray-200); transition: box-shadow var(--transition); }
.navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { height: 50px; width: auto; object-fit: contain; display: block; }
.nav-menu { display: flex; align-items: center; gap: 0.15rem; flex-wrap: nowrap; }
.nav-menu > li > a { padding: 0.45rem 0.65rem; font-size: 0.82rem; font-weight: 500; color: var(--gray-800); border-radius: var(--radius); transition: all var(--transition); display: block; white-space: nowrap; }
.nav-menu > li > a:hover, .nav-menu > li > a.active { color: var(--navy); background: var(--gray-100); }
.btn-portal { background: var(--navy) !important; color: #fff !important; padding: 0.45rem 1rem !important; border-radius: var(--radius) !important; font-size: 0.82rem !important; }
.btn-portal:hover { background: var(--navy-light) !important; }
.dropdown { position: relative; }
.dropdown-menu { position: absolute; top: calc(100% + 8px); left: 0; min-width: 210px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg); border: 1px solid var(--gray-200); padding: 0.5rem; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: all var(--transition); z-index: 200; }
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li a { display: block; padding: 0.55rem 1rem; font-size: 0.82rem; color: var(--gray-800); border-radius: 4px; transition: all var(--transition); }
.dropdown-menu li a:hover { background: var(--gray-100); color: var(--navy); }
.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; padding: 6px; background: none; border: none; cursor: pointer; width: 36px; height: 36px; flex-shrink: 0; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all var(--transition); }

/* ---- LAYOUT ---- */
.section { padding: 5rem 1.5rem; }
.section-sm { padding: 3rem 1.5rem; }
.container { max-width: 1280px; margin: 0 auto; width: 100%; }
.section-header { margin-bottom: 3rem; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }
.bg-gray { background: var(--gray-50); }
.bg-navy { background: var(--navy); }
.bg-navy .section-title { color: #fff; }
.bg-navy .section-subtitle { color: rgba(255,255,255,0.75); }
.bg-navy .section-eyebrow { color: var(--gold-light); }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px,1fr)); gap: 2rem; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; }

/* ---- HERO ---- */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; padding-top: 70px; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(27,43,94,0.9) 0%, rgba(27,43,94,0.65) 60%, rgba(184,146,42,0.25) 100%); }
.hero-container { position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; padding: 4rem 1.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; width: 100%; }
.hero-content { color: #fff; }
.hero-eyebrow { display: inline-block; background: rgba(184,146,42,0.2); border: 1px solid rgba(184,146,42,0.4); color: var(--gold-light); padding: 0.4rem 1rem; border-radius: 50px; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.5rem; }
.hero-title { font-size: clamp(2rem, 5vw, 3.4rem); font-family: 'Playfair Display', serif; color: #fff; margin-bottom: 1.25rem; line-height: 1.15; }
.hero-title span { color: var(--gold-light); }
.hero-subtitle { font-size: 1rem; color: rgba(255,255,255,0.85); margin-bottom: 2rem; line-height: 1.75; max-width: 500px; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2.5rem; }
.hero-stat { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); backdrop-filter: blur(10px); border-radius: var(--radius); padding: 1.1rem; }
.hero-stat-number { font-size: 1.75rem; font-weight: 800; color: var(--gold-light); line-height: 1; }
.hero-stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.7); margin-top: 0.25rem; }
.hero-image-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-image-card img { width: 100%; height: 400px; object-fit: cover; }
.hero-card-badge { background: var(--navy); color: #fff; padding: 1rem 1.25rem; border-left: 4px solid var(--gold); }
.hero-card-badge strong { display: block; font-size: 0.95rem; }
.hero-card-badge span { font-size: 0.75rem; opacity: 0.8; }

/* ---- STATS BAR ---- */
.stats-bar { background: var(--gold); padding: 2.5rem 1.5rem; }
.stats-bar-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; text-align: center; }
.stat-item-number { font-size: 2rem; font-weight: 800; color: var(--navy); line-height: 1; }
.stat-item-label { font-size: 0.8rem; color: var(--navy-dark); opacity: 0.85; margin-top: 0.25rem; font-weight: 500; }

/* ---- CARDS ---- */
.card { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); overflow: hidden; transition: all var(--transition); }
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.card-body { padding: 1.5rem; }
.card-img { width: 100%; height: 200px; object-fit: cover; }

/* ---- SERVICE CARDS ---- */
.service-card { background: #fff; border-radius: var(--radius-lg); padding: 2rem 1.75rem; border: 1px solid var(--gray-200); transition: all var(--transition); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--gold); transform: scaleY(0); transition: transform var(--transition); transform-origin: bottom; }
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleY(1); }
.service-icon { width: 52px; height: 52px; background: var(--gold-pale); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem; }
.service-icon svg { width: 26px; height: 26px; color: var(--gold); stroke: var(--gold); }
.service-card h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 0.65rem; }
.service-card p { font-size: 0.875rem; color: var(--gray-600); line-height: 1.65; }

/* ---- ABOUT ---- */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-image-stack { position: relative; }
.about-img-main { border-radius: var(--radius-lg); width: 100%; height: 440px; object-fit: cover; }
.about-img-accent { position: absolute; bottom: -1.5rem; right: -1.5rem; width: 180px; height: 140px; object-fit: cover; border-radius: var(--radius); border: 5px solid #fff; box-shadow: var(--shadow-lg); }
.about-badge { position: absolute; top: 2rem; left: -1.25rem; background: var(--navy); color: #fff; padding: 1rem 1.25rem; border-radius: var(--radius); text-align: center; box-shadow: var(--shadow-md); }
.about-badge strong { display: block; font-size: 1.75rem; color: var(--gold-light); }
.about-badge span { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.05em; opacity: 0.8; }
.value-list { display: flex; flex-direction: column; gap: 1rem; margin: 1.5rem 0; }
.value-item { display: flex; align-items: flex-start; gap: 0.875rem; }
.value-check { width: 26px; height: 26px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 0.1rem; }
.value-check svg { width: 13px; height: 13px; color: #fff; stroke: #fff; }
.value-item-text h4 { font-size: 0.9rem; color: var(--navy); margin-bottom: 0.2rem; }
.value-item-text p { font-size: 0.825rem; color: var(--gray-600); line-height: 1.55; }

/* ---- WHY CHOOSE US ---- */
.why-us { display: grid; grid-template-columns: 1fr 1fr; }
.why-us-image { position: relative; overflow: hidden; min-height: 480px; }
.why-us-image img { width: 100%; height: 100%; object-fit: cover; }
.why-us-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg,rgba(27,43,94,0.35),transparent); }
.why-us-content { background: var(--navy); padding: 4rem 3rem; color: #fff; }
.why-us-content .section-title { color: #fff; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.why-item { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 1.1rem; transition: background var(--transition); }
.why-item:hover { background: rgba(255,255,255,0.12); }
.why-item-icon { font-size: 1.4rem; margin-bottom: 0.6rem; }
.why-item h4 { font-size: 0.85rem; color: var(--gold-light); margin-bottom: 0.3rem; }
.why-item p { font-size: 0.78rem; color: rgba(255,255,255,0.7); line-height: 1.5; }

/* ---- CTA BANNER ---- */
.cta-banner { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); padding: 5rem 1.5rem; text-align: center; color: #fff; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; top: -50%; right: -5%; width: 500px; height: 500px; background: radial-gradient(circle,rgba(184,146,42,0.18) 0%,transparent 70%); pointer-events: none; }
.cta-banner h2 { font-size: clamp(1.7rem,4vw,2.5rem); margin-bottom: 1rem; color: #fff; }
.cta-banner p { color: rgba(255,255,255,0.8); margin-bottom: 2rem; max-width: 540px; margin-left: auto; margin-right: auto; font-size: 1rem; }
.btn-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---- PAGE HERO ---- */
.page-hero { min-height: 340px; display: flex; align-items: center; position: relative; overflow: hidden; margin-top: 70px; }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg,rgba(27,43,94,0.88) 0%,rgba(27,43,94,0.7) 100%); }
.page-hero-content { position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; padding: 3rem 1.5rem; color: #fff; width: 100%; }
.page-hero h1 { font-size: clamp(1.9rem,5vw,2.9rem); margin-bottom: 0.75rem; color: #fff; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1rem; }
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; color: rgba(255,255,255,0.65); margin-bottom: 0.75rem; flex-wrap: wrap; }
.breadcrumb a { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,0.35); }

/* ---- NEWS ---- */
.news-card { border-radius: var(--radius-lg); overflow: hidden; background: #fff; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); transition: all var(--transition); cursor: pointer; }
.news-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.news-card-img { width: 100%; height: 200px; object-fit: cover; }
.news-card-body { padding: 1.4rem; }
.news-tag { display: inline-block; background: var(--gold-pale); color: var(--gold); padding: 0.2rem 0.7rem; border-radius: 50px; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.65rem; }
.news-card h3 { font-size: 0.95rem; color: var(--navy); margin-bottom: 0.5rem; line-height: 1.4; }
.news-card p { font-size: 0.82rem; color: var(--gray-600); margin-bottom: 0.875rem; line-height: 1.55; }
.news-meta { font-size: 0.72rem; color: var(--gray-400); }

/* ---- TESTIMONIALS ---- */
.testimonial-card { background: #fff; border-radius: var(--radius-lg); padding: 2rem 1.75rem; border: 1px solid var(--gray-200); position: relative; }
.testimonial-card::before { content: '"'; position: absolute; top: -0.25rem; left: 1.5rem; font-size: 5rem; color: var(--gold); opacity: 0.25; font-family: Georgia,serif; line-height: 1; }
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 0.875rem; letter-spacing: 2px; }
.testimonial-card p { font-size: 0.9rem; color: var(--gray-800); margin-bottom: 1.4rem; font-style: italic; line-height: 1.75; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.9rem; flex-shrink: 0; }
.testimonial-name { font-size: 0.875rem; font-weight: 600; color: var(--navy); }
.testimonial-role { font-size: 0.72rem; color: var(--gray-600); }

/* ---- JOB CARDS ---- */
.job-card { background: #fff; border-radius: var(--radius); border: 1px solid var(--gray-200); padding: 1.6rem; transition: all var(--transition); display: flex; flex-direction: column; gap: 0.875rem; margin-bottom: 1rem; }
.job-card:hover { box-shadow: var(--shadow-md); border-color: var(--gold); }
.job-card-header { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 0.5rem; }
.job-title { font-size: 1rem; font-weight: 700; color: var(--navy); }
.job-dept { background: var(--gold-pale); color: var(--gold); padding: 0.2rem 0.7rem; border-radius: 50px; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; white-space: nowrap; }
.job-meta { display: flex; flex-wrap: wrap; gap: 0.65rem; }
.job-meta-item { display: flex; align-items: center; gap: 0.3rem; font-size: 0.78rem; color: var(--gray-600); }
.job-meta-item i {color: #c89b2b !important; width: 13px;text-align: center;flex-shrink: 0;}
.job-desc { font-size: 0.85rem; color: var(--gray-600); line-height: 1.6; }
.job-footer { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.job-deadline { font-size: 0.72rem; color: var(--gray-400); }
.job-type-badge { background: var(--navy); color: #fff; padding: 0.2rem 0.6rem; border-radius: 4px; font-size: 0.68rem; font-weight: 600; }

/* ---- FORMS ---- */
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.1rem; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--navy); }
.form-group input, .form-group select, .form-group textarea { padding: 0.7rem 0.95rem; border: 1.5px solid var(--gray-200); border-radius: var(--radius); font-size: 0.875rem; color: var(--text); transition: all var(--transition); background: #fff; width: 100%; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(27,43,94,0.07); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.required { color: #dc3545; }

/* ---- CONTACT ---- */
.contact-form-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: start; }
.contact-info-card { background: var(--navy); color: #fff; border-radius: var(--radius-lg); padding: 2.25rem; }
.contact-info-card h3 { color: #fff; margin-bottom: 1.5rem; font-size: 1.2rem; }
.contact-item { display: flex; gap: 1rem; margin-bottom: 1.4rem; }
.contact-item-icon { width: 42px; height: 42px; background: rgba(255,255,255,0.1); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item-icon svg { width: 19px; height: 19px; color: var(--gold-light); }
.contact-item h4 { font-size: 0.75rem; color: rgba(255,255,255,0.55); margin-bottom: 0.2rem; text-transform: uppercase; letter-spacing: 0.05em; }
.contact-item p { font-size: 0.875rem; color: #fff; line-height: 1.55; }

/* ---- PORTAL LOGIN ---- */
.portal-login { min-height: calc(100vh - 70px); display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); padding: 2rem 1.5rem; margin-top: 70px; }
.portal-login-card { background: #fff; border-radius: var(--radius-lg); padding: 2.5rem; width: 100%; max-width: 420px; box-shadow: var(--shadow-lg); }
.portal-login-logo { text-align: center; margin-bottom: 1.5rem; }
.portal-login-logo img { height: 65px; margin: 0 auto; object-fit: contain; }
.portal-login-card h2 { text-align: center; color: var(--navy); margin-bottom: 0.4rem; font-size: 1.35rem; }
.portal-login-card > p { text-align: center; color: var(--gray-600); font-size: 0.85rem; margin-bottom: 1.75rem; }
.portal-tabs { display: flex; gap: 4px; margin-bottom: 1.5rem; background: var(--gray-100); padding: 4px; border-radius: var(--radius); }
.portal-tab { flex: 1; padding: 0.5rem; border-radius: 6px; font-size: 0.8rem; font-weight: 600; color: var(--gray-600); text-align: center; cursor: pointer; transition: all var(--transition); }
.portal-tab.active { background: #fff; color: var(--navy); box-shadow: var(--shadow-sm); }

/* ---- ADMIN / EMPLOYEE LAYOUT ---- */
.admin-layout, .emp-layout { display: grid; grid-template-columns: 260px 1fr; min-height: calc(100vh - 70px); margin-top: 70px; }
.admin-sidebar, .emp-sidebar { background: var(--navy-dark); color: #fff; padding: 1.25rem 0; position: sticky; top: 70px; height: calc(100vh - 70px); overflow-y: auto; }
.admin-main, .emp-main { background: var(--gray-50); padding: 1.75rem; overflow-y: auto; min-height: calc(100vh - 70px); }
.sidebar-brand { padding: 0 1.25rem 1.25rem; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 0.5rem; }
.sidebar-brand img { height: 38px; object-fit: contain; margin-bottom: 0.5rem; filter: brightness(10); }
.sidebar-brand p { font-size: 0.7rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.08em; }
.sidebar-section-label { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.35); padding: 0 1.25rem; margin: 1rem 0 0.35rem; }
.sidebar-link { display: flex; align-items: center; gap: 0.75rem; padding: 0.6rem 1.25rem; font-size: 0.82rem; color: rgba(255,255,255,0.7); cursor: pointer; transition: all var(--transition); border-right: 3px solid transparent; }
.sidebar-link:hover { background: rgba(255,255,255,0.07); color: #fff; }
.sidebar-link.active { background: rgba(255,255,255,0.1); color: #fff; border-right-color: var(--gold); }
.sidebar-link svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.admin-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.75rem; flex-wrap: wrap; gap: 0.75rem; }
.admin-header h1 { font-size: 1.35rem; color: var(--navy); }
.admin-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; margin-bottom: 1.75rem; }
.admin-stat-card { background: #fff; border-radius: var(--radius); padding: 1.1rem; border: 1px solid var(--gray-200); display: flex; align-items: center; gap: 0.875rem; }
.admin-stat-icon { width: 44px; height: 44px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.admin-stat-icon svg { width: 20px; height: 20px; }
.admin-stat-icon.navy { background: rgba(27,43,94,0.1); color: var(--navy); }
.admin-stat-icon.gold { background: var(--gold-pale); color: var(--gold); }
.admin-stat-icon.green { background: rgba(40,167,69,0.1); color: #28a745; }
.admin-stat-icon.red { background: rgba(220,53,69,0.1); color: #dc3545; }
.admin-stat-number { font-size: 1.5rem; font-weight: 700; color: var(--navy); line-height: 1; }
.admin-stat-label { font-size: 0.72rem; color: var(--gray-600); margin-top: 0.2rem; }
.admin-table-card { background: #fff; border-radius: var(--radius); border: 1px solid var(--gray-200); overflow: hidden; margin-bottom: 1.5rem; }
.admin-table-header { padding: 1.1rem 1.4rem; border-bottom: 1px solid var(--gray-200); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.admin-table-header h3 { font-size: 0.95rem; color: var(--navy); }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 0.75rem 1.25rem; text-align: left; }
th { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gray-600); background: var(--gray-50); border-bottom: 1px solid var(--gray-200); white-space: nowrap; }
td { font-size: 0.82rem; border-bottom: 1px solid var(--gray-100); color: var(--gray-800); }
tr:last-child td { border-bottom: none; }
tr:hover td { background: var(--gray-50); }
.badge { display: inline-block; padding: 0.18rem 0.55rem; border-radius: 50px; font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; white-space: nowrap; }
.badge-active { background: rgba(40,167,69,0.1); color: #28a745; }
.badge-inactive { background: rgba(108,117,125,0.15); color: var(--gray-600); }
.badge-pending { background: rgba(255,193,7,0.15); color: #d39e00; }
.badge-published { background: rgba(40,167,69,0.1); color: #28a745; }
.badge-draft { background: rgba(108,117,125,0.15); color: var(--gray-600); }
.action-btns { display: flex; gap: 0.35rem; flex-wrap: wrap; }

/* ---- EMPLOYEE DASHBOARD ---- */
.emp-profile-card { background: #fff; border-radius: var(--radius-lg); padding: 1.75rem; text-align: center; border: 1px solid var(--gray-200); margin-bottom: 1.5rem; }
.emp-avatar { width: 72px; height: 72px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 700; color: #fff; margin: 0 auto 0.875rem; }
.emp-id-badge { background: var(--gold-pale); color: var(--gold); padding: 0.2rem 0.75rem; border-radius: 50px; font-size: 0.72rem; font-weight: 700; display: inline-block; }
.announcement-card { border-left: 4px solid var(--gold); background: var(--gold-pale); border-radius: var(--radius); padding: 0.95rem 1.1rem; margin-bottom: 0.875rem; }
.announcement-card h4 { color: var(--navy); font-size: 0.875rem; margin-bottom: 0.3rem; }
.announcement-card p { color: var(--gray-600); font-size: 0.8rem; line-height: 1.55; }
.announcement-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.68rem;
    color: var(--gray-400);
    margin-top: 0.35rem;
}

.announcement-date svg {
    width: 15px;
    height: 15px;
    stroke: currentColor;
    fill: none;
    flex-shrink: 0;
}
.progress-bar { height: 6px; background: var(--gray-200); border-radius: 3px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--gold); border-radius: 3px; transition: width 0.5s ease; }

/* ---- SEARCH BAR ---- */
.search-bar { display: flex; gap: 0.65rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.search-bar input, .search-bar select { padding: 0.6rem 0.9rem; border: 1.5px solid var(--gray-200); border-radius: var(--radius); font-size: 0.85rem; color: var(--text); background: #fff; }
.search-bar input { flex: 1; min-width: 160px; }
.search-bar input:focus, .search-bar select:focus { outline: none; border-color: var(--navy); }

/* ---- MODALS ---- */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 2000; display: flex; align-items: center; justify-content: center; padding: 1rem; }
.modal-overlay.hidden { display: none; }
.modal { background: #fff; border-radius: var(--radius-lg); width: 100%; max-width: 620px; max-height: 90vh; overflow-y: auto; position: relative; box-shadow: 0 25px 60px rgba(0,0,0,0.3); }
.modal-close { position: absolute; top: 1rem; right: 1rem; width: 30px; height: 30px; border-radius: 50%; background: var(--gray-100); color: var(--gray-600); font-size: 0.9rem; display: flex; align-items: center; justify-content: center; transition: all var(--transition); z-index: 1; cursor: pointer; border: none; }
.modal-close:hover { background: var(--gray-200); }
#modal-content { padding: 2rem; }
#modal-content h2 { color: var(--navy); margin-bottom: 1.25rem; font-size: 1.2rem; padding-right: 2rem; }

/* ---- TOAST ---- */
.toast { position: fixed; bottom: 1.5rem; right: 1.5rem; background: var(--navy); color: #fff; padding: 0.875rem 1.4rem; border-radius: var(--radius); box-shadow: var(--shadow-lg); z-index: 3000; font-size: 0.875rem; max-width: 320px; border-left: 4px solid var(--gold); }
.toast.hidden { display: none; }
.toast.success { border-left-color: #28a745; }
.toast.error { border-left-color: #dc3545; }

/* ---- FOOTER ---- */
.footer { background: var(--navy-dark); color: rgba(255,255,255,0.7); padding: 4rem 1.5rem 0; }
.footer-container { max-width: 1280px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand .footer-logo { height: 55px; margin-bottom: 1rem; object-fit: contain; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; margin-bottom: 1.25rem; }
.social-links { display: flex; gap: 0.75rem; }
.social-icon { width: 34px; height: 34px; background: rgba(255,255,255,0.07); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background var(--transition); }
.social-icon:hover { background: var(--gold); }
.social-icon svg { width: 15px; height: 15px; }
.footer-links h4, .footer-contact h4 { color: #fff; font-size: 0.8rem; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.1em; }
.footer-links ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links ul a { font-size: 0.85rem; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-links ul a:hover { color: var(--gold-light); }
.footer-contact p { font-size: 0.85rem; margin-bottom: 0.75rem; line-height: 1.6; color: rgba(255,255,255,0.55); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 1.4rem 0; font-size: 0.78rem; flex-wrap: wrap; gap: 0.75rem; }
.footer-bottom p { color: rgba(255,255,255,0.35); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(255,255,255,0.35); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--gold-light); }

/* ---- MISC ---- */
.no-results { text-align: center; padding: 3rem; color: var(--gray-600); }

/* ==========================
   RESPONSIVE — TABLET
   ========================== */
@media (max-width: 1100px) {
  .admin-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .why-us { grid-template-columns: 1fr; }
  .why-us-image { display: none; }
  .why-us-content { padding: 3rem 2rem; }
  .why-grid { grid-template-columns: 1fr 1fr; }
}

/* ==========================
   RESPONSIVE — MOBILE
   ========================== */
@media (max-width: 768px) {
  /* NAV */
  .nav-menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: #fff;
    padding: 1rem;
    box-shadow: var(--shadow-lg);
    gap: 0.15rem;
    border-top: 1px solid var(--gray-200);
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    z-index: 999;
  }
  .nav-menu.open { display: flex; }
  .nav-menu > li > a { padding: 0.65rem 0.875rem; font-size: 0.9rem; }
  .nav-toggle { display: flex; }
  .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: var(--gray-50); border: none; margin-top: 0.25rem; padding: 0.25rem 0.5rem; }

  /* HERO */
  .hero { min-height: auto; padding: 2rem 0; }
  .hero-container { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.25rem 2rem; }
  .hero-image-card { display: none; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .hero-stat-number { font-size: 1.4rem; }
  .hero-cta { gap: 0.75rem; }
  .hero-cta .btn { flex: 1; min-width: 140px; text-align: center; }

  /* STATS BAR */
  .stats-bar-inner { grid-template-columns: 1fr 1fr; gap: 1.25rem; }

  /* GRIDS */
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; gap: 1.25rem; }
  .about-split { grid-template-columns: 1fr; gap: 2rem; }
  .about-img-accent, .about-badge { display: none; }
  .about-img-main { height: 280px; }
  .contact-form-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }

  /* ADMIN */
  .admin-layout, .emp-layout { grid-template-columns: 1fr; }
  .admin-sidebar, .emp-sidebar { display: none; }
  .admin-grid { grid-template-columns: 1fr 1fr; }
  .admin-main, .emp-main { padding: 1.25rem; }

  /* TABLE */
  table { display: block; overflow-x: auto; white-space: nowrap; }

  /* SECTIONS */
  .section { padding: 3.5rem 1.25rem; }
  .why-grid { grid-template-columns: 1fr; }
  .section-header { margin-bottom: 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }

  /* PORTAL */
  .portal-login { padding: 1.5rem 1rem; align-items: flex-start; padding-top: 2rem; }
  .portal-login-card { padding: 1.75rem 1.5rem; }
}

/* ==========================
   RESPONSIVE — SMALL MOBILE
   ========================== */
@media (max-width: 480px) {
  .nav-container { padding: 0 1rem; height: 62px; }
  .nav-logo img { height: 40px; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .stats-bar-inner { grid-template-columns: 1fr 1fr; }
  .admin-grid { grid-template-columns: 1fr 1fr; }
  .btn { padding: 0.65rem 1.1rem; font-size: 0.85rem; }
  .cta-banner { padding: 3.5rem 1.25rem; }
  .btn-row { flex-direction: column; align-items: center; }
  .btn-row .btn { width: 100%; max-width: 280px; }
  #modal-content { padding: 1.5rem; }
  .modal { max-height: 95vh; border-radius: var(--radius); }
  .page-hero { min-height: 260px; }
  .portal-login-card { padding: 1.5rem 1.25rem; }
}

/* ---- LEADERSHIP GRID ---- */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}

.leader-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.leader-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.leader-photo-wrap {
  position: relative;
  height: 200px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.leader-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.leader-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(27,43,94,0.4) 100%);
  pointer-events: none;
}
.leader-initials {
  width: 90px;
  height: 90px;
  background: rgba(255,255,255,0.12);
  border: 3px solid rgba(184,146,42,0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
}

.leader-info {
  padding: 1.5rem 1.6rem 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.leader-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.3rem;
}
.leader-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.875rem;
}
.leader-bio {
  font-size: 0.845rem;
  color: var(--gray-600);
  line-height: 1.65;
  flex: 1;
}

/* Responsive leadership */
@media (max-width: 768px) {
  .leadership-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.25rem;
  }
  .leader-photo-wrap { height: 170px; }
}
@media (max-width: 480px) {
  .leadership-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .leader-photo-wrap { height: 140px; }
  .leader-initials { width: 70px; height: 70px; font-size: 1.4rem; }
  .leader-info { padding: 1rem 1.1rem 1.25rem; }
  .leader-name { font-size: 0.9rem; }
  .leader-bio { font-size: 0.78rem; }
}
@media (max-width: 360px) {
  .leadership-grid { grid-template-columns: 1fr; }
}
/* ===========================
   Reviews Summary
=========================== */

.review-summary{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:3rem;
    flex-wrap:wrap;
    padding:2rem 0;
}

.review-score{
    width:180px;
    text-align:center;
}

.review-score-number{
    font-size:4.3rem;
    font-weight:800;
    color:var(--navy);
    line-height:1;
}

.review-stars{
    margin:.8rem 0;
    font-size:1.55rem;
    color:var(--gold);
    letter-spacing:2px;
}

.review-score-text{
    color:var(--gray-600);
    font-size:.95rem;
}

.review-breakdown{
    width:360px;
}

.review-row{
    display:grid;
    grid-template-columns:45px 1fr 24px;
    align-items:center;
    gap:12px;
    margin-bottom:.8rem;
}

.review-star-label{
    color:var(--gray-600);
    font-size:.9rem;
}

.review-count{
    text-align:right;
    color:var(--gray-600);
    font-size:.9rem;
}

.review-row .progress-bar{
    height:8px;
}

.review-stats{
    display:grid;
    grid-template-columns:repeat(2,160px);
    gap:1.5rem;
}

.review-stat{
    text-align:center;
}

.review-stat-number{
    font-size:2.2rem;
    font-weight:700;
    color:var(--navy);
}

.review-stat-label{
    margin-top:.35rem;
    color:var(--gray-600);
    font-size:.9rem;
}

@media(max-width:992px){

    .review-summary{
        gap:3.8rem;
    }

    .review-breakdown{
        width:100%;
        max-width:450px;
    }

}

@media(max-width:768px){

    .review-summary{
        flex-direction:column;
    }

    .review-score,
    .review-breakdown,
    .review-stats{
        width:100%;
        max-width:420px;
    }

    .review-stats{
        grid-template-columns:repeat(2,1fr);
    }

}