/* =========================================================
   Raha Palace – Premium Contact Page (Gold Edition)
   ========================================================= */

/* ---------- Base Styles ---------- */
body {
  margin: 0;
  font-family: 'Cinzel', serif;
  background-color: #fefcf7;
  color: #000;
  overflow-x: hidden;
}

/* ---------- CONTACT SECTION ---------- */
.contact-section {
  position: relative;
  padding: 120px 20px;
  text-align: center;
  background: linear-gradient(rgba(224, 150, 56, 0.85), rgba(0, 0, 0, 0.7)),
              url('https://res.cloudinary.com/dktiaqhep/image/upload/v1759663542/Raha-Palace-Assets/1759663472052-VMC06582.jpg')
              center / cover no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}

/* Subtle glossy overlay */
.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  z-index: 1;
}

/* ---------- TITLES ---------- */
.contact-section h1 {
  font-size: 3rem;
  color: #fff8e7;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.contact-section .subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

/* ---------- CONTACT FORM (Glassmorphic) ---------- */
.contact-form {
  max-width: 650px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 40px 50px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(224, 150, 56, 0.6);
  position: relative;
  z-index: 2;
  animation: fadeUp 1.2s ease both;
}

/* ---------- FORM FIELDS ---------- */
.contact-form .form-group {
  margin-bottom: 25px;
  text-align: left;
}

.contact-form label {
  display: block;
  color: #e09638;
  margin-bottom: 8px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.contact-form label span {
  color: #ff6666;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  outline: none;
  background-color: rgba(255, 255, 255, 0.95);
  color: #000;
  transition: 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  box-shadow: 0 0 12px #e09638;
  transform: scale(1.02);
}

/* ---------- SUBMIT BUTTON ---------- */
.btn-submit {
  background: linear-gradient(90deg, #e09638, #f3b35a);
  color: #000;
  font-weight: 700;
  border: none;
  border-radius: 30px;
  padding: 14px 36px;
  cursor: pointer;
  font-size: 1.1rem;
  transition: 0.4s ease;
  box-shadow: 0 6px 20px rgba(224, 150, 56, 0.3);
}

.btn-submit:hover {
  background: linear-gradient(90deg, #000, #333);
  color: #f3b35a;
  box-shadow: 0 8px 25px rgba(224, 150, 56, 0.5);
  transform: translateY(-3px);
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  right: 25px;
  background: linear-gradient(135deg, #e09638, #f5b96a);
  color: #000;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  box-shadow: 0 6px 25px rgba(224,150,56,0.45);
  z-index: 999;
  transition: 0.35s ease;
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 0 30px rgba(224,150,56,0.7);
  background: linear-gradient(135deg, #f5b96a, #e09638);
}

.whatsapp-float i {
  line-height: 1;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .contact-section {
    padding: 80px 20px;
    background-attachment: scroll;
  }

  .contact-form {
    padding: 30px 25px;
  }

  .contact-section h1 {
    font-size: 2.3rem;
  }
}
