.reservation-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }
  .form-wrapper {
    background: #f9f9f9;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  .card {
    background: #fff;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  .reservation-form h2,
  .room-info h3 {
    margin-bottom: 1rem;
    color: #333;
  }
  .form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
    gap: 1rem;
  }
  .form-group {
    display: flex;
    flex-direction: column;
  }
  .form-group.full-width {
    grid-column: 1 / -1;
  }
  .form-group label {
    margin-bottom: .3rem;
    font-weight: 600;
  }
  .form-group label span {
    color: #d00;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: .6rem;
    border: 1px solid #ccc;
    border-radius: .25rem;
    font-size: 1rem;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: #6772e5;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
  .price-display {
    margin: 1.5rem 0;
    font-size: 1.2rem;
    text-align: right;
  }
  .price-label {
    margin-right: .5rem;
    font-weight: 600;
  }
  .price-value {
    font-weight: bold;
    color: #6772e5;
  }
  .form-actions {
    text-align: right;
  }
  .btn-primary {
    background: #6772e5;
    color: #fff;
    border: none;
    padding: .8rem 1.6rem;
    font-size: 1rem;
    border-radius: 2rem;
    cursor: pointer;
    transition: background .2s;
  }
  .btn-primary:hover {
    background: #5461c7;
  }
   .form-group input,
  .form-group select,
  .form-group textarea {
    padding: .6rem;
    border: 1px solid #ccc;
    border-radius: 1rem;
    font-size: 1rem;
  }
  .form-group label {
    margin-bottom: .3rem;
    font-weight: 600;
    color: #555;
  }
  .room-info .room-types {
    display: grid;
    gap: 1rem;
  }
  .room-type h4 {
    margin-bottom: .5rem;
    font-size: 1.1rem;
  }
  .room-type ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .room-type ul li {
    margin-bottom: .3rem;
  }

  /* Responsive */
  @media (max-width: 900px) {
    .reservation-container {
      grid-template-columns: 1fr;
    }
    .room-info {
      order: -1;
    }
  }
