/* ══════════════════════════════════════════════════════════════
   FAQ + ENQUIRY FORM SECTION  —  Umbrella Trip
   Note: Design system baseline is html { font-size: 62.5% },
   which means 1rem = 10px on standard desktop.
   ══════════════════════════════════════════════════════════════ */

/* ── Section wrapper ── */
.faq-form-section {
  position: relative;
  padding: 7rem 0 8rem;
  background-color: #f8fafc;
  background-image: radial-gradient(rgba(15, 26, 61, 0.08) 1.2px, transparent 1.2px);
  background-size: 18px 18px;
}

/* ── Section header ── */
.faq-form-header {
  margin-bottom: 3.5rem;
  text-align: left;
}

.faq-form-header .section-eyebrow {
  display: block;
  font-size: clamp(1.0rem, 1.1vw, 1.15rem);
  font-weight: 700;
  color: #2e9e3e;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.faq-form-header .section-title-main {
  display: block;
  font-size: var(--fluid-section-title);
  font-weight: 600;
  color: #0f1a3d;
  line-height: var(--line-height-tight, 1.2);
  margin-bottom: 0.8rem;
  border-left: 3.5px solid #2e9e3e;
  padding-left: 1.2rem;
  border-radius: 2px;
}

.faq-form-header .section-subtitle-main {
  font-size: clamp(1.35rem, 1.4vw, 1.5rem);
  color: #64748b;
  max-width: 640px;
  margin: 0.8rem 0 0 0;
  line-height: 1.55;
}

/* ── FAQ Accordion ── */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #e8edf5;
  border-radius: 1.4rem;
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-item.active {
  border-color: rgba(46, 158, 62, 0.4);
  box-shadow: 0 6px 24px rgba(46, 158, 62, 0.1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  padding: 1.8rem 2.2rem;
  text-align: left;
  cursor: pointer;
  gap: 1.4rem;
  transition: background 0.2s ease;
}

.faq-question:hover {
  background: #fafbff;
}

.faq-question span {
  font-size: 1.6rem;
  font-weight: 500;
  color: #0f1a3d;
  line-height: 1.45;
}

.faq-item.active .faq-question span {
  color: #2e9e3e;
}

.faq-icon {
  font-size: 1.4rem; /* 14px */
  color: #94a3b8;
  flex-shrink: 0;
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: #2e9e3e;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 2.2rem 2rem;
  font-size: 1.55rem; /* 15.5px */
  color: #52647c;
  line-height: 1.75;
  margin: 0;
}

/* ── Enquiry Form Card ── */
.enquiry-form-card {
  background: #ffffff;
  border-radius: 2rem;
  border: 1px solid #e8edf5;
  box-shadow: 0 12px 48px rgba(15, 26, 61, 0.09);
  overflow: hidden;
}

.enquiry-form-head {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.4rem 2.2rem;
  background: linear-gradient(135deg, #0f1a3d 0%, #1e2f5c 100%);
}

.enquiry-form-icon {
  width: 40px;
  height: 40px;
  border-radius: 0.9rem;
  background: linear-gradient(135deg, #2e9e3e, #237030);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(46, 158, 62, 0.35);
}

.enquiry-form-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.25;
}

.enquiry-form-sub {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.80);
  margin: 0;
  line-height: 1.3;
}

.enquiry-form {
  padding: 2.2rem 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

/* ── Form row (2 columns) ── */
.ef-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
}

/* ── Form group ── */
.ef-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

/* ── Labels ── */
.ef-label {
  font-size: 1.4rem;
  font-weight: 500;
  color: #2c384e;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ef-label-icon {
  color: #2e9e3e;
  font-size: 1.3rem;
}

/* ── Inputs ── */
.ef-input {
  width: 100%;
  padding: 1.2rem 1.6rem;
  border: 1.5px solid #dbe2ef;
  border-radius: 1rem;
  font-size: 1.5rem; /* 15px */
  color: #1e293b;
  background: #f8fafc;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  font-family: inherit;
}

.ef-input:focus {
  border-color: #2e9e3e;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(46, 158, 62, 0.12);
}

.ef-input::placeholder {
  color: #94a3b8;
  font-size: 1.45rem; /* 14.5px */
}

/* Select */
.ef-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath fill='%2364748b' d='M1 1l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.4rem center;
  padding-right: 3.5rem;
}

/* Textarea */
.ef-textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

/* ── Service dynamic blocks ── */
.ef-service-block {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  background: #f8fafc;
  border: 1.5px dashed #cbd5e1;
  border-radius: 1.2rem;
  padding: 1.6rem;
  gap: 1.6rem;
  flex-direction: column;
}

.ef-service-block .ef-row {
  margin: 0;
}

/* ── Math CAPTCHA ── */
.ef-captcha-row {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.ef-captcha-box {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: #f1f5f9;
  border: 1.5px solid #e2e8f0;
  border-radius: 1rem;
  padding: 1rem 1.6rem;
  flex-wrap: wrap;
}

.ef-captcha-label {
  font-size: 1.45rem; /* 14.5px */
  font-weight: 700;
  color: #64748b;
  flex-shrink: 0;
}

.ef-captcha-question {
  font-size: 1.8rem; /* 18px */
  font-weight: 900;
  color: #0f1a3d;
  letter-spacing: 1px;
  font-family: 'Courier New', monospace;
  flex-shrink: 0;
}

.ef-captcha-equals {
  font-size: 1.8rem; /* 18px */
  font-weight: 900;
  color: #2e9e3e;
  flex-shrink: 0;
}

.ef-captcha-input {
  width: 90px !important;
  text-align: center;
  font-size: 1.6rem; /* 16px */
  font-weight: 700;
  padding: 0.6rem 0.8rem;
}

.ef-captcha-hint {
  font-size: 1.3rem; /* 13px */
  color: #94a3b8;
  margin: 0;
}

/* ── Submit Button ── */
.ef-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1.4rem;
  background: linear-gradient(135deg, #0184ef 0%, #0091f8 100%) !important;
  color: #ffffff !important;
  font-size: 1.7rem; /* 17px */
  font-weight: 700;
  border: none;
  border-radius: 1.2rem;
  cursor: pointer;
  letter-spacing: 0.3px;
  box-shadow: 0 8px 28px rgba(1, 132, 239, 0.35);
  transition: all 0.3s ease;
  margin-top: 0.4rem;
}

.ef-submit-btn:hover {
  background: linear-gradient(135deg, #0184ef 0%, #0091f8 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(1, 132, 239, 0.45);
}

/* ── Responsive ── */
@media (max-width: 767.98px) {
  .ef-row {
    grid-template-columns: 1fr;
  }
  .enquiry-form {
    padding: 2rem 1.8rem;
  }
  .enquiry-form-head {
    padding: 1.8rem 2rem;
  }
  .faq-form-section {
    padding: 5rem 0 6rem;
  }
}
