
/* ── 1. HERO BANNER  (olive bg, "Partner with Us") ──────────── */
.contact-hero {
  width: 100%;
  background: #8A923E;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  padding: 76px 0;
}

.contact-hero__title {
  font-family: 'Arimo', sans-serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 48px;
  text-align: center;
  color: #FFFFFF;
  margin: 0;
}

/* ── 2. WHY PARTNER SECTION ──────────────────────────────────── */
.contact-why {
  background: #FFFFFF;
  padding: 56px 160px 48px;
  max-width: 1536px;
  margin: 0 auto;
}

.contact-why__heading {
  font-family: 'Arimo', sans-serif;
  font-weight: 700;
  
  line-height: 40px;
  color: #3A3A1A;
  margin: 0 0 12px;
}

.contact-why__intro {
  font-family: 'Arimo', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: #364153;
  margin: 0 0 16px;
}

.contact-why__intro a {
  color: #6B7330;
  text-decoration: none;
}

.contact-why__intro a:hover {
  text-decoration: underline;
}

.contact-why__list {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-why__list li {
  font-family: 'Arimo', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: #364153;
}

.contact-why__list li strong {
  color: #3A3A1A;
}

/* ── 3. MAIN SECTION: FORM + IMAGE ──────────────────────────── */
.contact-main {
  background: linear-gradient(135deg, #f5f7e8 0%, #eef0dc 100%);
  padding: 64px 160px 80px;
  max-width: 1536px;
  margin: 0 auto;
}

.contact-main__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

/* ── GET IN TOUCH (left column card) ────────────────────────── */
.contact-form-col {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 16px;
  padding: 44px 40px 40px;
  box-shadow: 0 8px 40px rgba(106, 115, 48, 0.13), 0 2px 8px rgba(0,0,0,0.06);
  border-top: 4px solid #8A923E;
}

/* ── title + divider ─────────────────────────────────────────── */
.contact-form-col__title {
  font-family: 'Arimo', sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 34px;
  color: #2e3010;
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-form-col__title::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 28px;
  background: #8A923E;
  border-radius: 4px;
  flex-shrink: 0;
}

/* ── address + meta info ─────────────────────────────────────── */
.contact-form-col__address,
.contact-form-col__meta {
  font-family: 'Arimo', sans-serif;
  font-weight: 400;
  font-size: 13.5px;
  line-height: 22px;
  color: #555f3a;
  margin: 0 0 6px;
  padding: 10px 14px;
  background: #f8faee;
  border-radius: 8px;
  border-left: 3px solid #C5CC7A;
}

.contact-form-col__meta {
  margin-bottom: 28px;
}

.contact-form-col__meta a {
  color: #6B7330;
  font-weight: 600;
  text-decoration: none;
}

.contact-form-col__meta a:hover {
  text-decoration: underline;
  color: #3A3A1A;
}

/* ── FORM FIELDS ─────────────────────────────────────────────── */
.contact-form {
  display: flex;
  flex-direction: column;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 0;
}

.contact-form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.contact-form__label {
  font-family: 'Arimo', sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
  color: #6B7330;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.contact-form__label span {
  color: #c0392b;
  margin-left: 1px;
}

.contact-form__input,
.contact-form__textarea {
  font-family: 'Arimo', sans-serif;
  font-size: 14px;
  line-height: 22px;
  color: #2e3010;
  background: #f8faee;
  border: 1.5px solid #d6dba0;
  border-radius: 8px;
  outline: none;
  padding: 10px 14px;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.contact-form__input:hover,
.contact-form__textarea:hover {
  border-color: #aab550;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  border-color: #8A923E;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(138, 146, 62, 0.15);
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
  color: #b5bc80;
  font-size: 13px;
}

.contact-form__textarea {
  resize: vertical;
  min-height: 110px;
}

/* ── SEND BUTTON ─────────────────────────────────────────────── */
.contact-form__btn {
  font-family: 'Arimo', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #ffffff;
  background: linear-gradient(135deg, #8A923E 0%, #6B7330 100%);
  border: none;
  border-radius: 8px;
  padding: 13px 40px;
  cursor: pointer;
  align-self: flex-start;
  margin-top: 8px;
  transition: background 0.25s, box-shadow 0.25s, transform 0.15s;
  box-shadow: 0 4px 14px rgba(107, 115, 48, 0.35);
}

.contact-form__btn:hover {
  background: linear-gradient(135deg, #6B7330 0%, #4e5522 100%);
  box-shadow: 0 6px 20px rgba(107, 115, 48, 0.45);
  transform: translateY(-2px);
}

.contact-form__btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(107, 115, 48, 0.3);
}

/* ── SUCCESS BANNER ──────────────────────────────────────────── */
.contact-form__success {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #eef3c7;
  border: 1px solid #c5cc7a;
  border-left: 4px solid #8A923E;
  border-radius: 8px;
  padding: 13px 18px;
  font-family: 'Arimo', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #3A3A1A;
  margin-bottom: 22px;
}

/* ── IMAGE COLUMN ────────────────────────────────────────────── */
.contact-image-col {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(106,115,48,0.13), 0 2px 8px rgba(0,0,0,0.06);
  height: 100%;
  min-height: 420px;
  position: relative;
}

.contact-image-col::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  border: 2px solid rgba(197, 204, 122, 0.4);
  pointer-events: none;
}

.contact-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.contact-image-col:hover img {
  transform: scale(1.03);
}

/* ── 4. MAP SECTION ──────────────────────────────────────────── */
.contact-map {
  width: 100%;
  height: 360px;
  border: none;
  display: block;
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .contact-why  { padding: 48px 64px 40px; }
  .contact-main { padding: 56px 64px 64px; }
}

@media (max-width: 900px) {
  .contact-hero__title       { font-size: 36px; }
  .contact-why               { padding: 40px 24px 32px; }
  .contact-main              { padding: 48px 24px 56px; }
  .contact-main__grid        { grid-template-columns: 1fr; gap: 36px; }
  .contact-image-col         { min-height: 280px; height: 280px; }
  .contact-form-col          { padding: 32px 28px 28px; }
}

@media (max-width: 576px) {
  .contact-hero              { min-height: 140px; padding: 52px 16px; }
  .contact-hero__title       { font-size: 28px; }
  .contact-form__row         { grid-template-columns: 1fr; gap: 0; }
  .contact-form-col__title   { font-size: 22px; }
  .contact-form-col          { padding: 24px 18px 22px; }
  .contact-form__btn         { width: 100%; text-align: center; align-self: stretch; }
}
