:root {
  --navy: #12233f;
  --navy-dark: #0b1729;
  --blue: #2f5fd6;
  --blue-dark: #24499f;
  --gray-50: #f7f8fa;
  --gray-100: #eef1f5;
  --gray-200: #e2e6ec;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --text: #1a2233;
  --radius: 12px;
  --shadow: 0 4px 20px rgba(18, 35, 63, 0.08);
  --shadow-lg: 0 12px 40px rgba(18, 35, 63, 0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(47, 95, 214, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--gray-200);
}
.btn-secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--gray-100);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  white-space: nowrap;
}
.logo span { color: var(--blue); }

.nav-desktop {
  display: flex;
  gap: 32px;
  flex: 1;
  justify-content: center;
}
.nav-desktop a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--gray-700);
  transition: color 0.15s ease;
}
.nav-desktop a:hover { color: var(--blue); }

.header-cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  margin: 0 auto;
  transition: all 0.2s ease;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--gray-100);
  background: #fff;
}
.nav-mobile a {
  padding: 12px 0;
  font-weight: 500;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
}
.nav-mobile .btn { margin-top: 16px; }

.nav-mobile.open { display: flex; }

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(160deg, rgba(18,35,63,0.4) 0%, rgba(11,23,41,0.75) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240' viewBox='0 0 240 240'%3E%3Cg fill='none' stroke='%236b8fe0' stroke-width='2' opacity='0.9'%3E%3Cpath d='M40 30 L80 45 L80 90 L40 105 L0 90 L0 45 Z'/%3E%3Cpath d='M40 30 L40 75 M40 75 L80 90 M40 75 L0 90'/%3E%3Cpath d='M190 60 L220 71 L220 100 L190 111 L160 100 L160 71 Z'/%3E%3Cpath d='M190 60 L190 96 M190 96 L220 100 M190 96 L160 100'/%3E%3Cpath d='M60 150 L100 165 L100 205 L60 220 L20 205 L20 165 Z'/%3E%3Cpath d='M60 150 L60 195 M60 195 L100 205 M60 195 L20 205'/%3E%3Cpath d='M180 170 L205 179 L205 202 L180 211 L155 202 L155 179 Z'/%3E%3Cpath d='M180 170 L180 197 M180 197 L205 202 M180 197 L155 202'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover, 240px 240px;
  background-position: center, center;
  background-repeat: no-repeat, repeat;
}

.hero-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }

.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 1.1rem;
  color: #c6d0e3;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero .btn-secondary {
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}
.hero .btn-secondary:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255,255,255,0.08);
}

/* Section shared */
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  text-align: center;
}
.section-sub {
  text-align: center;
  color: var(--gray-500);
  max-width: 560px;
  margin: 0 auto 48px;
  font-size: 1.05rem;
}

/* Services */
.services { padding: 96px 0; background: var(--gray-50); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid var(--gray-100);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.service-card p {
  color: var(--gray-500);
  font-size: 0.95rem;
}

/* Carriers */
.carriers { padding: 80px 0 96px; }

.carriers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  max-width: 780px;
  margin: 0 auto;
}

.carrier-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 96px;
  border-radius: var(--radius);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  background: #fff;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.carrier-badge:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.carrier-usps  { color: #004b87; border-top: 4px solid #004b87; }
.carrier-ups   { color: #351c15; border-top: 4px solid #ffb500; }
.carrier-fedex { color: #4d148c; border-top: 4px solid #ff6600; }
.carrier-dhl   { color: #d40511; border-top: 4px solid #ffcc00; }

/* About */
.about { padding: 96px 0; }
.about-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.about p {
  color: var(--gray-700);
  font-size: 1.05rem;
  margin-bottom: 16px;
}

/* Hours & Location */
.hours { padding: 96px 0; background: var(--gray-50); }

.hours-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}

.hours-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
}
.hours-card .section-title { text-align: left; }

.info-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-100);
}
.info-row:last-child { border-bottom: none; }

.info-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-500);
}

.info-value {
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--navy);
}
a.info-value:hover { color: var(--blue); }

.hours-line {
  display: flex;
  justify-content: space-between;
  font-weight: 500;
  color: var(--navy);
  padding: 2px 0;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 320px;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}

/* Contact */
.contact { padding: 96px 0 120px; }
.contact-inner { max-width: 640px; margin: 0 auto; }
.contact .section-title { text-align: center; }
.contact .section-sub { margin-bottom: 40px; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--gray-50);
  padding: 36px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
}

.form-row { display: flex; flex-direction: column; gap: 6px; }

.form-row label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}

.form-row input,
.form-row select,
.form-row textarea {
  font-family: inherit;
  font-size: 0.98rem;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid var(--gray-200);
  background: #fff;
  color: var(--text);
  transition: border-color 0.15s ease;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--blue);
}

.contact-form .btn { align-self: flex-start; }

.form-note {
  font-size: 0.82rem;
  color: var(--gray-500);
}

/* Footer */
.site-footer {
  background: var(--navy-dark);
  color: #a9b4c9;
  padding: 32px 0;
  text-align: center;
  font-size: 0.9rem;
}
.footer-inner p { margin: 4px 0; }

/* Responsive */
@media (max-width: 860px) {
  .hours-inner { grid-template-columns: 1fr; }
  .map-wrap { min-height: 260px; }
}

@media (max-width: 768px) {
  .nav-desktop, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding: 72px 0; }
  .services, .about, .hours, .contact { padding: 64px 0; }
}
