/* ============================================================
   System 365 — Global Stylesheet
   Postal Blue #1B3F72 | Yellow Accent #F5C400 | Light Grey #F4F6F9
   Font: Roboto (Google Fonts)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&family=Roboto+Condensed:wght@400;700&display=swap');

/* --- Reset & Box Model ------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Roboto', sans-serif;
  background: #F4F6F9;
  color: #1a1a2e;
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* --- CSS Variables ---------------------------------------- */
:root {
  --blue:        #1B3F72;
  --blue-dark:   #122a50;
  --blue-mid:    #2356a3;
  --yellow:      #F5C400;
  --yellow-dark: #d4a800;
  --grey-light:  #F4F6F9;
  --grey-mid:    #dde2ea;
  --grey-text:   #6b7a94;
  --white:       #ffffff;
  --black:       #0d0d1a;
  --radius:      8px;
  --shadow:      0 4px 24px rgba(27,63,114,.10);
  --shadow-lg:   0 8px 40px rgba(27,63,114,.16);
  --transition:  .25s ease;
  --max-w:       1180px;
}

/* --- Typography ------------------------------------------- */
h1, h2, h3, h4 {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--blue);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: .9rem; color: #3a4a62; }
a { color: var(--blue-mid); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--yellow-dark); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* --- Layout Helpers --------------------------------------- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.25rem; }
.section    { padding: 5rem 0; }
.section--grey { background: var(--grey-light); }
.section--blue { background: var(--blue); }
.text-center { text-align: center; }
.text-white  { color: var(--white) !important; }
.text-yellow { color: var(--yellow) !important; }

/* Flex row helpers */
.flex      { display: flex; }
.flex-col  { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: .5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }

/* Grid helpers */
.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; }

@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* --- Buttons ---------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  font-family: 'Roboto', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--yellow);
  color: var(--blue);
  border-color: var(--yellow);
}
.btn-primary:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
  color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,196,0,.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--blue);
}

.btn-blue {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-blue:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-2px);
}

.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* --- Header / Navbar -------------------------------------- */
#site-header {
  background: var(--blue);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
}
.site-logo .logo-mark {
  width: 42px;
  height: 42px;
  background: var(--yellow);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--blue);
  font-family: 'Roboto Condensed', sans-serif;
  letter-spacing: -.5px;
  flex-shrink: 0;
}
.site-logo .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.site-logo .logo-text span:first-child {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  font-family: 'Roboto Condensed', sans-serif;
  letter-spacing: .5px;
}
.site-logo .logo-text span:last-child {
  font-size: .68rem;
  color: var(--yellow);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Nav links */
.nav-links {
  display: flex;
  gap: .25rem;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,.82);
  font-size: .88rem;
  font-weight: 500;
  padding: .45rem .85rem;
  border-radius: 5px;
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: .4px;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--yellow);
  background: rgba(255,255,255,.08);
}

.nav-cta { margin-left: .75rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--blue-dark);
  padding: 1rem 1.25rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.mobile-nav a {
  color: rgba(255,255,255,.85);
  padding: .7rem 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  font-size: .95rem;
  font-weight: 500;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav.open { display: flex; }

@media (max-width: 820px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
}

/* --- Hero / Page Banner ----------------------------------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--blue) 0%, #0d2447 100%);
  padding: 5.5rem 0 5rem;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/hero-delivery.jpg');
  background-size: cover;
  background-position: center;
  opacity: .18;
}
.hero-content { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(245,196,0,.15);
  border: 1px solid rgba(245,196,0,.4);
  color: var(--yellow);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: .35rem .85rem;
  border-radius: 50px;
  margin-bottom: 1.1rem;
}

.hero h1 { color: var(--white); margin-bottom: .85rem; }
.hero h1 span { color: var(--yellow); }
.hero p.lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,.78);
  max-width: 520px;
  margin-bottom: 2rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Page banner (inner pages) */
.page-banner {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
  padding: 3.5rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  right: -60px;
  top: -40px;
  width: 400px;
  height: 400px;
  background: var(--yellow);
  opacity: .05;
  border-radius: 50%;
}
.page-banner h1 { color: var(--white); }
.page-banner .breadcrumb {
  display: flex;
  gap: .5rem;
  align-items: center;
  margin-top: .6rem;
  font-size: .85rem;
  color: rgba(255,255,255,.6);
}
.page-banner .breadcrumb a { color: rgba(255,255,255,.75); }
.page-banner .breadcrumb a:hover { color: var(--yellow); }
.page-banner .breadcrumb .sep { opacity: .4; }

/* --- Tracking Bar ----------------------------------------- */
.tracking-bar {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 2rem 2.5rem;
  margin-top: -2.5rem;
  position: relative;
  z-index: 10;
}
.tracking-bar h2 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--blue);
}
.tracking-form {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}
.tracking-form input {
  flex: 1;
  min-width: 220px;
  padding: .82rem 1.1rem;
  border: 2px solid var(--grey-mid);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: 'Roboto', sans-serif;
  outline: none;
  transition: border-color var(--transition);
  color: var(--blue);
}
.tracking-form input:focus { border-color: var(--blue-mid); }
.tracking-form input::placeholder { color: #a0aec0; }

/* --- Tracking result -------------------------------------- */
#tracking-result {
  margin-top: 1.5rem;
  display: none;
}
.track-card {
  background: var(--grey-light);
  border: 1px solid var(--grey-mid);
  border-left: 4px solid var(--blue-mid);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}
.track-card .track-num { font-size: .8rem; color: var(--grey-text); margin-bottom: .35rem; }
.track-card .track-status {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #27ae60;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(39,174,96,.4); }
  50%      { box-shadow: 0 0 0 6px rgba(39,174,96,0); }
}
.track-timeline { margin-top: 1rem; }
.tl-item {
  display: flex;
  gap: .85rem;
  padding: .5rem 0;
  border-left: 2px solid var(--grey-mid);
  padding-left: 1rem;
  position: relative;
  margin-left: .5rem;
}
.tl-item::before {
  content: '';
  position: absolute;
  left: -5px;
  top: .85rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-mid);
}
.tl-item:first-child::before { background: var(--yellow); }
.tl-date { font-size: .78rem; color: var(--grey-text); min-width: 90px; }
.tl-desc { font-size: .88rem; color: var(--blue); font-weight: 500; }

/* --- Cards ------------------------------------------------ */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.card-body { padding: 1.75rem; }
.card-img { width: 100%; height: 200px; object-fit: cover; }

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(27,63,114,.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  font-size: 1.7rem;
}

/* --- Stat strip ------------------------------------------- */
.stat-strip {
  background: var(--yellow);
  padding: 2rem 0;
}
.stat-item { text-align: center; }
.stat-item .stat-num {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--blue);
  font-family: 'Roboto Condensed', sans-serif;
  line-height: 1;
  margin-bottom: .25rem;
}
.stat-item .stat-label {
  font-size: .82rem;
  font-weight: 600;
  color: rgba(27,63,114,.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- Feature strip ---------------------------------------- */
.feature-strip {
  background: var(--blue);
  padding: 1.5rem 0;
}
.feature-strip .features {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1rem;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: .65rem;
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 500;
}
.feature-item .fi-icon { font-size: 1.25rem; color: var(--yellow); }

/* --- Pricing Table ---------------------------------------- */
.pricing-card {
  background: var(--white);
  border: 2px solid var(--grey-mid);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  text-align: center;
  transition: all var(--transition);
  position: relative;
}
.pricing-card:hover,
.pricing-card.featured {
  border-color: var(--blue-mid);
  box-shadow: var(--shadow-lg);
}
.pricing-card.featured {
  transform: scale(1.04);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--blue);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: .25rem .85rem;
  border-radius: 50px;
}
.pricing-name { font-size: 1rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--grey-text); margin-bottom: .5rem; }
.pricing-price {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--blue);
  font-family: 'Roboto Condensed', sans-serif;
  line-height: 1;
}
.pricing-price sup { font-size: 1.2rem; vertical-align: super; }
.pricing-price sub { font-size: .9rem; color: var(--grey-text); }
.pricing-features {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  text-align: left;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  font-size: .88rem;
  color: #3a4a62;
}
.pricing-features li::before {
  content: '✓';
  color: #27ae60;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-features li.no::before { content: '✕'; color: #e74c3c; }

/* --- Calculator ------------------------------------------- */
.calc-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 2.5rem;
}
.calc-result {
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  margin-top: 1.5rem;
  display: none;
}
.calc-result.show { display: block; }
.calc-result .result-price {
  font-size: 3rem;
  font-weight: 900;
  color: var(--yellow);
  font-family: 'Roboto Condensed', sans-serif;
  line-height: 1;
  margin: .5rem 0;
}

/* --- Forms ------------------------------------------------ */
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: .45rem;
  letter-spacing: .3px;
}
.form-control {
  width: 100%;
  padding: .8rem 1.1rem;
  border: 2px solid var(--grey-mid);
  border-radius: var(--radius);
  font-size: .95rem;
  font-family: 'Roboto', sans-serif;
  color: var(--blue);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus {
  border-color: var(--blue-mid);
  box-shadow: 0 0 0 3px rgba(35,86,163,.12);
}
.form-control::placeholder { color: #a0aec0; }
select.form-control { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231B3F72' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
textarea.form-control { resize: vertical; min-height: 120px; }

/* Form row */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* --- Contact Info Cards ----------------------------------- */
.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.contact-info-item .ci-icon {
  width: 48px;
  height: 48px;
  background: rgba(27,63,114,.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-info-item .ci-label {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--grey-text);
  font-weight: 600;
  margin-bottom: .2rem;
}
.contact-info-item .ci-value {
  font-weight: 600;
  color: var(--blue);
  font-size: .95rem;
}

/* --- Testimonials ---------------------------------------- */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-size: 5rem;
  font-family: Georgia, serif;
  color: var(--yellow);
  position: absolute;
  top: .5rem;
  left: 1.25rem;
  line-height: 1;
  opacity: .5;
}
.testimonial-text {
  margin-top: 1.5rem;
  font-size: .95rem;
  color: #3a4a62;
  font-style: italic;
  margin-bottom: 1.25rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: .9rem;
}
.author-name { font-weight: 700; font-size: .9rem; color: var(--blue); }
.author-role { font-size: .78rem; color: var(--grey-text); }
.stars { color: var(--yellow); font-size: .85rem; margin-bottom: .35rem; }

/* --- Process Steps --------------------------------------- */
.process-step {
  text-align: center;
  position: relative;
}
.step-num {
  width: 60px;
  height: 60px;
  background: var(--blue);
  color: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  font-weight: 900;
  font-family: 'Roboto Condensed', sans-serif;
  margin: 0 auto 1.1rem;
  position: relative;
  z-index: 1;
}
.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
.process-steps-grid::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: var(--grey-mid);
  z-index: 0;
}
@media (max-width: 800px) {
  .process-steps-grid { grid-template-columns: repeat(2,1fr); }
  .process-steps-grid::before { display: none; }
}
@media (max-width: 480px) { .process-steps-grid { grid-template-columns: 1fr; } }

/* --- FAQ Accordion --------------------------------------- */
.faq-item {
  border-bottom: 1px solid var(--grey-mid);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 0;
  cursor: pointer;
  font-weight: 600;
  color: var(--blue);
  font-size: .97rem;
  user-select: none;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--blue-mid); }
.faq-question .faq-icon {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--blue-mid);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .3s ease;
}
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 1rem; }
.faq-answer p { font-size: .92rem; color: #3a4a62; margin: 0; }

/* --- Section Heading ------------------------------------- */
.section-heading { margin-bottom: 3rem; }
.section-heading .eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue-mid);
  margin-bottom: .55rem;
}
.section-heading.center { text-align: center; }
.section-heading h2 { margin-bottom: .6rem; }
.section-heading p { color: var(--grey-text); max-width: 560px; }
.section-heading.center p { margin: 0 auto; }
.section-heading .divider {
  width: 48px;
  height: 4px;
  background: var(--yellow);
  border-radius: 4px;
  margin-top: .75rem;
}
.section-heading.center .divider { margin: .75rem auto 0; }

/* --- Image placeholders ---------------------------------- */
.img-placeholder {
  width: 100%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .5px;
  border-radius: var(--radius);
  text-align: center;
  padding: 1rem;
}

/* --- Alert / Notice -------------------------------------- */
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 500;
  border-left: 4px solid;
  margin-bottom: 1.25rem;
}
.alert-success { background: #edfdf5; border-color: #27ae60; color: #1a7a43; }
.alert-info    { background: #edf4ff; border-color: var(--blue-mid); color: var(--blue); }
.alert-warning { background: #fffbe6; border-color: var(--yellow-dark); color: #7a5c00; }

/* --- Table ----------------------------------------------- */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}
.data-table th {
  background: var(--blue);
  color: var(--white);
  padding: .85rem 1.1rem;
  text-align: left;
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.data-table td {
  padding: .8rem 1.1rem;
  border-bottom: 1px solid var(--grey-mid);
  color: #3a4a62;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:nth-child(even) td { background: var(--grey-light); }
.table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow); }

/* --- About Team ----------------------------------------- */
.team-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow);
}
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}
.team-card h4 { margin-bottom: .2rem; }
.team-card .team-role { font-size: .82rem; color: var(--grey-text); margin: 0; }

/* --- Footer ---------------------------------------------- */
#site-footer {
  background: var(--black);
  color: rgba(255,255,255,.7);
  padding: 3.5rem 0 0;
  margin-top: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-col h4 {
  color: var(--white);
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.1rem;
}
.footer-col p {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  margin-bottom: .75rem;
}
.footer-col ul li {
  margin-bottom: .5rem;
}
.footer-col ul li a {
  color: rgba(255,255,255,.6);
  font-size: .87rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--yellow); }

.footer-contact-item {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  margin-bottom: .65rem;
  font-size: .85rem;
}
.footer-contact-item .fci-icon { color: var(--yellow); flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  background: rgba(0,0,0,.3);
  padding: 1.1rem 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  margin: 0;
}
.footer-legal-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.footer-legal-links a {
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  transition: color var(--transition);
}
.footer-legal-links a:hover { color: var(--yellow); }

/* Footer logo mark */
.footer-logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: 1rem;
}
.footer-logo .logo-mark {
  width: 38px;
  height: 38px;
  background: var(--yellow);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: var(--blue);
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.footer-logo .brand-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  font-family: 'Roboto Condensed', sans-serif;
  letter-spacing: .5px;
}

/* --- Map placeholder ------------------------------------- */
.map-box {
  width: 100%;
  height: 320px;
  background: linear-gradient(135deg, #1a2f50 0%, #1B3F72 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: .75rem;
  color: rgba(255,255,255,.5);
  font-size: 2.5rem;
  overflow: hidden;
  position: relative;
}
.map-box::after {
  content: '1050 W 35th St, Chicago, IL 60609';
  font-size: .85rem;
  font-family: 'Roboto', sans-serif;
  color: rgba(255,255,255,.55);
}

/* --- Policy Page ----------------------------------------- */
.policy-content { max-width: 820px; margin: 0 auto; }
.policy-content h2 { font-size: 1.3rem; margin: 2rem 0 .65rem; border-bottom: 2px solid var(--yellow); padding-bottom: .4rem; }
.policy-content h3 { font-size: 1.05rem; margin: 1.25rem 0 .45rem; color: var(--blue-mid); }
.policy-content p, .policy-content li { font-size: .93rem; color: #3a4a62; }
.policy-content ul { margin: .65rem 0 .9rem 1.25rem; list-style: disc; }
.policy-content ul li { margin-bottom: .35rem; }

/* --- Utility --------------------------------------------- */
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* --- Scrollbar ------------------------------------------- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--grey-light); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 4px; }

/* --- Animations ------------------------------------------ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeInUp .55s ease both; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }
.delay-4 { animation-delay: .4s; }
