/* =============================================
   DAELA WEBSITE — MASTER STYLESHEET
   Brand: Purple + Gold | Premium Staffing Firm
   ============================================= */

@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ---- CSS VARIABLES ---- */
:root {
  --purple-dark:   #3B1A6B;
  --purple:        #5B2D8E;
  --purple-mid:    #7040AA;
  --purple-light:  #F3EDFC;
  --gold:          #C9921A;
  --gold-light:    #E8B84B;
  --gold-pale:     #FBF3E0;
  --charcoal:      #1E1E2E;
  --slate:         #444466;
  --gray:          #6B6B85;
  --light-gray:    #F4F4F8;
  --off-white:     #FAFAF9;
  --white:         #FFFFFF;
  --border:        rgba(91,45,142,0.12);
  --shadow-sm:     0 2px 12px rgba(59,26,107,0.08);
  --shadow-md:     0 8px 32px rgba(59,26,107,0.13);
  --shadow-lg:     0 20px 60px rgba(59,26,107,0.18);
  --radius:        12px;
  --radius-lg:     20px;
  --transition:    all 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-body:     'Outfit', sans-serif;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- TYPOGRAPHY ---- */
h1,h2,h3,h4,h5 {
  font-family: var(--font-display);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--charcoal);
}
h1 { font-size: clamp(2.6rem, 5vw, 4.2rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; font-family: var(--font-body); }
p { color: var(--slate); line-height: 1.75; }

.label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 0.75rem;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
}
.btn-primary:hover {
  background: var(--purple-dark);
  border-color: var(--purple-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(91,45,142,0.3);
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: #B07E12;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,146,26,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--purple);
  border-color: var(--purple);
}
.btn-outline:hover {
  background: var(--purple);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--purple);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--purple);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--gold-pale);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* ---- LAYOUT UTILITIES ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-gold { color: var(--gold) !important; }
.text-purple { color: var(--purple) !important; }

.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; }

.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-col { display: flex; flex-direction: column; }
.gap-1 { gap: 1rem; }
.gap-2 { gap: 2rem; }

/* ---- SECTION BACKGROUNDS ---- */
.bg-purple-dark { background: var(--purple-dark); }
.bg-purple { background: var(--purple); }
.bg-light { background: var(--light-gray); }
.bg-gold-pale { background: var(--gold-pale); }
.bg-charcoal { background: var(--charcoal); }
.bg-off-white { background: var(--off-white); }

/* ---- CARD BASE ---- */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* ====================================
   NAVIGATION
   ==================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.nav.scrolled {
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 92px;
  padding: 0 2rem;
  max-width: 1280px;
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-logo img {
  height: 72px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--slate);
  padding: 0.5rem 0.85rem;
  border-radius: 6px;
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--purple);
  background: var(--purple-light);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  width: 26px;
  height: 2px;
  background: var(--purple);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 92px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem;
  z-index: 999;
  box-shadow: var(--shadow-md);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--slate);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--purple); padding-left: 0.5rem; }
.mobile-menu .btn { margin-top: 1.25rem; width: 100%; justify-content: center; }

/* ====================================
   PAGE HERO (INNER PAGES)
   ==================================== */
.page-hero {
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 60%, #7040AA 100%);
  color: var(--white);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 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='none' fill-rule='evenodd'%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/g%3E%3C/svg%3E");
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .label { color: var(--gold-light); }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.15rem; max-width: 600px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ====================================
   HOME — HERO
   ==================================== */
.hero {
  min-height: 92vh;
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 55%, #7040AA 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.035'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  pointer-events: none;
}
.hero-orb-1 { width: 500px; height: 500px; background: var(--gold); top: -100px; right: -100px; }
.hero-orb-2 { width: 350px; height: 350px; background: #9060CC; bottom: -50px; left: 30%; }
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 0.5fr;
  gap: 4rem;
  align-items: center;
}
.hero-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.hero-label::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--gold-light);
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: clamp(2.8rem, 5vw, 4.4rem);
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-sub {
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 540px;
  margin-bottom: 2.5rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; }
.hero-stats {
  display: flex;
  gap: 2.5rem;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  margin-top: 0.25rem;
  font-weight: 400;
}
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hero-badge-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--transition);
}
.hero-badge-card:hover { background: rgba(255,255,255,0.15); transform: translateX(4px); }
.hero-badge-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.hero-badge-title { font-weight: 600; font-size: 0.92rem; margin-bottom: 0.2rem; }
.hero-badge-sub { font-size: 0.78rem; color: rgba(255,255,255,0.65); }

/* ====================================
   TRUST / VALUE CARDS
   ==================================== */
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.trust-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.trust-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--gold));
}
.trust-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.trust-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--purple-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
.trust-card h4 { color: var(--purple-dark); margin-bottom: 0.5rem; font-size: 1rem; }
.trust-card p { font-size: 0.88rem; line-height: 1.65; }

/* ====================================
   SERVICES OVERVIEW
   ==================================== */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--purple-mid); }
.service-card:hover .service-icon { background: var(--purple); color: var(--white); }
.service-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--purple-light);
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}
.service-card h3 { font-size: 1.25rem; color: var(--charcoal); margin-bottom: 0.75rem; }
.service-card p { font-size: 0.88rem; }
.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--purple);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 1.25rem;
  transition: var(--transition);
}
.service-card:hover .learn-more { gap: 0.6rem; }

/* ====================================
   WHY DAELA SECTION
   ==================================== */
.why-daela {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.why-daela::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: var(--purple);
  opacity: 0.15;
  filter: blur(60px);
}
.why-daela::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.1;
  filter: blur(60px);
}
.why-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why-left h2 { color: var(--white); margin-bottom: 1.25rem; }
.why-left p { color: rgba(255,255,255,0.72); line-height: 1.8; margin-bottom: 1rem; }
.why-left .btn { margin-top: 1rem; }
.why-list { display: flex; flex-direction: column; gap: 1.25rem; }
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}
.why-item:hover { background: rgba(255,255,255,0.09); transform: translateX(4px); }
.why-dot {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.why-item-title { font-weight: 600; color: var(--white); font-size: 0.95rem; margin-bottom: 0.2rem; }
.why-item-desc { font-size: 0.83rem; color: rgba(255,255,255,0.6); }

/* ====================================
   CTA BANDS
   ==================================== */
.cta-band {
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band-partner {
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
}
.cta-band-partner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 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='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-band-candidate { background: var(--gold-pale); }
.cta-band h2 { margin-bottom: 1rem; }
.cta-band p { font-size: 1.05rem; max-width: 560px; margin: 0 auto 2rem; }
.cta-band-partner h2,
.cta-band-partner p { color: var(--white); }
.cta-band-partner p { color: rgba(255,255,255,0.82); }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ====================================
   TRAJECTORY AI SECTION
   ==================================== */
.trajectory-section {
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}
.trajectory-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.traj-visual {
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  border-radius: var(--radius-lg);
  padding: 3rem;
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.traj-visual::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.15;
  filter: blur(40px);
}
.traj-logo-area {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
}
.traj-ai-badge {
  background: var(--gold);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}
.traj-title { font-family: var(--font-display); font-size: 2rem; color: var(--white); font-weight: 700; }
.traj-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.traj-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.88);
  font-size: 0.88rem;
  background: rgba(255,255,255,0.08);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
}
.traj-feature-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold-light);
  flex-shrink: 0;
}
.traj-right h2 { margin-bottom: 1.25rem; }
.traj-right p { margin-bottom: 1rem; font-size: 0.95rem; }
.traj-right .btn { margin-top: 1rem; }

/* ====================================
   CERTIFICATIONS BADGES
   ==================================== */
.cert-band {
  background: var(--purple-light);
  padding: 2.5rem 0;
}
.cert-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.cert-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--purple-dark);
  font-weight: 600;
  font-size: 0.9rem;
}
.cert-badge {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
}
.cert-divider { width: 1px; height: 36px; background: rgba(91,45,142,0.2); }

/* ====================================
   PAST PERFORMANCE
   ==================================== */
.perf-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.perf-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.perf-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--gold));
}
.perf-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--purple-mid); }
.perf-logo-wrap {
  width: 100%;
  height: 48px;
  display: flex;
  align-items: center;
  margin-bottom: 0.25rem;
}
.perf-logo-wrap img {
  max-height: 40px;
  max-width: 140px;
  width: auto;
  object-fit: contain;
  display: block;
  border-radius: 4px;
}
.perf-logo-fallback {
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  color: var(--white);
  font-weight: 800;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  padding: 0.4rem 0.85rem;
  border-radius: 6px;
  font-family: var(--font-body);
  display: inline-block;
  text-align: center;
  line-height: 1.3;
}
.perf-org { font-weight: 700; color: var(--charcoal); font-size: 0.9rem; line-height: 1.3; }
.perf-tag {
  display: inline-flex;
  align-items: center;
  background: var(--purple-light);
  color: var(--purple);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.65rem;
  border-radius: 4px;
  width: fit-content;
}
.perf-type { font-size: 0.8rem; color: var(--gray); }
.perf-sector {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ====================================
   NAICS CODE GRID
   ==================================== */
.naics-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 0.75rem; }
.naics-pill {
  background: var(--purple-light);
  color: var(--purple-dark);
  text-align: center;
  padding: 0.6rem 0.5rem;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  border: 1px solid rgba(91,45,142,0.15);
  transition: var(--transition);
}
.naics-pill:hover { background: var(--purple); color: var(--white); }

/* ====================================
   ABOUT PAGE
   ==================================== */
.about-story {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 5rem;
  align-items: start;
}
.about-image-block {
  position: relative;
}
.about-image-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
}
.about-stat-card {
  position: absolute;
  bottom: -28px;
  right: -28px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1.75rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  min-width: 180px;
}
.about-stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--purple);
  line-height: 1;
}
.about-stat-label { font-size: 0.82rem; color: var(--gray); margin-top: 0.25rem; }

.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
}
.value-card:hover { border-color: var(--purple-mid); box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.value-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}
.value-card h4 { color: var(--purple-dark); margin-bottom: 0.5rem; }
.value-card p { font-size: 0.86rem; }

.leadership-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 2rem;
  align-items: center;
}
.leader-avatar {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  flex-shrink: 0;
}
.leader-name { font-family: var(--font-display); font-size: 1.5rem; color: var(--charcoal); }
.leader-title { color: var(--purple); font-weight: 600; font-size: 0.9rem; margin-bottom: 0.75rem; }
.leader-bio { font-size: 0.9rem; color: var(--slate); }

/* ====================================
   SERVICES PAGE
   ==================================== */
.service-full-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
  transition: var(--transition);
}
.service-full-card:hover { box-shadow: var(--shadow-md); }
.service-full-card.reverse { direction: rtl; }
.service-full-card.reverse > * { direction: ltr; }
.service-full-left {
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-full-left .service-icon { background: rgba(255,255,255,0.15); color: var(--white); margin-bottom: 1.5rem; }
.service-full-left h3 { color: var(--white); margin-bottom: 1rem; }
.service-full-left p { color: rgba(255,255,255,0.82); font-size: 0.92rem; margin-bottom: 1.5rem; }
.service-full-right {
  background: var(--white);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-list { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.5rem; }
.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--slate);
}
.service-list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1em;
}

/* ====================================
   GOVERNMENT PAGE
   ==================================== */
.gov-capabilities { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.gov-cap-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-top: 4px solid var(--purple);
}
.gov-cap-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-top-color: var(--gold); }
.gov-cap-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.gov-cap-card h4 { color: var(--purple-dark); margin-bottom: 0.6rem; }
.gov-cap-card p { font-size: 0.86rem; }

.teaming-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.teaming-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 2rem;
}
.teaming-card h4 { color: var(--white); margin-bottom: 0.75rem; }
.teaming-card p { color: rgba(255,255,255,0.72); font-size: 0.88rem; }

/* ====================================
   PARTNERS PAGE
   ==================================== */
.partner-why { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.partner-why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.partner-why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--gold));
  transform: scaleX(0);
  transition: var(--transition);
}
.partner-why-card:hover::after { transform: scaleX(1); }
.partner-why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.partner-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--purple-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.partner-why-card h4 { color: var(--purple-dark); margin-bottom: 0.6rem; }
.partner-why-card p { font-size: 0.86rem; }

/* ====================================
   CANDIDATES PAGE
   ==================================== */
.candidate-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; position: relative; }
.candidate-steps::before {
  content: '';
  position: absolute;
  top: 28px; left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--gold));
  z-index: 0;
}
.step-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--border);
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--purple);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-sm);
}
.step-card h4 { margin-bottom: 0.5rem; color: var(--purple-dark); }
.step-card p { font-size: 0.84rem; }

/* ====================================
   TRAJECTORY AI PAGE
   ==================================== */
.traj-page-hero {
  background: linear-gradient(135deg, #1A0A35, var(--purple-dark), var(--purple));
}
.traj-features-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; }
.traj-feat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: var(--transition);
}
.traj-feat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.traj-feat-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--purple), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  color: var(--white);
}
.traj-feat-card h4 { color: var(--purple-dark); margin-bottom: 0.5rem; }
.traj-feat-card p { font-size: 0.88rem; }

.traj-how-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.traj-step {
  text-align: center;
  position: relative;
}
.traj-step-circle {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 8px 24px rgba(91,45,142,0.3);
}
.traj-step h4 { color: var(--purple-dark); margin-bottom: 0.5rem; }
.traj-step p { font-size: 0.84rem; }

/* ====================================
   CONTACT PAGE
   ==================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; }
.contact-info h3 { margin-bottom: 1rem; }
.contact-info p { margin-bottom: 2rem; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-item-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--purple-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-item-label { font-size: 0.78rem; color: var(--gray); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0.2rem; }
.contact-item-value { font-weight: 600; color: var(--charcoal); }

.contact-form { background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.84rem; font-weight: 600; color: var(--charcoal); margin-bottom: 0.5rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--charcoal);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(91,45,142,0.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-success {
  display: none;
  background: #E8F5E9;
  border: 1px solid #66BB6A;
  border-radius: 8px;
  padding: 1rem 1.25rem;
  color: #2E7D32;
  font-size: 0.9rem;
  margin-top: 1rem;
}

/* ====================================
   FOOTER
   ==================================== */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.75);
  padding: 4.5rem 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .footer-logo-wrap {
  display: inline-block;
  background: rgba(255,255,255,0.10);
  border-radius: 10px;
  padding: 0.5rem 1rem;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(255,255,255,0.1);
}
.footer-brand img { height: 56px; width: auto; display: block; }
.footer-brand p { font-size: 0.85rem; line-height: 1.75; color: rgba(255,255,255,0.58); max-width: 260px; }
.footer-email {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-light);
  font-size: 0.85rem;
  margin-top: 1rem;
  transition: var(--transition);
}
.footer-email:hover { color: var(--gold); }
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}
.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.7rem;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  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: var(--transition); }
.footer-bottom-links a:hover { color: var(--gold-light); }

/* ====================================
   SCROLL ANIMATIONS
   ==================================== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }

/* ====================================
   SECTION HEADER COMPONENT
   ==================================== */
.section-header { margin-bottom: 3.5rem; }
.section-header.center { text-align: center; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { font-size: 1.05rem; max-width: 580px; }
.section-header.center p { margin: 0 auto; }

/* ====================================
   DIVIDER
   ==================================== */
.gold-divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 0.75rem 0 1rem;
}
.gold-divider.center { margin-left: auto; margin-right: auto; }

/* ====================================
   HIGHLIGHT BOX
   ==================================== */
.highlight-box {
  background: var(--purple-light);
  border-left: 4px solid var(--purple);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
}
.highlight-box p { color: var(--purple-dark); font-weight: 500; font-size: 0.95rem; margin: 0; }

/* ====================================
   RESPONSIVE
   ==================================== */
@media (max-width: 1100px) {
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .why-content { grid-template-columns: 1fr; gap: 3rem; }
  .trajectory-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-story { grid-template-columns: 1fr; }
  .about-stat-card { position: relative; bottom: auto; right: auto; margin-top: 1.5rem; display: inline-block; }
  .service-full-card { grid-template-columns: 1fr; }
  .service-full-card.reverse { direction: ltr; }
  .gov-capabilities { grid-template-columns: repeat(2,1fr); }
  .teaming-grid { grid-template-columns: 1fr; }
  .partner-why { grid-template-columns: repeat(2,1fr); }
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .candidate-steps { grid-template-columns: repeat(2,1fr); }
  .candidate-steps::before { display: none; }
  .traj-features-grid { grid-template-columns: 1fr; }
  .traj-how-steps { grid-template-columns: repeat(2,1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .perf-grid { grid-template-columns: repeat(2,1fr); }
  .naics-grid { grid-template-columns: repeat(3,1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .section { padding: 4rem 0; }
  .trust-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .partner-why { grid-template-columns: 1fr; }
  .gov-capabilities { grid-template-columns: 1fr; }
  .perf-grid { grid-template-columns: 1fr; }
  .candidate-steps { grid-template-columns: 1fr; }
  .traj-how-steps { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .naics-grid { grid-template-columns: repeat(2,1fr); }
  .cert-inner { gap: 1.5rem; }
  .cert-divider { display: none; }
}

/* ====================================
   FONT AWESOME ICON SIZING
   ==================================== */
.trust-icon i, .service-icon i,
.value-icon i, .contact-item-icon i,
.cert-badge i, .hero-badge-icon i,
.why-dot i, .traj-feat-icon i,
.step-num i, .traj-step-circle i,
.about-image-main i {
  font-size: 1.25rem;
  line-height: 1;
}
.gov-cap-icon i {
  font-size: 1.6rem;
  line-height: 1;
}
.gov-cap-icon {
  font-size: 1rem; /* reset the span */
}
.value-icon {
  font-size: 1rem;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--purple-light);
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.leader-avatar i { font-size: 2rem; }
.traj-feature-dot { flex-shrink: 0; }


/* ====================================
   CERTIFICATION BAND V2 — Official Seals
   ==================================== */
.cert-band-v2 {
  background: linear-gradient(135deg, #0A1A3E 0%, #1A2A5E 50%, #0A1A3E 100%);
  padding: 2.5rem 0;
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
}
.cert-inner-v2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cert-item-v2 {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
  min-width: 200px;
}
.cert-item-v2:hover {
  background: rgba(255,255,255,0.10);
  transform: translateY(-2px);
}
.cert-seal-wrap {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cert-seal-img {
  width: 56px;
  height: auto;
  object-fit: contain;
  display: block;
  /* No filters — preserve official colors */
}
.cert-seal-official {
  width: 48px;
  border-radius: 4px;
}
.cert-seal-badge {
  width: 56px;
}
.cert-text-v2 { display: flex; flex-direction: column; gap: 0.2rem; }
.cert-title-v2 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--white);
  letter-spacing: 0.03em;
}
.cert-sub-v2 {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
}
.cert-code {
  font-family: 'Courier New', monospace;
  font-size: 0.78rem;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  font-weight: 600;
}
.cert-band-v2 .cert-divider {
  width: 1px;
  height: 52px;
  background: rgba(255,255,255,0.15);
}

/* ====================================
   DECAL ICON CARDS (Service Grid)
   ==================================== */
.decal-card .decal-icon-wrap {
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}
.decal-icon-wrap .decal-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  display: block;
  transition: var(--transition);
  filter: drop-shadow(0 4px 12px rgba(91,45,142,0.2));
}
.decal-card:hover .decal-icon {
  transform: scale(1.08) rotate(-3deg);
  filter: drop-shadow(0 6px 18px rgba(91,45,142,0.35));
}

/* ====================================
   WHY-DAELA METALLIC DECAL ICONS
   ==================================== */
.why-decal-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.why-decal-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
  transition: var(--transition);
}
.why-item:hover .why-decal-icon img {
  transform: scale(1.1);
  filter: drop-shadow(0 4px 12px rgba(255,215,0,0.4));
}

/* ====================================
   AGENCY BADGE PAST PERFORMANCE CARDS
   ==================================== */
.agency-card {
  position: relative;
  padding-top: 1.75rem;
}
.agency-badge-wrap {
  position: relative;
  width: 72px;
  height: 72px;
  margin-bottom: 0.85rem;
}
.agency-badge-img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 3px 10px rgba(0,0,0,0.2));
  transition: var(--transition);
}
.agency-logo-overlay {
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 50%;
  background: white;
  padding: 2px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  border: 1.5px solid var(--border);
}
.agency-card:hover .agency-badge-img {
  transform: scale(1.05);
  filter: drop-shadow(0 5px 16px rgba(91,45,142,0.3));
}

/* ====================================
   RESPONSIVE UPDATES FOR NEW CERT BAND
   ==================================== */
@media (max-width: 900px) {
  .cert-inner-v2 { gap: 1rem; }
  .cert-item-v2 { min-width: 160px; }
  .cert-band-v2 .cert-divider { display: none; }
}
@media (max-width: 600px) {
  .cert-item-v2 { min-width: calc(50% - 1rem); }
  .decal-icon { width: 64px; height: 64px; }
}

/* ====================================
   REAL AGENCY LOGO CARDS
   ==================================== */
.agency-badge-wide {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 0.85rem;
  position: relative;
}

/* Default: fit within the badge area, left-aligned */
.agency-real-logo {
  max-height: 72px;
  max-width: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 6px;
  transition: var(--transition);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.12));
}

/* Circular seals — Louisiana, Maryland, BCPS */
.agency-logo-circle {
  max-height: 72px;
  max-width: 72px;
  border-radius: 50%;
}

/* Wide horizontal logos — TSA */
.agency-logo-wide {
  max-height: 54px;
  max-width: 180px;
}

/* Hover lift */
.agency-card:hover .agency-real-logo {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 14px rgba(91,45,142,0.25));
}

/* Prime contract tag — gold highlight */
.perf-tag.prime {
  background: linear-gradient(90deg, var(--gold), #FFD700);
  color: var(--charcoal);
  font-weight: 700;
}

/* Remove the old agency-badge-wrap sizing that conflicts */
.agency-card .agency-badge-wide {
  position: static;
}
