/* Reset & Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #0a0a0a;
  color: #fff;
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ==================== BACKGROUND ANIMATION ==================== */
.bg-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.gradient-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
  animation: float 20s infinite linear;
}

.circle-1 {
  width: 300px;
  height: 300px;
  background: #c96;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.circle-2 {
  width: 400px;
  height: 400px;
  background: #ff9966;
  bottom: 10%;
  right: 10%;
  animation-delay: 5s;
  animation-direction: reverse;
}

.circle-3 {
  width: 250px;
  height: 250px;
  background: #ffcc99;
  top: 50%;
  left: 80%;
  animation-delay: 10s;
}

@keyframes float {
  0%, 100% {
      transform: translate(0, 0) rotate(0deg);
  }
  33% {
      transform: translate(30px, -50px) rotate(120deg);
  }
  66% {
      transform: translate(-20px, 30px) rotate(240deg);
  }
}

/* ==================== BOOKING SECTION STYLE ==================== */
.booking-section {
  padding: 80px 20px;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.booking-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(
      circle,
      rgba(201, 102, 102, 0.1) 0%,
      rgba(255, 153, 102, 0.05) 30%,
      transparent 70%
  );
  z-index: 0;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

.booking-container {
  max-width: 450px;
  width: 100%;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: 
      0 20px 60px rgba(0, 0, 0, 0.6),
      0 0 0 1px rgba(201, 102, 102, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 1;
  animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

/* ==================== FORM STYLES ==================== */
.booking-form {
  margin-top: 20px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  color: #e0e0e0;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}

.form-group input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(10, 10, 10, 0.8);
  border: 2px solid rgba(201, 102, 102, 0.3);
  border-radius: 10px;
  color: #fff;
  font-size: 15px;
  transition: all 0.3s ease;
  outline: none;
}

.form-group input::placeholder {
  color: #888;
}

.form-group input:focus {
  border-color: #c96;
  background: rgba(26, 26, 26, 0.9);
  box-shadow: 0 0 15px rgba(201, 102, 102, 0.2);
}

.form-group input:hover {
  border-color: rgba(255, 153, 102, 0.5);
}

/* ==================== BUTTON STYLES ==================== */
.btn-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #c96 0%, #ff9966 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(201, 102, 102, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.btn-submit::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent
  );
  transition: left 0.5s ease;
}

.btn-submit:hover::before {
  left: 100%;
}

.btn-submit:hover {
  background: linear-gradient(135deg, #ff9966 0%, #ffcc99 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 153, 102, 0.4);
}

.btn-submit:active {
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(201, 102, 102, 0.3);
}

.btn-submit span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}

/* ==================== ALERT STYLES ==================== */
.alert {
  padding: 14px 20px;
  border-radius: 12px;
  margin-bottom: 24px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: slideDown 0.3s ease;
}

.alert.info {
  background: rgba(201, 102, 102, 0.15);
  border: 1px solid rgba(201, 102, 102, 0.3);
  color: #ff9966;
}

.alert.error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #f87171;
}

@keyframes slideDown {
  from {
      opacity: 0;
      transform: translateY(-10px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

/* ==================== LINK STYLES ==================== */
a {
  text-decoration: none;
  color: #ff9966;
  transition: all 0.3s ease;
}

a:hover {
  color: #ffcc99;
  text-decoration: underline;
}

/* ==================== RECAPTCHA ==================== */
.g-recaptcha {
  margin: 20px 0;
  display: flex;
  justify-content: center;
}

/* ==================== RESPONSIVE DESIGN ==================== */

/* Tablet (768px - 1023px) */
@media screen and (max-width: 1023px) {
  .booking-section {
      padding: 60px 20px;
  }
  
  .booking-container {
      padding: 40px 30px;
      max-width: 400px;
  }
}

/* Tablet Portrait & Mobile (max-width: 768px) */
@media screen and (max-width: 768px) {
  .booking-section {
      padding: 50px 15px;
  }
  
  .booking-container {
      padding: 35px 25px;
      border-radius: 15px;
  }
  
  .booking-container h1 {
      font-size: 2em !important;
  }
  
  .form-group input {
      padding: 12px 15px;
      font-size: 14px;
  }
  
  .btn-submit {
      padding: 14px;
      font-size: 16px;
  }
}

/* Mobile (max-width: 480px) */
@media screen and (max-width: 480px) {
  .booking-section {
      padding: 40px 15px;
  }
  
  .booking-container {
      padding: 25px 20px;
      border-radius: 12px;
  }
  
  .booking-container h1 {
      font-size: 1.8em !important;
  }
  
  .booking-container p {
      font-size: 1em !important;
  }
  
  .form-group label {
      font-size: 14px;
  }
  
  .form-group input {
      padding: 12px 15px;
      font-size: 14px;
  }
  
  .btn-submit {
      padding: 14px;
      font-size: 16px;
  }
  
  .alert {
      padding: 12px 16px;
      font-size: 0.85rem;
  }
}

/* Extra Small Mobile (max-width: 360px) */
@media screen and (max-width: 360px) {
  .booking-section {
      padding: 35px 12px;
  }
  
  .booking-container {
      padding: 20px 15px;
  }
  
  .btn-submit {
      font-size: 14px;
      padding: 12px;
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #c96 0%, #ff9966 100%);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #ff9966 0%, #ffcc99 100%);
}