/* Booking Completion Page Styles */
.completion-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 7vw 60px 7vw;
  min-height: 70vh;
}

.success-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.success-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2ecc71, #27ae60);
}

.success-icon {
  margin-bottom: 30px;
}

.success-icon i {
  font-size: 4rem;
  color: #2ecc71;
  animation: bounceIn 0.8s ease-out;
}

@keyframes bounceIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.success-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #183046;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.success-message {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 50px;
  line-height: 1.6;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Booking Details Section */
.booking-details {
  background: #f8fafb;
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 40px;
  text-align: left;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.booking-details h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #183046;
  margin-bottom: 25px;
  text-align: center;
}

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

.detail-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.detail-label {
  font-weight: 600;
  color: #666;
  font-size: 0.95rem;
}

.detail-value {
  font-weight: 500;
  color: #183046;
  font-size: 1.1rem;
  padding: 8px 12px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e1e5e9;
}

/* Next Steps Section */
.next-steps {
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

.next-steps h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #183046;
  margin-bottom: 30px;
  text-align: center;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #f8fafb;
  border-radius: 12px;
  border-left: 4px solid #2ecc71;
  transition: transform 0.2s ease;
}

.step-item:hover {
  transform: translateX(5px);
}

.step-number {
  background: #2ecc71;
  color: #fff;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #183046;
  margin-bottom: 8px;
}

.step-content p {
  color: #666;
  line-height: 1.5;
  margin: 0;
}

/* Contact Info Section */
.contact-info {
  background: #183046;
  color: #fff;
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 40px;
  text-align: center;
  animation: fadeInUp 0.8s ease-out 1s both;
}

.contact-info h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.contact-info p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 25px;
  line-height: 1.5;
}

.contact-methods {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 500;
}

.contact-method i {
  font-size: 1.2rem;
  color: #2ecc71;
}

/* Action Buttons */
.action-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 1.2s both;
}

.btn {
  padding: 15px 30px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  border: 2px solid transparent;
}

.btn-primary {
  background: #2ecc71;
  color: #fff;
}

.btn-primary:hover {
  background: #27ae60;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #183046;
  border-color: #183046;
}

.btn-secondary:hover {
  background: #183046;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(24, 48, 70, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .completion-container {
    padding: 20px 5vw 40px 5vw;
  }
  
  .success-card {
    padding: 40px 25px;
  }
  
  .success-title {
    font-size: 2rem;
  }
  
  .success-message {
    font-size: 1.1rem;
  }
  
  .details-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-methods {
    flex-direction: column;
    gap: 15px;
  }
  
  .action-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .success-card {
    padding: 30px 20px;
  }
  
  .success-title {
    font-size: 1.8rem;
  }
  
  .booking-details,
  .contact-info {
    padding: 20px;
  }
  
  .step-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .step-number {
    align-self: center;
  }
} 