

/* ============================= */
/* HERO SECTION */
/* ============================= */

.order-hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #00c853, #009624);
  overflow: hidden;
  color: white;
}

/* Soft overlay for depth */
.order-hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right,
    rgba(255,255,255,0.08),
    transparent 60%);
}

/* Content container */
.order-hero__content {
  position: relative;
  max-width: 850px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  padding: 50px 40px;
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  animation: fadeUp 0.8s ease;
}

/* Small badge */
.order-hero__badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  margin-bottom: 20px;
}

/* Heading */
.order-hero h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.order-hero h1 span {
  display: block;
  font-size: 22px;
  font-weight: 400;
  opacity: 0.9;
}

/* Paragraph */
.order-hero p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.95;
}

/* ============================= */
/* BUTTONS */
/* ============================= */

.order-hero__actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.hero-btn {
  padding: 14px 18px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

/* Primary buttons */
.hero-btn.primary {
  background: white;
  color: #00c853;
}

.hero-btn.primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 25px rgba(255,255,255,0.5);
}

/* Outline button */
.hero-btn.outline {
  border: 2px solid white;
  color: white;
}

.hero-btn.outline:hover {
  background: white;
  color: #00c853;
}

/* ============================= */
/* ANIMATION */
/* ============================= */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================= */
/* MOBILE */
/* ============================= */

@media (max-width: 768px) {
  .order-hero h1 {
    font-size: 28px;
  }

  .order-hero__actions {
    grid-template-columns: 1fr;
  }
}


/* ============================= */
/* FLOATING DELIVERY ICONS */
/* ============================= */

.floating-delivery-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.floating-delivery-icons span {
  position: absolute;
  font-size: 28px;
  opacity: 0.15;
  animation: floatMove 12s infinite ease-in-out;
}

/* Random Positions */
.floating-delivery-icons span:nth-child(1) { top: 10%; left: 8%; }
.floating-delivery-icons span:nth-child(2) { top: 75%; left: 15%; }
.floating-delivery-icons span:nth-child(3) { top: 30%; left: 85%; }
.floating-delivery-icons span:nth-child(4) { top: 65%; left: 70%; }
.floating-delivery-icons span:nth-child(5) { top: 15%; left: 60%; }
.floating-delivery-icons span:nth-child(6) { top: 80%; left: 85%; }

/* Floating animation */
@keyframes floatMove {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-25px) rotate(8deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}


/* ============================= */
/* HERO SLIDER */
/* ============================= */

.hero-slider {
  position: relative;
  height: 90vh;
  overflow: hidden;
}

/* Slides container */
.slides {
  height: 100%;
  width: 100%;
  position: relative;
}

/* Individual slide */
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  transform: scale(1.05);
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}

/* ============================= */
/* OVERLAY */
/* ============================= */

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.4)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.hero-content {
  color: white;
  max-width: 700px;
  animation: fadeUp 1s ease;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(0, 200, 83, 0.2);
  border: 1px solid #00e676;
  border-radius: 30px;
  font-size: 13px;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* CTA Button use this*/
.hero-btn {
  padding: 14px 28px;
  border-radius: 40px;
  background: linear-gradient(135deg, #00c853, #00e676);
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(0, 230, 118, 0.7);
}

/* ============================= */
/* DOTS */
/* ============================= */

.dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
}

.dot {
  width: 12px;
  height: 12px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #00e676;
  transform: scale(1.3);
  box-shadow: 0 0 10px #00e676;
}

/* ============================= */
/* ANIMATION */
/* ============================= */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================= */
/* MOBILE */
/* ============================= */

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 30px;
  }

  .hero-content p {
    font-size: 16px;
  }
}

/* ============================= */
/* COURIER SECTION */
/* ============================= */

.courier-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  display: flex;
  justify-content: center;
}

.courier-container {
  width: 100%;
  max-width: 1000px;
}

/* Glass Card */
.courier-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  padding: 60px 40px;
  border-radius: 20px;
  text-align: center;
  color: white;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.courier-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

/* Icon */
.courier-icon {
  font-size: 50px;
  margin-bottom: 20px;
  animation: floatIcon 3s ease-in-out infinite;
}

/* Header */
.courier-header h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.courier-header p {
  font-size: 17px;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 30px auto;
}

/* Button */
.courier-btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 40px;
  background: linear-gradient(135deg, #00c853, #00e676);
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.courier-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 25px rgba(0, 230, 118, 0.7);
}

/* Floating Animation */
@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Responsive */
@media (max-width: 768px) {
  .courier-card {
    padding: 40px 20px;
  }

  .courier-header h2 {
    font-size: 26px;
  }
}

/* ============================= */
/* COURIER CARD SECTION */
/* ============================= */

.courier-section {
  padding: 80px 20px;
  background: #f8fafc;
}

.courier-container {
  max-width: 1100px;
  margin: auto;
}

/* Card Layout */
.courier-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: white;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.courier-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

/* Left Side */
.card-left {
  flex: 1;
}

.card-badge {
  display: inline-block;
  background: #e8f5e9;
  color: #00c853;
  padding: 6px 14px;
  font-size: 13px;
  border-radius: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.card-left h3 {
  font-size: 28px;
  margin-bottom: 15px;
}

.card-left p {
  font-size: 16px;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* Buttons */
.card-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary {
  padding: 12px 24px;
  border-radius: 30px;
  background: linear-gradient(135deg, #00c853, #00e676);
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 20px rgba(0, 230, 118, 0.6);
}

.btn-outline {
  padding: 12px 24px;
  border-radius: 30px;
  border: 2px solid #00c853;
  background: transparent;
  color: #00c853;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #00c853;
  color: white;
  box-shadow: 0 0 20px rgba(0, 230, 118, 0.5);
}

/* QR Section */
.card-right {
  flex: 0 0 220px;
  display: flex;
  justify-content: center;
}

.qr-wrapper {
  background: #f4f6f8;
  padding: 20px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.qr-wrapper:hover {
  box-shadow: 0 0 25px rgba(0, 200, 83, 0.3);
}

.qr-preview {
  width: 180px;
  height: auto;
  display: block;
}

/* ============================= */
/* MOBILE RESPONSIVE */
/* ============================= */

@media (max-width: 768px) {

  .courier-card {
    flex-direction: column;
    text-align: center;
    padding: 35px 20px;
  }

  .card-actions {
    justify-content: center;
  }

  .card-right {
    margin-top: 20px;
  }
}










































.hero-slider {
  position: relative;
  height: 80vh;
  min-height: 450px;
  overflow: hidden;
  width:100%;
}

.slides {
  position: absolute;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content {
  color: #fff;
  max-width: 700px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.hero-btn {
  padding: 12px 30px;
  background: #ff6b00;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s ease;
}

.hero-btn:hover {
  background: #ff8c33;
  transform: translateY(-3px);
}

/* Dots */
.dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  z-index: 3;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background: #bbb;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.dot.active {
  background: #fff;
}








.courier-section {
  padding: 25px 20px;
  background: #f9fafb;
  max-width: 80%;
  margin: auto;
}

.courier-container {
  max-width: 80%;
  margin: auto;
}

.courier-header {
  text-align: center;
  margin-bottom: 40px;
}

.courier-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 10px;
}

.courier-header p {
  font-size: 1rem;
  color: #6b7280;
  max-width: 600px;
  margin: auto;
}

.restaurant-section {
   padding: 25px 20px;
  background: linear-gradient(to right, #fff7ed, #ffffff);
  max-width: 80%;
  margin: auto;
}

.restaurant-container {
  max-width: 80%;
  margin:auto;
}

.restaurant-header {
  text-align: center;
  margin-bottom: 40px;
}

.restaurant-header h2 {
  font-size: 2.3rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
}

.restaurant-header p {
  font-size: 1rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.business-section {
   padding: 25px 20px;
  background: #f3f4f6;
    max-width: 80%;
  margin: auto;
}

.business-container {
  max-width: 80%;
  margin:auto;
}

.business-header {
  text-align: center;
  margin-bottom: 40px;
}

.business-header h2 {
  font-size: 2.3rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}

.business-header p {
  font-size: 1rem;
  color: #6b7280;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}


.courier-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.hero-btn {
  background: #2563eb;
  color: #fff;
  padding: 14px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  min-width: 200px;
  transition: all 0.25s ease;
}

.hero-btn:hover {
  background-color: linear-gradient(135deg, #0f172a, #1e3a8a);
  transform: translateY(-2px);
}

.hero-btn--outline {
  background: transparent;
  border: 2px solid #fff;
}

.hero-btn--outline:hover {
  background-color: linear-gradient(135deg, #0f172a, #1e3a8a);
  color: white;
}

/* Mobile */
@media (max-width: 600px) {
  /*.courier-hero {
    width: 100%;
    border-radius: 0;
  }

  .courier-hero__overlay {
    padding: 40px 20px;
    border-radius: 0;
    text-align: left;
  }

  .courier-hero h1 {
    font-size: 1.7rem;
    text-align: center;
  }

  .courier-hero p {
    text-align: justify;
  }
*/
  .hero-btn {
    width: 80%;
  }
}

.btn-primary {
  background: #13683F;
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s ease;
}

.btn-primary:hover {
  background: #0f5534;
}

.btn-icon {
  background: #13683F;
  border: none;
  border-radius: 10px;
  padding: 10px 14px;
  cursor: pointer;
}

.btn-icon img {
  width: 36px;
  height: 36px;
}


/* SECTION */
.courier-section {
  padding: 25px 20px;
  background: #f8fafc;
}

/* CONTAINER */
.courier-container {
  max-width: 1100px;
  margin: auto;
}

/* CARD */
.courier-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  gap: 40px;
  transition: 0.3s ease;
}

.courier-card:hover {
  transform: translateY(-5px);
}

/* LEFT SIDE */
.card-left h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.card-left p {
  color: #6b7280;
  margin-bottom: 25px;
  max-width: 400px;
}

/* ACTION BUTTONS */
.card-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s ease;
  border: none;
}

.btn-primary {
  background: #2563eb;
  color: #fff;
  text-decoration: none;
}

.btn-primary:hover {
  background: #000;
}

.btn-light {
  background: #f1f5f9;
}

.btn-light:hover {
  background: #e2e8f0;
}

/* RIGHT SIDE */
.card-right {
  flex-shrink: 0;
}

.qr-preview {
  width: 160px;
  border-radius: 12px;
  transition: 0.3s ease;
}

.qr-preview:hover {
  transform: scale(1.05);
}

/* MODAL */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 999;
  backdrop-filter: blur(4px);
}

.modal-container {
  background: #fff;
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  overflow: hidden;
  animation: fadeIn 0.3s ease;
}

.modal-header {
  padding: 20px;
  background: #111827;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.close-btn {
  cursor: pointer;
  font-size: 22px;
}

.modal-body {
  padding: 30px;
  text-align: center;
}

.modal-body img {
  max-width: 100%;
  border-radius: 12px;
}

/* ANIMATION */
@keyframes fadeIn {
  from {opacity: 0; transform: scale(0.9);}
  to {opacity: 1; transform: scale(1);}
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .courier-card {
    flex-direction: column;
    text-align: center;
  }

  .card-left p {
    max-width: 100%;
  }
}

/* ============================= */
/* FEATURED CARD STYLE */
/* ============================= */

.courier-card--featured {
  position: relative;
  background: linear-gradient(135deg, #ffffff, #f1fdf5);
  border: 2px solid rgba(0, 200, 83, 0.2);
  transition: all 0.4s ease;
}

.courier-card--featured:hover {
  border-color: #00c853;
  box-shadow: 0 25px 60px rgba(0, 200, 83, 0.2);
}

/* Ribbon */
.ribbon {
  position: absolute;
  top: -12px;
  right: 25px;
  background: linear-gradient(135deg, #00c853, #00e676);
  color: white;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 200, 83, 0.4);
}

/* Glowing QR */
.qr-wrapper--glow {
  background: white;
  padding: 20px;
  border-radius: 20px;
  animation: pulseGlow 3s infinite;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 rgba(0, 200, 83, 0.3);
  }
  50% {
    box-shadow: 0 0 25px rgba(0, 200, 83, 0.5);
  }
  100% {
    box-shadow: 0 0 0 rgba(0, 200, 83, 0.3);
  }
}

/* ============================= */
/* DETAILED FORM STYLE */
/* ============================= */

.courier-card--detailed {
  border: 2px solid rgba(33, 150, 243, 0.15);
  background: linear-gradient(135deg, #ffffff, #f5f9ff);
  transition: all 0.4s ease;
}

.courier-card--detailed:hover {
  border-color: #2196f3;
  box-shadow: 0 25px 60px rgba(33, 150, 243, 0.2);
}

/* Advanced Badge */
.badge-advanced {
  background: #e3f2fd;
  color: #1976d2;
  font-weight: 600;
}

/* Feature List */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 25px 0;
}

.feature-list li {
  margin-bottom: 8px;
  font-size: 14px;
  color: #444;
  text-align:left;
}

/* Premium QR Glow */
.qr-wrapper--premium {
  background: white;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(33, 150, 243, 0.15);
  transition: all 0.3s ease;
}

.qr-wrapper--premium:hover {
  box-shadow: 0 0 30px rgba(33, 150, 243, 0.4);
}

/* ============================= */
/* RESTAURANT SECTION */
/* ============================= */

.restaurant-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #fff8f0, #ffeede);
  position: relative;
  text-align: center;
}

/* Decorative Divider Effect */
.restaurant-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ff7043, #ff9800);
  border-radius: 10px;
}

/* Container */
.restaurant-container {
  max-width: 900px;
  margin: auto;
}

/* Badge */
.section-badge {
  display: inline-block;
  background: #fff3e0;
  color: #ff6f00;
  padding: 6px 16px;
  font-size: 13px;
  border-radius: 30px;
  margin-bottom: 20px;
  font-weight: 600;
}

/* Heading */
.restaurant-header h2 {
  font-size: 38px;
  margin-bottom: 15px;
  color: #333;
}

/* Paragraph */
.restaurant-header p {
  font-size: 17px;
  color: #555;
  line-height: 1.7;
  max-width: 650px;
  margin: auto;
}

/* Subtle Fade-In Animation */
.restaurant-header {
  animation: fadeUp 1s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .restaurant-header h2 {
    font-size: 26px;
  }

  .restaurant-header p {
    font-size: 15px;
  }
}

/* ============================= */
/* RESTAURANT ORDER CARD */
/* ============================= */

.restaurant-order-section {
 padding: 20px 20px;
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
}

.restaurant-container {
  max-width: 80%;
  margin: auto;
}

.restaurant-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: white;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(255, 87, 34, 0.08);
  transition: all 0.4s ease;
}

.restaurant-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(255, 87, 34, 0.15);
}

/* Badge */
.badge-restaurant {
  background: #fff3e0;
  color: #e65100;
  padding: 6px 14px;
  font-size: 13px;
  border-radius: 30px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
}

/* Heading */
.restaurant-card h3 {
  font-size: 28px;
  margin-bottom: 15px;
}

.restaurant-card p {
  font-size: 16px;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* Buttons */
.btn-restaurant-primary {
  padding: 12px 24px;
  border-radius: 30px;
  background: linear-gradient(135deg, #ff7043, #ff9800);
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-restaurant-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 20px rgba(255, 152, 0, 0.6);
}

.btn-restaurant-outline {
  padding: 12px 24px;
  border-radius: 30px;
  border: 2px solid #ff7043;
  background: transparent;
  color: #ff7043;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-restaurant-outline:hover {
  background: #ff7043;
  color: white;
  box-shadow: 0 0 20px rgba(255, 112, 67, 0.5);
}

/* QR */
.qr-wrapper--restaurant {
  background: #fffaf5;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(255, 112, 67, 0.15);
  transition: all 0.3s ease;
}

.qr-wrapper--restaurant:hover {
  box-shadow: 0 0 30px rgba(255, 112, 67, 0.4);
}

.qr-preview {
  width: 180px;
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .restaurant-card {
    flex-direction: column;
    text-align: center;
    padding: 35px 20px;
  }

  .card-actions {
    justify-content: center;
  }

  .card-right {
    margin-top: 20px;
  }
}

/* ============================= */
/* FEATURED RESTAURANT CARD */
/* ============================= */

.restaurant-card--featured {
  position: relative;
  background: linear-gradient(135deg, #ffffff, #fff3e8);
  border: 2px solid rgba(255, 112, 67, 0.2);
  transition: all 0.4s ease;
}

.restaurant-card--featured:hover {
  border-color: #ff7043;
  box-shadow: 0 25px 60px rgba(255, 112, 67, 0.25);
}

/* Ribbon */
.ribbon-restaurant {
  position: absolute;
  top: -12px;
  right: 25px;
  background: linear-gradient(135deg, #ff7043, #ff9800);
  color: white;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(255, 112, 67, 0.4);
}

/* Featured QR Glow */
.qr-wrapper--featured {
  background: #fffaf5;
  padding: 20px;
  border-radius: 20px;
  animation: restaurantGlow 3s infinite;
}

@keyframes restaurantGlow {
  0% {
    box-shadow: 0 0 0 rgba(255, 112, 67, 0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(255, 112, 67, 0.5);
  }
  100% {
    box-shadow: 0 0 0 rgba(255, 112, 67, 0.3);
  }
}

/* ============================= */
/* PAYMENT ON DELIVERY CARD */
/* ============================= */

.restaurant-card--cod {
  position: relative;
  background: linear-gradient(135deg, #ffffff, #fff8f3);
  border: 2px solid rgba(255, 87, 34, 0.25);
  transition: all 0.4s ease;
}

.restaurant-card--cod:hover {
  border-color: #ff5722;
  box-shadow: 0 25px 60px rgba(255, 87, 34, 0.25);
}

/* Ribbon */
.ribbon-cod {
  position: absolute;
  top: -12px;
  right: 25px;
  background: linear-gradient(135deg, #ff5722, #ff9800);
  color: white;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(255, 87, 34, 0.4);
}

/* Trust Badge */
.badge-trust {
  background: #fff3e0;
  color: #e65100;
}

/* Restaurant Feature List */
.feature-list--restaurant li {
  font-size: 14px;
  margin-bottom: 8px;
  color: #444;
}

/* COD QR Glow */
.qr-wrapper--cod {
  background: #fffaf5;
  padding: 20px;
  border-radius: 20px;
  animation: codGlow 3s infinite;
}

@keyframes codGlow {
  0% { box-shadow: 0 0 0 rgba(255, 87, 34, 0.3); }
  50% { box-shadow: 0 0 30px rgba(255, 87, 34, 0.5); }
  100% { box-shadow: 0 0 0 rgba(255, 87, 34, 0.3); }
}

/* ============================= */
/* PICKUP TIME CARD */
/* ============================= */

.restaurant-card--pickup {
  position: relative;
  background: linear-gradient(135deg, #ffffff, #f5f3ff);
  border: 2px solid rgba(124, 77, 255, 0.25);
  transition: all 0.4s ease;
}

.restaurant-card--pickup:hover {
  border-color: #7c4dff;
  box-shadow: 0 25px 60px rgba(124, 77, 255, 0.25);
}

/* Ribbon */
.ribbon-pickup {
  position: absolute;
  top: -12px;
  right: 25px;
  background: linear-gradient(135deg, #7c4dff, #651fff);
  color: white;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(124, 77, 255, 0.4);
}

/* Badge */
.badge-pickup {
  background: #ede7f6;
  color: #5e35b1;
}

/* Buttons */
.btn-pickup-primary {
  padding: 12px 24px;
  border-radius: 30px;
  background: linear-gradient(135deg, #7c4dff, #651fff);
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-pickup-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 20px rgba(124, 77, 255, 0.6);
}

.btn-pickup-outline {
  padding: 12px 24px;
  border-radius: 30px;
  border: 2px solid #7c4dff;
  background: transparent;
  color: #7c4dff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-pickup-outline:hover {
  background: #7c4dff;
  color: white;
}

/* QR Glow */
.qr-wrapper--pickup {
  background: #faf8ff;
  padding: 20px;
  border-radius: 20px;
  animation: pickupGlow 3s infinite;
}

@keyframes pickupGlow {
  0% { box-shadow: 0 0 0 rgba(124, 77, 255, 0.3); }
  50% { box-shadow: 0 0 30px rgba(124, 77, 255, 0.5); }
  100% { box-shadow: 0 0 0 rgba(124, 77, 255, 0.3); }
}

.business-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8fafc, #eef2ff);
  text-align: center;
}

.business-container {
  max-width: 900px;
  margin: auto;
}

.business-header {
  animation: fadeUp 0.8s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}

.section-badge {
  display: inline-block;
  background: #22c55e;
  color: white;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.business-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1e293b;
}

.business-header p {
  font-size: 17px;
  color: #64748b;
  max-width: 650px;
  margin: auto;
  line-height: 1.6;
}

/* Smooth Fade Up Animation */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .business-header h2 {
    font-size: 24px;
  }

  .business-header p {
    font-size: 15px;
  }
}

/* Section */
.courier-section {
  padding: 70px 20px;
  background: #f8fafc;
}

/* Container */
.courier-container {
  max-width: 1100px;
  margin: auto;
}

/* Card */
.courier-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  gap: 40px;
  transition: all 0.3s ease;
}

.courier-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

/* Left */
.card-left {
  flex: 1;
}

.card-badge {
  display: inline-block;
  background: #22c55e;
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 15px;
  font-weight: 600;
}

.card-left h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #1e293b;
}

.card-left p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Buttons */
.card-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background: #22c55e;
  color: white;
  border: none;
}

.btn-primary:hover {
  background: #16a34a;
}

.btn-light {
  background: #f1f5f9;
  border: none;
}

.btn-light:hover {
  background: #e2e8f0;
}

/* QR */
.card-right {
  flex-shrink: 0;
}

.qr-wrapper {
  background: #f8fafc;
  padding: 20px;
  border-radius: 16px;
}

.qr-preview {
  width: 160px;
  height: 160px;
  object-fit: contain;
  display: block;
}

/* Responsive */
@media (max-width: 900px) {
  .courier-card {
    flex-direction: column;
    text-align: center;
  }

  .card-actions {
    justify-content: center;
  }

  .card-right {
    margin-top: 25px;
  }
}


/* Base Card (if not already defined) */
.courier-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  gap: 40px;
  transition: all 0.3s ease;
}

.courier-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

/* Corporate Accent */
.business-card {
  border-left: 6px solid #2563eb;
}

/* Badge */
.card-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 15px;
  font-weight: 600;
  color: white;
}

.card-badge.corporate {
  background: #2563eb;
}

/* Text */
.card-left h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #1e293b;
}

.card-left p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Buttons */
.card-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background: #2563eb;
  color: white;
  border: none;
}

.btn-primary:hover {
  background: #1d4ed8;
}

.btn-light {
  background: #f1f5f9;
  border: none;
}

.btn-light:hover {
  background: #e2e8f0;
}

/* QR Styling */
.qr-wrapper {
  background: #f8fafc;
  padding: 20px;
  border-radius: 16px;
}

.qr-preview {
  width: 160px;
  height: 160px;
  object-fit: contain;
}

/* Responsive */
@media (max-width: 900px) {
  .courier-card {
    flex-direction: column;
    text-align: center;
  }

  .card-actions {
    justify-content: center;
  }

  .card-right {
    margin-top: 25px;
  }
}

/* Base Card */
.courier-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  gap: 40px;
  transition: all 0.3s ease;
}

.courier-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

/* Tips Accent */
.tips-card {
  border-left: 6px solid #f59e0b;
}

/* Badge */
.card-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 15px;
  font-weight: 600;
  color: white;
}

.card-badge.tips {
  background: #f59e0b;
}

/* Heading */
.card-left h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #1e293b;
}

.card-left h3 small {
  font-size: 16px;
  font-weight: 500;
  color: #64748b;
}

/* Text */
.card-left p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Buttons */
.card-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background: #f59e0b;
  color: white;
  border: none;
}

.btn-primary:hover {
  background: #d97706;
}

.btn-light {
  background: #f1f5f9;
  border: none;
}

.btn-light:hover {
  background: #e2e8f0;
}

/* QR */
.qr-wrapper {
  background: #fff7ed;
  padding: 20px;
  border-radius: 16px;
}

.qr-preview {
  width: 160px;
  height: 160px;
  object-fit: contain;
}

/* Responsive */
@media (max-width: 900px) {
  .courier-card {
    flex-direction: column;
    text-align: center;
  }

  .card-actions {
    justify-content: center;
  }

  .card-right {
    margin-top: 25px;
  }
}

/* Base Card */
.courier-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  gap: 40px;
  transition: all 0.3s ease;
}

.courier-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

/* Delivery Date Accent */
.date-card {
  border-left: 6px solid #14b8a6;
}

/* Badge */
.card-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 15px;
  font-weight: 600;
  color: white;
}

.card-badge.date {
  background: #14b8a6;
}

/* Heading */
.card-left h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #1e293b;
}

.card-left h3 small {
  font-size: 16px;
  font-weight: 500;
  color: #64748b;
}

/* Text */
.card-left p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Buttons */
.card-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background: #14b8a6;
  color: white;
  border: none;
}

.btn-primary:hover {
  background: #0f766e;
}

.btn-light {
  background: #f1f5f9;
  border: none;
}

.btn-light:hover {
  background: #e2e8f0;
}

/* QR */
.qr-wrapper {
  background: #f0fdfa;
  padding: 20px;
  border-radius: 16px;
}

.qr-preview {
  width: 160px;
  height: 160px;
  object-fit: contain;
}

/* Responsive */
@media (max-width: 900px) {
  .courier-card {
    flex-direction: column;
    text-align: center;
  }

  .card-actions {
    justify-content: center;
  }

  .card-right {
    margin-top: 25px;
  }
}

/* Overlay */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 9999;
}

/* Active State */
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Modal Box */
.modal-container {
  background: white;
  width: 90%;
  max-width: 620px;
  border-radius: 18px;
  overflow: hidden;
  transform: scale(0.85);
  transition: 0.3s ease;
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}

.modal-overlay.active .modal-container {
  transform: scale(1);
}

/* Header */
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  border-bottom: 1px solid #f1f5f9;
}

.modal-header h3 {
  font-size: 18px;
  color: #1e293b;
  margin: 0;
}

/* Close Button */
.close-btn {
  font-size: 22px;
  background: none;
  border: none;
  cursor: pointer;
  color: #64748b;
  transition: 0.2s ease;
}

.close-btn:hover {
  color: #ef4444;
}

/* Body */
.modal-body {
  padding: 30px;
  text-align: center;
}

.modal-body img {
  width: 100%;
  max-width: 250px;
  border-radius: 12px;
  transition: 0.3s ease;
}

.modal-body img:hover {
  transform: scale(1.05);
}

/* Mobile */
@media (max-width: 480px) {
  .modal-container {
    max-width: 95%;
  }

  .modal-body {
    padding: 20px;
  }
}
