/*
Theme Name: Nexsure Solutions
Theme URI: https://nexsuresolutions.com
Author: Nexsure Solutions
Author URI: https://nexsuresolutions.com
Description: Professional HR Consultancy theme for Nexsure Solutions — Where Talent Meets Opportunity.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nexsure
Tags: business, hr, recruitment, custom-menu, custom-logo, footer-widgets, full-width-template, threaded-comments, translation-ready
*/

/* ─────────────────────────────────────────────
   CSS VARIABLES
───────────────────────────────────────────── */
:root {
  --navy:    #0d1b3e;
  --navy2:   #1a2a5e;
  --purple:  #6c3fc5;
  --purple2: #8b5cf6;
  --violet:  #a78bfa;
  --pink:    #ec4899;
  --grad:    linear-gradient(135deg,#0d1b3e 0%,#1a2a5e 40%,#6c3fc5 100%);
  --grad2:   linear-gradient(135deg,#6c3fc5,#ec4899);
  --white:   #fff;
  --gray:    #64748b;
  --light:   #f8fafc;
  --border:  #e2e8f0;
  --card:    #fff;
  --shadow:  0 4px 24px rgba(108,63,197,.10);
  --radius:  14px;
}

/* ─────────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: #fff;
  color: #1e293b;
  line-height: 1.6;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; transition: color .2s; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
input, textarea, select, button { font-family: inherit; }

/* ─────────────────────────────────────────────
   UTILITY
───────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.text-center { text-align: center; }
.grad-text { background: var(--grad2); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ─────────────────────────────────────────────
   NAVBAR
───────────────────────────────────────────── */
#site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  height: 64px;
}
#site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 40px;
  max-width: 1300px;
  margin: 0 auto;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: var(--navy);
}
.site-logo img { width: 38px; height: 38px; }
.site-logo svg { width: 36px; height: 36px; }

#site-navigation { display: flex; align-items: center; gap: 28px; }
#site-navigation ul { display: flex; align-items: center; gap: 28px; }
#site-navigation ul li a {
  font-size: 14px;
  font-weight: 500;
  color: #475569;
  transition: color .2s;
}
#site-navigation ul li a:hover,
#site-navigation ul li.current-menu-item a,
#site-navigation ul li.current_page_item a {
  color: var(--purple);
}
#site-navigation ul li.current-menu-item a,
#site-navigation ul li.current_page_item a {
  font-weight: 700;
  border-bottom: 2px solid var(--purple);
  padding-bottom: 2px;
}
.nav-login-btn {
  background: var(--grad2);
  color: #fff !important;
  border-radius: 8px;
  padding: 8px 20px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  transition: opacity .2s !important;
  border-bottom: none !important;
}
.nav-login-btn:hover { opacity: .88 !important; }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .3s;
}

/* ─────────────────────────────────────────────
   HERO SECTION
───────────────────────────────────────────── */
.hero {
  background: var(--grad);
  padding: 80px 40px 88px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='600' height='600' viewBox='0 0 600 600' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'%3E%3Ccircle cx='300' cy='300' r='200'/%3E%3Ccircle cx='300' cy='300' r='280'/%3E%3Ccircle cx='300' cy='300' r='350'/%3E%3C/g%3E%3C/svg%3E") center/cover no-repeat;
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }
.hero h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
}
.hero h1 .grad-text {
  background: var(--grad2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  color: rgba(255,255,255,.75);
  font-size: 16px;
  max-width: 580px;
  margin: 20px auto 36px;
  line-height: 1.7;
}
.hero-cta { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.hero-badges { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 16px; }
.badge {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  border-radius: 999px;
  padding: 7px 18px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(6px);
}

/* ─────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────── */
.btn-primary {
  background: var(--grad2);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 13px 28px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: opacity .2s, transform .15s;
}
.btn-primary:hover { opacity: .88; transform: translateY(-1px); color: #fff; }

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.5);
  border-radius: 8px;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: background .2s, border-color .2s;
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: #fff; color: #fff; }

.btn-white {
  background: #fff;
  color: var(--purple);
  border: none;
  border-radius: 8px;
  padding: 13px 28px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: opacity .2s;
}
.btn-white:hover { opacity: .9; color: var(--purple); }

/* ─────────────────────────────────────────────
   STATS STRIP
───────────────────────────────────────────── */
.stats-strip {
  background: #fff;
  padding: 36px 40px;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
}
.stat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 32px;
  text-align: center;
  min-width: 148px;
  box-shadow: var(--shadow);
}
.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 20px;
}
.stat-val {
  font-family: 'Sora', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
}
.stat-lbl { font-size: 12px; color: var(--gray); margin-top: 4px; }

/* ─────────────────────────────────────────────
   SECTION HEADING
───────────────────────────────────────────── */
.sec-head {
  text-align: center;
  padding: 70px 40px 0;
}
.sec-head h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  color: var(--navy);
}
.sec-head p {
  color: var(--gray);
  font-size: 15px;
  margin: 10px auto 0;
  max-width: 520px;
}
.sec-underline {
  width: 48px;
  height: 3px;
  background: var(--grad2);
  border-radius: 99px;
  margin: 14px auto 0;
}

/* ─────────────────────────────────────────────
   SERVICE CARDS
───────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
  padding: 40px 40px 70px;
  max-width: 1200px;
  margin: 0 auto;
}
.service-card {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s, border-color .2s;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(108,63,197,.15);
  border-color: var(--purple2);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad2);
  opacity: 0;
  transition: opacity .2s;
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}
.service-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.service-card p { font-size: 13.5px; color: #475569; line-height: 1.65; }
.service-card.featured { border-color: var(--purple2); }
.service-card.featured::before { opacity: 1; }

/* ─────────────────────────────────────────────
   WHY CHOOSE US
───────────────────────────────────────────── */
.why-section { background: var(--light); padding: 0 40px 70px; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 40px;
}
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
}
.why-item-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
  background: #ede9fe;
}
.why-item-text h4 { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.why-item-text p { font-size: 13px; color: var(--gray); line-height: 1.55; }

/* ─────────────────────────────────────────────
   CTA BAND
───────────────────────────────────────────── */
.cta-band {
  background: var(--grad);
  padding: 70px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='600' height='300' viewBox='0 0 600 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'%3E%3Ccircle cx='300' cy='150' r='150'/%3E%3Ccircle cx='300' cy='150' r='200'/%3E%3C/g%3E%3C/svg%3E") center/cover no-repeat;
}
.cta-band-content { position: relative; z-index: 1; }
.cta-band h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(24px,3vw,36px);
  font-weight: 800;
  color: #fff;
}
.cta-band p { color: rgba(255,255,255,.75); font-size: 15px; margin: 12px auto 30px; max-width: 480px; }
.cta-band-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ─────────────────────────────────────────────
   CONTACT SECTION STYLES
───────────────────────────────────────────── */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 40px auto;
  padding: 0 40px;
}
.contact-info-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 20px;
  text-align: center;
  box-shadow: var(--shadow);
}
.contact-info-card .ci-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 14px;
}
.contact-info-card h4 { font-family: 'Sora', sans-serif; font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.contact-info-card p, .contact-info-card a { font-size: 13.5px; color: var(--gray); display: block; }

.contact-main { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 1100px; margin: 0 auto; padding: 0 40px 70px; }

.contact-form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}
.contact-form-card h3 { font-family: 'Sora', sans-serif; font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.contact-form-card > p { font-size: 13.5px; color: var(--gray); margin-bottom: 24px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--navy); display: block; margin-bottom: 5px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border .2s;
  color: #1e293b;
  background: #fff;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--purple); }
.form-group textarea { resize: vertical; min-height: 110px; }

.contact-sidebar-card {
  background: linear-gradient(135deg,#6c3fc5,#8b5cf6);
  border-radius: var(--radius);
  padding: 28px;
  color: #fff;
  margin-bottom: 20px;
}
.contact-sidebar-card h3 { font-family: 'Sora', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 16px; }
.contact-sidebar-card ul { display: flex; flex-direction: column; gap: 10px; }
.contact-sidebar-card ul li { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.contact-sidebar-card ul li::before { content: '✓'; font-size: 12px; background: rgba(255,255,255,.2); width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

.services-quick-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}
.services-quick-card h3 { font-family: 'Sora', sans-serif; font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 14px; }
.services-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.service-tag {
  background: var(--light);
  color: var(--purple);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 12.5px;
  font-weight: 500;
}

.social-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 28px; box-shadow: var(--shadow); }
.social-card h3 { font-family: 'Sora', sans-serif; font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 14px; }
.social-icons { display: flex; gap: 12px; }
.social-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--light);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: background .2s, border-color .2s;
  cursor: pointer;
}
.social-icon:hover { background: var(--purple); border-color: var(--purple); }

/* ─────────────────────────────────────────────
   ABOUT PAGE
───────────────────────────────────────────── */
.about-who { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 1100px; margin: 0 auto; padding: 50px 40px; align-items: center; }
.about-who p { font-size: 15px; color: #475569; line-height: 1.75; margin-bottom: 14px; }
.about-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.about-tag { background: var(--light); color: var(--purple); border: 1px solid var(--border); border-radius: 6px; padding: 6px 14px; font-size: 13px; font-weight: 500; display: flex; align-items: center; gap: 6px; }

.approach-card {
  background: linear-gradient(135deg,#6c3fc5,#8b5cf6);
  border-radius: var(--radius);
  padding: 28px;
  color: #fff;
}
.approach-card h4 { font-family: 'Sora', sans-serif; font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.approach-card p { font-size: 14px; line-height: 1.7; opacity: .9; }
.approach-card a { color: rgba(255,255,255,.85); font-size: 13.5px; font-weight: 600; display: inline-flex; align-items: center; gap: 5px; margin-top: 14px; }
.approach-card a:hover { color: #fff; }

.leadership-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 22px; max-width: 800px; margin: 40px auto; padding: 0 40px 70px; }
.leader-card { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius); padding: 32px 24px; text-align: center; box-shadow: var(--shadow); }
.leader-avatar { width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; font-size: 32px; }
.leader-card h3 { font-family: 'Sora', sans-serif; font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.leader-card p { font-size: 13.5px; color: var(--purple); font-weight: 500; }
.leader-card::after { content: ''; display: block; width: 40px; height: 3px; background: var(--grad2); border-radius: 99px; margin: 14px auto 0; }

.values-section { background: var(--light); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1100px; margin: 0 auto; padding: 40px 40px 70px; }
.value-card { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius); padding: 26px 20px; box-shadow: var(--shadow); transition: border-color .2s, transform .2s; }
.value-card:hover { border-color: var(--purple2); transform: translateY(-3px); }
.value-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 14px; }
.value-card h4 { font-family: 'Sora', sans-serif; font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 7px; }
.value-card p { font-size: 13px; color: #475569; line-height: 1.6; }

.mission-vision { background: var(--navy); padding: 70px 40px; }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 900px; margin: 0 auto; }
.mv-card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 28px; }
.mv-card .mv-icon { width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 14px; }
.mv-card h3 { font-family: 'Sora', sans-serif; font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.mv-card p { font-size: 14px; color: rgba(255,255,255,.75); line-height: 1.7; }

/* ─────────────────────────────────────────────
   CAREER PAGE
───────────────────────────────────────────── */
.filter-bar {
  padding: 24px 40px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.filter-select {
  padding: 9px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  color: #475569;
  background: #fff;
  cursor: pointer;
  outline: none;
  transition: border .2s;
}
.filter-select:focus { border-color: var(--purple); }
.search-wrap { position: relative; flex: 1; max-width: 320px; }
.search-wrap input {
  width: 100%;
  padding: 9px 16px 9px 38px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border .2s;
}
.search-wrap input:focus { border-color: var(--purple); }
.search-wrap .s-icon { position: absolute; left: 11px; top: 50%; transform: translateY(-50%); color: #94a3b8; }

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 22px;
  padding: 16px 40px 70px;
  max-width: 1200px;
  margin: 0 auto;
}
.job-card {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s, border-color .2s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.job-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(108,63,197,.18); border-color: var(--purple2); }
.job-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--grad2); opacity: 0; transition: opacity .2s; }
.job-card:hover::before { opacity: 1; }
.jc-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.jc-icon { width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.jc-badge { font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 999px; white-space: nowrap; }
.badge-full { background: #dcfce7; color: #16a34a; }
.badge-part { background: #fef9c3; color: #ca8a04; }
.badge-remote { background: #ede9fe; color: #7c3aed; }
.badge-contract { background: #fee2e2; color: #dc2626; }
.jc-title { font-family: 'Sora', sans-serif; font-size: 17px; font-weight: 700; color: var(--navy); margin: 14px 0 6px; }
.jc-dept { font-size: 13px; color: var(--purple); font-weight: 600; }
.jc-meta { display: flex; gap: 14px; margin: 12px 0; flex-wrap: wrap; }
.jc-meta span { display: flex; align-items: center; gap: 5px; font-size: 12.5px; color: var(--gray); }
.jc-desc { font-size: 13.5px; color: #475569; line-height: 1.65; margin: 12px 0 18px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.jc-footer { display: flex; align-items: center; justify-content: space-between; }
.jc-date { font-size: 12px; color: #94a3b8; }

.no-jobs { text-align: center; padding: 60px 20px; color: var(--gray); font-size: 15px; grid-column: 1/-1; }

/* ─────────────────────────────────────────────
   ADMIN BAR
───────────────────────────────────────────── */
.admin-bar {
  display: none;
  background: var(--grad2);
  color: #fff;
  padding: 10px 40px;
  align-items: center;
  justify-content: space-between;
  font-size: 13.5px;
  font-weight: 500;
}
.admin-bar.show { display: flex; }
.admin-bar-btns { display: flex; gap: 10px; }
.admin-bar-btn {
  background: rgba(255,255,255,.2);
  color: #fff;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background .2s;
}
.admin-bar-btn:hover { background: rgba(255,255,255,.3); }
.admin-actions { position: absolute; top: 10px; right: 10px; display: flex; gap: 6px; z-index: 2; }
.admin-action-btn { background: rgba(255,255,255,.9); border: none; border-radius: 6px; width: 30px; height: 30px; cursor: pointer; font-size: 14px; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(0,0,0,.1); transition: background .2s; }
.admin-action-btn:hover { background: #fff; }

/* ─────────────────────────────────────────────
   MODALS
───────────────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,22,40,.65);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}
.modal-overlay.show { display: flex; }
.modal {
  background: #fff;
  border-radius: 18px;
  padding: 36px;
  width: min(560px, 95vw);
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalIn .25s ease;
}
@keyframes modalIn { from { transform: scale(.95); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.modal h3 { font-family: 'Sora', sans-serif; font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.modal-subtitle { font-size: 13.5px; color: var(--gray); margin-bottom: 24px; }
.modal-close {
  position: absolute;
  top: 18px; right: 18px;
  background: var(--light);
  border: none;
  border-radius: 8px;
  width: 32px; height: 32px;
  cursor: pointer;
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  color: #64748b;
}
.modal-close:hover { background: var(--border); }
.modal-footer { display: flex; gap: 10px; margin-top: 20px; }
.btn-cancel { background: var(--light); color: #475569; border: none; border-radius: 8px; padding: 10px 20px; font-size: 14px; font-weight: 600; cursor: pointer; font-family: 'DM Sans', sans-serif; }
.btn-cancel:hover { background: var(--border); }

/* Login modal extras */
.login-error { display: none; color: #dc2626; font-size: 13px; background: #fee2e2; border-radius: 6px; padding: 8px 12px; margin-bottom: 14px; }
.login-error.show { display: block; }
.login-hint { font-size: 12px; color: #94a3b8; text-align: center; margin-top: 10px; }

/* ─────────────────────────────────────────────
   TOAST
───────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 24px; right: 24px;
  background: var(--navy);
  color: #fff;
  border-radius: 10px;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 500;
  z-index: 9999;
  transform: translateY(80px);
  opacity: 0;
  transition: all .35s cubic-bezier(.16,1,.3,1);
  max-width: 320px;
  display: flex; align-items: center; gap: 8px;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { background: #059669; }
.toast.error { background: #dc2626; }

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
#site-footer { background: #0a1628; color: #fff; padding: 56px 40px 24px; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.footer-brand p { color: rgba(255,255,255,.6); font-size: 13.5px; line-height: 1.7; margin: 14px 0 18px; max-width: 280px; }
.footer-social-icons { display: flex; gap: 10px; }
.footer-social-icon { width: 34px; height: 34px; border-radius: 8px; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; font-size: 15px; transition: background .2s; }
.footer-social-icon:hover { background: var(--purple); }
.footer-col h4 { font-family: 'Sora', sans-serif; font-size: 13px; font-weight: 700; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
.footer-col a { display: block; color: rgba(255,255,255,.75); font-size: 13.5px; margin-bottom: 9px; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-contact-strip { display: flex; gap: 28px; flex-wrap: wrap; align-items: center; padding: 20px 0; border-top: 1px solid rgba(255,255,255,.08); margin-top: 40px; }
.footer-contact-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.6); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px; margin-top: 20px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 12.5px; color: rgba(255,255,255,.4); }
.footer-bottom-links { display: flex; gap: 18px; }
.footer-bottom-links a { color: rgba(255,255,255,.4); font-size: 12.5px; transition: color .2s; }
.footer-bottom-links a:hover { color: #fff; }

/* ─────────────────────────────────────────────
   CONTACT GET IN TOUCH SECTION
───────────────────────────────────────────── */
.contact-ready-section {
  background: var(--grad);
  padding: 70px 40px;
  text-align: center;
}

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-info-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-main { grid-template-columns: 1fr; }
  .about-who { grid-template-columns: 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .header-inner { padding: 0 20px; }
  #site-navigation { display: none; }
  #site-navigation.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 16px 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
  }
  #site-navigation.open ul { flex-direction: column; gap: 4px; }
  .hamburger { display: flex; }
  .hero { padding: 56px 20px 64px; }
  .stats-strip { padding: 24px 20px; }
  .services-grid { padding: 28px 20px 48px; }
  .jobs-grid { padding: 16px 20px 48px; }
  .filter-bar { padding: 16px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-contact-strip { flex-direction: column; gap: 12px; align-items: flex-start; }
  .values-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: 1fr 1fr; }
  .contact-main { padding: 0 20px 48px; }
  .sec-head { padding: 48px 20px 0; }
  .cta-band { padding: 48px 20px; }
  .leadership-grid { padding: 0 20px 48px; }
  .admin-bar { padding: 10px 20px; flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width: 480px) {
  .contact-info-grid { grid-template-columns: 1fr; }
  .container { padding: 0 16px; }
}
