/*--------------------------------------------------------------
  Contact Section (Skill Manthra) - custom addition
  Reuses theme variables (--sm-navy / --sm-gold); does not touch style.css
--------------------------------------------------------------*/

.sm-contact-info {
  position: relative;
  display: block;
  padding: 110px 0 60px;
  overflow: hidden;
  z-index: 1;
}

.sm-contact-info__intro {
  max-width: 640px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 27px;
  color: var(--glorify-gray);
}

.sm-contact-card {
  position: relative;
  display: block;
  text-align: center;
  background-color: var(--glorify-white);
  border: 1px solid rgba(13, 46, 98, .08);
  border-radius: 16px;
  padding: 45px 30px 40px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(13, 46, 98, .06);
  transition: all 0.35s ease;
}

.sm-contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(13, 46, 98, .14);
}

.sm-contact-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(237, 176, 34, .12);
  color: var(--sm-navy);
  font-size: 32px;
  margin-bottom: 24px;
  transition: all 0.35s ease;
}

.sm-contact-card:hover .sm-contact-card__icon {
  background-color: var(--sm-gold);
}

.sm-contact-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--sm-navy);
  margin-bottom: 10px;
}

.sm-contact-card__text {
  font-size: 15px;
  line-height: 26px;
  color: var(--glorify-gray);
  margin: 0;
}

.sm-contact-card__text a {
  color: var(--glorify-gray);
  transition: color 0.3s ease;
}

.sm-contact-card__text a:hover {
  color: var(--sm-gold);
}

.sm-contact-card__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}

.sm-contact-card__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(13, 46, 98, .06);
  color: var(--sm-navy);
  font-size: 14px;
  transition: all 0.3s ease;
}

.sm-contact-card__social a:hover {
  background-color: var(--sm-navy);
  color: var(--sm-gold);
}

/* Map */
.sm-contact-map {
  position: relative;
  display: block;
  padding: 20px 0 110px;
}

.sm-contact-map__frame {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(13, 46, 98, .12);
  line-height: 0;
}

.sm-contact-map__frame iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

/* CTA strip */
.sm-contact-cta {
  position: relative;
  display: block;
  padding: 60px 0;
  background-color: var(--sm-navy);
  overflow: hidden;
  z-index: 1;
}

.sm-contact-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.sm-contact-cta__text h3 {
  color: var(--glorify-white);
  font-size: 28px;
  margin-bottom: 8px;
}

.sm-contact-cta__text p {
  color: rgba(255, 255, 255, .75);
  margin: 0;
  font-size: 16px;
}

.sm-contact-cta__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.sm-contact-cta__buttons .thm-btn {
  background-color: var(--sm-gold);
  color: var(--sm-navy);
}

.sm-contact-cta__buttons .thm-btn--outline {
  background-color: transparent;
  border: 1.5px solid rgba(255, 255, 255, .4);
  color: var(--glorify-white);
}

@media (max-width: 767px) {
  .sm-contact-cta__inner {
    text-align: center;
    justify-content: center;
  }

  .sm-contact-cta__buttons {
    justify-content: center;
  }

  .sm-contact-map__frame iframe {
    height: 300px;
  }
}
