/* Contact Section — Acreways Living */

.aw-contact {
  background-color: #f8f9fb;
  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: #daa520; background: var(--gold-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin: 0 0 0.75rem 0;
}
.aw-contact__heading {
  font-family: 'Manrope', sans-serif;
  font-size: 28px; font-weight: 700;
  line-height: 1.3; color: #0f2b4c; margin: 0;
}

/* 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.5rem;
  border-radius: 1rem;
  /* background: #ffffff; */
  border: 1px solid rgba(209,213,219,0.5);
  /* box-shadow: 0 4px 16px rgba(0,0,0,0.06); */
}

/* 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(201,147,58,0.1);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: background 0.25s;
}
.aw-contact__item:hover .aw-contact__item-icon {
  background: rgba(201,147,58,0.2);
}
.aw-contact__item-icon svg {
  width: 18px; height: 18px;
  fill: #daa520;
}
.aw-contact__item h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem; font-weight: 700;
  color: #0f2b4c; margin: 0 0 4px 0;
}
.aw-contact__item p {
  font-family: 'Manrope', sans-serif;
  font-size: 16px; line-height: 1.6;
  color: #374151; margin: 0;
}
.aw-contact__item a {
  color: #374151;
  text-decoration: none;
  transition: color 0.2s;
}
.aw-contact__item a:hover { color: #daa520; background: var(--gold-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* 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(201,147,58,0.1);
  color: #daa520; background: var(--gold-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  text-decoration: none;
  transition: color 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.aw-contact__social-link svg {
  width: 18px; height: 18px;
  fill: currentColor; 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 {
  color: #ffffff;
  background: #daa520;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(201,147,58,0.4);
}
.aw-contact__social-link:hover svg {
  fill: #ffffff;
}
.aw-contact__social-link--img img {
  width: 20px; height: 20px;
  object-fit: contain; display: block;
  border-radius: 3px;
}

/* 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; }
}
