/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background: rgba(0,0,0,0.6);
  flex-wrap: wrap;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.logo {
  font-size: 28px;
  font-weight: bold;
  color: #00ffb3;
}

.navbar {
  display: flex;
  list-style: none;
  gap: 25px;
  flex-wrap: wrap;
}

.navbar li a {
  color: #caff00;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.navbar li a:hover {
  color: #00e676;
  transform: scale(1.05);
}

/* Main Container */
.main-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 20px;
  flex: 1;
}

.left-section {
  max-width: 600px;
  width: 100%;
}

/* Content */
.content h1 {
  font-size: 36px;
  margin-bottom: 15px;
  line-height: 1.3;
}

.content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Booking Card */
.booking-card {
  background: rgba(255,255,255,0.95);
  color: #000;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  margin-bottom: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.booking-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.35);
}

.booking-card label {
  display: block;
  font-size: 14px;
  margin-bottom: 5px;
  font-weight: bold;
}

.input-group {
  flex: 1;
}

.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.booking-card select,
.booking-card input {
  padding: 12px;
  width: 100%;
  border-radius: 8px;
  border: 1px solid #ccc;
  transition: border 0.3s, box-shadow 0.3s;
}

.booking-card select:focus,
.booking-card input:focus {
  outline: none;
  border-color: #6a11cb;
  box-shadow: 0 0 10px rgba(106,17,203,0.5);
}

/* Button */
.booking-card button {
  width: 100%;
  padding: 14px;
  background: linear-gradient(90deg, #6a11cb, #2575fc);
  border: none;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 16px;
  transition: all 0.3s ease;
}

.booking-card button:hover {
  background: linear-gradient(90deg, #00e676, #00bfa5);
  color: #000;
  transform: translateY(-3px) scale(1.03);
}

/* Footer */
.footer {
  text-align: center;
  padding: 20px 0;
  background-color: rgba(0,0,0,0.5);
  font-size: 14px;
  color: #fff;
  margin-top: auto;
  border-top: 1px solid #00e676;
  border-radius: 20px 20px 0 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .content h1 {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .main-container {
    padding: 20px;
  }
  .form-row {
    flex-direction: column;
  }
  .content h1 {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .content h1 {
    font-size: 22px;
  }
  .booking-card {
    padding: 20px;
  }
}