/* =========================
   CATERING PAGE (2 SECTIONS)
   ========================= */

/* Page header */
.catering_head{
  padding: 64px 18px 38px;
  background: #fff;
}

.catering_inner{
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.catering_title{
  margin: 0 0 10px;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  color: var(--text, #111827);
}

.catering_sub{
  margin: 0 auto;
  max-width: 680px;
  color: rgba(17,24,39,.72);
  font-weight: 650;
  line-height: 1.7;
  font-size: 1.05rem;
}

.catering_sub strong{
  color: rgba(17,24,39,.9);
  font-weight: 900;
}

/* Steps section */
.catering_steps{
  padding: 46px 18px 66px;
  background: #F7F8F7; /* subtle tint like your other sections */
  box-shadow:
    inset 0 1px 0 rgba(17,24,39,0.04),
    inset 0 -1px 0 rgba(17,24,39,0.04);
}

.steps_grid{
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: start;
}

/* Each step card */
.step_card{
  position: relative;
  background: #fff;
  border: 1px solid rgba(17,24,39,0.10);
  border-radius: 18px;
  padding: 22px 18px 18px;
  box-shadow: 0 16px 40px rgba(17,24,39,0.06);
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease;
}

.step_card:hover{
  transform: translateY(-2px);
  box-shadow: 0 20px 55px rgba(17,24,39,0.10);
}

/* Icon box */
.step_icon{
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;

  background: rgba(31,58,46,0.10);
  border: 1px solid rgba(31,58,46,0.18);
  color: var(--green, #1f3a2e);
  font-size: 22px;
}

/* Number badge (gold circle like screenshot) */
.step_num{
  position: absolute;
  left: 18px;
  top: 18px;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: grid;
  place-items: center;

  background: rgba(201,162,77,0.95);
  color: #1b1b1b;
  font-weight: 900;
  font-size: 13px;
  border: 1px solid rgba(0,0,0,0.08);
}

.step_title{
  margin: 2px 0 6px;
  font-size: 16px;
  font-weight: 900;
  color: rgba(17,24,39,0.92);
  letter-spacing: -0.01em;
}

.step_text{
  margin: 0;
  color: rgba(17,24,39,0.68);
  font-weight: 650;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 950px){
  .steps_grid{
    grid-template-columns: 1fr;
  }

  .step_num{
    left: 16px;
    top: 16px;
  }
}


/* =========================
   REQUEST A QUOTE (FORM)
   ========================= */

.quote_section{
  padding: 62px 18px 72px;
  background: #F7F8F7;
  box-shadow:
    inset 0 1px 0 rgba(17,24,39,0.04),
    inset 0 -1px 0 rgba(17,24,39,0.04);
}

.quote_inner{
  max-width: 1100px;
  margin: 0 auto;
}

.quote_head{
  text-align: center;
  margin-bottom: 18px;
}

.quote_title{
  margin: 0 0 6px;
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text, #111827);
}

.quote_sub{
  margin: 0 auto;
  max-width: 720px;
  color: rgba(17,24,39,.72);
  font-weight: 650;
  line-height: 1.6;
}

.quote_card{
  width: min(820px, 100%);
  margin: 18px auto 0;
  background: #fff;
  border: 1px solid rgba(17,24,39,0.10);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 18px 46px rgba(17,24,39,0.06);
}

/* Grid */
.quote_grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
}

.field{
  display: grid;
  gap: 8px;
}

.field--full{
  grid-column: 1 / -1;
}

.field_label{
  font-size: 13px;
  font-weight: 900;
  color: rgba(17,24,39,0.78);
}

.req{
  color: #b91c1c; /* red */
  font-weight: 900;
}

.field input,
.field select,
.field textarea{
  width: 100%;
  border: 1px solid rgba(17,24,39,0.12);
  border-radius: 12px;
  padding: 12px 12px;
  font-weight: 650;
  font-size: 14px;
  outline: none;
  background: #fff;
  color: rgba(17,24,39,0.90);
}

.field textarea{
  resize: vertical;
  min-height: 140px;
}

.field input::placeholder,
.field textarea::placeholder{
  color: rgba(17,24,39,0.45);
}

.field input:focus,
.field select:focus,
.field textarea:focus{
  border-color: rgba(31,58,46,0.35);
  box-shadow: 0 0 0 4px rgba(31,58,46,0.10);
}

.field_hint{
  font-size: 12.5px;
  color: rgba(17,24,39,0.55);
  font-weight: 650;
}

/* Submit */
.quote_submit{
  margin-top: 14px;
  width: 100%;
  border: none;
  border-radius: 12px;
  padding: 14px 16px;
  background: var(--green, #1f3a2e);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(31,58,46,0.16);
  transition: transform .18s ease, background .18s ease;
}

.quote_submit:hover{
  background: var(--green-dark, #16291f);
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 850px){
  .quote_card{
    padding: 18px;
  }
  .quote_grid{
    grid-template-columns: 1fr;
  }
  .field--full{
    grid-column: auto;
  }
}
