/* Order Button Styles */
.order-btn-container {
  display: grid;
  align-items: center;
  justify-content: center;
  margin: 30px 0px;
}

.order-btn {
  background-color: #f97316;
  border: none;
  color: white;
  padding: 8px 36px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0 8px 25px #fb8b24;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.order-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.order-btn:hover::before {
  left: 100%;
}

.order-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px #fb8b24;
}

.order-btn:active {
  transform: translateY(-1px);
}

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Modal Content */
.modal-content {
  background: white;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.7) translateY(50px);
  transition: all 0.3s ease;
  position: relative;
}

.modal-overlay.active .modal-content {
  transform: scale(1) translateY(0);
}

/* Modal Header */
.modal-header {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
  padding: 25px 30px;
  border-radius: 20px 20px 0 0;
  text-align: center;
  position: relative;
}

.modal-header h2 {
  font-size: 24px;
  margin-bottom: 8px;
  font-weight: 700;
}

.modal-header p {
  font-size: 16px;
  opacity: 0.9;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 24px;
  right: 35px;
  z-index: 9999999;
  background: rgba(255, 255, 255, 0.7);
  border: none;
  color: black;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.close-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

/* Modal Body */
.modal-body {
  padding: 30px;
  line-height: 1.6;
  color: #333;
}

.section {
  margin-bottom: 25px;
}

.section-title {
  font-size: 20px;
  font-weight: 700;
  color: #28a745;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.method {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 15px;
  border-left: 4px solid #28a745;
  transition: all 0.3s ease;
}

.method:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.method-title {
  font-size: 18px;
  font-weight: 600;
  color: #28a745;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.method-desc {
  color: #666;
  margin-bottom: 10px;
}

.contact-info {
  background: linear-gradient(45deg, #e3f2fd, #f3e5f5);
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 600;
  color: #1976d2;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.benefit {
  background: linear-gradient(45deg, #e8f5e8, #f0f8f0);
  padding: 15px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #2e7d32;
  font-weight: 500;
}

.website-link {
  text-align: center;
  margin-top: 25px;
  padding: 20px;
  overflow: hidden;
  background: linear-gradient(45deg, #fff3e0, #fce4ec);
  border-radius: 12px;
}

.website-link a {
  color: #28a745;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid #28a745;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.website-link a:hover {
  background: #28a745;
  color: white;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .close-btn {
    top: 5px;
    right: 4px;
    width: 24px;
    height: 24px;
  }

  .modal-content {
    margin: 10px;
    border-radius: 15px;
  }

  .modal-header {
    padding: 20px;
    border-radius: 15px 15px 0 0;
  }

  .modal-header h2 {
    font-size: 20px;
  }

  .modal-body {
    padding: 20px;
  }

  .benefits {
    grid-template-columns: 1fr;
  }

  .order-btn {
    padding: 15px 30px;
    font-size: 16px;
  }
}

/* Animation for emoji icons */
.emoji {
  font-size: 24px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Custom scrollbar for modal */
.modal-content::-webkit-scrollbar {
  width: 8px;
}

.modal-content::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
  background: #28a745;
  border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
  background: #20c997;
}
