:root {
      --navy: #002855;
      --navy-mid: #003a75;
      --slate: #394352;
      --blue: #009cde;
      --blue-light: #33b5e8;
      --amber: #ffb800;
      --amber-light: #ffc933;
      --light-bg: #eff2f5;
      --light-mid: #dde3ea;
      --text-muted-custom: #6b7a8d;
      --white: #ffffff;
      --font-head:  'Barlow Condensed', sans-serif;
      --font-body:  'Barlow', sans-serif;
    }

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

    body {
      font-family: var(--font-body);
      background: var(--navy)!important;
      color: var(--white)!important;
      overflow-x: hidden;
    }

    h1, h2, h3, .display-font {
      font-family: var(--font-head);
      letter-spacing: 0.04em;
    }

    /* ── NAVBAR ── */
    .navbar {
      background: rgba(0, 40, 85, 0.98);
      border-bottom: 1px solid rgba(0, 156, 222, 0.25);
      padding: 18px 0;
      position: sticky;
      top: 0;
      z-index: 1000;
      backdrop-filter: blur(10px);
    }

    .navbar-brand {
      font-family: var(--font-head);
      font-size: 2rem;
      letter-spacing: 0.12em;
      color: var(--white) !important;
    }

    .navbar-brand span { color: var(--blue); }

    .navbar-brand img {height: 40px;}

    .navbar-nav .nav-link {
      color: rgba(239,242,245,0.85) !important;
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 8px 14px !important;
      transition: color 0.2s;
    }

    .navbar-nav .nav-link:hover { color: var(--blue-light) !important; }

    .navbar .dropdown-menu {
      background: var(--slate);
      border: 1px solid rgba(0,156,222,0.2);
      border-radius: 0;
      min-width: 180px;
    }

    .navbar .dropdown-item {
      color: var(--light-bg);
      font-size: 0.78rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 9px 20px;
    }

    .navbar .dropdown-item:hover {
      background: rgba(0,156,222,0.15);
      color: var(--blue-light);
    }

    .navbar .btn-quote {
      background: var(--amber);
      color: var(--navy) !important;
      font-weight: 600;
      font-size: 0.75rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 9px 22px;
      border: none;
      transition: background 0.2s, transform 0.15s;
    }

    .navbar .btn-quote:hover {
      background: var(--amber-light);
      transform: translateY(-1px);
	color: var(--navy)!important;
    }

    /* ── HERO ── */
    .hero {
      position: relative;
      min-height: 92vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      background: linear-gradient(135deg, #001830 0%, #002855 55%, #003060 100%);
    }

    .hero-grid-bg {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(0,156,222,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,156,222,0.06) 1px, transparent 1px);
      background-size: 60px 60px;
    }

    .hero-glow {
      position: absolute;
      width: 700px;
      height: 700px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(0,156,222,0.14) 0%, transparent 70%);
      right: -100px;
      top: 50%;
      transform: translateY(-50%);
      pointer-events: none;
    }

    .hero-tag {
      display: inline-block;
      background: rgba(0,156,222,0.15);
      border: 1px solid rgba(0,156,222,0.45);
      color: var(--blue-light);
      font-size: 0.72rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      padding: 6px 16px;
      margin-bottom: 28px;
    }

    .hero h1 {
      font-size: clamp(3.5rem, 8vw, 7rem);
      line-height: 0.92;
      color: var(--white);
      margin-bottom: 28px;
      font-family: var(--font-head);
    }

    .hero h1 .accent-line { color: var(--blue); display: block; }

    .hero-sub {
      font-size: 1.05rem;
      color: var(--light-bg);
      max-width: 480px;
      line-height: 1.7;
      margin-bottom: 42px;
      font-weight: 300;
    }

    .btn-primary-cta {
      background: var(--blue);
      color: var(--white);
      font-family: var(--font-head);
      font-size: 1.1rem;
      letter-spacing: 0.1em;
      padding: 14px 38px;
      border: none;
      text-decoration: none;
      display: inline-block;
      transition: all 0.2s;
    }

    .btn-primary-cta:hover {
      background: var(--blue-light);
      color: var(--white);
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(0,156,222,0.35);
    }

    .btn-outline-cta {
      border: 1px solid rgba(239,242,245,0.35);
      color: var(--light-bg);
      font-family: var(--font-head);
      font-size: 1.1rem;
      letter-spacing: 0.1em;
      padding: 14px 38px;
      background: transparent;
      text-decoration: none;
      display: inline-block;
      transition: all 0.2s;
    }

    .btn-outline-cta:hover {
      border-color: var(--blue);
      color: var(--blue-light);
    }

    /* Stats bar */
    .stats-bar {
      background: var(--slate);
      border-top: 1px solid rgba(0,156,222,0.2);
      border-bottom: 1px solid rgba(0,156,222,0.2);
      padding: 28px 0;
    }

    .stat-item { text-align: center; }

    .stat-number {
      font-family: var(--font-head);
      font-size: 2.6rem;
      color: var(--amber);
      line-height: 1;
      letter-spacing: 0.05em;
    }

    .stat-label {
      font-size: 0.72rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(239,242,245,0.55);
      margin-top: 4px;
    }

    .stat-divider {
      width: 1px;
      background: rgba(0,156,222,0.2);
      height: 50px;
      margin: auto;
    }

    /* ── SECTIONS ── */
    section { padding: 96px 0; }

    .section-label {
      font-size: 0.72rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 14px;
      display: block;
    }

    .section-title {
      font-size: clamp(2.4rem, 5vw, 4rem);
      line-height: 1;
      margin-bottom: 20px;
    }

    .section-body {
      color: var(--light-bg);
      font-weight: 300;
      line-height: 1.75;
      font-size: 1rem;
    }

    /* ── LOCATION CARDS ── */
    .location-card {
      background: var(--slate);
      border: 1px solid rgba(0,156,222,0.15);
      padding: 36px 28px;
      transition: all 0.25s;
      position: relative;
      overflow: hidden;
      height: 100%;
    }

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

    .location-card:hover {
      border-color: rgba(0,156,222,0.4);
      transform: translateY(-4px);
      box-shadow: 0 20px 50px rgba(0,0,0,0.35);
    }

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

    .location-city {
      font-family: var(--font-head);
      font-size: 1.6rem;
      letter-spacing: 0.06em;
      margin-bottom: 4px;
    }

    .location-state {
      font-size: 0.72rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--blue-light);
      margin-bottom: 16px;
    }

    .location-year {
      font-size: 0.72rem;
      color: rgba(239,242,245,0.5);
      letter-spacing: 0.1em;
    }

    /* ── EQUIPMENT SECTION ── */
    .equipment-section {
      background: #001e40;
    }

    .equipment-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 20px 0;
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }

    .equipment-item:last-child { border-bottom: none; }

    .equip-icon {
      width: 42px;
      height: 42px;
      min-width: 42px;
      background: rgba(0,156,222,0.12);
      border: 1px solid rgba(0,156,222,0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--blue);
      font-size: 1rem;
    }

    .equip-name {
      font-weight: 500;
      font-size: 0.95rem;
      color: var(--white);
      margin-bottom: 2px;
    }

    .equip-detail {
      font-size: 0.8rem;
      color: rgba(239,242,245,0.5);
    }

    /* ── FINISHES ── */
    .finish-card {
      background: var(--slate);
      border: 1px solid rgba(255,255,255,0.07);
      padding: 32px;
      height: 100%;
      transition: border-color 0.2s;
    }

    .finish-card:hover {
      border-color: rgba(0,156,222,0.35);
    }

    .finish-material {
      font-family: var(--font-head);
      font-size: 1.8rem;
      letter-spacing: 0.08em;
      color: var(--blue);
      margin-bottom: 20px;
      padding-bottom: 16px;
      border-bottom: 1px solid rgba(0,156,222,0.2);
    }

    .finish-list {
      list-style: none;
      padding: 0;
    }

    .finish-list li {
      font-size: 0.9rem;
      color: var(--light-bg);
      padding: 7px 0;
      border-bottom: 1px solid rgba(255,255,255,0.05);
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .finish-list li::before {
      content: '';
      width: 5px;
      height: 5px;
      min-width: 5px;
      background: var(--amber);
      border-radius: 50%;
    }

    /* ── SPECIAL SERVICES ── */
    .service-badge {
      background: rgba(0,156,222,0.08);
      border: 1px solid rgba(0,156,222,0.2);
      color: var(--light-bg);
      padding: 12px 20px;
      font-size: 0.85rem;
      letter-spacing: 0.04em;
      display: flex;
      align-items: center;
      gap: 12px;
      transition: all 0.2s;
    }

    .service-badge:hover {
      background: rgba(0,156,222,0.15);
      border-color: rgba(0,156,222,0.45);
      color: var(--white);
    }

    .service-badge i { color: var(--blue); font-size: 1rem; }

    /* ── EXPERIENCE SECTION ── */
    .exp-section {
      background: linear-gradient(135deg, var(--slate) 0%, #002050 100%);
      border-top: 1px solid rgba(0,156,222,0.15);
      border-bottom: 1px solid rgba(0,156,222,0.15);
    }

    .highlight-box {
      background: rgba(0,156,222,0.08);
      border-left: 3px solid var(--blue);
      padding: 24px 28px;
      margin-top: 28px;
    }

    .highlight-box p {
      color: var(--light-bg);
      font-size: 1.05rem;
      line-height: 1.75;
      font-style: italic;
      margin: 0;
    }

    /* ── CTA BAND ── */
    .cta-band {
      background: var(--blue);
      padding: 56px 0;
    }

    .cta-band h2 {
      font-size: clamp(2rem, 4vw, 3.2rem);
      color: var(--white);
      margin-bottom: 8px;
    }

    .cta-band p {
      color: rgba(255,255,255,0.75);
      font-size: 1rem;
    }

    .btn-dark-cta {
      background: var(--navy);
      color: var(--amber);
      font-family: var(--font-head);
      font-size: 1.1rem;
      letter-spacing: 0.1em;
      padding: 14px 38px;
      border: none;
      text-decoration: none;
      display: inline-block;
      transition: all 0.2s;
    }

    .btn-dark-cta:hover {
      background: var(--slate);
      color: var(--amber-light);
      transform: translateY(-2px);
    }

    /* ── FOOTER ── */
    footer {
      background: #001228;
      padding: 64px 0 36px;
      border-top: 1px solid rgba(0,156,222,0.15);
    }

    .footer-brand {
      font-family: var(--font-head);
      font-size: 2.4rem;
      letter-spacing: 0.1em;
      color: var(--white);
      margin-bottom: 14px;
    }

    .footer-brand img {height: 34px;}

    .footer-brand span { color: var(--blue); }

    .footer-tagline {
      font-size: 0.8rem;
      color: rgba(239,242,245,0.45);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 28px;
    }

    .footer-heading {
      font-size: 0.72rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 20px;
    }

    .footer-links { list-style: none; padding: 0; }

    .footer-links li { margin-bottom: 10px; }

    .footer-links a {
      color: rgba(239,242,245,0.5);
      text-decoration: none;
      font-size: 0.88rem;
      transition: color 0.2s;
    }

    .footer-links a:hover { color: var(--blue-light); }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.07);
      padding-top: 28px;
      margin-top: 48px;
      color: rgba(239,242,245,0.4);
      font-size: 0.8rem;
    }

    .footer-bottom a {
      color: rgba(239,242,245,0.4);
      text-decoration: none;
    }

    .footer-bottom a:hover { color: var(--blue); }

    .footer-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted-custom);
    margin-bottom: 1rem;
}

.partner-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
}

.partner-links li {
    display: flex;
    align-items: center;
}

.partner-links a {
    font-weight: 300;
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--light-mid);
    text-decoration: none;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.partner-links a:hover {
    color: var(--blue-light);
}

.partner-links li:not(:last-child)::after {
    content: '';
    display: inline-block;
    width: 1px;
    height: 12px;
    background: var(--light-mid);
    margin: 0 1.25rem;
}

    /* ── UTILITIES ── */
    .divider-accent {
      width: 60px;
      height: 3px;
      background: var(--amber);
      margin-bottom: 32px;
    }

    .bg-dark-section { background: var(--navy); }

    .finish-info-box {
      background: rgba(0,156,222,0.07);
      border-left: 2px solid var(--blue);
    }

    .finish-info-box p { color: var(--text-muted-custom); }

    /* ── LIGHT SECTIONS ── */
    .bg-light-section {
      background: var(--light-bg);
      color: var(--navy);
    }

    .bg-white-section {
      background: var(--white);
      color: var(--navy);
    }

    .bg-light-section .section-label,
    .bg-white-section .section-label { color: var(--blue); }

    .bg-light-section .section-title,
    .bg-white-section .section-title { color: var(--navy); }

    .bg-light-section .section-body,
    .bg-white-section .section-body { color: var(--slate); }

    /* Location cards on light bg */
    .bg-light-section .location-card {
      background: var(--white);
      border-color: rgba(0,40,85,0.1);
      box-shadow: 0 2px 12px rgba(0,40,85,0.06);
    }

    .bg-light-section .location-card:hover {
      border-color: rgba(0,156,222,0.4);
      box-shadow: 0 16px 40px rgba(0,40,85,0.14);
    }

    .bg-light-section .location-city { color: var(--navy); }
    .bg-light-section .location-state { color: var(--blue); }
    .bg-light-section .location-year { color: var(--text-muted-custom); }

    /* Finish cards on white bg */
    .bg-white-section .finish-card {
      background: var(--light-bg);
      border-color: rgba(0,40,85,0.08);
    }

    .bg-white-section .finish-card:hover {
      border-color: rgba(0,156,222,0.35);
      box-shadow: 0 8px 24px rgba(0,40,85,0.08);
    }

    .bg-white-section .finish-material { color: var(--navy); border-bottom-color: rgba(0,40,85,0.12); }

    .bg-white-section .finish-list li { color: var(--slate); border-bottom-color: rgba(0,40,85,0.07); }

    /* Service badges on light bg */
    .bg-light-section .service-badge {
      background: var(--white);
      border-color: rgba(0,40,85,0.1);
      color: var(--slate);
      box-shadow: 0 1px 4px rgba(0,40,85,0.05);
    }

    .bg-light-section .service-badge:hover {
      background: var(--white);
      border-color: var(--blue);
      color: var(--navy);
    }

    .bg-light-section .service-badge i { color: var(--blue); }

    .bg-light-section .btn-outline-cta {
      border-color: rgba(0,40,85,0.35);
      color: var(--navy);
    }

    .bg-light-section .btn-outline-cta:hover {
      border-color: var(--blue);
      color: var(--blue);
    }

    /* Info box on white bg */
    .bg-white-section .finish-info-box {
      background: rgba(0,156,222,0.06);
      border-left: 2px solid var(--blue);
    }

    .bg-white-section .finish-info-box p { color: var(--text-muted-custom); }

    /* Default Page */
    main#primary {
      background: #fff;
    }
    .page-hero {
    position: relative;
    background: linear-gradient(105deg, var(--navy) 0%, var(--navy-mid) 60%, #142f5e 100%);
    padding: 72px 0 60px;
    overflow: hidden;
    }
    .page-hero h1 {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    text-transform: uppercase;
    color: #fff;
    line-height: 1.05;
    margin-bottom: .6rem;
}

#primary .entry-content {color: var(--slate);}
#primary .entry-content h1, #primary .entry-content h2, #primary .entry-content h3 {color: var(--navy); font-weight: 600;}

    @media (max-width: 768px) {
      section { padding: 64px 0; }
      .hero { min-height: 70vh; }
      .hero h1 { font-size: 3.2rem; }
      .stat-divider { display: none; }
    }
/* ── CONTACT FORM ── */
    .contact-form-card {
      background: var(--light-bg);
      border: 1px solid rgba(0,40,85,0.08);
      padding: 48px 44px;
    }

    .form-label-custom {
      display: block;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--navy);
      margin-bottom: 8px;
    }

    .form-label-custom .req { color: var(--blue); }

    .form-input-custom {
      width: 100%;
      background: var(--white);
      border: 1.5px solid rgba(0,40,85,0.15);
      border-radius: 0;
      padding: 12px 16px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.92rem;
      color: var(--navy);
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
      appearance: none;
      -webkit-appearance: none;
    }

    .form-input-custom::placeholder { color: #aab4bf; }

    .form-input-custom:focus {
      border-color: var(--blue);
      box-shadow: 0 0 0 3px rgba(0,156,222,0.12);
    }

    textarea.form-input-custom { resize: vertical; min-height: 130px; }

    select.form-input-custom {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23009cde' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 14px center;
      padding-right: 38px;
      cursor: pointer;
    }

    .btn-submit-form {
      background: var(--navy);
      color: var(--white);
      font-family: var(--font-body);
      font-size: 1.05rem;
      letter-spacing: 0.1em;
      padding: 14px 36px;
      border: none;
      cursor: pointer;
      transition: all 0.2s;
      display: inline-flex;
      align-items: center;
    }

    .btn-submit-form:hover {
      background: var(--blue);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(0,156,222,0.3);
    }

    .contact-info-list { display: flex; flex-direction: column; gap: 20px; }

    .contact-info-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
    }

    .contact-info-icon {
      width: 40px;
      height: 40px;
      min-width: 40px;
      background: rgba(0,156,222,0.1);
      border: 1px solid rgba(0,156,222,0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--blue);
      font-size: 0.95rem;
    }

    .contact-info-label {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-muted-custom);
      margin-bottom: 2px;
    }

    .contact-info-value {
      font-size: 0.9rem;
      color: var(--navy);
      font-weight: 500;
    }

    @media (max-width: 768px) {
      .contact-form-card { padding: 28px 20px; }
    }

/* ── PAGE HERO ── */
    .page-hero {
      background: linear-gradient(135deg, #001830 0%, var(--navy) 55%, #003060 100%);
      padding: 72px 0 64px;
      position: relative;
      overflow: hidden;
    }
    .page-hero-grid {
      position: absolute; inset: 0;
      background-image: linear-gradient(rgba(0,156,222,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(0,156,222,0.05) 1px, transparent 1px);
      background-size: 60px 60px;
    }
    .page-hero-glow {
      position: absolute; width: 500px; height: 500px; border-radius: 50%;
      background: radial-gradient(circle, rgba(0,156,222,0.12) 0%, transparent 70%);
      right: -80px; top: 50%; transform: translateY(-50%); pointer-events: none;
    }
    .breadcrumb-custom { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
    .breadcrumb-custom a { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(239,242,245,0.5); text-decoration: none; transition: color 0.2s; }
    .breadcrumb-custom a:hover { color: var(--blue-light); }
    .breadcrumb-custom span { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue-light); }
    .breadcrumb-sep { color: rgba(239,242,245,0.3); font-size: 0.7rem; }
    .page-hero h1 { font-size: clamp(2.8rem, 6vw, 5rem); line-height: 0.95; color: var(--white); margin-bottom: 16px; }
    .page-hero h1 em { font-style: normal; color: var(--blue); }
    .page-hero-sub { font-size: 1rem; color: rgba(239,242,245,0.7); max-width: 520px; line-height: 1.7; font-weight: 300; }

    /* ── QUICK JUMP BAR ── */
    .quick-index { background: var(--slate); }
    .quick-index-inner { display: flex; align-items: center; flex-wrap: wrap; overflow-x: auto; scrollbar-width: none; }
    .quick-index-inner::-webkit-scrollbar { display: none; }
    .quick-index-label { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(239,242,245,0.45); padding: 18px 24px; border-right: 1px solid rgba(255,255,255,0.08); white-space: nowrap; }
    .quick-link { display: flex; align-items: center; gap: 8px; padding: 18px 20px; font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; color: rgba(239,242,245,0.65); text-decoration: none; border-right: 1px solid rgba(255,255,255,0.08); transition: all 0.2s; white-space: nowrap; }
    .quick-link:hover { background: rgba(0,156,222,0.12); color: var(--blue-light); }
    .quick-link i { color: var(--amber); font-size: 0.7rem; }

    /* ── OVERVIEW SECTION ── */
    .overview-section { background: var(--navy); padding: 80px 0; }
    .section-label-light { font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--blue); margin-bottom: 14px; display: block; }
    .section-title-light { font-size: clamp(2rem, 4vw, 3.2rem); color: var(--white); line-height: 1; margin-bottom: 20px; }
    .section-body-light { color: rgba(239,242,245,0.7); font-weight: 300; line-height: 1.75; }
    .overview-divider { width: 48px; height: 3px; background: var(--amber); margin-bottom: 28px; }

    .map-svg-wrap {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(0,156,222,0.15);
      padding: 28px;
    }

    /* ── LOCATION SECTIONS ── */
    .loc-section { padding: 80px 0; border-bottom: 1px solid var(--light-mid); }
    .loc-section:last-of-type { border-bottom: none; }
    .loc-section:nth-child(odd) { background: var(--white); }
    .loc-section:nth-child(even) { background: var(--light-bg); }

    .loc-tag {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(0,156,222,0.08); border: 1px solid rgba(0,156,222,0.25);
      color: var(--blue); font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase;
      padding: 5px 14px; margin-bottom: 16px;
    }
    .loc-city-name { font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1; color: var(--navy); margin-bottom: 6px; }
    .loc-state-full { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-muted-custom); margin-bottom: 24px; }
    .loc-divider { width: 48px; height: 3px; background: var(--amber); margin-bottom: 24px; }
    .loc-desc { font-size: 0.95rem; color: var(--slate); line-height: 1.75; font-weight: 300; margin-bottom: 28px; }

    .hq-badge {
      display: inline-flex; align-items: center; gap: 6px;
      background: var(--amber); color: var(--navy); font-size: 0.62rem; font-weight: 700;
      letter-spacing: 0.14em; text-transform: uppercase; padding: 3px 10px;
      margin-left: 10px; vertical-align: middle; position: relative; top: -5px;
    }

    /* Info grid */
    .loc-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 24px; }
    .loc-info-cell { background: var(--white); border: 1px solid rgba(0,40,85,0.08); padding: 14px 18px; }
    .loc-section:nth-child(even) .loc-info-cell { background: var(--white); }
    .loc-info-label { font-size: 0.67rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted-custom); margin-bottom: 3px; }
    .loc-info-value { font-size: 0.88rem; font-weight: 500; color: var(--navy); }

    /* Capability chips */
    .cap-chips { display: flex; flex-wrap: wrap; gap: 7px; }
    .cap-chip { background: rgba(0,156,222,0.07); border: 1px solid rgba(0,156,222,0.2); color: var(--navy); font-size: 0.73rem; padding: 5px 12px; letter-spacing: 0.03em; }

    /* Map placeholder */
    .map-placeholder {
      width: 100%; min-height: 340px; background: var(--light-bg); border: 1px solid var(--light-mid);
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      gap: 0; position: relative; overflow: hidden;
    }
    .loc-section:nth-child(even) .map-placeholder { background: var(--white); border-color: rgba(0,40,85,0.1); }
    .map-grid-svg { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.4; }
    .map-pin-wrap { position: relative; z-index: 1; text-align: center; padding: 24px; }
    .map-pin-icon {
      width: 50px; height: 50px; background: var(--blue); border-radius: 50% 50% 50% 0;
      transform: rotate(-45deg); margin: 0 auto 14px; display: flex; align-items: center;
      justify-content: center; box-shadow: 0 4px 18px rgba(0,156,222,0.35);
    }
    .map-pin-icon i { transform: rotate(45deg); color: var(--white); font-size: 1.1rem; }
    .map-pin-label { font-family: var(--font-body); font-size: 1.4rem; letter-spacing: 0.08em; color: var(--navy); }
    .map-pin-sub { font-size: 0.78rem; color: var(--text-muted-custom); margin-bottom: 16px; }
    .map-open-btn {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--navy); color: var(--white); font-size: 0.76rem; font-weight: 600;
      letter-spacing: 0.1em; text-transform: uppercase; padding: 10px 20px;
      text-decoration: none; transition: background 0.2s;
    }
    .map-open-btn:hover { background: var(--blue); color: var(--white); }

    /* Contact card */
    .contact-card { background: var(--navy); color: var(--white); padding: 32px 28px; }
    .contact-card-title { font-family: var(--font-body); font-size: 1.25rem; letter-spacing: 0.08em; margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .contact-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 16px; }
    .contact-row i { color: var(--blue); font-size: 0.95rem; margin-top: 2px; flex-shrink: 0; }
    .contact-row-label { font-size: 0.67rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(239,242,245,0.45); margin-bottom: 2px; }
    .contact-row-value { font-size: 0.88rem; color: var(--light-bg); line-height: 1.5; }
    .contact-row-value a { color: var(--blue-light); text-decoration: none; }
    .contact-row-value a:hover { text-decoration: underline; }
    .btn-contact-quote { display: block; text-align: center; background: var(--blue); color: var(--white); font-family: var(--font-body); font-size: 1rem; letter-spacing: 0.1em; padding: 12px 24px; text-decoration: none; margin-top: 20px; transition: background 0.2s; }
    .btn-contact-quote:hover { background: var(--blue-light); color: var(--white); }
    .btn-contact-secondary { display: block; text-align: center; background: transparent; color: rgba(239,242,245,0.55); font-size: 0.76rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 10px 24px; text-decoration: none; border: 1px solid rgba(255,255,255,0.14); margin-top: 10px; transition: all 0.2s; }
    .btn-contact-secondary:hover { border-color: rgba(0,156,222,0.5); color: var(--blue-light); }

@media (max-width: 768px) {
      .loc-info-grid { grid-template-columns: 1fr; }
      .loc-section { padding: 52px 0; }
      .page-hero { padding: 48px 0 40px; }
      .map-placeholder { min-height: 240px; }
    }

/* ═══ 404 PAGE STYLES ═══ */
    #error-page {
      height: 100%;
      font-family: var(--font-body);
      background: var(--navy);
      color: var(--white);
      overflow-x: hidden;
    }

    /* ── GRID BACKGROUND ── */
    #error-page::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: linear-gradient(rgba(0,156,222,0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,156,222,0.045) 1px, transparent 1px);
      background-size: 56px 56px;
      pointer-events: none;
      z-index: 0;
    }    

    /* ── MAIN STAGE ── */
    #error-page .stage {
      position: relative;
      z-index: 1;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 100px 24px 60px;
      text-align: center;
      overflow: hidden;
    }

    /* ── BIG 404 GHOST NUMBER ── */
    .ghost-404 {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-family: var(--font-body);
      font-size: clamp(220px, 38vw, 420px);
      line-height: 1;
      letter-spacing: -0.04em;
      color: transparent;
      -webkit-text-stroke: 1px rgba(0,156,222,0.1);
      pointer-events: none;
      user-select: none;
      white-space: nowrap;
      animation: ghostPulse 4s ease-in-out infinite;
    }
    @keyframes ghostPulse {
      0%, 100% { -webkit-text-stroke-color: rgba(0,156,222,0.1); }
      50%       { -webkit-text-stroke-color: rgba(0,156,222,0.22); }
    }

    /* ── COIL SVG ANIMATION ── */
    #error-page .coil-wrap {
      position: relative;
      width: 220px;
      height: 220px;
      margin-bottom: 36px;
      animation: floatCoil 3.6s ease-in-out infinite;
    }
    @keyframes floatCoil {
      0%, 100% { transform: translateY(0px) rotate(0deg); }
      50%       { transform: translateY(-14px) rotate(3deg); }
    }

    /* Spinning outer ring */
    #error-page .coil-ring-outer {
      animation: spinSlow 12s linear infinite;
      transform-origin: center;
    }
    /* Counter-spinning middle ring */
    #error-page .coil-ring-mid {
      animation: spinSlow 8s linear infinite reverse;
      transform-origin: center;
    }
    /* Inner shine pulse */
    #error-page .coil-shine {
      animation: shinePulse 2.4s ease-in-out infinite;
      transform-origin: center;
    }
    @keyframes spinSlow {
      from { transform: rotate(0deg); }
      to   { transform: rotate(360deg); }
    }
    @keyframes shinePulse {
      0%, 100% { opacity: 0.4; }
      50%       { opacity: 1; }
    }

    /* Sparks flying off the coil */
    #error-page .spark {
      position: absolute;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--amber);
      pointer-events: none;
    }
    .spark-1 { top: 12px; left: 50%; animation: sparkFly1 2.2s ease-out infinite; }
    .spark-2 { top: 30px; right: 20px; animation: sparkFly2 2.8s ease-out infinite 0.4s; }
    .spark-3 { bottom: 20px; left: 20px; animation: sparkFly3 2.4s ease-out infinite 0.9s; }
    .spark-4 { top: 50%; right: 8px;  animation: sparkFly4 2s ease-out infinite 1.3s; }
    .spark-5 { bottom: 16px; right: 40px; animation: sparkFly1 3s ease-out infinite 0.6s; width:4px; height:4px; background:var(--blue); }
    .spark-6 { top: 40px; left: 30px; animation: sparkFly3 2.6s ease-out infinite 1.7s; width:5px; height:5px; background:var(--blue); }

    @keyframes sparkFly1 {
      0%   { transform: translate(0,0) scale(1); opacity: 1; }
      100% { transform: translate(-24px,-48px) scale(0); opacity: 0; }
    }
    @keyframes sparkFly2 {
      0%   { transform: translate(0,0) scale(1); opacity: 1; }
      100% { transform: translate(32px,-40px) scale(0); opacity: 0; }
    }
    @keyframes sparkFly3 {
      0%   { transform: translate(0,0) scale(1); opacity: 1; }
      100% { transform: translate(-28px,38px) scale(0); opacity: 0; }
    }
    @keyframes sparkFly4 {
      0%   { transform: translate(0,0) scale(1); opacity: 1; }
      100% { transform: translate(36px,20px) scale(0); opacity: 0; }
    }

    /* ── CONTENT ── */
    .error-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,184,0,0.12);
      border: 1px solid rgba(255,184,0,0.35);
      color: var(--amber);
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      padding: 6px 16px;
      margin-bottom: 20px;
      animation: fadeSlideUp 0.6s ease both 0.1s;
      font-family: var(--font-head);
    }
    .error-tag i { font-size: 0.8rem; animation: blink 1.2s step-end infinite; }
    @keyframes blink { 0%,100% { opacity:1; } 50% { opacity:0; } }

    #error-page .headline {
      font-family: var(--font-body);
      font-size: clamp(2.4rem, 6vw, 4.8rem);
      line-height: 1;
      letter-spacing: 0.03em;
      margin-bottom: 18px;
      animation: fadeSlideUp 0.6s ease both 0.2s;
    }
    #error-page .headline .accent { color: var(--blue); }
    #error-page .headline .amber  { color: var(--amber); }

    #error-page .sub {
      font-size: 1rem;
      color: rgba(239,242,245,0.65);
      max-width: 420px;
      line-height: 1.75;
      font-weight: 300;
      margin: 0 auto 40px;
      animation: fadeSlideUp 0.6s ease both 0.3s;
    }

    /* ── STEEL PUNS ROT ── */
    .pun-wrap {
      margin-bottom: 44px;
      animation: fadeSlideUp 0.6s ease both 0.4s;
    }
    .pun-label {
      font-size: 0.65rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(239,242,245,0.3);
      margin-bottom: 10px;
    }
    .pun-rotator {
      font-family: var(--font-body);
      font-size: 1.5rem;
      letter-spacing: 0.06em;
      color: var(--blue);
      min-height: 36px;
      transition: opacity 0.4s, transform 0.4s;
    }
    .pun-rotator.fade-out { opacity: 0; transform: translateY(-8px); }
    .pun-rotator.fade-in  { opacity: 1; transform: translateY(0); }

    /* ── BUTTONS ── */
    .btn-group-404 {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      justify-content: center;
      animation: fadeSlideUp 0.6s ease both 0.5s;
    }
    #error-page .btn-home {
      background: var(--blue);
      color: var(--white);
      font-family: var(--font-head);
      font-size: 1.05rem;
      letter-spacing: 0.1em;
      padding: 14px 36px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      transition: all 0.2s;
    }
    #error-page .btn-home:hover {
      background: #33b5e8;
      color: var(--white);
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(0,156,222,0.35);
    }
    #error-page .btn-contact {
      background: transparent;
      color: rgba(239,242,245,0.7);
      font-family: var(--font-head);
      font-size: 1.05rem;
      letter-spacing: 0.1em;
      padding: 14px 36px;
      border: 1px solid rgba(239,242,245,0.2);
      cursor: pointer;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      transition: all 0.2s;
    }
    #error-page .btn-contact:hover {
      border-color: var(--blue);
      color: var(--blue);
    }

    /* ── QUICK LINKS ── */
    .quick-links {
      margin-top: 56px;
      border-top: 1px solid rgba(0,156,222,0.12);
      padding-top: 36px;
      animation: fadeSlideUp 0.6s ease both 0.7s;
    }
    .ql-label {
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(239,242,245,0.3);
      margin-bottom: 18px;
    }
    .ql-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
    }
    .ql-pill {
      background: rgba(0,156,222,0.07);
      border: 1px solid rgba(0,156,222,0.18);
      color: rgba(239,242,245,0.65);
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.05em;
      padding: 8px 18px;
      text-decoration: none;
      transition: all 0.18s;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-family: var(--font-head);
    }
    .ql-pill:hover {
      background: rgba(0,156,222,0.15);
      border-color: var(--blue);
      color: var(--white);
    }
    .ql-pill i { color: var(--blue); font-size: 0.75rem; }

    /* ── CONVEYOR BELT at bottom ── */
    .conveyor {
      position: fixed;
      bottom: 0; left: 0; right: 0;
      height: 44px;
      background: var(--slate);
      border-top: 2px solid rgba(0,156,222,0.2);
      overflow: hidden;
      z-index: 50;
      display: flex;
      align-items: center;
    }
    .conveyor-track {
      display: flex;
      gap: 0;
      animation: conveyor 14s linear infinite;
      white-space: nowrap;
    }
    @keyframes conveyor {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }
    .conveyor-item {
      font-family: var(--font-head);
      font-size: 0.85rem;
      letter-spacing: 0.18em;
      color: rgba(239,242,245,0.25);
      padding: 0 32px;
      border-right: 1px solid rgba(0,156,222,0.1);
      flex-shrink: 0;
    }
    .conveyor-item.highlight {
      color: var(--amber);
    }

    /* ── GLOW ORBS ── */
    .glow-orb {
      position: fixed;
      border-radius: 50%;
      pointer-events: none;
      z-index: 0;
    }
    .orb-1 {
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(0,156,222,0.09) 0%, transparent 70%);
      top: -100px; right: -100px;
      animation: orbDrift1 8s ease-in-out infinite;
    }
    .orb-2 {
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(255,184,0,0.06) 0%, transparent 70%);
      bottom: 60px; left: -80px;
      animation: orbDrift2 10s ease-in-out infinite;
    }
    @keyframes orbDrift1 {
      0%,100% { transform: translate(0,0); }
      50%      { transform: translate(-30px, 30px); }
    }
    @keyframes orbDrift2 {
      0%,100% { transform: translate(0,0); }
      50%      { transform: translate(20px,-20px); }
    }

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

    /* ── COUNTER ── */
    .counter-wrap {
      position: fixed;
      bottom: 56px; right: 28px;
      font-size: 0.65rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(239,242,245,0.25);
      text-align: right;
      z-index: 60;
    }
    .counter-num {
      font-family: var(--font-head);
      font-size: 1.4rem;
      color: rgba(0,156,222,0.35);
      display: block;
      line-height: 1;
    }

    /* ── STEEL SHEET CORNER DECORATION ── */
    .corner-deco {
      position: fixed;
      pointer-events: none;
      z-index: 0;
    }
    .corner-deco.tl { top: 72px; left: 0; }
    .corner-deco.br { bottom: 44px; right: 0; }

    @media (max-width: 600px) {
      .ghost-404 { font-size: 48vw; }
      .coil-wrap { width: 160px; height: 160px; }
    }