* {
  margin: 0; padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* ======== HEADER ======== */
.site-header {
  background: #004d7a;
  color: #fff;
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.site-header .container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-header .logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}
.site-header .navbar ul {
  list-style: none;
  display: flex;
  margin: 0; padding: 0;
}
.site-header .navbar ul li {
  margin-left: 20px;
}
.site-header .navbar ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}
.site-header .navbar ul li a:hover {
  text-decoration: underline;
}

/* Background Gradient + Floating Icons */
.bg-animation {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #e0f7fa, #e3f2fd);
  overflow: hidden;
  z-index: -1;
}
.bg-animation .icon {
  position: absolute;
  font-size: 3rem;
  opacity: 0.15;
  animation: float 10s infinite linear alternate;
}
.bg-animation .icon:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.bg-animation .icon:nth-child(2) { bottom: 25%; right: 15%; animation-delay: 2s; }
.bg-animation .icon:nth-child(3) { top: 70%; left: 50%; animation-delay: 4s; }

@keyframes float {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-25px) rotate(360deg); }
}

/* Form Container */
.form-container {
  max-width: 480px;
  margin: 100px auto;
  padding: 40px 30px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(18px);
  border-radius: 22px;
  text-align: center;
  color: #004d7a;
  box-shadow: 0 12px 35px rgba(0,0,0,0.1);
  animation: fadeUp 1s ease forwards;
}
.form-container h1 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #004d7a;
}
.form-container p {
  font-size: 1rem;
  margin-bottom: 25px;
  opacity: 0.8;
}

/* Inputs */
.booking-form .input-group {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  background: #fff;
  border-radius: 12px;
  padding: 12px 14px;
  transition: 0.3s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.booking-form .input-group:hover {
  box-shadow: 0 0 15px rgba(0,150,255,0.4);
  transform: translateY(-3px);
}
.booking-form .icon {
  margin-right: 10px;
  font-size: 1.2rem;
  color: #008cff;
}
.booking-form input,
.booking-form select {
  border: none;
  outline: none;
  flex: 1;
  font-size: 1rem;
  background: transparent;
  color: #333;
}

/* Submit Button */
.btn-submit {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #ff9800, #ff5722);
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.btn-submit:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 22px rgba(255,87,34,0.5);
}
.btn-submit::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: rgba(255,255,255,0.4);
  transform: skewX(-30deg);
  transition: 0.6s;
}
.btn-submit:hover::before {
  left: 100%;
}

/* Success Box */
.success-box {
  display: none;
  max-width: 500px;
  margin: 120px auto;
  padding: 40px 30px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(18px);
  border-radius: 22px;
  text-align: center;
  color: #004d7a;
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
  animation: fadeIn 1s ease forwards;
}
.success-box h2 {
  font-size: 1.6rem;
  margin: 20px 0 10px;
  color: #ff9800;
}
.success-box p {
  font-size: 1.1rem;
  margin-top: 10px;
  opacity: 0.9;
}
.success-animation {
  font-size: 3rem;
  animation: pop 1s ease infinite alternate;
}

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pop {
  from { transform: scale(1); }
  to { transform: scale(1.2) rotate(10deg); }
}

.hero {
  padding-top: 100px; /* ताकि header के नीचे content छुपे नहीं */
}

/* --- Fix for header overlap --- */
.hero, .home-hero, .banner, .main-hero {
  margin-top: 100px; /* Header height के बराबर space */
  position: relative;
  z-index: 1;
}
