/* --------------------------------------------------
   CONTACT PAGE — EXACT UI REPLICA
   Clean, modern, responsive, pixel-accurate
-------------------------------------------------- */

/* GLOBAL RESET FOR THIS PAGE */
main{
    margin-top: 150px;
}
.contact-wrapper {
  color: #1a1a1a;
}

/* Soft outer padding */
.contact-wrapper section {
  margin: 60px auto;
  max-width: 1440px;
}

/* ----------------------------------------------
   CONTACT HERO (We’d Love To Hear From You)
---------------------------------------------- */
.contact-hero {
  background: #ffffff;
  border-radius: 24px;
  padding: 50px;
  /*box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.05); */
  border: 8px solid #F6F6F6;
   position: relative;
}

.contact-hero-inner {
  display: flex;
  align-items: center;
  gap: 50px;
 
}
.cma{
    position: absolute;
    width: 180px;
    right: 20px;
    bottom: -40px;
}

.ch-title-box h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
  padding: 0;
  display: inline-block;
}

.ch-title-box h2 span {
  display: block;
  background: #109b4a;    /* your green */
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 4px;
  width: fit-content;
  margin-bottom: 4px;
}


.ch-right p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.contact-socials {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.social-icon-box {
  width: 36px;
  height: 36px;
  background: #109b4a;
  border-radius: 6px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

.contact-hero-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.ch-left,
.ch-right {
  width: 50%;
}

@media (max-width: 992px) {
  .contact-hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .ch-left,
  .ch-right {
    width: 100%;
  }
}

/* ----------------------------------------------
   CONTACT INFO ROW
---------------------------------------------- */
.contact-info-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.info-card {
  background: #ffffff;
  padding: 20px 20px 0px 20px;
  border-radius: 16px;
  /*box-shadow: 0px 4px 14px rgba(0,0,0,0.06);*/
  position: relative;
   border: 8px solid #F6F6F6;
}

.info-label {
  font-size: 13px;
  color: #777;
  display: block;
}

.info-value {
  margin-top: 6px;
  font-weight: 600;
}

.info-arrow {
  position: absolute;
  right: 18px;
  top: 28px;
  font-size: 18px;
  color: #FFF;
  background: #109b4a;
  font-weight: bold;
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  padding:4px 6px;
  text-align: center;
}

/* ----------------------------------------------
   MAIN CONTACT BLOCK
---------------------------------------------- */
.contact-main-block {
  background: #ffffff;
  padding: 40px;
  border-radius: 22px;
  /*box-shadow: 0px 4px 16px rgba(0,0,0,0.08);*/
  display: flex;
  gap: 40px;
  border: 8px solid #F6F6F6;
}

/* LEFT SIDE IMAGE + MINI CARD */
.cmb-left {
  flex: 1;
}

.cmb-img {
  width: 100%;
  border-radius: 16px;
  height: auto;
}

.cmb-mini-card {
  margin-top: 15px;
  background: #ffffff;
  padding: 18px 18px 0px;
  border-radius: 16px;
  position: relative;
  border: 1px solid #E7E7E7;
}

.mini-label {
  display: block;
  font-size: 12px;
  color: #888;
}

.mini-email {
  margin-top: 4px;
  font-weight: 600;
}

.mini-arrow {
  position: absolute;
  right: 18px;
  top: 22px;
  font-size: 18px;
  color: #109b4a;
}

/* RIGHT SIDE FORM */
.cmb-right {
  flex: 2;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 13px;
  margin-bottom: 4px;
  color: #555;
}

.form-group input,
.form-group textarea {
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #e5e5e5;
  font-size: 14px;
}

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

.full {
  width: 100%;
}

/* Terms */
.form-terms {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #444;
}

/* SEND BUTTON */
.send-btn {
  background: #109b4a;
  color: white;
  padding: 14px 26px;
  border: none;
  border-radius: 30px;
  font-size: 15px;
  cursor: pointer;
  align-self: flex-start;
}

.send-btn:hover {
  opacity: .9;
}

/* ----------------------------------------------
   RESOURCES SECTION
---------------------------------------------- */
.contact-resources {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.cr-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 18px;
  /*box-shadow: 0px 4px 16px rgba(0,0,0,0.07);*/
  border: 8px solid #F6F6F6;
}

.cr-card h3 {
  margin-bottom: 6px;
}

.cr-btn {
  display: inline-block;
  margin-top: 14px;
  padding: 10px 16px;
  border-radius: 30px;
  background: #181818;
  color: white;
  font-size: 14px;
  text-decoration: none;
}
.cr-btn span{
    display: inline-block;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    padding: 5px;
    text-align: center;
    background: #323232;
}

/* ----------------------------------------------
   FINAL CTA GREEN SECTION
---------------------------------------------- */
.contact-final-cta {
  margin-top: 80px;
  background: #109b4a;
  padding: 60px 20px;
  border-radius: 22px;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-inner h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.final-inner p {
  font-size: 15px;
  max-width: 650px;
  margin: auto;
  line-height: 1.6;
}

.form-row {
  display: flex;
  flex-wrap: wrap; /* allows stacking on small screens */
  gap: 10px;       /* optional spacing */
  align-items: center;
}

.form-terms {
  flex: 1 1 50%;   /* grow/shrink, default 50% */
  display: flex;
  align-items: center;
}

.form-terms input {
  margin-right: 8px;
}

.send-btn {
  flex: 1 1 50%;
  max-width: 200px; /* optional limit */
}

/* Responsive: stack on small screens */
@media (max-width: 600px) {
  .form-terms, .send-btn {
    flex: 1 1 100%;
  }
}


/* ----------------------------------------------
   RESPONSIVE (MOBILE + TABLET)
---------------------------------------------- */

@media (max-width: 992px) {

  .contact-hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .contact-info-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-main-block {
    flex-direction: column;
  }

  .form-row {
    flex-direction: column;
  }
}

@media (max-width: 600px) {

  .contact-info-row {
    grid-template-columns: 1fr;
  }

  .contact-resources {
    grid-template-columns: 1fr;
  }

  .ch-title-box {
    font-size: 26px;
    text-align: center;
  }
}
.contact-final-cta {
  margin-top: 80px;
  background: #109b4a;
  padding: 60px 20px;
  border-radius: 22px;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 1440px;
  margin: auto;
  background-image: url(../images/gbg.svg);
  background-position: top center;
  background-repeat: no-repeat;
}
