/* ========================================================================== */
/* General Styles                                                            */
/* ========================================================================== */

body {
  background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
  color: #1f2937;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  line-height: 1.6;
  margin: 0;
}

/* ========================================================================== */
/* Delivery Page Styles                                                       */
/* ========================================================================== */

.delivery-page {
  animation: fadeIn 0.6s ease-out;
  min-height: calc(100vh - 120px); /* Adjust for header height */
  padding: 4rem 0;
}

.container {
  margin: 0 auto;
  max-width: 1280px;
  padding: 0 1.5rem;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
  padding: 0;
  margin: 0;
}


.section-title {
  color: #111827;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 3rem;
  position: relative;
  text-align: center;
}

.section-title::after {
  background: linear-gradient(90deg, #0ea5e9, #3b82f6);
  border-radius: 2px;
  bottom: 0;
  content: '';
  height: 5px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 100px;
}

.delivery-content {
  background: #ffffff;
  border-radius: 1.5rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  padding: 2.5rem;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.delivery-content:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.section-subtitle {
  border-left: 5px solid #0ea5e9;
  color: #111827;
  font-size: 1.875rem;
  font-weight: 600;
  margin: 2rem 0 1.25rem;
  padding-left: 1rem;
  transition: color 0.3s ease;
}

.section-subtitle:hover {
  color: #0ea5e9;
}

.delivery-text {
  color: #4b5563;
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.delivery-list {
  list-style-type: disc;
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.delivery-list li {
  color: #4b5563;
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  position: relative;
  transition: transform 0.2s ease;
}

.delivery-list li:hover {
  transform: translateX(5px);
}

.delivery-list li strong {
  color: #111827;
  font-weight: 600;
}

.delivery-link {
  color: #0ea5e9;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.delivery-link:hover {
  color: #0284c7;
  text-decoration: underline;
}

.delivery-button-container {
  margin-top: 2rem;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(90deg, #0ea5e9, #3b82f6);
  border: none;
  border-radius: 0.75rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  color: #ffffff;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 600;
  padding: 0.875rem 2rem;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
  background: linear-gradient(90deg, #0284c7, #2563eb);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.btn-primary:active {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transform: translateY(0);
}

.btn-primary:focus {
  box-shadow: 0 0 0 2px #0ea5e9, 0 0 0 4px rgba(14, 165, 233, 0.3);
  outline: none;
}

.btn-order {
  background: linear-gradient(90deg, #0ea5e9, #3b82f6);
  border-radius: 0.5rem;
  color: #ffffff;
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  text-align: center;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-order:hover {
  background: linear-gradient(90deg, #0284c7, #2563eb);
}

/* ========================================================================== */
/* Animation Styles                                                           */
/* ========================================================================== */

.animate-fade-in {
  animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================================================== */
/* Responsive Styles                                                         */
/* ========================================================================== */

@media (max-width: 1024px) {
  .delivery-content {
    padding: 2rem;
  }

  .section-title {
    font-size: 2.25rem;
  }

  .section-subtitle {
    font-size: 1.5rem;
  }
}

@media (max-width: 640px) {
  .delivery-page {
    padding: 2rem 0;
  }

  .section-title {
    font-size: 1.875rem;
  }

  .delivery-content {
    padding: 1.5rem;
  }

  .delivery-text,
  .delivery-list li {
    font-size: 1rem;
  }

  .btn-primary {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
  }
}