/* =========================================================
   DELIVERY PAGE - CENTRAL CONTENT ONLY
   ========================================================= */

.dw-delivery-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 20px 70px;
  color: #1f2933;
}

/* HERO */

.dw-delivery-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 34px;
  align-items: center;
  margin-bottom: 34px;
}

.dw-delivery-hero__content {
  background: linear-gradient(135deg, #111827 0%, #1f2937 55%, #374151 100%);
  color: #fff;
  padding: 46px;
  border-radius: 24px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dw-eyebrow {
  margin: 0 0 12px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  color: #b9d7ff;
}

.dw-delivery-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.dw-delivery-hero p {
  max-width: 620px;
  margin: 0;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,0.86);
}

.dw-delivery-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.dw-delivery-hero__map {
  overflow: hidden;
  border-radius: 24px;
  min-height: 380px;
  background: #f3f7fb;
  box-shadow: 0 18px 45px rgba(15,23,42,0.15);
  border: 1px solid #e5e7eb;
}

.dw-delivery-hero__map img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  display: block;
  object-fit: cover;
  padding: 0px;
  background: #fff;
}

/* BUTTONS */

.dw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.dw-btn:hover {
  transform: translateY(-2px);
}

.dw-btn--primary {
  background: #0072ce;
  color: #fff;
  box-shadow: 0 10px 24px rgba(0,114,206,0.28);
}

.dw-btn--primary:hover {
  background: #005fae;
}

.dw-btn--quote {
  background: linear-gradient(180deg, #f7c55a 0%, #f0a83a 45%, #e68a00 100%);
  color: #111;
  border: 1px solid #c87f00;
  box-shadow: 0 2px 0 #b36a00, 0 8px 20px rgba(0, 0, 0, .18);
}

.dw-btn--quote:hover {
  background: linear-gradient(180deg, #f8cc6a 0%, #f2b24a 45%, #ec930a 100%);
  box-shadow: 0 4px 0 #b36a00, 0 12px 26px rgba(0, 0, 0, .22);
}

.dw-btn--quote:active {
  transform: translateY(1px);
  box-shadow: 0 1px 0 #b36a00, 0 4px 10px rgba(0,0,0,.2);
}

/* TRUST STRIP */

.dw-delivery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: 20px;
  background: #dce8f3;
  border: 1px solid #dce8f3;
  margin-bottom: 44px;
}

.dw-delivery-strip div {
  background: #fff;
  padding: 22px 18px;
  text-align: center;
}

.dw-delivery-strip strong {
  display: block;
  color: #111827;
  font-size: 16px;
  margin-bottom: 6px;
}

.dw-delivery-strip span {
  display: block;
  color: #52616f;
  font-size: 13px;
  line-height: 1.4;
}

/* INTRO */

.dw-delivery-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: stretch;
  margin-bottom: 54px;
}

.dw-delivery-intro h2,
.dw-section-head h2,
.dw-delivery-map-section h2,
.dw-delivery-quote h2 {
  margin: 0 0 14px;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #111827;
}

.dw-delivery-intro p,
.dw-section-head p,
.dw-delivery-map-section p,
.dw-delivery-quote p {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.7;
  color: #52616f;
}

.dw-delivery-note {
  background: #f3f7fb;
  border: 1px solid #dce8f3;
  border-radius: 20px;
  padding: 24px;
}

.dw-delivery-note h3 {
  margin: 0 0 10px;
  color: #111827;
  font-size: 22px;
}

.dw-delivery-note p {
  margin-bottom: 16px;
}

.dw-delivery-note a {
  color: #0072ce;
  font-weight: 800;
  text-decoration: none;
}

.dw-delivery-note a:hover {
  text-decoration: underline;
}

/* SECTION HEAD */

.dw-section-head {
  max-width: 720px;
  margin-bottom: 24px;
}

/* PRICE CARDS */

.dw-delivery-prices {
  margin-bottom: 54px;
}

.dw-delivery-price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.dw-zone-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 14px 38px rgba(15,23,42,0.08);
  position: relative;
  overflow: hidden;
}

.dw-zone-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 20px;
  background: #005190;
}

.dw-zone-card--area2::before {
  background: #5191ce;
}

.dw-zone-card__label {
  margin: 0 0 8px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  color: #0072ce;
}

.dw-zone-card--area2 .dw-zone-card__label {
  color: #5191ce;
}

.dw-zone-card h3 {
  margin: 0 0 4px;
  color: #111827;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.dw-zone-card > p {
  margin: 0 0 18px;
  color: #005190;
  font-weight: 700;
}

.dw-zone-card__offer {
  margin: 0 0 20px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #7c2d12;
  font-size: 14px;
  line-height: 1.45;
}

.dw-zone-card__counties {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.dw-zone-card__counties span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f3f7fb;
  border: 1px solid #dce8f3;
  color: #334155;
  font-size: 13px;
  font-weight: 700;
}

/* MAP FEATURE */

.dw-delivery-map-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: 34px;
  align-items: center;
  margin-bottom: 54px;
  padding: 30px;
  border-radius: 26px;
  background: linear-gradient(135deg, #f3f7fb 0%, #ffffff 100%);
  border: 1px solid #e5e7eb;
}

.dw-delivery-map-section__image {
  background: #fff;
  border-radius: 22px;
  padding: 20px;
  box-shadow: 0 14px 34px rgba(15,23,42,0.08);
}

.dw-delivery-map-section__image img {
  width: 100%;
  display: block;
  height: auto;
  object-fit: contain;
}

.dw-delivery-map-section__content {
  padding: 10px;
}

.dw-delivery-map-section__content .dw-btn {
  margin-top: 12px;
}

/* COUNTIES */

.dw-counties {
  margin-bottom: 54px;
}

.dw-county-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.dw-county-grid span {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 13px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #e5e7eb;
  color: #334155;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(15,23,42,0.04);
}

/* FINAL QUOTE CTA */

.dw-delivery-quote {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 38px;
  border-radius: 26px;
  background: linear-gradient(135deg, #111827 0%, #1f2937 55%, #374151 100%);
  color: #fff;
}

.dw-delivery-quote h2 {
  color: #fff;
}

.dw-delivery-quote p {
  color: rgba(255,255,255,0.82);
  max-width: 680px;
}

.dw-delivery-quote__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

/* RESPONSIVE */

@media (max-width: 980px) {
  .dw-delivery-hero,
  .dw-delivery-intro,
  .dw-delivery-map-section,
  .dw-delivery-quote {
    grid-template-columns: 1fr;
  }

  .dw-delivery-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .dw-delivery-price-grid {
    grid-template-columns: 1fr;
  }

  .dw-county-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .dw-delivery-quote__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .dw-delivery-page {
    padding: 30px 14px 50px;
  }

  .dw-delivery-hero__content,
  .dw-delivery-quote {
    padding: 30px 24px;
    border-radius: 18px;
  }

  .dw-delivery-hero__map,
  .dw-delivery-map-section,
  .dw-zone-card {
    border-radius: 18px;
  }

  .dw-delivery-hero__map img {
    padding: 14px;
  }

  .dw-delivery-strip {
    grid-template-columns: 1fr;
  }

  .dw-county-grid {
    grid-template-columns: 1fr;
  }

  .dw-delivery-map-section {
    padding: 18px;
  }

  .dw-delivery-hero__actions,
  .dw-delivery-quote__actions {
    flex-direction: column;
  }

  .dw-btn {
    width: 100%;
  }
}



.dw-delivery-other-zone {
  margin-top: 24px;
  padding: 20px 22px;
  border-radius: 18px;
  background: #9FCC00;
  color: #111827;
  border: 1px solid rgba(0,0,0,0.12);
  box-shadow: 0 10px 24px rgba(159,204,0,0.22);
}

.dw-delivery-other-zone h3 {
  margin: 0 0 8px;
  font-size: 21px;
  line-height: 1.15;
  color: #111827;
}

.dw-delivery-other-zone p {
  margin: 0 0 14px;
  color: #1f2933;
  font-size: 15px;
  line-height: 1.55;
}

.dw-delivery-other-zone a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 15px;
  border-radius: 999px;
  background: #111827;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.dw-delivery-other-zone a:hover {
  background: #000;
  transform: translateY(-1px);
}