/* ============================================
   CAL WEST FREIGHT LINES - Main Stylesheet
   Color Palette from Logo:
   - Primary Blue: #1a6fc4
   - Dark Navy: #1a2332
   - Medium Blue: #2a5298
   - Light Blue: #4a9edd
   ============================================ */

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

:root {
  --primary: #1a6fc4;
  --primary-dark: #1455a0;
  --navy: #1a2332;
  --navy-light: #243348;
  --blue-mid: #2a5298;
  --blue-light: #4a9edd;
  --accent: #4a9edd;
  --white: #ffffff;
  --gray-light: #f4f6f9;
  --gray-mid: #8a9ab0;
  --gray-dark: #4a5568;
  --text: #1a2332;
  --border: #dde3ed;
  --header-h: 80px;
  --transition: 0.3s ease;
}

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

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

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

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- UTILITY ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--primary);
  display: block;
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 20px;
}
.section-title span { color: var(--primary); }
.section-subtitle {
  font-size: 17px;
  color: var(--gray-dark);
  max-width: 560px;
  line-height: 1.7;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,111,196,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-dark {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-dark:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  transform: translateY(-2px);
}
.btn svg { transition: transform 0.2s; }
.btn:hover svg { transform: translateX(4px); }

/* ---- HEADER ---- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background 0.4s, box-shadow 0.4s;
}
.site-header.scrolled {
  background: var(--navy);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.site-header.transparent {
  background: transparent;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 32px;
}
.header-logo img { height: 52px; width: auto; }
.header-nav { display: flex; align-items: center; gap: 36px; }
.header-nav a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 4px;
}
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--primary);
  transition: width 0.3s;
}
.header-nav a:hover, .header-nav a.active { color: var(--white); }
.header-nav a:hover::after, .header-nav a.active::after { width: 100%; }
.header-cta { display: flex; align-items: center; gap: 20px; }
.header-phone {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-phone svg { color: var(--accent); }
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.mobile-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--navy);
  padding: 24px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(26,35,50,0.97) 0%, rgba(26,35,50,0.8) 50%, rgba(26,82,152,0.6) 100%),
    url('images/hero-truck.jpg') center/cover no-repeat;
  z-index: 0;
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,111,196,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,111,196,0.07) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 0 100px;
  max-width: 760px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26,111,196,0.2);
  border: 1px solid rgba(74,158,221,0.4);
  color: var(--accent);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(48px, 8vw, 90px);
  font-weight: 900;
  line-height: 0.95;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 28px;
  letter-spacing: -1px;
}
.hero h1 span {
  color: var(--primary);
  display: block;
}
.hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 72px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}
.hero-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat-num span { color: var(--primary); }
.hero-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll svg { color: var(--accent); }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ---- TICKER BAR ---- */
.ticker-bar {
  background: var(--primary);
  padding: 14px 0;
  overflow: hidden;
}
.ticker-inner {
  display: flex;
  gap: 60px;
  animation: ticker 25s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  flex-shrink: 0;
}
.ticker-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.5); }
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- SERVICES ---- */
.services { padding: 100px 0; background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
  background: var(--border);
}
.service-card {
  background: var(--white);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}
.service-card:hover { background: var(--gray-light); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 60px; height: 60px;
  background: rgba(26,111,196,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--primary);
  color: var(--white);
}
.service-icon svg { width: 28px; height: 28px; color: var(--primary); transition: var(--transition); }
.service-card:hover .service-icon svg { color: var(--white); }
.service-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.service-card p { font-size: 15px; color: var(--gray-dark); line-height: 1.6; }

/* ---- WHY US ---- */
.why-us {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,111,196,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.why-us .section-label { color: var(--accent); }
.why-us .section-label::before { background: var(--accent); }
.why-us .section-title { color: var(--white); }
.why-us .section-subtitle { color: rgba(255,255,255,0.6); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
}
.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.why-feature {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 28px 24px;
  transition: var(--transition);
}
.why-feature:hover {
  background: rgba(26,111,196,0.15);
  border-color: rgba(26,111,196,0.4);
  transform: translateY(-4px);
}
.why-feature-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(26,111,196,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.why-feature-icon svg { width: 22px; height: 22px; color: var(--accent); }
.why-feature h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.why-feature p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.6; }
.why-stats { display: flex; flex-direction: column; gap: 28px; }
.why-stat-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
}
.why-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 52px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  min-width: 120px;
}
.why-stat-num sup { font-size: 24px; vertical-align: super; }
.why-stat-label {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}
.why-stat-label strong { color: var(--white); display: block; font-size: 16px; }

/* ---- ABOUT ---- */
.about { padding: 100px 0; background: var(--gray-light); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-main {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.15);
}
.about-img-main img { width: 100%; height: 420px; object-fit: cover; }
.about-img-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--navy);
  color: var(--white);
  padding: 24px 28px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}
.about-img-badge-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}
.about-img-badge-label {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}
.about-content { padding: 20px 0; }
.about-list { margin: 28px 0; display: flex; flex-direction: column; gap: 14px; }
.about-list-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  color: var(--gray-dark);
  line-height: 1.5;
}
.about-list-item::before {
  content: '';
  width: 20px; height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: rgba(26,111,196,0.15);
  border: 2px solid var(--primary);
  position: relative;
  top: 2px;
}
.about-list-item::after {
  /* checkmark via absolute positioning */
}

/* ---- TESTIMONIAL ---- */
.testimonial {
  padding: 80px 0;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: -40px; left: 5%;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 400px;
  font-weight: 900;
  color: rgba(255,255,255,0.07);
  line-height: 1;
  pointer-events: none;
}
.testimonial-inner { text-align: center; max-width: 800px; margin: 0 auto; }
.testimonial-text {
  font-size: clamp(18px, 2.5vw, 24px);
  color: var(--white);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 32px;
}
.testimonial-author {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.testimonial-author strong { color: var(--white); display: block; font-size: 18px; margin-bottom: 4px; }

/* ---- COVERAGE / MAP ---- */
.coverage {
  padding: 100px 0;
  background: var(--white);
}
.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
}
.coverage-map-wrap {
  background: var(--gray-light);
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.coverage-map-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,111,196,0.05), rgba(26,82,152,0.1));
}
.map-placeholder-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  position: relative;
}
.coverage-points { display: flex; flex-direction: column; gap: 20px; }
.coverage-point {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  background: var(--gray-light);
  border-radius: 10px;
  border-left: 4px solid var(--primary);
  transition: var(--transition);
}
.coverage-point:hover { transform: translateX(6px); }
.coverage-point-icon {
  width: 44px; height: 44px;
  min-width: 44px;
  border-radius: 10px;
  background: rgba(26,111,196,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}
.coverage-point-icon svg { width: 22px; height: 22px; color: var(--primary); }
.coverage-point h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}
.coverage-point p { font-size: 14px; color: var(--gray-dark); }

/* ---- CTA BAND ---- */
.cta-band {
  padding: 80px 0;
  background: var(--navy);
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-text h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 8px;
}
.cta-text p { font-size: 16px; color: rgba(255,255,255,0.6); }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---- CONTACT ---- */
.contact { padding: 100px 0; background: var(--gray-light); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  margin-top: 60px;
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-info-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.contact-info-icon {
  width: 48px; height: 48px;
  min-width: 48px;
  background: rgba(26,111,196,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info-icon svg { width: 22px; height: 22px; color: var(--primary); }
.contact-info-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 6px;
}
.contact-info-card p, .contact-info-card a {
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  transition: color 0.2s;
}
.contact-info-card a:hover { color: var(--primary); }
.contact-form {
  background: var(--white);
  border-radius: 16px;
  padding: 48px;
  box-shadow: 0 4px 40px rgba(0,0,0,0.08);
}
.contact-form h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 32px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray-dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  border: 2px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; justify-content: center; padding: 16px; font-size: 16px; }

/* ---- FOOTER ---- */
.footer {
  background: #111921;
  color: rgba(255,255,255,0.6);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}
.footer-brand {}
.footer-logo { margin-bottom: 20px; }
.footer-logo img { height: 44px; }
.footer-desc { font-size: 14px; line-height: 1.7; max-width: 280px; }
.footer-socials { display: flex; gap: 12px; margin-top: 24px; }
.footer-social {
  width: 38px; height: 38px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.footer-social:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}
.footer-social svg { width: 16px; height: 16px; }
.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: var(--accent); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--accent); }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: var(--navy);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,111,196,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,111,196,0.05) 1px, transparent 1px);
  background-size: 50px 50px;
}
.page-hero-content { position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--accent); }
.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 16px;
}
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.65); max-width: 520px; }

/* ---- SERVICES PAGE ---- */
.services-detail { padding: 80px 0; }
.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 60px;
}
.service-detail-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-detail-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--primary);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s;
}
.service-detail-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}
.service-detail-card:hover::after { transform: scaleY(1); }
.service-detail-icon {
  width: 64px; height: 64px;
  background: rgba(26,111,196,0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.service-detail-icon svg { width: 32px; height: 32px; color: var(--primary); }
.service-detail-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}
.service-detail-card p { font-size: 15px; color: var(--gray-dark); line-height: 1.7; }
.service-detail-card ul {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-detail-card ul li {
  font-size: 14px;
  color: var(--gray-dark);
  padding-left: 20px;
  position: relative;
}
.service-detail-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* ---- ABOUT PAGE ---- */
.about-detail { padding: 80px 0; }
.about-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 60px;
}
.team-values { padding: 80px 0; background: var(--gray-light); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.value-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border-radius: 12px;
  transition: var(--transition);
}
.value-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.value-card-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(26,111,196,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.value-card-icon svg { width: 28px; height: 28px; color: var(--primary); }
.value-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.value-card p { font-size: 14px; color: var(--gray-dark); line-height: 1.6; }

/* ---- CONTACT PAGE ---- */
.contact-page { padding: 80px 0; }
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  margin-top: 60px;
}

/* ---- ANIMATIONS ---- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .coverage-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-detail-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .services-detail-grid { grid-template-columns: 1fr; }
  .contact-page-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .header-nav, .header-cta { display: none; }
  .mobile-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .why-features { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .hero-stats { gap: 28px; }
  .about-img-badge { display: none; }
}

/* ---- FORM MESSAGES & SPINNER ---- */
.form-message {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  display: none;
}
.form-message.success {
  display: block;
  background: #f0fdf4;
  border: 1px solid #86efac;
  color: #15803d;
}
.form-message.error {
  display: block;
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #dc2626;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
