/* ===========================
   PAGE BACKGROUND
=========================== */
.book-wrapper {
  width: 100%;
  min-height: 100vh;
  padding: 120px 20px 60px;
  background: url("../asset/style2.png") center top / cover no-repeat fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

@media(max-width:768px){
  .book-wrapper {
    background: url("../asset/style1.png") center top / cover no-repeat fixed;
    padding-top: 100px;
  }
}

/* ===========================
   HEADING
=========================== */
.book-title {
  font-family: "Allura", cursive !important;
  font-size: 3rem;
  font-weight: 600;
  text-align: center;
  color: #00352b;
  letter-spacing: 1px;
  margin: 0;
  padding: 0;
}

/* RIBBON TITLE WRAPPER */
.ribbon-title {
  width: fit-content;
  margin: 0 auto;
  padding: 14px 35px;
  border-radius: 999px;
  background: rgba(0,0,0,0.28);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

@media(max-width:768px){
  .ribbon-title {
    width: 90%;
    max-width: 90%;
    border-radius: 22px;
    padding: 12px 20px;
  }
}

/* ===========================
   FORM CONTAINER
=========================== */
.book-form {
  width: 90%;
  max-width: 600px;
  padding: 35px 30px;
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.20);
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-family: "Poppins", sans-serif;
}

/* LABELS */
.book-form label {
  font-size: 1rem;
  color: #003B52;
  font-weight: 600;
  margin-bottom: 3px;
}

/* INPUTS */
.book-form input,
.book-form select,
.book-form textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.50);
  font-size: 1rem;
  color: #003B52;
  outline: none;
  font-family: "Poppins", sans-serif;
}

.book-form input:focus,
.book-form select:focus,
.book-form textarea:focus {
  border-color: #003B52;
  background: rgba(255,255,255,0.75);
}

/* TEXTAREA */
.book-form textarea {
  height: 100px;
  resize: none;
}

/* SUBMIT BUTTON */
.submit-btn {
  margin-top: 15px;
  padding: 14px 20px;
  border-radius: 50px;
  background: linear-gradient(90deg,#003B52,#0087a3);
  color: #fff;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.25);
}

/* FLOATING EMOJI SUPPORT */
.float-emoji {
  position: fixed;
  font-size: 2.5rem;
  opacity: 0.9;
  animation: floatEmoji 6s infinite ease-in-out;
  pointer-events: none;
  z-index: 9999;
}

.float-emoji:nth-child(1) { left: 10%; animation-duration: 7s; }
.float-emoji:nth-child(2) { left: 40%; animation-duration: 6s; }
.float-emoji:nth-child(3) { left: 70%; animation-duration: 8s; }
.float-emoji:nth-child(4) { left: 85%; animation-duration: 9s; }

@keyframes floatEmoji {
  0%   { transform: translateY(100vh) rotate(0deg); }
  100% { transform: translateY(-100vh) rotate(360deg); }
}
.quick-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.quick-call,
.quick-whatsapp {
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
}

.quick-call {
  background: #2962ff;
}

.quick-call:hover {
  background: #0039cb;
  transform: translateY(-3px);
}

.quick-whatsapp {
  background: #00c853;
}

.quick-whatsapp:hover {
  background: #009624;
  transform: translateY(-3px);
}
