/* ============================================================
   domestic.css — Domestic courier hub page
   Load after slp-critical.css + slp-deferred.css
   ============================================================ */

body {
  background: linear-gradient(135deg, #4a0072 0%, #3a005a 50%, #9821c8 100%);
  background-color: #4a0072;
  color: #fff;
}

.hero {
  background: linear-gradient(rgba(74, 0, 114, 0.88), rgba(106, 0, 153, 0.82)),
    url('../../photos/hero-domestic.webp') center / cover no-repeat;
  padding: 72px 0 64px;
  text-align: center;
  color: #fff;
}

.hero h1 {
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 18px;
}

.hero h1 .highlight {
  color: #ffd54f;
}

.hero p {
  max-width: 680px;
  margin: 0 auto 28px;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.btn-main {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: #ffd54f;
  color: #4a0072;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.2s;
}

.btn-sec {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: transparent;
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  border: 2px solid #ffd54f;
  transition: transform 0.2s;
}

.btn-main:hover,
.btn-sec:hover {
  transform: translateY(-2px);
}

.section {
  padding: 64px 0;
}

.section--cards {
  background: transparent;
}

.section--alt {
  background: rgba(0, 0, 0, 0.1);
}

.section-head {
  text-align: center;
  margin-bottom: 40px;
}

.section-head .badge {
  display: inline-block;
  background: #ffd54f;
  color: #4a0072;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.section-head h2 {
  font-size: clamp(1.35rem, 3vw, 2rem);
  color: #ffd54f;
  margin-bottom: 10px;
  font-weight: 800;
}

.section-head p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 640px;
  margin: 0 auto;
}

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

.srv-card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  border-bottom: 4px solid #ffd54f;
}

.srv-card .srv-icon {
  font-size: 32px;
  display: block;
  margin-bottom: 12px;
}

.srv-card h3 {
  color: #4a0072;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.srv-card > p {
  color: #666;
  font-size: 14px;
  margin-bottom: 14px;
}

.srv-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.srv-card ul li {
  color: #555;
  font-size: 13px;
  padding: 6px 0;
  padding-left: 1.4em;
  position: relative;
}

.srv-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #9821c8;
  font-weight: 700;
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px;
}

.city-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 213, 79, 0.25);
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
}

.city-card h4 {
  color: #ffd54f;
  font-size: 15px;
  margin-bottom: 6px;
}

.city-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
}

.pricing-table {
  overflow-x: auto;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 16px;
  padding: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.pricing-table table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
}

.pricing-table th,
.pricing-table td {
  padding: 14px 18px;
  text-align: left;
  font-size: 14px;
  color: #333;
  border-bottom: 1px solid #eee;
}

.pricing-table th {
  background: #4a0072;
  color: #ffd54f;
  font-weight: 700;
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

.pricing-note {
  text-align: center;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
}

.cta-section {
  background: #ffd54f;
  padding: 56px 0;
  text-align: center;
  color: #4a0072;
}

.cta-section h2 {
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.cta-section p {
  margin-bottom: 24px;
  font-size: 16px;
}

.cta-section .btn-sec {
  border-color: #4a0072;
  color: #4a0072;
}

@media (max-width: 600px) {
  .coverage-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
