/* Utility classes */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }

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

  /* Section styling */
  #booking {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #ffffff, #e6fffa);
  }

  .section-header {
    margin-bottom: 4rem;
  }

  .section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.7s, transform 0.7s;
  }

  .section-description {
    font-size: 1.125rem;
    color: #4b5563;
    max-width: 48rem;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.7s, transform 0.7s;
    transition-delay: 0.1s;
  }

  /* Card styling */
  .booking-card {
    background-color: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    margin: 0 auto;
    max-width: 64rem;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.7s, transform 0.7s;
    transition-delay: 0.2s;
  }

  .card-container {
    display: flex;
    flex-direction: column;
  }

  @media (min-width: 768px) {
    .card-container {
      flex-direction: row;
    }
  }

  /* Sidebar styling */
  .booking-sidebar {
    background-color: #0d9488;
    color: white;
    padding: 2rem;
  }

  @media (min-width: 768px) {
    .booking-sidebar {
      width: 50%;
      padding: 3rem;
    }
  }

  .sidebar-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
  }

  .info-section {
    margin-bottom: 1.5rem;
  }

  .info-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }

  .info-text {
    color: #99f6e4;
    margin-bottom: 0.5rem;
  }

  .info-list {
    list-style-position: inside;
    list-style-type: disc;
    color: #99f6e4;
  }

  .info-list li {
    margin-bottom: 0.25rem;
  }

  .contact-info {
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
  }

  /* Form styling */
  .booking-form {
    padding: 2rem;
  }

  @media (min-width: 768px) {
    .booking-form {
      width: 50%;
      padding: 3rem;
    }
  }

  .form-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  @media (min-width: 768px) {
    .form-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  .form-group {
    margin-bottom: 1rem;
  }

  .form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #4b5563;
    margin-bottom: 0.25rem;
  }

  .form-control {
    display: block;
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    font-size: 1rem;
  }

  .form-control:focus {
    outline: none;
    border-color: #0d9488;
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.2);
  }

  .form-control-icon {
    position: relative;
  }

  .form-control-icon input,
  .form-control-icon select {
    padding-left: 2.5rem;
  }

  .form-control-icon .icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    pointer-events: none;
  }

  .form-control-icon svg {
    width: 1.25rem;
    height: 1.25rem;
  }

  textarea.form-control {
    resize: vertical;
    min-height: 8rem;
  }

  .btn {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: #0d9488;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background-color 0.3s;
  }

  .btn:hover {
    background-color: #0f766e;
  }

  .btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.5);
  }

  .form-hint {
    text-align: center;
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.5rem;
  }

  /* Success message styling */
  .success-message {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
  }

  .success-icon {
    background-color: #d1fae5;
    color: #059669;
    border-radius: 9999px;
    padding: 1rem;
    margin-bottom: 1.5rem;
  }

  .success-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
  }

  .success-text {
    color: #4b5563;
    margin-bottom: 1.5rem;
  }

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

  /* Animations for in-view */
  .in-view.section-title,
  .in-view.section-description {
    opacity: 1;
    transform: translateY(0);
  }

  .in-view.booking-card {
    opacity: 1;
    transform: scale(1);
  }

  /* Icon styles */
  .lucide {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
  }
