.delivery-section {
  background-color: #04060c;
  padding: 6rem 0 7rem;
  color: #f6f7f8;
}

.delivery-header {
  max-width: 700px;
  margin: 0 auto 3rem;
}

.delivery-title {
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 0.75rem;
}

.delivery-subtitle {
  font-size: 1.05rem;
  color: rgba(246, 247, 248, 0.72);
  margin-bottom: 0;
}

.delivery-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.75rem;
}

.delivery-card {
  border-radius: 26px;
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  min-height: 100%;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}

.delivery-card .card-media {
  width: 100%;
}

.delivery-card .card-media img {
  display: block;
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.delivery-card .card-body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.delivery-card .card-title {
  font-size: 1.35rem;
  font-weight: 700;
}

.delivery-card .card-text {
  font-size: 0.95rem;
  color: rgba(246, 247, 248, 0.72);
  margin-bottom: 0;
}

.delivery-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.45);
}

.delivery-card.accent-pink {
  background: linear-gradient(145deg, #25070a, #4d1514);
}

.delivery-card.accent-blue {
  background: linear-gradient(145deg, #021024, #052343);
}

.delivery-card.accent-gold {
  background: linear-gradient(145deg, #2b1c02, #5e3c05);
}

.delivery-card.accent-green {
  background: linear-gradient(145deg, #051807, #0f3813);
}

.delivery-banners {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.delivery-banner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 1.75rem;
  border-radius: 999px;
  color: #f6f7f8;
  box-shadow: 0 15px 28px rgba(0, 0, 0, 0.32);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
  cursor: pointer;
}

.delivery-banner:visited {
  color: #f6f7f8;
}

.delivery-banner .banner-media img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
}

.delivery-banner .banner-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.delivery-banner .banner-cta {
  font-size: 0.85rem;
  color: rgba(246, 247, 248, 0.7);
}

.delivery-banner .banner-arrow {
  font-size: 1.75rem;
  line-height: 1;
  opacity: 0.75;
}

.delivery-banner.banner-blue {
  background: linear-gradient(145deg, #032438, #0b3e5b);
}

.delivery-banner.banner-gold {
  background: linear-gradient(145deg, #2b1c02, #5e3c05);
}

.delivery-banner:hover {
  transform: translateY(-4px) scale(1.015);
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.4);
}

.delivery-contacts {
  margin: 3rem auto 0;
  padding: 2rem 2.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.32);
  max-width: 680px;
}

.delivery-contacts .contact-heading {
  text-align: center;
  margin-bottom: 1.75rem;
}

.delivery-contacts .contact-label {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(246, 247, 248, 0.9);
}

.delivery-contacts .contact-number {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.delivery-contacts .contact-number:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.delivery-contacts .contact-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.delivery-contacts .contact-icon i {
  font-size: 1.4rem;
}

.delivery-contacts .contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.delivery-contacts .contact-link {
  color: #f6f7f8;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: transform 0.25s ease, color 0.25s ease;
}

.delivery-contacts .contact-link:hover {
  color: #ffb347;
  transform: translateX(4px);
}

.delivery-contacts .contact-note {
  font-size: 0.9rem;
  color: rgba(246, 247, 248, 0.65);
}

@media (max-width: 575.98px) {
  .delivery-section {
    padding: 4.5rem 0 5rem;
  }

  .delivery-card {
    padding: 1.75rem 1.5rem;
    gap: 1.25rem;
  }

  .delivery-card .card-media img {
    height: 140px;
  }

  .delivery-banner {
    border-radius: 24px;
    grid-template-columns: 1fr;
    justify-items: start;
    text-align: left;
  }

  .delivery-banner .banner-arrow {
    display: none;
  }

  .delivery-contacts {
    padding: 1.75rem;
    border-radius: 20px;
  }

  .delivery-contacts .contact-number {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .delivery-contacts .contact-icon {
    width: 48px;
    height: 48px;
  }

  .delivery-contacts .contact-link {
    font-size: 1.2rem;
  }
}
