:root {
  --primary: #15a362;
  --dark: #003d2c;
  --dark-2: #012f23;
  --text: #18352d;
  --muted: #6b7d76;
  --border: #e6eee9;
  --bg: #f8fbf9;
  --white: #ffffff;
  --shadow: 0 12px 35px rgba(0, 61, 44, 0.08);
  --radius: 18px;
}

.contact-hero {
  padding: 36px 0 24px;
}

.contact-hero-box {
  min-height: 260px;
  border-radius: var(--radius);
  background:
    linear-gradient(
      135deg,
      rgba(0, 61, 44, 0.96),
      rgba(0, 61, 44, 0.86)
    ),
    radial-gradient(circle at left, rgba(21, 163, 98, .35), transparent 42%);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 55px 65px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.contact-hero-box::after {
  content: "";
  position: absolute;
  left: -80px;
  bottom: -90px;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  border: 45px solid rgba(255, 255, 255, .05);
}

.contact-hero-box h1 {
  font-size: 46px;
  font-weight: 900;
  margin-bottom: 12px;
}

.contact-hero-box p {
  font-size: 19px;
  max-width: 560px;
  color: rgba(255, 255, 255, .86);
  font-weight: 500;
}

.contact-section {
  padding: 18px 0 52px;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: stretch;
}

.contact-info {
  display: grid;
  gap: 18px;
}

.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 10px 28px rgba(0, 61, 44, .04);
  transition: .25s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(21, 163, 98, .35);
  box-shadow: var(--shadow);
}

.contact-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: #eef8f3;
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 25px;
  flex-shrink: 0;
}
.contact-card a{
    font-weight: bolder;
    font-size:15px;
    color: var(--muted);
}
.contact-card h3 {
  font-size: 18px;
  color: var(--dark);
  margin-bottom: 4px;
  font-weight: bolder;
}

.contact-card p {
  font-size: 16px;
  color: var(--muted);
  font-weight: 700;
  direction: ltr;
  text-align: right;
}

.contact-side {
  background:
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(247,251,249,.98)),
    radial-gradient(circle at top right, rgba(21, 163, 98, .16), transparent 38%);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 38px;
  box-shadow: 0 10px 28px rgba(0, 61, 44, .04);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.side-badge {
  width: fit-content;
  background: #eef8f3;
  color: var(--primary);
  border: 1px solid rgba(21, 163, 98, .2);
  padding: 7px 15px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 16px;
}

.contact-side h2 {
  font-size: 31px;
  line-height: 1.4;
  color: var(--dark);
  font-weight: 900;
  margin-bottom: 12px;
}

.contact-side p {
  color: #4b5d56;
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 26px;
  font-weight: bolder;
}

.contact-main-btn {
  width: fit-content;
  min-width: 185px;
  height: 52px;
  border-radius: 10px;
  background: var(--dark);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  font-size: 15px;
  font-weight: 900;
  transition: .25s ease;
}

.contact-main-btn:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .contact-wrapper .contact-info{
    padding: 0 20px;
  }
  .contact-hero .contact-hero-box {
    padding: 40px 65px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 0;
  }

  .contact-hero .contact-hero-box h1 {
    font-size: 30px;
    font-weight: bolder;
  }

    .contact-hero .contact-hero-box p {
     font-size: 14px;
        font-weight: bolder;
    }
  }


@media (max-width: 600px) {
  .contact-card {
    align-items: flex-start;
    padding: 22px 20px;
  }

  .contact-icon {
    width: 54px;
    height: 54px;
    font-size: 21px;
  }

  .contact-side {
    padding: 28px 22px;
    margin: 0 20px;
  }
.contact-side p{
  font-size: 14px;
  font-weight: bolder;
}
  .contact-side h2 {
    font-size: 25px;
  }
}


