:root {
      --navy: #1e3a52;
      --navy-dark: #152c3f;
      --navy-light: #254d6b;
      --orange: #c95c2a;
      --orange-light: #e06a30;
      --off-white: #f4f1ec;
      --light-gray: #e8e5e0;
      --text-dark: #1a2730;
      --text-mid: #3d4f5c;
      --text-light: #6b7f8c;
      --white: #ffffff;
    }

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

    html { scroll-behavior: smooth; }

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

    /* ===== TOPBAR ===== */
    .topbar {
      background: var(--navy-dark);
      color: var(--off-white);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.85rem;
      letter-spacing: 0.04em;
      display: flex;
      justify-content: center;
      gap: 2.5rem;
      padding: 0.5rem 1.5rem;
      flex-wrap: wrap;
    }
    .topbar a { color: var(--orange-light); text-decoration: none; font-weight: 600; }
    .topbar a:hover { text-decoration: underline; }
    .topbar span { opacity: 0.7; }

    /* ===== NAV ===== */
    nav {
      background: var(--navy);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.25rem 3rem;
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    }

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

    .logo-mark {
      width: 110px;
      height: 110px;
      background: transparent;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0;
    }

    .logo-text {
      font-family: 'Bebas Neue', sans-serif;
      line-height: 1;
      letter-spacing: 0.05em;
    }
    .logo-text .line1 {
      font-size: 1.3rem;
      color: var(--white);
      display: block;
    }
    .logo-text .line2 {
      font-size: 1rem;
      color: var(--orange-light);
      display: block;
      letter-spacing: 0.15em;
    }

    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
      align-items: center;
    }
    .nav-links a {
      color: rgba(255,255,255,0.85);
      text-decoration: none;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 600;
      font-size: 1rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--orange-light); }

    .nav-cta {
      background: var(--orange) !important;
      color: var(--white) !important;
      padding: 0.5rem 1.25rem !important;
      border-radius: 4px !important;
      transition: background 0.2s !important;
    }
    .nav-cta:hover { background: var(--orange-light) !important; }

    /* ===== HERO ===== */
    .hero {
      background: var(--navy);
      background-image: linear-gradient(rgba(10,20,50,0.78), rgba(10,20,50,0.78)), url('TruckandTrailer.jpg');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      position: relative;
      overflow: hidden;
      min-height: 88vh;
      display: flex;
      align-items: center;
    }

    .hero-bg-pattern {
      position: absolute;
      inset: 0;
      background-image:
        repeating-linear-gradient(
          -45deg,
          rgba(255,255,255,0.015) 0px,
          rgba(255,255,255,0.015) 1px,
          transparent 1px,
          transparent 20px
        );
      pointer-events: none;
    }

    .hero-mountain-silhouette {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 280px;
      pointer-events: none;
      opacity: 0.08;
    }

    .hero-orange-bar {
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 6px;
      background: var(--orange);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 1200px;
      margin: 0 auto;
      padding: 5rem 3rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      width: 100%;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(201, 92, 42, 0.15);
      border: 1px solid rgba(201, 92, 42, 0.4);
      color: var(--orange-light);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 0.3rem 0.85rem;
      border-radius: 2px;
      margin-bottom: 1.25rem;
    }

    .hero h1 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(3rem, 5.5vw, 5.5rem);
      color: var(--white);
      line-height: 0.95;
      letter-spacing: 0.02em;
      margin-bottom: 0.75rem;
    }

    .hero h1 .accent { color: var(--orange-light); }

    .hero-divider {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin: 1.25rem 0;
    }
    .hero-divider::before, .hero-divider::after {
      content: '';
      flex: 1;
      height: 1px;
      background: rgba(255,255,255,0.2);
    }
    .hero-divider span {
      color: var(--orange);
      font-size: 1rem;
    }

    .hero-subtext {
      color: rgba(255,255,255,0.78);
      font-size: 1.15rem;
      line-height: 1.65;
      max-width: 480px;
      margin-bottom: 2rem;
    }

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

    .btn-primary {
      background: var(--orange);
      color: var(--white);
      padding: 1rem 2rem;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      border: none;
      border-radius: 4px;
      text-decoration: none;
      display: inline-block;
      cursor: pointer;
      transition: background 0.2s, transform 0.15s;
      box-shadow: 0 4px 20px rgba(201, 92, 42, 0.4);
    }
    .btn-primary:hover { background: var(--orange-light); transform: translateY(-1px); }

    .btn-secondary {
      background: transparent;
      color: var(--white);
      padding: 1rem 2rem;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      border: 2px solid rgba(255,255,255,0.35);
      border-radius: 4px;
      text-decoration: none;
      display: inline-block;
      transition: border-color 0.2s, background 0.2s;
    }
    .btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

    .hero-trust-pills {
      display: flex;
      gap: 0.75rem;
      flex-wrap: wrap;
      margin-top: 2rem;
    }
    .trust-pill {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.15);
      color: rgba(255,255,255,0.8);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 0.3rem 0.75rem;
      border-radius: 2px;
    }

    /* Hero right card */
    .hero-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.12);
      border-top: 3px solid var(--orange);
      border-radius: 8px;
      padding: 2rem;
      backdrop-filter: blur(4px);
    }
    .hero-card h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.8rem;
      color: var(--white);
      letter-spacing: 0.05em;
      margin-bottom: 0.3rem;
    }
    .hero-card p {
      color: rgba(255,255,255,0.6);
      font-size: 0.88rem;
      margin-bottom: 1.5rem;
    }

    .form-group { margin-bottom: 1rem; }
    .form-group label {
      display: block;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.6);
      margin-bottom: 0.35rem;
    }
    .form-group input, .form-group textarea, .form-group select {
      width: 100%;
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 4px;
      padding: 0.7rem 1rem;
      color: var(--white);
      font-family: 'Barlow', sans-serif;
      font-size: 0.95rem;
      outline: none;
      transition: border-color 0.2s;
    }
    .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
      border-color: var(--orange);
    }
    .form-group input::placeholder, .form-group textarea::placeholder {
      color: rgba(255,255,255,0.3);
    }
    .form-group select option { background: var(--navy-dark); color: var(--white); }
    .form-group textarea { resize: vertical; min-height: 90px; }
    .form-note {
      font-size: 0.75rem;
      color: rgba(255,255,255,0.4);
      text-align: center;
      margin-top: 0.75rem;
    }

    /* ===== TRUST BAR ===== */
    .trust-bar {
      background: var(--orange);
      padding: 1rem 3rem;
    }
    .trust-bar-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-around;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .trust-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--white);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }
    .trust-item svg { width: 20px; height: 20px; }

    /* ===== SECTION SHARED ===== */
    section { padding: 5rem 3rem; }
    .section-inner { max-width: 1200px; margin: 0 auto; }

    .section-label {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 0.5rem;
    }
    .section-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.2rem, 4vw, 3.8rem);
      color: var(--navy);
      line-height: 1;
      letter-spacing: 0.03em;
      margin-bottom: 0.5rem;
    }
    .section-title.light { color: var(--white); }
    .section-subtitle {
      color: var(--text-mid);
      font-size: 1.05rem;
      line-height: 1.6;
      max-width: 600px;
    }
    .section-subtitle.light { color: rgba(255,255,255,0.72); }

    .section-divider {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin: 1rem 0 2.5rem;
    }
    .section-divider::after {
      content: '';
      flex: 1;
      max-width: 80px;
      height: 2px;
      background: var(--orange);
    }

    /* ===== HOW IT WORKS ===== */
    .how-section { background: var(--white); }

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      margin-top: 3rem;
      position: relative;
    }

    .step-connector { display: none; }

    .step {
      text-align: center;
      padding: 2.5rem 2rem;
      position: relative;
      z-index: 1;
    }

    .step-number {
      width: 80px;
      height: 80px;
      background: var(--navy);
      color: var(--white);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2rem;
      margin: 0 auto 1.5rem;
      border: 4px solid var(--off-white);
      position: relative;
      z-index: 2;
    }
    .step:nth-child(2) .step-number { background: var(--orange); }

    .step h3 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.25rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--navy);
      margin-bottom: 0.75rem;
    }
    .step p {
      color: var(--text-mid);
      font-size: 0.97rem;
      line-height: 1.6;
    }

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

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
      margin-top: 3rem;
    }

    .service-card {
      background: var(--white);
      border-radius: 6px;
      padding: 1.75rem;
      border-left: 4px solid transparent;
      transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
      box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    }
    .service-card:hover {
      border-left-color: var(--orange);
      box-shadow: 0 8px 30px rgba(0,0,0,0.1);
      transform: translateY(-3px);
    }

    .service-icon {
      width: 48px;
      height: 48px;
      background: var(--navy);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.1rem;
    }
    .service-icon svg { width: 24px; height: 24px; stroke: white; fill: none; stroke-width: 1.8; }

    .service-card h3 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.15rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: var(--navy);
      margin-bottom: 0.5rem;
    }
    .service-card p {
      color: var(--text-mid);
      font-size: 0.92rem;
      line-height: 1.6;
    }

    /* ===== WHY US ===== */
    .why-section { background: var(--navy); }

    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
      margin-top: 3rem;
    }

    .why-features { display: flex; flex-direction: column; gap: 1.75rem; }

    .why-feature {
      display: flex;
      gap: 1.25rem;
      align-items: flex-start;
    }

    .why-feature-icon {
      width: 44px;
      height: 44px;
      min-width: 44px;
      background: var(--orange);
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .why-feature-icon svg { width: 22px; height: 22px; stroke: white; fill: none; stroke-width: 2; }

    .why-feature-text h4 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.15rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      color: var(--white);
      margin-bottom: 0.3rem;
    }
    .why-feature-text p {
      color: rgba(255,255,255,0.65);
      font-size: 0.93rem;
      line-height: 1.6;
    }

    .why-stat-block {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-top: 4px solid var(--orange);
      border-radius: 8px;
      padding: 2.5rem;
    }
    .stat-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      margin-bottom: 2rem;
    }
    .stat { text-align: center; }
    .stat-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 3.5rem;
      color: var(--orange-light);
      line-height: 1;
      letter-spacing: 0.02em;
    }
    .stat-label {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.55);
      margin-top: 0.25rem;
    }
    .stat-divider { height: 1px; background: rgba(255,255,255,0.1); margin: 1.5rem 0; }
    .donation-badge {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      background: rgba(201, 92, 42, 0.12);
      border: 1px solid rgba(201, 92, 42, 0.3);
      border-radius: 6px;
      padding: 1rem 1.25rem;
    }
    .donation-badge p {
      color: rgba(255,255,255,0.8);
      font-size: 0.9rem;
      line-height: 1.5;
    }
    .donation-badge strong { color: var(--orange-light); }

    /* ===== PRICING ===== */
    .pricing-section { background: var(--white); }

    .pricing-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-top: 3rem;
    }

    .pricing-card {
      border: 2px solid var(--light-gray);
      border-radius: 8px;
      padding: 2rem;
      text-align: center;
      transition: border-color 0.2s, box-shadow 0.2s;
      position: relative;
    }
    .pricing-card.featured {
      border-color: var(--orange);
      box-shadow: 0 10px 40px rgba(201, 92, 42, 0.15);
    }
    .pricing-card:hover:not(.featured) {
      border-color: var(--navy);
    }
    .featured-badge {
      position: absolute;
      top: -13px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--orange);
      color: var(--white);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.25rem 0.85rem;
      border-radius: 2px;
    }
    .pricing-tier {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 0.5rem;
    }
    .pricing-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.8rem;
      color: var(--navy);
      letter-spacing: 0.04em;
      margin-bottom: 0.25rem;
    }
    .pricing-vol {
      color: var(--text-light);
      font-size: 0.88rem;
      margin-bottom: 1.25rem;
    }
    .pricing-estimate {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2.8rem;
      color: var(--navy);
      letter-spacing: 0.02em;
    }
    .pricing-card p {
      color: var(--text-mid);
      font-size: 0.88rem;
      line-height: 1.5;
      margin-top: 1rem;
    }
    .pricing-note {
      margin-top: 1.5rem;
      text-align: center;
      color: var(--text-light);
      font-size: 0.88rem;
    }

    /* ===== AREAS ===== */
    .areas-section { background: var(--off-white); }

    .areas-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: start;
      margin-top: 3rem;
    }

    .area-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
      margin-top: 1.5rem;
    }
    .area-tag {
      cursor: pointer;
      background: var(--white);
      border: 1.5px solid var(--light-gray);
      color: var(--navy);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.9rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      padding: 0.4rem 0.9rem;
      border-radius: 3px;
      transition: border-color 0.2s, background 0.2s;
    }
    .area-tag:hover, .area-tag.primary {
      background: var(--navy);
      color: var(--white);
      border-color: var(--navy);
    }

    .map-container {
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 8px 30px rgba(0,0,0,0.12);
      border: 3px solid var(--white);
    }
    .map-container iframe {
      display: block;
      width: 100%;
      height: 360px;
    }

    .address-block {
      background: var(--navy);
      padding: 1.25rem 1.5rem;
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    .address-block-icon {
      background: var(--orange);
      width: 36px;
      height: 36px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      min-width: 36px;
    }
    .address-block-icon svg { width: 18px; height: 18px; stroke: white; fill: none; stroke-width: 2; }
    .address-block-text {
      color: rgba(255,255,255,0.8);
      font-size: 0.9rem;
      line-height: 1.5;
    }
    .address-block-text strong { color: var(--white); display: block; font-size: 0.95rem; }

    /* ===== REVIEWS ===== */
    .reviews-section { background: var(--white); }

    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
      margin-top: 3rem;
    }

    .review-card {
      background: var(--off-white);
      border-radius: 6px;
      padding: 1.75rem;
      position: relative;
    }

    .review-stars {
      color: var(--orange);
      font-size: 1.1rem;
      margin-bottom: 0.75rem;
      letter-spacing: 0.1em;
    }

    .review-text {
      color: var(--text-mid);
      font-size: 0.95rem;
      line-height: 1.65;
      margin-bottom: 1.25rem;
      font-style: italic;
    }

    .review-author {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }
    .review-avatar {
      width: 40px;
      height: 40px;
      background: var(--navy);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.2rem;
      color: var(--white);
    }
    .review-name {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      color: var(--navy);
    }
    .review-location {
      font-size: 0.8rem;
      color: var(--text-light);
    }

    /* ===== CTA SECTION ===== */
    .cta-section {
      background: var(--navy);
      padding: 5rem 3rem;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-mountain-bg {
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      opacity: 0.05;
      pointer-events: none;
    }

    .cta-section .section-inner { position: relative; z-index: 1; }

    .cta-section h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.5rem, 5vw, 5rem);
      color: var(--white);
      letter-spacing: 0.03em;
      line-height: 1;
      margin-bottom: 1rem;
    }
    .cta-section h2 .accent { color: var(--orange-light); }
    .cta-section p {
      color: rgba(255,255,255,0.7);
      font-size: 1.1rem;
      margin-bottom: 2rem;
    }
    .cta-actions {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }
    .btn-phone {
      background: rgba(255,255,255,0.1);
      border: 2px solid rgba(255,255,255,0.3);
      color: var(--white);
      padding: 1rem 2rem;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.3rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      border-radius: 4px;
      text-decoration: none;
      transition: background 0.2s, border-color 0.2s;
    }
    .btn-phone:hover { background: rgba(255,255,255,0.18); border-color: var(--white); }

    /* ===== FOOTER ===== */
    footer {
      background: var(--navy-dark);
      padding: 3rem 3rem 1.5rem;
      color: rgba(255,255,255,0.7);
    }

    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem;
      padding-bottom: 2.5rem;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      margin-bottom: 1.5rem;
    }

    .footer-brand h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.6rem;
      color: var(--white);
      letter-spacing: 0.06em;
      margin-bottom: 0.75rem;
    }
    .footer-brand p {
      font-size: 0.88rem;
      line-height: 1.6;
      margin-bottom: 1.25rem;
    }

    .footer-col h4 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--orange-light);
      margin-bottom: 1rem;
    }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 0.5rem; }
    .footer-col ul li a {
      color: rgba(255,255,255,0.65);
      text-decoration: none;
      font-size: 0.9rem;
      transition: color 0.2s;
    }
    .footer-col ul li a:hover { color: var(--orange-light); }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-bottom p { font-size: 0.82rem; }
    .footer-bottom a { color: var(--orange-light); text-decoration: none; }

    /* Mountain SVG inline */
    .mountain-svg { width: 100%; height: 100%; }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 900px) {
      nav { padding: 1rem 1.5rem; }
      .nav-links { display: none; }
      .hero-content { grid-template-columns: 1fr; padding: 3rem 1.5rem; }
      .steps-grid { grid-template-columns: 1fr; }
      .step-connector { display: none; }
      .services-grid { grid-template-columns: 1fr 1fr; }
      .why-grid { grid-template-columns: 1fr; }
      .pricing-cards { grid-template-columns: 1fr; }
      .areas-content { grid-template-columns: 1fr; }
      .reviews-grid { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr 1fr; }
      section { padding: 3.5rem 1.5rem; }
    }

    @media (max-width: 600px) {
      .services-grid { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr; }
    }

    /* Animate on load */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .hero-badge { animation: fadeUp 0.5s ease both; }
    .hero h1 { animation: fadeUp 0.5s 0.1s ease both; }
    .hero-divider { animation: fadeUp 0.5s 0.2s ease both; }
    .hero-subtext { animation: fadeUp 0.5s 0.25s ease both; }
    .hero-actions { animation: fadeUp 0.5s 0.3s ease both; }
    .hero-trust-pills { animation: fadeUp 0.5s 0.35s ease both; }
    .hero-card { animation: fadeUp 0.6s 0.2s ease both; }
    /* ===== PAGE BANNER (sub-pages) ===== */
    .page-banner {
      background: var(--navy);
      padding: 4rem 3rem;
      text-align: center;
      border-bottom: 4px solid var(--orange);
      position: relative;
      overflow: hidden;
    }
    .page-banner::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: repeating-linear-gradient(
        -45deg,
        rgba(255,255,255,0.015) 0px,
        rgba(255,255,255,0.015) 1px,
        transparent 1px,
        transparent 20px
      );
      pointer-events: none;
    }
    .page-banner-inner { position: relative; z-index: 1; }
    .page-banner h1 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.5rem, 5vw, 4.5rem);
      color: var(--white);
      letter-spacing: 0.03em;
      line-height: 1;
      margin-bottom: 0.75rem;
    }
    .page-banner h1 .accent { color: var(--orange-light); }
    .page-banner p {
      color: rgba(255,255,255,0.72);
      font-size: 1.1rem;
      max-width: 580px;
      margin: 0 auto;
      line-height: 1.6;
    }
    .page-banner .breadcrumb {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--orange-light);
      margin-bottom: 1rem;
    }
    .page-banner .breadcrumb a {
      color: rgba(255,255,255,0.55);
      text-decoration: none;
    }
    .page-banner .breadcrumb a:hover { color: var(--orange-light); }

    /* ===== QUOTE PAGE ===== */
    .quote-page-section { background: var(--off-white); padding: 5rem 3rem; }
    .quote-layout {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: start;
    }
    .quote-form-card {
      background: var(--navy);
      border-radius: 8px;
      padding: 2.5rem;
      border-top: 4px solid var(--orange);
    }
    .quote-form-card h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2rem;
      color: var(--white);
      letter-spacing: 0.05em;
      margin-bottom: 0.3rem;
    }
    .quote-form-card > p {
      color: rgba(255,255,255,0.6);
      font-size: 0.9rem;
      margin-bottom: 1.75rem;
    }
    .quote-info h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2rem;
      color: var(--navy);
      letter-spacing: 0.03em;
      margin-bottom: 1rem;
    }
    .quote-info-items { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 1.5rem; }
    .quote-info-item {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
    }
    .quote-info-icon {
      width: 42px;
      height: 42px;
      min-width: 42px;
      background: var(--navy);
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .quote-info-icon svg { width: 20px; height: 20px; stroke: white; fill: none; stroke-width: 2; }
    .quote-info-item h4 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 0.2rem;
    }
    .quote-info-item p { color: var(--text-mid); font-size: 0.9rem; line-height: 1.5; }
    @media (max-width: 900px) {
      .quote-layout { grid-template-columns: 1fr; }
      .page-banner { padding: 3rem 1.5rem; }
    }

/* ── OUR WORK SECTION ── */
.our-work-section { padding: 5rem 2rem; background: var(--off-white); }
.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.work-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--light-gray);
}
.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.work-item:hover img { transform: scale(1.04); }
.work-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.5rem 0.75rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.65));
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .work-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── MOBILE IMPROVEMENTS ── */

/* Hamburger button */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  /* Show hamburger, hide topbar on small screens */
  .topbar { display: none; }
  .nav-hamburger { display: flex; }

  /* Dropdown nav menu */
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-dark);
    flex-direction: column;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0;
    border-top: 3px solid var(--orange);
    z-index: 999;
  }
  .nav-links.nav-open { display: flex; }
  .nav-links li { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-links li:last-child { border-bottom: none; margin-top: 0.75rem; }
  .nav-links a { display: block; padding: 0.85rem 0; font-size: 1.1rem; }
  .nav-links .nav-cta { text-align: center; }
  nav { position: relative; }

  /* Logo smaller on mobile */
  .logo-mark { width: 80px; height: 80px; }
  .logo-text .line1 { font-size: 1.05rem; }
  .logo-text .line2 { font-size: 0.8rem; }

  /* Trust bar wraps */
  .trust-bar-inner { flex-wrap: wrap; gap: 0.75rem; justify-content: center; }

  /* CTA buttons stack */
  .cta-actions { flex-direction: column; align-items: center; }
  .btn-phone { width: 100%; max-width: 320px; text-align: center; }

  /* Stats grid */
  .stat-grid { grid-template-columns: 1fr 1fr; }

  /* Pricing FAQ grid */
  div[style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }

  /* Section padding */
  .quote-page-section { padding: 3rem 1.5rem; }
  .our-work-section { padding: 3rem 1.5rem; }
}

@media (max-width: 480px) {
  /* Hero text */
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn-primary,
  .hero-actions .btn-phone { width: 100%; text-align: center; }

  /* Work grid single column on very small screens */
  .work-grid { grid-template-columns: 1fr 1fr; }

  /* Area tags smaller */
  .area-tag { font-size: 0.8rem; padding: 0.35rem 0.7rem; }

  /* Review cards full width */
  .reviews-grid { grid-template-columns: 1fr; }
}
