
    body {
      scroll-behavior: smooth;
      font-family: "Segoe UI", sans-serif;
    }

    /* ================= HEADER / NAVBAR ================= */
    header {
      background: linear-gradient(135deg, #020617, #0f172a);
      padding: 14px 0;
      box-shadow: 0 6px 20px rgba(0,0,0,0.35);
    }

    header a {
      text-decoration: none;
    }

    header .logo {
      font-size: 22px;
      font-weight: 700;
      letter-spacing: 1px;
      color: #c9a24d;
      text-transform: uppercase;
    }

    header nav a {
      color: #e5e7eb;
      font-size: 14px;
      font-weight: 500;
      padding: 6px 14px;
      border-radius: 20px;
      transition: 0.3s ease;
    }

    header nav a:hover {
      background: rgba(201,162,77,0.15);
      color: #c9a24d;
    }

    /* ================= HOME SECTION ================= */
    #home {
      padding-top: 110px;
      padding-bottom: 60px;
      background-color: #f8f9fa;
      text-align: center;
    }

    #home video {
      border-radius: 14px;
      box-shadow: 0 15px 30px rgba(0,0,0,0.25);
    }

    #home h1 {
      margin-top: 25px;
      font-weight: 600;
      color: #1f2933;
    }

    #home p {
      color: #4b5563;
      max-width: 700px;
      margin: auto;
    }

    /* ================= BOOKING SECTION ================= */
    #booking {
      padding: 80px 15px;
      background: linear-gradient(135deg, #0f172a, #020617);
    }

    .form-box {
      max-width: 520px;
      width:100%;
      margin: auto;
      padding: 35px;
      border-radius: 14px;
      background: #ffffff;
      box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    }

    .booking-title {
      text-align: center;
      font-size: 26px;
      font-weight: 600;
      margin-bottom: 25px;
      color: #1f2933;
    }

    .form-content {
      display: flex;
      flex-direction: column;
      margin-bottom: 15px;
    }

    .form-content label {
      font-size: 14px;
      font-weight: 500;
      margin-bottom: 6px;
      color: #374151;
    }

    .form-content input,
    .form-content select,
    .form-content textarea {
      padding: 10px 12px;
      border-radius: 8px;
      border: 1px solid #e5e7eb;
      font-size: 14px;
      transition: 0.3s;
    }

    .form-content input:focus,
    .form-content select:focus,
    .form-content textarea:focus {
      outline: none;
      border-color: #c9a24d;
      box-shadow: 0 0 0 2px rgba(201,162,77,0.25);
    }

    #dateError {
      color: #dc2626;
      font-size: 12px;
      margin-top: 4px;
    }

    button[type="submit"] {
      width: 100%;
      margin-top: 10px;
      padding: 12px;
      border-radius: 10px;
      border: none;
      background: linear-gradient(135deg, #c9a24d, #b48a3a);
      color: white;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      transition: 0.3s;
    }

    button[type="submit"]:hover {
      transform: translateY(-1px);
      box-shadow: 0 8px 20px rgba(201,162,77,0.4);
    }

    /* ================= FOOTER ================= */
    footer {
      background: linear-gradient(135deg, #020617, #0f172a);
      color: #9ca3af;
      text-align: center;
      padding: 25px 10px;
      font-size: 13px;
      letter-spacing: 0.5px;
    }

    footer span {
      color: #c9a24d;
      font-weight: 500;
    }
    #home video {
  max-width: 100%;
  height: auto;
}
