/* Contact Section — Obura Contractors */

.aw-contact {
  background-color: #ffffff;
  box-sizing: border-box;
  width: 100%;
  overflow-x: hidden;
}

.aw-contact__inner {
  max-width: 1500px;
  margin-inline: auto;
  padding-inline: 1rem;
  box-sizing: border-box;
}

.aw-contact__header {
  margin-bottom: 2.5rem;
  text-align: center;
}

.aw-contact__label {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #3f797a;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: #3f797a;
  margin: 0 0 0.75rem 0;
  display: block;
}

.aw-contact__heading {
  font-family: 'Manrope', sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  color: #004d4a;
  margin: 0;
}

.aw-contact__heading span {
  color: #004d4a;
}

/* Content layout */
.aw-contact__content {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.aw-contact__map {
  flex: 1;
  min-width: 280px;
  min-height: 280px;
}

@media (min-width: 640px) {
  .aw-contact__map { min-height: 380px; }
}

@media (min-width: 900px) {
  .aw-contact__map { min-height: 450px; }
}

.aw-contact__map iframe {
  border-radius: 1rem;
  width: 100%;
  height: 100%;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  display: block;
}

/* Info panel */
.aw-contact__info {
  flex: 0 0 400px;
  max-width: 100%;
  padding: 1.75rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, #4f9294 0%, #3f797a 100%);
  border: 1px solid rgba(63, 121, 122, 0.2);
  box-shadow: 0 4px 24px rgba(0, 77, 74, 0.12);
}

/* Contact items */
.aw-contact__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.aw-contact__item:last-child { margin-bottom: 0; }

.aw-contact__item-icon {
  min-width: 44px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(237, 233, 195, 0.2);
  border: 1.5px solid rgba(237, 233, 195, 0.4);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}

.aw-contact__item:hover .aw-contact__item-icon {
  background: rgba(237, 233, 195, 0.35);
  border-color: rgba(237, 233, 195, 0.6);
  transform: translateY(-2px);
}

.aw-contact__item-icon svg,
.aw-contact__item-icon svg path {
  width: 18px;
  height: 18px;
  fill: #ede9c3;
  color: #ede9c3;
}

.aw-contact__item h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #ede9c3;
  margin: 0 0 4px 0;
}

.aw-contact__item p {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
  margin: 0;
}

.aw-contact__item a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s;
}

.aw-contact__item a:hover {
  color: #ffffff;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: #ffffff;
}

/* Social links */
.aw-contact__social-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}

.aw-contact__social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(237, 233, 195, 0.15);
  border: 1.5px solid rgba(237, 233, 195, 0.3);
  color: #ede9c3;
  -webkit-text-fill-color: #ede9c3;
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}

.aw-contact__social-link svg {
  width: 18px;
  height: 18px;
  fill: #ede9c3;
  stroke: none;
  transition: fill 0.2s;
}

.aw-contact__social-link img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
}

.aw-contact__social-link:hover {
  background: #ede9c3;
  border-color: #ede9c3;
  transform: translateY(-3px);
}

.aw-contact__social-link:hover svg,
.aw-contact__social-link:hover svg path {
  fill: #004d4a;
}

/* Responsive */
@media (min-width: 768px) {
  .aw-contact__heading { font-size: 34px; }
}

@media (min-width: 900px) {
  .aw-contact__content { flex-wrap: nowrap; }
  .aw-contact__info { flex: 0 0 400px; }
}

@media (max-width: 560px) {
  .aw-contact__item { margin-bottom: 1.25rem; }
}
