:root {
  --yellow: #FFD500;
  --yellow-light: #ffea4d;
  --black: #0a0a0a;
  --white: #ffffff;
}

/* Base */
*,
*::before,
*::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

/* Background glow */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,213,0,0.15), transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(255,213,0,0.12), transparent 40%),
    radial-gradient(circle at 60% 70%, rgba(255,213,0,0.1), transparent 40%),
    radial-gradient(circle at 30% 80%, rgba(255,213,0,0.08), transparent 40%);
  z-index: -1;
  animation: drift 30s infinite alternate ease-in-out;
}

@keyframes drift {
  0% { background-position: 0% 0%, 100% 0%, 100% 100%, 0% 100%; }
  100% { background-position: 20% 20%, 80% 10%, 90% 80%, 10% 90%; }
}

/* Site wrapper fade-in */
.site-wrapper {
  animation: fadeIn 1.5s ease;
}

/* Global button baseline */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  padding: 0.6rem 0.8rem;
  font-size: 0.95rem;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  background: var(--yellow);
  color: var(--black);
  text-decoration: none;
  border: none;
  outline: none;
  box-shadow: 0 0 10px rgba(255, 213, 0, 0.35);
  transition: transform 0.25s ease, box-shadow 0.3s ease, background 0.25s ease;
}
.btn:hover {
  background: var(--yellow-light);
  transform: scale(1.05);
  box-shadow: 0 0 18px rgba(255, 213, 0, 0.6);
}
.btn:active {
  transform: scale(0.95);
  box-shadow: 0 0 8px rgba(255, 213, 0, 0.5);
}
.btn:focus {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}

/* Inline disclaimer banner */
.disclaimer-inline {
  background: rgba(255, 213, 0, 0.15);
  border-bottom: 2px solid var(--yellow);
  color: var(--yellow);
  padding: 1rem 1.5rem;
  text-align: center;
}
.disclaimer-inline h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}
.disclaimer-inline p {
  margin: 0 0 0.8rem;
  color: var(--white);
}
.disclaimer-inline .btn {
  background: var(--yellow);
  color: var(--black);
  font-size: 0.9rem;
  padding: 0.4rem 1rem;
  border-radius: 6px;
}

/* Header */
header {
  text-align: center;
  padding: 2.5rem 1rem 2rem;
  border-bottom: 2px solid var(--yellow);
}

header img {
  display: block;
  margin: 0 auto;
  max-width: 320px;
  height: auto;
  animation: fadeInDown 1s ease;
}

header p {
  font-size: 1.1rem;
  margin-top: 0.5rem;
  opacity: 0.9;
  color: var(--yellow);
  animation: fadeInUp 1.2s ease;
}

/* Header buttons */
.header-buttons {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: nowrap;
}

/* Sections */
section {
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: auto;
}

h2 {
  color: var(--yellow);
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 2.2rem;
  position: relative;
}
h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: var(--yellow);
  margin: 0.7rem auto 0;
  border-radius: 2px;
}

/* Contact overlay */
.contact-box {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 3000;
}
.contact-box.active { opacity: 1; pointer-events: auto; }

.contact-content {
  position: relative;
  background: rgba(255,255,255,0.05);
  padding: 2rem;
  border-radius: 14px;
  box-shadow: 0 0 30px rgba(255,213,0,0.4);
  animation: fadeInUp 0.5s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 280px;
  text-align: center;
}

.contact-close {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--yellow);
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, color 0.3s ease;
}
.contact-close:hover { transform: scale(1.2); color: var(--yellow-light); }

.contact-btn {
  background: linear-gradient(135deg, var(--yellow), #ffe766);
  color: var(--black);
  border: none;
  padding: 0.9rem 1.4rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 0 12px rgba(255, 213, 0, 0.5);
  transition: all 0.3s ease;
}
.contact-btn:hover {
  background: linear-gradient(135deg, #ffea4d, #fff6a3);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 0 20px rgba(255, 213, 0, 0.8);
}

/* Booking form */
#booking-form form {
  background: rgba(255, 255, 255, 0.05);
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 0 40px rgba(255, 213, 0, 0.25);
}
#booking-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: var(--yellow);
}
#booking-form input,
#booking-form select,
#booking-form textarea {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  font-size: 1rem;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  transition: border 0.3s ease, background 0.3s ease, transform 0.2s ease;
}
#booking-form input:focus,
#booking-form select:focus,
#booking-form textarea:focus {
  border-color: var(--yellow);
  background: rgba(255,255,255,0.15);
  outline: none;
  transform: scale(1.02);
}
#booking-form input[type="date"] {
  color: var(--black);
  background: var(--white);
}
#booking-form button {
  background: var(--yellow);
  color: var(--black);
  border: none;
  padding: 1.2rem 3rem;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  display: block;
  margin: auto;
}
#booking-form button:hover {
  background: var(--yellow-light);
  transform: scale(1.07);
  box-shadow: 0 0 20px rgba(255, 213, 0, 0.5);
}

.form-row {
  display: flex;
  gap: 1rem;
}
.form-row .form-group { flex: 1; }

.form-hint {
  display: block;
  margin-top: -1rem;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}

/* Form status */
.form-status {
  text-align: center;
  margin-top: 1.5rem;
  font-weight: bold;
  display: none;
  padding: 1rem;
  border-radius: 8px;
}
.form-status.success {
  background: rgba(0, 255, 100, 0.15);
  color: #00ff88;
  display: block;
  animation: fadeIn 0.6s ease;
}
.form-status.error {
  background: rgba(255, 0, 0, 0.15);
  color: #ff5555;
  display: block;
  animation: fadeIn 0.6s ease;
}

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  animation: fadeIn 1.5s ease;
}
.service-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 213, 0, 0.15);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 0 20px rgba(255, 213, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 0 30px rgba(255, 213, 0, 0.35);
}
.service-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 1rem;
  color: var(--yellow);
  text-shadow: 0 0 8px rgba(255, 213, 0, 0.6);
}
.service-card h3 {
  margin: 0.5rem 0;
  color: var(--yellow);
  font-size: 1.3rem;
}
.service-card p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

/* Staggered animation delays */
.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }
.service-card:nth-child(7) { animation-delay: 0.7s; }
.service-card:nth-child(8) { animation-delay: 0.8s; }
.service-card:nth-child(9) { animation-delay: 0.9s; }
.service-card:nth-child(10) { animation-delay: 1s; }
.service-card:nth-child(11) { animation-delay: 1.1s; }
.service-card:nth-child(12) { animation-delay: 1.2s; }
.service-card:nth-child(13) { animation-delay: 1.3s; }

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 3rem;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Arrival glow for smooth scroll */
.arrive-glow {
  box-shadow: 0 0 20px rgba(255, 213, 0, 0.35);
  transition: box-shadow 1.2s ease;
}

/* Responsive tweaks */
@media (max-width: 720px) {
  .header-buttons { flex-wrap: wrap; }
  #booking-form form { padding: 1.5rem; }
  .form-row { flex-direction: column; gap: 0; }
}