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

:root {
  --red: #C0201E;
  --red-dark: #8B1210;
  --red-light: #E53030;
  --charcoal: #1A1A1A;
  --charcoal-mid: #2E2E2E;
  --steel: #4A4A4A;
  --silver: #8A8A8A;
  --smoke: #F0EEEB;
  --white: #FFFFFF;
  --off-white: #FAF9F7;
  --border: #D8D4D0;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--charcoal);
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--red);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--red-dark);
}

/* ── LAYOUT CONTAINERS ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 3px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 72px;
  box-shadow: var(--shadow-md);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

.nav-logo:hover .logo-img {
  transform: scale(1.05);
}

.nav-emblem {
  width: 44px;
  height: 44px;
  background: var(--charcoal);
  clip-path: polygon(50% 0%, 100% 12%, 100% 70%, 50% 100%, 0% 70%, 0% 12%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-emblem img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.nav-wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 3px;
  color: var(--charcoal);
  text-transform: uppercase;
  line-height: 1.1;
}

.nav-wordmark small {
  display: block;
  font-size: 10px;
  letter-spacing: 2px;
  font-weight: 600;
  color: var(--silver);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--steel);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links a:hover {
  color: var(--charcoal);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-links .dropdown {
  position: relative;
}

.nav-links .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--white);
  border-top: 3px solid var(--red);
  box-shadow: var(--shadow-lg);
  list-style: none;
  padding: 8px 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
  z-index: 100;
}

.nav-links .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-links .dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: var(--steel);
  font-size: 12px;
  text-align: left;
}

.nav-links .dropdown-menu li a::after {
  display: none;
}

.nav-links .dropdown-menu li a:hover {
  background: var(--smoke);
  color: var(--charcoal);
}

.nav-cta {
  display: inline-block;
  white-space: nowrap;
  background: var(--red);
  color: var(--white) !important;
  padding: 10px 28px;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  transition: var(--transition);
}

.nav-cta:hover {
  background: var(--charcoal) !important;
  color: var(--white) !important;
}

.nav-cta::after {
  display: none !important;
}

/* Hamburger mobile nav button */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 1010;
}

.hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--charcoal);
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

.hamburger span:nth-child(1) { top: 0px; }
.hamburger span:nth-child(2) { top: 10px; }
.hamburger span:nth-child(3) { top: 20px; }

.hamburger.open span:nth-child(1) {
  top: 10px;
  transform: rotate(135deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.hamburger.open span:nth-child(3) {
  top: 10px;
  transform: rotate(-135deg);
}

/* ── HERO ── */
.hero {
  min-height: calc(100vh - 72px);
  margin-top: 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  background: var(--charcoal);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 80px;
  position: relative;
  z-index: 2;
}

.hero-left::after {
  content: '';
  position: absolute;
  top: 0;
  right: -40px;
  bottom: 0;
  width: 80px;
  background: var(--charcoal);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: 3;
}

.hero-tag {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: fadeUp 0.6s ease both;
}

.hero-tag::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--red);
  display: inline-block;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 4.5vw, 72px);
  line-height: 0.92;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeUp 0.7s 0.1s ease both;
}

.hero-title span {
  color: var(--red);
  display: block;
}

.hero-desc {
  font-weight: 300;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  max-width: 440px;
  margin-bottom: 24px;
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero-iso {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  animation: fadeUp 0.7s 0.25s ease both;
}

.iso-badge {
  background: rgba(192,32,30,0.15);
  border: 1px solid var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  animation: fadeUp 0.7s 0.3s ease both;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 40px;
  border: none;
  cursor: pointer;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
}

.btn-primary:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline {
  color: rgba(255,255,255,0.7);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

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

.hero-right {
  background: var(--smoke);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 80px 80px;
}

.hero-bg-text {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 300px;
  color: rgba(0,0,0,0.03);
  letter-spacing: -20px;
  user-select: none;
  line-height: 1;
  bottom: -40px;
  right: -20px;
}

.hero-stats {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  width: 100%;
  max-width: 320px;
  position: relative;
  z-index: 2;
}

.stat-card {
  padding: 32px 40px;
  border-left: 4px solid transparent;
  transition: border-color 0.2s, background 0.2s;
  cursor: default;
}

.stat-card:hover {
  border-left-color: var(--red);
  background: var(--white);
}

.stat-card + .stat-card {
  border-top: 1px solid var(--border);
}

.stat-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 56px;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-num sup {
  font-size: 28px;
  color: var(--red);
  vertical-align: super;
}

.stat-label {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--silver);
}

/* ── TICKER ── */
.ticker {
  background: var(--red);
  overflow: hidden;
  height: 48px;
  display: flex;
  align-items: center;
}

.ticker-inner {
  display: flex;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  padding: 0 48px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.ticker-item::before {
  content: '◆';
  font-size: 8px;
  opacity: 0.6;
}

/* ── SHARED SECTION STYLES ── */
section {
  padding: 100px 0;
}

.section-header-centered {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label.center {
  justify-content: center;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}

.section-label.center::after {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 3.5vw, 52px);
  line-height: 1;
  text-transform: uppercase;
  color: var(--charcoal);
}

/* ── ABOUT SECTION ── */
.about-section {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-placeholder {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-mid) 100%);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  clip-path: polygon(15px 0%, 100% 0%, calc(100% - 15px) 100%, 0% 100%);
}

.about-img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(192,32,30,0.08) 20px, rgba(192,32,30,0.08) 21px);
}

.about-img-placeholder .big-ss {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 160px;
  color: rgba(255,255,255,0.05);
  letter-spacing: -8px;
  position: relative;
  z-index: 1;
}

.about-years-badge {
  position: absolute;
  bottom: -24px;
  right: -10px;
  width: 120px;
  height: 120px;
  background: var(--red);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 2;
  box-shadow: var(--shadow-lg);
}

.about-years-badge .num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 32px;
  color: var(--white);
  line-height: 1;
}

.about-years-badge .lbl {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-align: center;
  padding: 0 8px;
  margin-top: 2px;
}

.about-text .section-label {
  margin-bottom: 16px;
}

.about-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 3.5vw, 48px);
  text-transform: uppercase;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 24px;
}

.about-title span {
  color: var(--red);
}

.about-text p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--steel);
  margin-bottom: 18px;
}

.about-tagline {
  background: var(--smoke);
  border-left: 4px solid var(--red);
  padding: 16px 20px;
  margin-bottom: 28px;
  font-weight: 600;
  font-size: 15px;
  color: var(--charcoal);
  font-style: italic;
}

.iso-row {
  display: flex;
  gap: 10px;
  margin-bottom: 32px;
}

.iso-pill {
  background: rgba(192,32,30,0.08);
  border: 1px solid rgba(192,32,30,0.25);
  color: var(--red);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
}

/* ── SERVICES SECTION ── */
.services-section {
  background: var(--off-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.service-card {
  background: var(--white);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  background: var(--smoke);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 56px;
  color: rgba(0,0,0,0.05);
  line-height: 1;
  margin-bottom: 16px;
}

.svc-icon {
  width: 48px;
  height: 48px;
  background: var(--charcoal);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
}

.svc-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--red);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.service-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--steel);
  margin-bottom: 20px;
}

.btn-secondary {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
  border-bottom: 1px solid var(--red);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
  display: inline-block;
}

.btn-secondary:hover {
  color: var(--red-dark);
  border-color: var(--red-dark);
}

.services-cta {
  text-align: center;
}

/* ── WHY CHOOSE US ── */
.feature-section {
  background: var(--white);
}

.feature-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}

.feature-left .section-label {
  margin-bottom: 16px;
}

.feature-left-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 3.5vw, 44px);
  text-transform: uppercase;
  line-height: 1;
  color: var(--charcoal);
  margin-bottom: 24px;
}

.feature-left p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--steel);
  margin-bottom: 20px;
}

.feature-sub-head {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--red);
  margin-bottom: 8px;
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-sub-head::before {
  content: '';
  width: 16px;
  height: 2px;
  background: var(--red);
}

.feature-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.feature-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 0;
  border: 1px solid var(--border);
  background: var(--off-white);
  transition: background 0.2s;
}

.feature-item + .feature-item {
  border-top: none;
}

.feature-item:hover {
  background: var(--smoke);
}

.feature-img-box {
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
  position: relative;
  overflow: hidden;
}

.feature-img-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 8px, rgba(192,32,30,0.1) 8px, rgba(192,32,30,0.1) 9px);
}

.feature-img-icon {
  position: relative;
  z-index: 1;
}

.feature-img-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: var(--red);
  stroke-width: 1.5;
}

.feature-content {
  padding: 20px 24px;
}

.feature-content h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.feature-content p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--steel);
}

/* ── PARTNERS / SECTORS ── */
.partners-section {
  background: var(--smoke);
}

.partners-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}

.partners-left .section-label {
  margin-bottom: 16px;
}

.partners-left-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 3.5vw, 44px);
  text-transform: uppercase;
  line-height: 1;
  color: var(--charcoal);
  margin-bottom: 24px;
}

.partners-left p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--steel);
  margin-bottom: 24px;
}

.states-served {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.state-tag {
  background: var(--white);
  border: 1px solid var(--border);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--steel);
  padding: 6px 16px;
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.acc-item {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
}

.acc-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--charcoal);
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  transition: background 0.2s;
  list-style: none;
}

.acc-header:hover {
  background: var(--smoke);
}

.acc-header .acc-num {
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 14px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
  flex-shrink: 0;
}

.acc-header .acc-arrow {
  margin-left: auto;
  color: var(--red);
  font-size: 18px;
  transition: transform 0.25s;
}

.acc-item.open .acc-arrow {
  transform: rotate(45deg);
}

.acc-body {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.acc-item.open .acc-body {
  max-height: 200px;
  padding: 0 24px 20px;
}

.acc-body p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--steel);
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.partners-note {
  margin-top: 16px;
  background: var(--red);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  padding: 14px 24px;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

/* ── QUOTE BAND ── */
.quote-band {
  background: var(--charcoal);
  padding: 80px 0;
}

.quote-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.quote-band h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 4.5vw, 52px);
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  margin-bottom: 16px;
}

.quote-band h2 span {
  color: var(--red);
}

.quote-band p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
  max-width: 440px;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quote-form input, 
.quote-form textarea,
.quote-form select {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 14px 20px;
  outline: none;
  transition: border-color 0.2s;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: rgba(255,255,255,0.35);
}

.quote-form input:focus,
.quote-form textarea:focus,
.quote-form select:focus {
  border-color: var(--red);
}

/* ── TESTIMONIALS ── */
.testimonial-section {
  background: var(--off-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}

.testi-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testi-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 80px;
  color: rgba(192,32,30,0.08);
  line-height: 1;
}

.testi-quote {
  font-size: 14px;
  line-height: 1.8;
  color: var(--steel);
  margin-bottom: 28px;
  font-style: italic;
}

.testi-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.testi-avatar {
  width: 48px;
  height: 48px;
  background: var(--charcoal);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  color: var(--red);
  flex-shrink: 0;
}

.testi-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  text-transform: uppercase;
  color: var(--charcoal);
  letter-spacing: 0.5px;
}

.testi-role {
  font-size: 12px;
  color: var(--silver);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

/* ── CTA SECTION ── */
.cta-section {
  padding: 120px 0;
  text-align: center;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: 'SS';
  position: absolute;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 480px;
  color: rgba(0,0,0,0.02);
  line-height: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  letter-spacing: -30px;
}

.cta-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(44px, 5vw, 72px);
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 20px;
  line-height: 1;
  position: relative;
}

.cta-title span {
  color: var(--red);
}

.cta-sub {
  font-size: 15px;
  color: var(--steel);
  margin-bottom: 44px;
  position: relative;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  position: relative;
}

.btn-dark {
  background: var(--charcoal);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 18px 48px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: var(--transition);
  display: inline-block;
}

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

/* ── FOOTER ── */
footer {
  background: var(--charcoal);
  padding: 64px 0 32px;
  border-top: 3px solid var(--red);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  background: var(--white);
  padding: 6px 12px;
  border-radius: 4px;
  display: block;
  transition: transform 0.3s ease;
}

.footer-logo-img:hover {
  transform: scale(1.05);
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  border-bottom: 2px solid var(--red);
  padding-bottom: 6px;
  display: inline-block;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li + li {
  margin-top: 10px;
}

.footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-right-col {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-powered {
  font-size: 10px;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
}

.footer-powered a {
  color: rgba(255,255,255,0.6);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-powered a:hover {
  color: var(--white);
}

.footer-copy {
  font-size: 12px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.25);
  text-transform: uppercase;
}

.footer-copy strong {
  color: var(--red);
  font-weight: 700;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  font-family: var(--font-display);
  font-weight: 700;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
}

.social-btn:hover {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

/* ── SUBPAGES BREADCRUMB / PAGE HEADER ── */
.pt-breadcrumb {
  background: var(--charcoal);
  padding: 60px 0;
  margin-top: 72px;
  position: relative;
  text-align: center;
  border-bottom: 3px solid var(--red);
}

.pt-breadcrumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 15px, rgba(192,32,30,0.04) 15px, rgba(192,32,30,0.04) 16px);
}

.pt-breadcrumb-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 44px;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  letter-spacing: 2px;
  line-height: 1.2;
}

/* ── DYNAMIC PAGES FORM STYLING (REGISTRATION & CONTACT) ── */
.form-grid-container {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 48px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 40px;
}

.form-section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--red);
  letter-spacing: 1px;
  border-bottom: 2px solid var(--smoke);
  padding-bottom: 8px;
  margin-bottom: 24px;
  margin-top: 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  font-weight: 600;
  font-size: 13px;
  color: var(--steel);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group label font {
  margin-left: 2px;
}

.form-control-redesigned {
  background: var(--off-white);
  border: 1px solid var(--border);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 12px 16px;
  outline: none;
  transition: var(--transition);
  width: 100%;
}

.form-control-redesigned:focus {
  border-color: var(--red);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(192,32,30,0.1);
}

select.form-control-redesigned {
  cursor: pointer;
  height: 48px;
}

textarea.form-control-redesigned {
  resize: vertical;
  min-height: 120px;
}

/* Custom file upload field styling */
.file-upload-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--smoke);
  border: 1px dashed var(--border);
  padding: 12px 16px;
  cursor: pointer;
  transition: var(--transition);
}

.file-upload-wrapper:hover {
  border-color: var(--red);
  background: rgba(192,32,30,0.02);
}

.file-upload-btn-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--steel);
}

.file-upload-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.btn-submit-form {
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  width: 100%;
}

.btn-submit-form:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Alert Notification Boxes */
.alert-banner {
  padding: 16px 24px;
  margin-bottom: 24px;
  border-left: 4px solid transparent;
  font-size: 14px;
  font-weight: 500;
}

.alert-banner-success {
  background: #E8F5E9;
  border-left-color: #2E7D32;
  color: #1B5E20;
}

.alert-banner-error {
  background: #FFEBEE;
  border-left-color: #C62828;
  color: #B71C1C;
}

/* ── VACANCIES / DATA GRID ── */
.vacancy-grid-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.vacancy-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr;
  align-items: center;
  gap: 24px;
  transition: var(--transition);
}

.vacancy-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--red);
}

.vacancy-info h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.vacancy-info p {
  font-size: 13px;
  color: var(--silver);
  margin-bottom: 12px;
}

.vacancy-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.vacancy-meta-item {
  font-size: 14px;
  color: var(--steel);
}

.vacancy-meta-item strong {
  color: var(--charcoal);
}

.vacancy-meta-item.last-date {
  color: var(--red);
  font-weight: 700;
}

.vacancy-action {
  text-align: right;
}

.vacancy-action .btn-primary {
  padding: 12px 28px;
  font-size: 12px;
}

/* ── CONTACT OFFICES GRID ── */
.offices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.office-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.office-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.office-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 20px;
  border-bottom: 2px solid var(--smoke);
  padding-bottom: 10px;
}

.office-detail-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--steel);
}

.office-detail-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--red);
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
}

.contact-layout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 60px;
}

.contact-map-wrapper {
  height: 100%;
  min-height: 400px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.contact-map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  min-height: 400px;
}

/* ── MOBILE SIDEBAR & DRAWER ── */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background: var(--charcoal);
  z-index: 1005;
  box-shadow: var(--shadow-lg);
  padding: 80px 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  transition: right 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.mobile-nav-drawer.open {
  right: 0;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-links a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  display: block;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  color: var(--white);
}

.mobile-nav-links .dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-nav-links .mobile-submenu {
  list-style: none;
  padding-left: 16px;
  margin-top: 10px;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.mobile-nav-links .mobile-submenu.open {
  display: flex;
}

.mobile-nav-links .mobile-submenu a {
  font-size: 14px;
  text-transform: capitalize;
  color: rgba(255, 255, 255, 0.5);
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1004;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* Candidate details table style in preview/print */
.candidate-detail-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
}

.candidate-detail-table td, 
.candidate-detail-table th {
  border: 1px solid var(--border);
  padding: 12px 16px;
  font-size: 14px;
}

.candidate-detail-table th {
  background: var(--smoke);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  text-align: left;
}

.candidate-detail-table td.label-column {
  font-weight: 600;
  background: var(--off-white);
  width: 30%;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.5px;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ── RESPONSIVE MEDIA QUERIES ── */

@media (max-width: 1024px) {
  nav {
    padding: 0 24px;
  }
  .nav-links {
    display: none; /* Hide standard nav link container */
  }
  .hamburger {
    display: block; /* Show hamburger button */
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-left::after {
    display: none;
  }
  .hero-right {
    min-height: auto;
    padding: 64px 24px;
  }
  .about-grid, 
  .feature-grid, 
  .partners-grid, 
  .quote-inner, 
  .contact-layout-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
  .offices-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .footer-right-col {
    flex-direction: column;
    gap: 12px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group.full-width {
    grid-column: span 1;
  }
  .form-grid-container {
    padding: 24px;
  }
  .vacancy-card {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: left;
  }
  .vacancy-action {
    text-align: left;
  }
}