/* ============================================
   JT ANDERSON TRANSPORT LTD
   Brand Stylesheet
   Palette: Navy #0B1F3A | Gold #C9A84C | White #F5F5F0
   ============================================ */

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

:root {
  --navy:       #0B1F3A;
  --navy-mid:   #122A4E;
  --navy-light: #1A3A62;
  --gold:       #C9A84C;
  --gold-light: #E2C47A;
  --gold-dark:  #A07A2A;
  --white:      #F5F5F0;
  --off-white:  #EAE8E0;
  --grey:       #8A8A8A;
  --text:       #1C1C1C;
  --radius:     4px;
  --shadow:     0 4px 24px rgba(0,0,0,0.18);
  --shadow-lg:  0 12px 48px rgba(0,0,0,0.28);
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

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

body {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.display-serif {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.05em;
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); }

strong { font-weight: 600; }

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

.container--wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 90px 0; }
section.tight { padding: 60px 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }

/* ---- SECTION LABELS ---- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  margin-bottom: 20px;
}

.section-title--white { color: var(--white); }

.section-subtitle {
  font-size: 1.1rem;
  color: var(--grey);
  max-width: 580px;
  font-weight: 400;
}

.section-subtitle--white { color: rgba(255,255,255,0.75); }

.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }
.text-center .section-label { justify-content: center; }
.text-center .section-label::before { display: none; }
.text-center .section-label::after {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
}

/* ---- GOLD DIVIDER ---- */
.gold-rule {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 24px 0;
  border: none;
}
.gold-rule--center { margin-left: auto; margin-right: auto; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(11, 31, 58, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--gold);
  transition: var(--transition);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.nav-logo img {
  height: 46px;
  width: auto;
}

.nav-logo-text {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.2;
}

.nav-logo-sub {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
}

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

.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,245,240,0.85);
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
}

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

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: var(--navy);
  border: 1px solid rgba(201,168,76,0.3);
  border-top: 2px solid var(--gold);
  border-radius: 0 0 var(--radius) var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  border-radius: 0;
}
.nav-dropdown-menu a:last-child { border-bottom: none; }
.nav-dropdown-menu a:hover { background: rgba(201,168,76,0.1); color: var(--gold); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  padding: 8px 20px !important;
  border-radius: var(--radius) !important;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
  color: var(--navy) !important;
}

/* Mobile nav */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ============================================
   HERO - Homepage
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(11,31,58,0.97) 0%, rgba(11,31,58,0.7) 60%, rgba(11,31,58,0.4) 100%),
    url('../images/hero-truck.jpg') center/cover no-repeat;
}

.hero-texture {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    rgba(255,255,255,0.012) 0px,
    rgba(255,255,255,0.012) 1px,
    transparent 1px,
    transparent 60px
  ),
  repeating-linear-gradient(
    90deg,
    rgba(255,255,255,0.012) 0px,
    rgba(255,255,255,0.012) 1px,
    transparent 1px,
    transparent 60px
  );
}

.hero-gold-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  padding-top: 40px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  animation: fadeSlideUp 0.8s ease both;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: var(--gold);
}

.hero-title {
  font-size: clamp(3.2rem, 7vw, 6rem);
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 8px;
  animation: fadeSlideUp 0.8s 0.1s ease both;
}

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

.hero-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(245,245,240,0.75);
  letter-spacing: 0.08em;
  margin-bottom: 32px;
  animation: fadeSlideUp 0.8s 0.2s ease both;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(245,245,240,0.75);
  max-width: 520px;
  margin-bottom: 44px;
  animation: fadeSlideUp 0.8s 0.3s ease both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.8s 0.4s ease both;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 72px;
  padding-top: 40px;
  border-top: 1px solid rgba(201,168,76,0.25);
  animation: fadeSlideUp 0.8s 0.5s ease both;
  flex-wrap: wrap;
}

.hero-stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.hero-stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,245,240,0.55);
  display: block;
  margin-top: 4px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(245,245,240,0.4);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-lg { padding: 18px 44px; font-size: 0.98rem; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ============================================
   INTRO STRIP / TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--navy);
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 18px 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,245,240,0.8);
}

.trust-item svg {
  color: var(--gold);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ============================================
   SERVICE CARDS
   ============================================ */
.service-card {
  background: var(--white);
  border: 1px solid rgba(11,31,58,0.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,168,76,0.3);
}

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

.service-card-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
}
.service-card-icon svg { width: 30px; height: 30px; }

.service-card-body { padding: 32px; }

.service-card h3 {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--grey);
  margin-bottom: 20px;
}

.service-card-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-card-link svg { width: 14px; height: 14px; transition: transform 0.2s; }
.service-card:hover .service-card-link svg { transform: translateX(4px); }

/* ============================================
   FLEET SPEC CARDS
   ============================================ */
.fleet-card {
  background: var(--navy);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.fleet-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.fleet-card-header {
  background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
  padding: 24px 28px;
  border-bottom: 2px solid var(--gold);
}
.fleet-card-header h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 4px;
}
.fleet-card-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
.fleet-card-body { padding: 24px 28px; }
.fleet-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.fleet-spec-row:last-child { border-bottom: none; }
.fleet-spec-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,245,240,0.55);
}
.fleet-spec-value {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--gold);
}

/* ============================================
   ABOUT / WHY US
   ============================================ */
.about-section { background: var(--off-white); }

.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}
.about-img-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--gold);
  color: var(--navy);
  padding: 20px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}
.about-img-badge-num {
  font-family: 'Oswald', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}
.about-img-badge-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
  margin-top: 4px;
}

.check-list { list-style: none; }
.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid rgba(11,31,58,0.08);
  font-size: 0.97rem;
}
.check-list li:last-child { border-bottom: none; }
.check-list li svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

/* ============================================
   DARK SECTION
   ============================================ */
.section-dark {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.section-dark::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* ============================================
   CRANE / SERVICE DETAIL
   ============================================ */
.page-hero {
  background: var(--navy);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.page-hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--white);
  margin-bottom: 20px;
}
.page-hero p {
  font-size: 1.15rem;
  color: rgba(245,245,240,0.75);
  max-width: 580px;
}

/* Spec table */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
}
.spec-table th {
  font-family: 'Oswald', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--navy);
  color: var(--gold);
  padding: 14px 20px;
  text-align: left;
}
.spec-table td {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(11,31,58,0.08);
  font-size: 0.95rem;
}
.spec-table tr:last-child td { border-bottom: none; }
.spec-table tr:nth-child(even) td { background: rgba(11,31,58,0.04); }

/* ============================================
   FOUNDER PAGE
   ============================================ */
.founder-hero {
  background: linear-gradient(180deg, #0d1a2e 0%, #1a2e4a 100%);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.founder-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.founder-portrait {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 4px solid var(--gold);
  margin: 0 auto 28px;
  display: block;
  filter: grayscale(20%);
}
.founder-years {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  color: rgba(245,245,240,0.55);
  margin-bottom: 8px;
  display: block;
}
.founder-section { background: var(--white); }
.founder-quote {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  color: var(--navy);
  line-height: 1.5;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  padding: 0 32px;
}
.founder-quote::before,
.founder-quote::after {
  content: '"';
  font-family: 'Oswald', sans-serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  line-height: 1;
}
.founder-quote::before { top: -20px; left: 0; }
.founder-quote::after { bottom: -50px; right: 0; content: '"'; }

.timeline { position: relative; padding: 32px 0; }
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), rgba(201,168,76,0.2));
  transform: translateX(-50%);
}
.timeline-item {
  display: flex;
  gap: 40px;
  margin-bottom: 48px;
  align-items: flex-start;
}
.timeline-item:nth-child(even) { flex-direction: row-reverse; }
.timeline-item:nth-child(even) .timeline-content { text-align: right; }
.timeline-year {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  min-width: calc(50% - 40px);
  text-align: right;
  padding-right: 60px;
  padding-top: 4px;
}
.timeline-item:nth-child(even) .timeline-year {
  text-align: left;
  padding-left: 60px;
  padding-right: 0;
}
.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  background: var(--gold);
  border-radius: 50%;
  border: 3px solid var(--white);
  margin-top: 6px;
  flex-shrink: 0;
}
.timeline-content {
  min-width: calc(50% - 40px);
  padding-left: 60px;
}
.timeline-item:nth-child(even) .timeline-content {
  padding-left: 0;
  padding-right: 60px;
}
.timeline-content h4 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.timeline-content p {
  font-size: 0.92rem;
  color: var(--grey);
}

/* ============================================
   QUOTE FORM
   ============================================ */
.quote-section { background: var(--off-white); }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-grid .full { grid-column: 1 / -1; }

.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(11,31,58,0.15);
  border-radius: var(--radius);
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230B1F3A' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.form-note {
  font-size: 0.82rem;
  color: var(--grey);
  margin-top: 8px;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-block {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.contact-block-icon {
  width: 44px;
  height: 44px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-block-icon svg { width: 20px; height: 20px; }
.contact-block-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
  display: block;
  margin-bottom: 2px;
}
.contact-block-value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
}
.contact-block-value a { color: var(--navy); }
.contact-block-value a:hover { color: var(--gold); }

/* ============================================
   INDUSTRIES GRID
   ============================================ */
.industry-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 100px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  transition: var(--transition);
}
.industry-pill:hover {
  background: rgba(201,168,76,0.15);
  border-color: var(--gold);
}
.industry-pill svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }

.industries-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #070F1E;
  border-top: 3px solid var(--gold);
}

.footer-main {
  padding: 72px 0 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand img { height: 52px; margin-bottom: 20px; }
.footer-brand p {
  font-size: 0.9rem;
  color: rgba(245,245,240,0.55);
  max-width: 280px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-heading {
  font-family: 'Oswald', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(245,245,240,0.6);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); padding-left: 6px; }

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: 0.88rem;
  color: rgba(245,245,240,0.6);
}
.footer-contact-item svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(245,245,240,0.35);
  margin: 0;
}

.footer-founder {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 0.88rem;
  color: rgba(201,168,76,0.7);
  letter-spacing: 0.08em;
}

.footer-founder a { color: rgba(201,168,76,0.7); }
.footer-founder a:hover { color: var(--gold); }

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
  background: var(--off-white);
  border-bottom: 1px solid rgba(11,31,58,0.1);
  padding: 12px 0;
}
.breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
}
.breadcrumb-inner a { color: var(--navy); }
.breadcrumb-inner a:hover { color: var(--gold); }
.breadcrumb-sep { opacity: 0.4; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}
.cta-banner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
}
.cta-banner p {
  font-size: 1.1rem;
  color: rgba(245,245,240,0.7);
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner .btn-primary {
  font-size: 1rem;
  padding: 16px 44px;
}

/* Phone CTA */
.phone-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
}
.phone-cta svg { color: var(--gold); }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .timeline::before { left: 28px; }
  .timeline-item,
  .timeline-item:nth-child(even) { flex-direction: row; }
  .timeline-year,
  .timeline-item:nth-child(even) .timeline-year {
    min-width: auto;
    text-align: left;
    padding: 0;
    font-size: 1.2rem;
  }
  .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    padding-left: 20px;
    padding-right: 0;
    text-align: left;
    min-width: auto;
  }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 28px; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 16px;
    border-bottom: 2px solid var(--gold);
    gap: 4px;
  }
  .nav-dropdown-menu {
    position: static;
    display: none;
    box-shadow: none;
    border: none;
    background: rgba(255,255,255,0.05);
  }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .about-img-badge { right: 0; bottom: -16px; }
}

/* ============================================
   UTILITIES
   ============================================ */
.img-cover { width: 100%; height: 100%; object-fit: cover; display: block; }
.rounded { border-radius: var(--radius); }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
