/* ===== ROOT VARIABLES ===== */
:root {
  --primary-orange: #e28c3a;
  --dark-orange: #c9772e;
  --main-brown: #77421b;
  --text-gray: #444;
  --white: #fff;
  --transition: 0.4s ease;
  --radius: 10px;
  --section-padding: 60px;
  --ff-primary: "Poppins", sans-serif;
  --our-grey: #9e9e9e;
}

/* Booking Card */
.booking-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(197, 86, 35, 0.3);
  transition: transform 0.3s ease;
}

.booking-card:hover {
  transform: translateY(-5px);
}

/* Form Group */
.form-group {
  position: relative;
  margin-top: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 12px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: transparent;
  outline: none;
  transition: all 0.3s ease;
  color: var(--our-grey);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary-orange);
  box-shadow: 0 5px 20px rgba(197, 86, 35, 0.3);
}

/* Label */
.form-group label {
  position: absolute;
  left: 12px;
  top: 14px;
  background: white;
  padding: 0 4px;
  color: #aaa;
  font-size: 1rem;
  pointer-events: none;
  transition: 0.3s ease all;
}

/* Move Label on Focus / Filled */
.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -8px;
  left: 8px;
  font-size: 0.85rem;
  color: var(--primary-orange);
}

/* Textarea */
textarea {
  resize: none;
}

/* Button */
.btn-orange {
  background: var(--primary-orange);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-orange:hover {
  background: #e65c00;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(197, 86, 35, 0.3);
}