/* ============================================================
   TruckingDocumentPrep.com — Main Stylesheet
   Design: Dark navy/steel blue, gold CTA, authoritative & clean
   ============================================================ */

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

/* --- DESIGN TOKENS --- */
:root {
  /* Type scale */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Brand Colors — Navy/Steel Blue + Gold */
  --navy:          #0d1b2a;
  --navy-dark:     #07121c;
  --navy-mid:      #132235;
  --navy-light:    #1e3450;
  --steel:         #2b4d6f;
  --steel-light:   #3a6491;
  --steel-muted:   #5a84a8;
  --ice:           #e8f1f8;
  --ice-dark:      #d0e2ef;

  --gold:          #f5a623;
  --gold-hover:    #e6940f;
  --gold-active:   #c97d08;
  --gold-light:    #fef3dc;

  --white:         #ffffff;
  --offwhite:      #f8f9fb;
  --gray-100:      #f0f4f8;
  --gray-200:      #e2e8f0;
  --gray-400:      #94a3b8;
  --gray-600:      #475569;
  --gray-800:      #1e293b;

  --success:       #22c55e;
  --error:         #ef4444;

  /* Semantic roles */
  --color-bg:        var(--offwhite);
  --color-text:      var(--gray-800);
  --color-text-muted: var(--gray-600);
  --color-primary:   var(--navy);
  --color-accent:    var(--gold);

  /* Fonts */
  --font-display: 'Barlow Condensed', 'Barlow', 'Arial Narrow', sans-serif;
  --font-body:    'Open Sans', 'Segoe UI', sans-serif;
  --font-ui:      'Barlow', 'Segoe UI', sans-serif;

  /* Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(13,27,42,0.08);
  --shadow-md: 0 4px 16px rgba(13,27,42,0.12);
  --shadow-lg: 0 12px 40px rgba(13,27,42,0.18);

  /* Widths */
  --content-narrow: 680px;
  --content-default: 960px;
  --content-wide: 1240px;

  /* Transitions */
  --t: 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- BASE RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
body {
  min-height: 100dvh;
  line-height: 1.6;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-bg);
}
img, picture, video { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  text-wrap: balance;
  line-height: 1.1;
}
p, li { text-wrap: pretty; }
button { cursor: pointer; background: none; border: none; }
a { color: inherit; text-decoration: none; transition: color var(--t); }
ul { list-style: none; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* --- LAYOUT UTILITIES --- */
.container {
  width: 100%;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: clamp(var(--space-6), 5vw, var(--space-16));
}
.container--narrow {
  max-width: var(--content-default);
}

/* --- STICKY HEADER --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
  transition: box-shadow var(--t);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  padding-block: var(--space-4);
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
}
.logo-name {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--white);
}
.logo-name span { color: var(--gold); }
.logo-tagline {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--steel-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* NAV */
.main-nav {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}
.main-nav a {
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--ice);
  letter-spacing: 0.02em;
  padding: var(--space-2) var(--space-1);
  border-bottom: 2px solid transparent;
  transition: color var(--t), border-color var(--t);
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.nav-cta {
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  font-weight: 700;
  background: var(--gold) !important;
  color: var(--navy-dark) !important;
  padding: var(--space-2) var(--space-5) !important;
  border-radius: var(--radius-md);
  border-bottom: none !important;
  transition: background var(--t), transform var(--t) !important;
}
.nav-cta:hover {
  background: var(--gold-hover) !important;
  transform: translateY(-1px);
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  cursor: pointer;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-ui);
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1.25;
}
.header-phone svg { flex-shrink: 0; }
.header-phone-text {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.header-phone-number {
  font-size: var(--text-sm);
  white-space: nowrap;
  font-weight: 700;
}
.header-phone-jay {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--steel-muted);
  white-space: nowrap;
  letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--navy-dark);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: var(--space-4) 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    z-index: 99;
  }
  .main-nav.is-open { display: flex; }
  .main-nav a {
    width: 100%;
    padding: var(--space-4) var(--space-6);
    border-bottom: 1px solid rgba(255,255,255,0.06) !important;
    font-size: var(--text-base);
  }
  .nav-cta {
    margin: var(--space-4) var(--space-6) !important;
    width: calc(100% - 3rem) !important;
    text-align: center;
    display: block;
  }
  .nav-toggle { display: flex; }
  .header-phone { display: none; }
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-ui);
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: var(--radius-md);
  transition: background var(--t), transform var(--t), box-shadow var(--t);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}
.btn--primary {
  background: var(--gold);
  color: var(--navy-dark);
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-lg);
  box-shadow: 0 4px 20px rgba(245,166,35,0.35);
}
.btn--primary:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(245,166,35,0.45);
}
.btn--primary:active { transform: translateY(0); }

.btn--secondary {
  background: transparent;
  color: var(--gold);
  padding: var(--space-3) var(--space-6);
  font-size: var(--text-base);
  border: 2px solid var(--gold);
}
.btn--secondary:hover {
  background: rgba(245,166,35,0.1);
  transform: translateY(-1px);
}

.btn--white {
  background: var(--white);
  color: var(--navy);
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-lg);
  box-shadow: var(--shadow-md);
}
.btn--white:hover {
  background: var(--ice);
  transform: translateY(-2px);
}

.btn--sm {
  padding: var(--space-3) var(--space-6);
  font-size: var(--text-sm);
}

/* --- SECTION SPACING --- */
section {
  padding-block: clamp(var(--space-12), 7vw, var(--space-24));
}
.section-label {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-3);
}
.section-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: var(--space-4);
}
.section-title--white { color: var(--white); }
.section-sub {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 60ch;
  line-height: 1.7;
}
.section-sub--white { color: var(--ice); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: clamp(540px, 75vh, 820px);
  display: flex;
  align-items: center;
  background: var(--navy-dark);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero-truck.jpg');
  background-size: cover;
  background-position: center 40%;
  opacity: 0.35;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(7,18,28,0.92) 45%, rgba(13,27,42,0.6) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-block: var(--space-20);
  max-width: 700px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.4);
  color: var(--gold);
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-5);
}
.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-6);
  text-wrap: balance;
}
.hero-headline .accent { color: var(--gold); }
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--ice);
  line-height: 1.65;
  margin-bottom: var(--space-8);
  max-width: 55ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}
.hero-trust {
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  color: var(--steel-muted);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.hero-trust::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
}
.hero-disclaimer {
  font-size: var(--text-xs);
  color: var(--steel-muted);
  margin-top: var(--space-4);
  font-style: italic;
}

/* ============================================================
   PROBLEMS SECTION
   ============================================================ */
.problems {
  background: var(--gray-100);
}
.problems-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
.problems-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-top: var(--space-6);
}
.problem-item {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  background: var(--white);
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t);
}
.problem-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}
.problem-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 2.5rem;
  text-align: center;
}
.problem-text {
  font-family: var(--font-ui);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--navy);
}
.problems-note {
  margin-top: var(--space-5);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-style: italic;
}
.problems-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.problems-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .problems-grid { grid-template-columns: 1fr; }
  .problems-image { display: none; }
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services {
  background: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-5);
  margin-top: var(--space-10);
}
.service-card {
  background: var(--offwhite);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  position: relative;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--steel-muted);
}
.service-icon {
  font-size: 1.8rem;
  margin-bottom: var(--space-3);
  display: block;
}
.service-name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: var(--space-2);
}
.service-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}
.service-price {
  display: inline-block;
  margin-top: var(--space-3);
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--navy);
  background: var(--gold-light);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-sm);
}
.service-price--custom {
  background: var(--gray-100);
  color: var(--color-text-muted);
}

/* ============================================================
   PRICING SECTION
   ============================================================ */
.pricing {
  background: var(--navy);
}
.pricing-inner { text-align: center; }
.pricing-tagline {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--gold);
  margin-top: var(--space-4);
  margin-bottom: var(--space-10);
}
.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  text-align: left;
  margin-bottom: var(--space-10);
}
.pricing-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
}
.pricing-card__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--space-2);
}
.pricing-card__sub {
  font-size: var(--text-sm);
  color: var(--steel-muted);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.pricing-card__sub strong { color: var(--gold); }
.pricing-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  font-size: var(--text-sm);
  color: var(--ice);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.pricing-item:last-child { border-bottom: none; padding-bottom: 0; }
.pricing-item__name { font-weight: 500; }
.pricing-item__price {
  font-family: var(--font-ui);
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}
.pricing-note {
  font-size: var(--text-xs);
  color: var(--steel-muted);
  text-align: center;
  margin-top: var(--space-6);
  font-style: italic;
}

@media (max-width: 640px) {
  .pricing-cards { grid-template-columns: 1fr; }
}

/* ============================================================
   NEW CARRIER SETUP
   ============================================================ */
.carrier-setup {
  background: var(--navy-light);
}
.carrier-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-6);
  margin-bottom: var(--space-8);
}
.carrier-list li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--ice);
  font-size: var(--text-base);
}
.carrier-list li::before {
  content: '→';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-us {
  background: var(--offwhite);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-10);
}
.why-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.why-icon {
  width: 52px;
  height: 52px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.why-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--navy);
}
.why-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--gray-100);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-10);
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
  position: relative;
  border-top: 4px solid var(--gold);
}
.testimonial-quote {
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: var(--space-3);
  font-family: Georgia, serif;
}
.testimonial-text {
  font-size: var(--text-base);
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: var(--space-5);
}
.testimonial-author {
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--navy);
}
.testimonial-role {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: 2px;
}
.testimonials-trust {
  text-align: center;
  margin-top: var(--space-10);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--navy);
}

@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CONTACT / GET STARTED
   ============================================================ */
.get-started {
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
}
.get-started-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/highway.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
}
.get-started-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}
.email-form {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-8);
  flex-wrap: wrap;
}
.email-form label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--ice);
  margin-bottom: var(--space-2);
  text-align: left;
}
.email-input-wrap {
  flex: 1;
  min-width: 220px;
}
.email-form input[type="email"] {
  width: 100%;
  padding: var(--space-4) var(--space-5);
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  color: var(--white);
  transition: border-color var(--t), background var(--t);
}
.email-form input[type="email"]::placeholder { color: var(--steel-muted); }
.email-form input[type="email"]:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.14);
  outline: none;
}
.get-started-note {
  margin-top: var(--space-5);
  font-size: var(--text-sm);
  color: var(--steel-muted);
  font-style: italic;
}

/* ============================================================
   CONTACT PAGE FORM
   ============================================================ */
.contact-form-section {
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-16);
  align-items: start;
}
.contact-info {
  padding-top: var(--space-4);
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}
.contact-item-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-1);
}
.contact-item-value {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--navy);
}
.contact-item-value a { transition: color var(--t); }
.contact-item-value a:hover { color: var(--gold); }
.contact-response-note {
  margin-top: var(--space-8);
  padding: var(--space-5);
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--gold);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* FULL CONTACT FORM */
.full-form {
  background: var(--offwhite);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  box-shadow: var(--shadow-md);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}
.form-group label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: var(--space-3) var(--space-4);
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  color: var(--color-text);
  transition: border-color var(--t), box-shadow var(--t);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--steel);
  box-shadow: 0 0 0 3px rgba(43,77,111,0.1);
  outline: none;
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group--full { grid-column: 1 / -1; }

@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .full-form { padding: var(--space-6); }
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--navy);
  padding-block: clamp(var(--space-12), 6vw, var(--space-20));
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245,166,35,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 900;
  color: var(--white);
  margin-bottom: var(--space-4);
}
.page-hero p {
  font-size: var(--text-lg);
  color: var(--ice);
  max-width: 56ch;
  line-height: 1.6;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: var(--steel-muted);
  margin-bottom: var(--space-4);
  font-family: var(--font-ui);
}
.breadcrumb a { color: var(--steel-muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* ============================================================
   ABOUT PAGE SPECIFICS
   ============================================================ */
.about-story {
  background: var(--white);
}
.about-story-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
.about-story-text h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: var(--space-5);
}
.about-story-text p {
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-5);
  max-width: 60ch;
}
.about-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-8);
  padding-top: var(--space-8);
  border-top: 1px solid var(--gray-200);
}
.about-stat {
  text-align: center;
}
.about-stat__number {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}
.about-stat__label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: var(--space-2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.about-values {
  background: var(--gray-100);
}
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-10);
}
.about-value-item {
  background: var(--white);
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow-sm);
}
.about-value-item h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: var(--space-2);
}
.about-value-item p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
}

@media (max-width: 768px) {
  .about-story-grid { grid-template-columns: 1fr; }
  .about-image { display: none; }
  .about-stats { grid-template-columns: repeat(3,1fr); }
  .about-values-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PRICING PAGE SPECIFICS
   ============================================================ */
.pricing-page-section {
  background: var(--white);
}
.pricing-tiers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  margin-top: var(--space-10);
}
.pricing-tier {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.pricing-tier__header {
  background: var(--navy);
  padding: var(--space-6) var(--space-8);
  text-align: center;
}
.pricing-tier__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 900;
  color: var(--white);
  margin-bottom: var(--space-2);
}
.pricing-tier__price {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 900;
  color: var(--gold);
}
.pricing-tier__price-sub {
  font-size: var(--text-xs);
  color: var(--steel-muted);
  margin-top: var(--space-1);
}
.pricing-tier__body {
  background: var(--offwhite);
  padding: var(--space-8);
}
.pricing-tier__body .pricing-items { gap: var(--space-4); }
.pricing-tier__body .pricing-item {
  color: var(--color-text);
  border-bottom-color: var(--gray-200);
  padding-bottom: var(--space-4);
}
.pricing-tier__body .pricing-item__name { font-weight: 500; }
.pricing-tier__body .pricing-item__price {
  font-family: var(--font-ui);
  font-weight: 800;
  color: var(--navy);
  background: var(--gold-light);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
}
.custom-services-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-top: var(--space-4);
}
.custom-service-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-base);
  color: var(--color-text);
  padding: var(--space-4);
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
}
.custom-service-item::before {
  content: '→';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .pricing-tiers { grid-template-columns: 1fr; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-dark);
  padding-block: var(--space-12) var(--space-6);
}
.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--space-10);
  padding-bottom: var(--space-10);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: var(--space-6);
}
.footer-brand .logo-name { font-size: 1.3rem; }
.footer-brand p {
  font-size: var(--text-sm);
  color: var(--steel-muted);
  line-height: 1.65;
  margin-top: var(--space-4);
  max-width: 32ch;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-5);
}
.footer-contact a {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--ice);
  transition: color var(--t);
}
.footer-contact a:hover { color: var(--gold); }

.footer-col h4 {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: var(--space-5);
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.footer-col ul a {
  font-size: var(--text-sm);
  color: var(--steel-muted);
  transition: color var(--t);
}
.footer-col ul a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-4);
}
.footer-copyright {
  font-size: var(--text-xs);
  color: var(--steel-muted);
}
.footer-disclaimer {
  font-size: var(--text-xs);
  color: var(--steel-muted);
  max-width: 72ch;
  line-height: 1.6;
  font-style: italic;
}

@media (max-width: 768px) {
  .footer-main { grid-template-columns: 1fr; gap: var(--space-8); }
  .footer-bottom { flex-direction: column; }
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-center { text-align: center; }
.text-center .section-sub { margin-inline: auto; }
.mt-8 { margin-top: var(--space-8); }
.mt-10 { margin-top: var(--space-10); }
.divider {
  border: none;
  border-top: 1px solid var(--gray-200);
  margin-block: var(--space-8);
}

/* CTA BANNER */
.cta-banner {
  background: var(--gold);
  padding-block: var(--space-8);
  text-align: center;
}
.cta-banner p {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: var(--space-5);
  max-width: 50ch;
  margin-inline: auto;
}

/* ============================================================
   DIRECT CONTACT BLOCK
   ============================================================ */
.contact-direct {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  margin-top: var(--space-8);
}
.contact-direct__phone {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 800;
  color: var(--gold);
  transition: color var(--t);
}
.contact-direct__phone:hover { color: var(--gold-hover); }
.contact-direct__phone--dark { color: var(--navy); }
.contact-direct__phone--dark:hover { color: var(--steel); }
.contact-direct__email {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-ui);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--ice);
  user-select: all;
}
.contact-direct__email--dark { color: var(--gray-800); }
.contact-direct__note {
  font-size: var(--text-sm);
  color: var(--steel-muted);
  font-style: italic;
  line-height: 1.6;
}
.contact-direct__note--dark { color: var(--color-text-muted); }

/* Schema markup (visually hidden) */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}

/* Scroll reveal — JS adds .js-ready to body before animating */
.js-ready .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.js-ready .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
