:root {
  --red: #C0392B;
  --navy: #1B3A6B;
  --light: #F5F7FA;
  --white: #FFFFFF;
  --text: #2C2C2C;
  --gray: #666;
  --border: #E0E0E0;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
}

a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── HEADER ── */
header {
  background: var(--white);
  border-bottom: 3px solid var(--red);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
}

.logo-name span { color: var(--red); }

.logo-tagline {
  font-size: 0.72rem;
  color: var(--gray);
  font-style: italic;
}

.logo-img {
  height: 56px;
  width: auto;
  display: block;
}

.logo-img-footer {
  height: 48px;
  background: white;
  padding: 6px 10px;
  border-radius: 4px;
}

nav { display: flex; gap: 28px; align-items: center; }

nav a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: color 0.2s;
}

nav a:hover { color: var(--red); }

.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 9px 18px;
  border-radius: 4px;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: #a93226 !important; text-decoration: none !important; }

.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, rgba(27,58,107,0.88) 0%, rgba(13,37,71,0.93) 100%),
              url('../images/van-3-loading-packages.jpg') center/cover no-repeat;
  color: var(--white);
  padding: 90px 24px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero p {
  font-size: 1.15rem;
  opacity: 0.9;
  max-width: 580px;
  margin: 0 auto 36px;
}

.btn-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: #a93226; text-decoration: none; }

.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.7); }
.btn-outline:hover { background: rgba(255,255,255,0.1); text-decoration: none; }

.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: #a93226; text-decoration: none; }

.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: #142d56; text-decoration: none; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--red);
  color: var(--white);
  padding: 18px 24px;
}

.trust-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2px;
  font-size: 0.9rem;
}

.trust-item strong {
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.2;
}

/* ── SECTIONS ── */
section { padding: 72px 24px; }
section.light { background: var(--light); }
section.white { background: var(--white); }
section.dark { background: var(--navy); color: var(--white); }

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.section-title.white { color: var(--white); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  margin-bottom: 48px;
  max-width: 600px;
}

.section-subtitle.white { color: rgba(255,255,255,0.8); }

/* ── CARDS ── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.card {
  background: var(--white);
  border-radius: 8px;
  padding: 32px 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  border-top: 4px solid var(--red);
  text-decoration: none;
  transition: box-shadow 0.18s, transform 0.18s;
}
a.card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.13);
  transform: translateY(-2px);
}

.card.navy-top { border-top-color: var(--navy); }

.card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}

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

.card .step-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 12px;
}

/* ── DELIVERS LIST ── */
.delivers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.deliver-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px;
  background: var(--white);
  border-radius: 6px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
  text-decoration: none;
  cursor: pointer;
  transition: box-shadow 0.18s, transform 0.18s;
}
a.deliver-item:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.13);
  transform: translateY(-2px);
}

.deliver-icon {
  width: 36px;
  height: 36px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  font-size: 1rem;
}

.deliver-item h4 { font-size: 0.95rem; font-weight: 700; color: var(--navy); }
.deliver-item p { font-size: 0.88rem; color: var(--gray); }

/* ── SERVICE LEVELS ── */
.service-levels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.service-level {
  background: var(--white);
  border-radius: 8px;
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  text-align: center;
  border-bottom: 4px solid var(--navy);
  text-decoration: none;
  transition: box-shadow 0.18s, transform 0.18s;
}
a.service-level:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.13);
  transform: translateY(-2px);
}

.service-level h3 { color: var(--navy); font-size: 1.1rem; margin-bottom: 10px; }
.service-level p { color: var(--gray); font-size: 0.9rem; }
.service-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--light);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

/* ── TESTIMONIALS ── */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.testimonial {
  background: var(--white);
  border-radius: 8px;
  padding: 32px 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  position: relative;
}

.testimonial::before {
  content: '\201C';
  font-size: 5rem;
  color: var(--red);
  opacity: 0.15;
  position: absolute;
  top: 8px;
  left: 20px;
  line-height: 1;
  font-family: Georgia, serif;
}

.testimonial p {
  color: var(--text);
  font-style: italic;
  font-size: 0.97rem;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.testimonial cite {
  font-size: 0.85rem;
  color: var(--gray);
  font-style: normal;
  font-weight: 600;
}

/* ── TWO COL ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* ── CTA SECTION ── */
.cta-section {
  background: var(--navy);
  color: var(--white);
  padding: 72px 24px;
  text-align: center;
}

.cta-section h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 1.05rem;
  opacity: 0.85;
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ── AREAS ── */
.areas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.area-card {
  background: var(--white);
  border-radius: 8px;
  padding: 36px 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  border-top: 4px solid var(--navy);
}

.area-card h3 { font-size: 1.3rem; font-weight: 800; color: var(--navy); margin-bottom: 16px; }

.city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.city-tag {
  padding: 5px 14px;
  background: var(--light);
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
}

/* ── RATES TABLE ── */
.rates-table { width: 100%; border-collapse: collapse; margin-top: 32px; }
.rates-table th {
  background: var(--navy);
  color: white;
  padding: 14px 20px;
  text-align: left;
  font-size: 0.9rem;
}
.rates-table td { padding: 14px 20px; border-bottom: 1px solid var(--border); font-size: 0.95rem; }
.rates-table tr:nth-child(even) td { background: var(--light); }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 20px 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-q::after { content: '+'; font-size: 1.4rem; color: var(--red); }
.faq-q.open::after { content: '−'; }
.faq-a { padding: 0 0 20px; color: var(--gray); font-size: 0.97rem; display: none; }
.faq-a.open { display: block; }

/* ── CONTACT FORM ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info h3 { font-size: 1.2rem; font-weight: 800; color: var(--navy); margin-bottom: 20px; }

.contact-block { margin-bottom: 28px; }
.contact-block h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; color: var(--gray); margin-bottom: 8px; }
.contact-block p { font-size: 1.05rem; color: var(--text); }
.contact-block a { color: var(--navy); font-weight: 600; }

.hours-table { width: 100%; }
.hours-table td { padding: 6px 0; font-size: 0.95rem; }
.hours-table td:first-child { font-weight: 600; color: var(--navy); width: 160px; }

.notice-box {
  background: var(--light);
  border-left: 4px solid var(--red);
  padding: 16px 20px;
  border-radius: 0 6px 6px 0;
  margin-top: 28px;
  font-size: 0.92rem;
  color: var(--text);
}

.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.form-group label span { color: var(--red); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
}
.form-group textarea { min-height: 100px; resize: vertical; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.optional-label { font-size: 0.75rem; color: var(--gray); font-weight: normal; margin-left: 6px; }

.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--red);
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  font-family: inherit;
}
.form-submit:hover { background: #a93226; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, rgba(27,58,107,0.88) 0%, rgba(13,37,71,0.93) 100%),
              url('../images/handoff-2-woman-receiving.jpg') center/cover no-repeat;
  color: white;
  padding: 56px 24px;
  text-align: center;
}
.page-hero h1 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; margin-bottom: 12px; }
.page-hero p { opacity: 0.85; max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  padding: 56px 24px 32px;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .logo-name { color: var(--white); font-size: 1.1rem; }
.footer-brand .logo-name span { color: #ef9a9a; }
.footer-brand .logo-tagline { color: rgba(255,255,255,0.6); margin-top: 4px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; opacity: 0.7; line-height: 1.6; }

.footer-col h4 {
  color: white;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin-bottom: 10px;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: white; }

.footer-col p { font-size: 0.9rem; opacity: 0.7; margin-bottom: 10px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  opacity: 0.55;
}

/* ── ABOUT ── */
.about-lead {
  font-size: 1.2rem;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 28px;
}

.about-body p { margin-bottom: 20px; color: var(--text); font-size: 1rem; }

/* ── CITY PAGE ── */
.city-intro {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 40px;
  max-width: 680px;
}

/* ── EMAIL NAV LINK ── */
.nav-email {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy) !important;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-email:hover { color: var(--red) !important; text-decoration: none !important; }
.nav-email svg { width: 15px; height: 15px; }

.nav-rate {
  font-size: 0.82rem;
  font-weight: 700;
  color: #b8860b !important;
  text-decoration: none;
  border: 1px solid #e6b800;
  border-radius: 20px;
  padding: 5px 12px;
  background: #fffbea;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
  letter-spacing: 0.03em;
}
.nav-rate:hover { background: #fff3b0 !important; text-decoration: none !important; }

/* ── CHAT BUBBLE ── */
.chat-bubble {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1000;
}

.chat-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--red);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: background 0.2s, transform 0.2s;
}
.chat-btn:hover { background: #a93226; transform: scale(1.05); }
.chat-btn svg { width: 26px; height: 26px; color: white; }

.chat-popup {
  display: none;
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 300px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  overflow: hidden;
}

.chat-popup.open { display: block; }

.chat-popup-header {
  background: var(--navy);
  color: white;
  padding: 16px 18px;
}
.chat-popup-header h4 { font-size: 0.95rem; margin-bottom: 2px; }
.chat-popup-header p { font-size: 0.78rem; opacity: 0.8; }

.chat-popup-body { padding: 16px; }

.chat-form-group { margin-bottom: 12px; }
.chat-form-group input,
.chat-form-group textarea {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 0.88rem;
  font-family: inherit;
  color: var(--text);
}
.chat-form-group input:focus,
.chat-form-group textarea:focus { outline: none; border-color: var(--navy); }
.chat-form-group textarea { min-height: 72px; resize: none; }

.chat-submit {
  width: 100%;
  padding: 10px;
  background: var(--red);
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}
.chat-submit:hover { background: #a93226; }

.chat-success {
  display: none;
  padding: 20px 16px;
  text-align: center;
  color: var(--navy);
  font-size: 0.92rem;
}
.chat-success strong { display: block; font-size: 1.05rem; margin-bottom: 6px; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { display: none; }
  nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px 24px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    gap: 16px;
    z-index: 99;
  }
  .hamburger { display: flex; }
  .two-col { grid-template-columns: 1fr; }
  .areas { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .trust-bar-inner { gap: 24px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ── DARK MODE TOGGLE BUTTON ── */
.dark-toggle {
  background: none;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 5px 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  color: var(--navy);
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
  line-height: 1;
  font-size: 0.8rem;
  font-weight: 600;
}
.dark-toggle:hover { background: var(--light); }
.dark-toggle .icon-moon { display: none; }
[data-theme="dark"] .dark-toggle .icon-sun { display: none; }
[data-theme="dark"] .dark-toggle .icon-moon { display: block; }
[data-theme="dark"] .dark-toggle { border-color: #253347; color: #7db8f7; }
[data-theme="dark"] .nav-rate { background: #1e2a0a; border-color: #8a7000; color: #e6c200 !important; }
[data-theme="dark"] .nav-rate:hover { background: #2a3a10 !important; }

/* ── DARK MODE ── */
[data-theme="dark"] {
  --red: #e05252;
  --navy: #7db8f7;
  --light: #18283a;
  --white: #0d1520;
  --text: #dce6f0;
  --gray: #8fa8c0;
  --border: #253347;
}

[data-theme="dark"] body { background: #0d1520; }
[data-theme="dark"] header { background: #0a1220; box-shadow: 0 2px 8px rgba(0,0,0,0.5); }
[data-theme="dark"] nav.open { background: #0a1220; }

[data-theme="dark"] section.white { background: #0d1520; }
[data-theme="dark"] section.light { background: #18283a; }

[data-theme="dark"] .card { background: #152031; }
[data-theme="dark"] .deliver-item { background: #152031; }
[data-theme="dark"] .service-level { background: #152031; }
[data-theme="dark"] .testimonial { background: #152031; }
[data-theme="dark"] .area-card { background: #152031; }
[data-theme="dark"] .service-badge { background: #1e3352; color: #7db8f7; }
[data-theme="dark"] .city-tag { background: #1e3352; color: #7db8f7; }

[data-theme="dark"] .section-title { color: #7db8f7; }
[data-theme="dark"] .about-lead { color: #7db8f7; }
[data-theme="dark"] .city-intro { color: #dce6f0; }

[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group select,
[data-theme="dark"] .form-group textarea {
  background: #152031;
  color: #dce6f0;
  border-color: #253347;
}
[data-theme="dark"] .form-group input:focus,
[data-theme="dark"] .form-group select:focus,
[data-theme="dark"] .form-group textarea:focus { border-color: #7db8f7; }

[data-theme="dark"] .notice-box { background: #152031; color: #8fa8c0; }
[data-theme="dark"] .faq-item { border-bottom-color: #253347; }
[data-theme="dark"] .faq-q { color: #7db8f7; }
[data-theme="dark"] .faq-a { color: #8fa8c0; }
[data-theme="dark"] .hours-table td:first-child { color: #7db8f7; }

[data-theme="dark"] .chat-popup { background: #0d1520; }
[data-theme="dark"] .chat-popup-body { background: #0d1520; }
[data-theme="dark"] .chat-form-group input,
[data-theme="dark"] .chat-form-group textarea {
  background: #152031;
  color: #dce6f0;
  border-color: #253347;
}
[data-theme="dark"] .chat-success { color: #7db8f7; }
[data-theme="dark"] .contact-block a { color: #7db8f7; }

[data-theme="dark"] .rates-table th { background: #1e3352; }
[data-theme="dark"] .rates-table tr:nth-child(even) td { background: #18283a; }
[data-theme="dark"] .rates-table td { border-bottom-color: #253347; }

[data-theme="dark"] .logo-img-footer { background: #152031; }
