/* =========================
   CONTACT PAGE (FULL CSS)
   Works with your green theme variables:
   --green, --green-dark, --text
   ========================= */

/* Page */
.contact_page{
  padding: 56px 18px;
  background: #fff;
}

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

/* Header */
.contact_head{
  text-align: center;
  margin-bottom: 26px;
}

.contact_title{
  margin: 0 0 8px;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text);
}

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

/* Layout */
.contact_grid{
  margin-top: 34px;
  display: grid;
  grid-template-columns: minmax(340px, 420px) minmax(520px, 1fr);
  gap: 22px;
  align-items: start;
}

/* Card base */
.contact_card{
  background: #fff;
  border: 1px solid rgba(17,24,39,0.10);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 16px 40px rgba(17,24,39,0.06);
}

.contact_cardTitle{
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 900;
  color: rgba(17,24,39,0.92);
}

/* Contact info list */
.contact_list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.contact_list li{
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
}

.contact_icon{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(17,24,39,0.04);
  border: 1px solid rgba(17,24,39,0.08);
  color: rgba(17,24,39,0.72);
}

.contact_label{
  font-size: 12px;
  font-weight: 900;
  color: rgba(17,24,39,0.55);
  margin-bottom: 2px;
}

.contact_value{
  font-weight: 800;
  color: rgba(17,24,39,0.86);
  text-decoration: none;
}

.contact_value:hover{
  color: var(--green);
}

/* =========================
   BUTTON SYSTEM (consistent)
   ========================= */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px; /* consistent, not pill */
  font-weight: 900;
  text-decoration: none;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
  white-space: nowrap;
}

.btn--primary{
  background: var(--green);
  color: #fff;
  box-shadow: 0 12px 26px rgba(31,58,46,.16);
}

.btn--primary:hover{
  background: var(--green-dark);
  transform: translateY(-1px);
}

.btn--outlineGreen{
  background: rgba(31,58,46,0.05);
  color: var(--green);
  border-color: rgba(31,58,46,0.22);
}

.btn--outlineGreen:hover{
  transform: translateY(-1px);
  border-color: rgba(31,58,46,0.32);
}

.btn--block{
  width: 100%;
}

/* =========================
   WhatsApp card (matching)
   ========================= */
.contact_whatsapp{
  margin-top: 14px;
  background: rgba(31, 58, 46, 0.103);
  border: 1px solid rgba(31, 58, 46, 0.30);
}


.wa_row{
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.wa_badge{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(31,58,46,0.10);
  border: 1px solid rgba(31,58,46,0.18);
  color: var(--green);
  font-size: 18px;
}

.wa_title{
  font-weight: 900;
  color: rgba(17,24,39,0.92);
}

.wa_sub{
  font-weight: 700;
  color: rgba(17,24,39,0.65);
  font-size: 13px;
  margin-top: 2px;
}

.wa_btn{
  width: fit-content;
  min-width: 160px; /* makes it feel consistent with other CTA buttons */
  color: whitesmoke;
}

/* =========================
   Catering CTA card (matching)
   ========================= */
.contact_cta{
  margin-top: 14px;
  background: rgba(17,24,39,0.02);
}

.cta_title{
  font-weight: 900;
  color: rgba(17,24,39,0.92);
  margin: 0 0 6px;
}

.cta_text{
  margin: 0 0 12px;
  color: rgba(17,24,39,0.70);
  font-weight: 650;
  line-height: 1.6;
}

.cta_btn{
  width: fit-content;
  min-width: 160px;
}

/* =========================
   Form styles
   ========================= */
.contact_form{
  display: grid;
  gap: 12px;
}

.contact_form label{
  display: grid;
  gap: 6px;
  font-weight: 800;
  color: rgba(17,24,39,0.80);
  font-size: 13px;
}

.contact_form input,
.contact_form textarea{
  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;
}

.contact_form textarea{
  min-height: 120px;
  resize: vertical;
}

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

/* Submit button spacing */
.contact_submit{
  margin-top: 6px;
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 950px){
  .contact_grid{
    grid-template-columns: 1fr;
  }
  .wa_btn,
  .cta_btn{
    width: 100%;
    min-width: 0;
  }
}
