@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700&display=swap");

:root {
  --bg: #070b14;
  --card: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.1);

  --neon-blue: #00e5ff;
  --neon-purple: #8a2eff;
  --neon-pink: #ff2ed1;

  --text: #ffffff;
  --muted: #9aa4b2;

  --success: #00ff9d;
  --danger: #ff4d6d;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(135deg, #050816, #0f172a);

  color: var(--text);

  font-family: "Inter", sans-serif;

  min-height: 100vh;

  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

.glass-card {
  background: var(--card);

  border: 1px solid var(--border);

  backdrop-filter: blur(18px);

  border-radius: 24px;

  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);

  transition: 0.35s ease;
}

.glass-card:hover {
  transform: translateY(-4px);

  box-shadow: 0 0 25px rgba(0, 229, 255, 0.2);
}

.neon-btn {
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));

  border: none;

  color: white;

  padding: 14px 24px;

  border-radius: 14px;

  font-weight: 600;

  cursor: pointer;

  transition: 0.3s ease;

  box-shadow: 0 0 15px rgba(0, 229, 255, 0.35);
}

.neon-btn:hover {
  transform: scale(1.03);

  box-shadow: 0 0 30px rgba(0, 229, 255, 0.55);
}

.page-title {
  font-size: 42px;

  font-weight: 700;

  margin-bottom: 10px;
}

.page-subtitle {
  color: var(--muted);

  margin-bottom: 30px;
}

.booking-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));

  gap: 20px;
}

.booking-card {
  padding: 24px;

  cursor: pointer;

  position: relative;

  overflow: hidden;
}

.booking-card.active {
  border: 1px solid var(--neon-blue);

  box-shadow: 0 0 30px rgba(0, 229, 255, 0.35);
}

.booking-card h3 {
  margin-bottom: 10px;
}

.badge {
  display: inline-block;

  padding: 8px 14px;

  border-radius: 100px;

  font-size: 12px;

  font-weight: 600;
}

.badge.active {
  background: rgba(0, 255, 157, 0.15);

  color: var(--success);
}

.badge.full {
  background: rgba(255, 77, 109, 0.15);

  color: var(--danger);
}

.stepper {
  display: flex;

  justify-content: space-between;

  margin: 40px 0;
}

.step {
  flex: 1;

  text-align: center;

  position: relative;
}

.step::after {
  content: "";

  position: absolute;

  top: 18px;
  right: -50%;

  width: 100%;
  height: 2px;

  background: rgba(255, 255, 255, 0.08);
}

.step:last-child::after {
  display: none;
}

.step-circle {
  width: 38px;
  height: 38px;

  border-radius: 50%;

  margin: auto;

  background: rgba(255, 255, 255, 0.08);

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 10px;
}

.step.active .step-circle {
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
}

.slot-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.slot-btn {
  padding: 14px 20px;

  border-radius: 14px;

  border: 1px solid rgba(255, 255, 255, 0.1);

  background: rgba(255, 255, 255, 0.04);

  color: white;

  cursor: pointer;

  transition: 0.3s;
}

.slot-btn:hover {
  border-color: var(--neon-blue);

  box-shadow: 0 0 20px rgba(0, 229, 255, 0.25);
}

.slot-btn.active {
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
}

.slot-btn.disabled {
  opacity: 0.4;

  cursor: not-allowed;
}

.form-group {
  position: relative;

  margin-bottom: 22px;
}

.form-control {
  width: 100%;

  padding: 18px;

  border-radius: 14px;

  background: rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(255, 255, 255, 0.1);

  color: white;

  outline: none;
}

.form-label {
  position: absolute;

  left: 18px;
  top: 18px;

  color: var(--muted);

  transition: 0.3s;

  pointer-events: none;
}

.form-control:focus + .form-label,
.form-control:not(:placeholder-shown) + .form-label {
  top: -10px;

  left: 14px;

  background: #070b14;

  padding: 0 6px;

  font-size: 12px;

  color: var(--neon-blue);
}

.upload-box {
  border: 2px dashed rgba(255, 255, 255, 0.15);

  border-radius: 20px;

  padding: 40px;

  text-align: center;

  cursor: pointer;

  transition: 0.3s;
}

.upload-box:hover {
  border-color: var(--neon-blue);

  background: rgba(0, 229, 255, 0.05);
}

.preview-image {
  width: 100%;

  max-height: 250px;

  object-fit: cover;

  border-radius: 20px;

  margin-top: 20px;
}

.toast {
  position: fixed;

  top: 20px;
  right: 20px;

  padding: 16px 20px;

  border-radius: 14px;

  z-index: 9999;

  color: white;

  backdrop-filter: blur(20px);

  animation: slideIn 0.4s ease;
}

.toast.success {
  background: rgba(0, 255, 157, 0.15);
}

.toast.error {
  background: rgba(255, 77, 109, 0.15);
}

@media (max-width: 768px) {
  .page-title {
    font-size: 32px;
  }

  .stepper {
    flex-direction: column;
    gap: 20px;
  }

  .step::after {
    display: none;
  }
}

.navbar {
  position: sticky;
  top: 0;

  z-index: 999;

  backdrop-filter: blur(18px);

  background: rgba(7, 11, 20, 0.7);

  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-container {
  display: flex;

  align-items: center;

  justify-content: space-between;
}

.logo {
  font-size: 28px;

  font-weight: 700;

  background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));

  background-clip: text;

  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: var(--muted);

  transition: 0.3s;
}

.nav-links a:hover {
  color: white;
}

.hamburger {
  display: none;

  flex-direction: column;

  gap: 6px;

  cursor: pointer;
}

.hamburger span {
  width: 28px;
  height: 3px;

  background: white;

  border-radius: 10px;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;

    top: 80px;
    left: 0;

    width: 100%;

    background: #0a0f1f;

    flex-direction: column;

    padding: 20px;

    display: none;
  }

  .nav-links.active {
    display: flex;
  }
}
.skeleton-loader {
  width: 100%;
  height: 120px;

  border-radius: 20px;

  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.05) 25%,
    rgba(255, 255, 255, 0.08) 50%,
    rgba(255, 255, 255, 0.05) 75%
  );

  background-size: 200% 100%;

  animation: skeleton 1.4s infinite;
}

@keyframes skeleton {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.footer {
  padding: 60px 0;

  margin-top: 80px;

  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
  text-align: center;
}

.footer-links {
  display: flex;

  justify-content: center;

  gap: 20px;

  margin: 20px 0;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover {
  color: white;
}


select.form-control{

    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;

    background-color:#0f172a;

    color:white;

    cursor:pointer;
}

select.form-control option{

    background:#0f172a;

    color:white;

}