/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
}

.min-h-screen {
  min-height: 100vh;
}

.bg-gray-50 {
  background-color: #f9fafb;
}

.bg-white {
  background-color: white;
}

/* Header Styles */
header {
  background-color: white;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.max-w-7xl {
  max-width: 80rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.flex {
  display: flex;
}

.justify-between {
  justify-content: space-between;
}

.items-center {
  align-items: center;
}

.h-16 {
  height: 4rem;
}

.logo-box {
  border: 2px solid black;
  padding: 0.5rem 1rem;
}

.font-bold {
  font-weight: 700;
}

.text-lg {
  font-size: 1.125rem;
}

.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: #374151;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link:hover {
  color: #111827;
}

/* Banner Container */
.banner-container {
  width: 100%;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 120px;
}

/* Main Content */
.main-content {
  max-width: 80rem;
  margin: 0 auto;
  padding: 6rem 1rem 4rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

/* Service Cards */
.service-card {
  border-radius: 0.5rem;
  padding: 1.5rem;
  height: 12rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.yellow-card {
  background-color: #fef3c7;
}

.blue-card {
  background-color: #2563eb;
}

.card-content {
  flex-grow: 1;
}

.card-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1f2937;
}

.white-text {
  color: white;
}

.card-subtitle {
  color: #374151;
}

.orange-text {
  color: #ea580c;
}

.red-text {
  color: #ef4444;
}

.green-text {
  color: #22c55e;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s;
  border: 1px solid;
  width: fit-content;
}

.btn-yellow {
  background-color: #fde047;
  color: #1f2937;
  border-color: #4b5563;
}

.btn-yellow:hover {
  background-color: #facc15;
}

.btn-blue {
  background-color: #1d4ed8;
  color: white;
  border-color: white;
}

.btn-blue:hover {
  background-color: #1e40af;
}

.arrow {
  margin-left: 0.5rem;
}

/* Booking Page Styles */
.booking-container {
  display: flex;
  min-height: calc(100vh - 4rem);
}

.sidebar {
  width: 20rem;
  background-color: #f3f4f6;
  padding: 1.5rem;
}

.booking-steps {
  margin-bottom: 2rem;
}

.step {
  padding: 0.75rem;
  margin-bottom: 1rem;
  color: #6b7280;
}

.active-step {
  background-color: #e5e7eb;
  border-radius: 0.25rem;
  color: #374151;
  font-weight: 500;
}

.app-download {
  background-color: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
}

.app-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.app-main-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.app-description {
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.app-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.app-link {
  font-size: 0.875rem;
}

/* Booking Main Content */
.booking-main {
  flex: 1;
  background-color: #dbeafe;
  padding: 2rem;
}

.booking-content {
  max-width: 64rem;
  margin: 0 auto;
}

.booking-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 2rem;
}

.form-container {
  background-color: white;
  border-radius: 0.5rem;
  padding: 2rem;
}

.form-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 1.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: all 0.2s;
}

.form-input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-help {
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 0.25rem;
}

.form-submit {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.continue-btn {
  background-color: #374151;
  color: white;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
}

.continue-btn:hover {
  background-color: #1f2937;
}

/* Footer */
.booking-footer {
  margin-top: 3rem;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.footer-link {
  color: #6b7280;
  text-decoration: none;
}

.footer-link:hover {
  color: #1f2937;
}

.footer-notice {
  margin-bottom: 0.5rem;
}

.notice-text {
  color: #dc2626;
}

.notice-highlight {
  color: #dc2626;
  font-weight: 700;
}

.copyright {
  color: #6b7280;
  font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

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

  .booking-container {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
  }

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

  .footer-links {
    flex-direction: column;
    gap: 0.5rem;
  }
}
