/* ================= URGENCY STRIP ================= */
.urgency-strip {
  background: #d4af37;
  color: #111;
  text-align: center;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
}

.urgency-strip a {
  color: #111;
  font-weight: 700;
  text-decoration: underline;
  margin-left: 6px;
}

/* ================= HERO BUTTONS ================= */
.banquet-hero-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.banquet-btn-secondary {
  display: inline-block;
  padding: 14px 35px;
  background: #fff;
  color: #111;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: 0.4s ease;
}

.banquet-btn-secondary:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

/* ================= SECTION HEADERS ================= */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c5a47e;
  margin-bottom: 14px;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  margin: 0 0 14px;
  color: #1a1a1a;
}

.section-header p {
  color: #666;
  font-size: 15px;
}

/* ================= EVENT TYPE CARDS ================= */
.event-types {
  padding: 100px 8%;
  background: #f8f5f0;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: auto;
}

.event-card {
  background: #fff;
  border-radius: 14px;
  padding: 36px 26px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.07);
  border: 1px solid #f0e8d8;
  transition: 0.4s ease;
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  border-color: #c5a47e;
}

.event-icon {
  font-size: 40px;
  margin-bottom: 18px;
  display: block;
}

.event-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  margin: 0 0 12px;
  color: #1a1a1a;
}

.event-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin: 0 0 24px;
}

.event-btn {
  display: inline-block;
  padding: 10px 22px;
  border: 1px solid #c5a47e;
  color: #c5a47e;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: 0.3s ease;
  border-radius: 2px;
}

.event-btn:hover {
  background: #c5a47e;
  color: #fff;
}

/* ================= WHY LIST ================= */
.why-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.why-list li {
  font-size: 15px;
  color: #444;
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.why-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: #c5a47e;
  font-size: 12px;
  top: 3px;
}

/* ================= INQUIRY FORM ================= */
.banquet-form-section {
  padding: 100px 8%;
  background: #111;
  color: #fff;
}

.form-wrapper {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.form-left .section-tag {
  color: #c5a47e;
}

.form-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin: 0 0 20px;
  color: #fff;
}

.form-left p {
  font-size: 15px;
  color: #bbb;
  line-height: 1.8;
  margin: 0 0 30px;
}

.form-contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-contact-details p {
  margin: 0;
  font-size: 15px;
  color: #bbb;
}

.form-contact-details a {
  color: #c5a47e;
  text-decoration: none;
  font-weight: 600;
}

.form-contact-details a:hover {
  color: #fff;
}

/* Form right */
.form-right form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-right input,
.form-right select,
.form-right textarea {
  background: #1a1a1a;
  border: 1px solid #333;
  color: #fff;
  padding: 13px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  border-radius: 6px;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-right input::placeholder,
.form-right textarea::placeholder {
  color: #666;
}

.form-right input:focus,
.form-right select:focus,
.form-right textarea:focus {
  border-color: #c5a47e;
}

.form-right select option {
  background: #1a1a1a;
  color: #fff;
}

.form-right button {
  background: #c5a47e;
  color: #111;
  border: none;
  padding: 15px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 6px;
  letter-spacing: 1px;
  transition: 0.3s ease;
}

.form-right button:hover {
  background: #d4b88f;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(197,164,126,0.4);
}

/* ================= FAQ ================= */
.banquet-faq {
  padding: 100px 8%;
  background: #f8f5f0;
}

.faq-wrapper {
  max-width: 1100px;
  margin: auto;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 20px;
}

.faq-item {
  background: #fff;
  padding: 32px;
  border-radius: 12px;
  border-left: 4px solid #c5a47e;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.faq-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  margin: 0 0 12px;
  color: #1a1a1a;
}

.faq-item p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

/* ================= FLOATING WHATSAPP ================= */
.floating-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: #25D366;
  color: #fff;
  border-radius: 50px;
  padding: 13px 22px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.floating-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(37,211,102,0.5);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .event-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .form-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .event-grid {
    grid-template-columns: 1fr;
  }
  .form-left h2 {
    font-size: 28px;
  }
  .section-header h2 {
    font-size: 28px;
  }
  .banquet-hero-btns {
    flex-direction: column;
    align-items: center;
  }
  .banquet-btn,
  .banquet-btn-secondary {
    width: 80%;
    text-align: center;
  }
  .floating-wa .wa-text {
    display: none;
  }
  .floating-wa {
    padding: 14px 16px;
    font-size: 20px;
  }
}