/* ============ RESET / BASE ============ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: #4c5a54;
  background: #ffffff;
}

/* ============ CONTACT HERO SECTION ============ */
.contact-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(90deg, #ffffff 0%, #eef2ee 55%, #dde6dd 100%);
}

.contact-hero__bg {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 62%;
  z-index: 1;
}

.contact-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 22%);
  mask-image: linear-gradient(to right, transparent 0%, black 22%);
}

.contact-hero__container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: min(1600px, 94%);
  margin: 0 auto;
  padding: 0 32px;
}

.contact-hero__content {
  max-width: 460px;
  padding: 70px 0;
}

.contact-hero__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 48px;
  line-height: 1.1;
  color: #0d3b2c;
  margin-bottom: 16px;
}

.contact-hero__divider {
  display: block;
  width: 40px;
  height: 3px;
  background: #c99a3c;
  border-radius: 2px;
  margin-bottom: 18px;
}

.contact-hero__text {
  font-size: 15px;
  line-height: 1.75;
  color: #5b6b64;
  max-width: 400px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .contact-hero {
    min-height: 0;
    flex-direction: column;
    align-items: stretch;
    background: #eef2ee;
  }

  .contact-hero__bg {
    position: relative;
    width: 100%;
    height: 220px;
  }

  .contact-hero__bg-img {
    -webkit-mask-image: none;
    mask-image: none;
  }

  .contact-hero__content {
    max-width: 100%;
    padding: 40px 0;
    text-align: center;
  }

  .contact-hero__text {
    max-width: 100%;
    margin: 0 auto;
  }

  .contact-hero__divider {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .contact-hero__title {
    font-size: 36px;
  }

  .contact-hero__content {
    padding: 32px 20px;
  }
}

/* ============ GET IN TOUCH + FORM SECTION ============ */
.contact-info {
  background: #fbfcfb;
  padding: 70px 0 90px;
}

.contact-info__container {
  max-width: min(1600px, 94%);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 0.62fr 1fr;
  gap: 32px;
  align-items: start;
}

/* ---- Left column ---- */
.contact-info__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #0d3b2c;
  margin-bottom: 8px;
}

.contact-info__divider {
  display: block;
  width: 36px;
  height: 3px;
  background: #c99a3c;
  border-radius: 2px;
  margin-bottom: 22px;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #ffffff;
  border: 1px solid #e7ece8;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
  transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.info-card:hover {
  box-shadow: 0 16px 32px -20px rgba(13, 59, 44, 0.28);
  border-color: #c99a3c;
  transform: translateY(-3px);
}

.info-card__icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #0d3b2c;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-card__icon svg {
  width: 19px;
  height: 19px;
}

.info-card__body h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 15.5px;
  color: #0d3b2c;
  margin-bottom: 4px;
}

.info-card__body p {
  font-size: 13.5px;
  line-height: 1.6;
  color: #5b6b64;
}

.info-card__socials {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.info-card__socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #eef2ee;
  color: #0d3b2c;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, color 0.25s ease;
}

.info-card__socials a:hover {
  background: #0d3b2c;
  color: #ffffff;
}

.info-card__socials svg {
  width: 16px;
  height: 16px;
}

/* ---- Right column: form card ---- */
.contact-form-card {
  background: #ffffff;
  border: 1px solid #e7ece8;
  border-radius: 14px;
  padding: 40px;
  box-shadow: 0 20px 50px -30px rgba(13, 59, 44, 0.25);
}

.contact-form-card__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #0d3b2c;
  margin-bottom: 8px;
}

.contact-form-card__divider {
  display: block;
  width: 36px;
  height: 3px;
  background: #c99a3c;
  border-radius: 2px;
  margin-bottom: 26px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  color: #16241d;
  background: #ffffff;
  border: 1px solid #dde3df;
  border-radius: 8px;
  padding: 14px 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9aa6a0;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #c99a3c;
  box-shadow: 0 0 0 3px rgba(201, 154, 60, 0.15);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.btn-send {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0d3b2c;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  border: none;
  border-radius: 8px;
  padding: 14px 26px;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.btn-send:hover {
  background: #12523a;
  transform: translateY(-2px);
}

.btn-send svg {
  width: 16px;
  height: 16px;
}

/* ---- responsive ---- */
@media (max-width: 900px) {
  .contact-info__container {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: 28px 24px;
  }
}

@media (max-width: 560px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-info {
    padding: 50px 0 60px;
  }
}

/* ============ MAP SECTION ============ */
.contact-map {
  background: #fbfcfb;
  padding: 0 0 90px;
}

.contact-map__wrap {
  position: relative;
  max-width: min(1600px, 94%);
  margin: 0 auto;
  padding: 0 32px;
}

.contact-map__frame {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
  border-radius: 15px;
  filter: grayscale(6%);
}

.contact-map__card {
  position: absolute;
  top: 50px;
  left: 56px;
  z-index: 2;
  width: 280px;
  background: #ffffff;
  border-radius: 12px;
  padding: 22px 22px 20px;
  box-shadow: 0 20px 45px -20px rgba(13, 59, 44, 0.35);
}

.contact-map__card-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 15.5px;
  color: #0d3b2c;
  line-height: 1.35;
  margin-bottom: 12px;
}

.contact-map__card-text {
  font-size: 13.5px;
  line-height: 1.65;
  color: #5b6b64;
  margin-bottom: 16px;
}

.contact-map__card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13.5px;
  color: #12523a;
  transition: color 0.2s ease, gap 0.2s ease;
}

.contact-map__card-link:hover {
  color: #0d3b2c;
  gap: 9px;
}

/* ---- responsive ---- */
@media (max-width: 900px) {
  .contact-map {
    padding-bottom: 60px;
  }

  .contact-map__wrap {
    padding: 0 20px;
  }

  .contact-map__card {
    position: static;
    width: 100%;
    margin-bottom: 16px;
  }

  .contact-map__frame {
    height: 300px;
  }
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.35);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  font-size: 15px;   /* ← icon size க்காக இது add pannunga */
}