/* Contact Section Styles */
.contact-section {
  background-color: var(--off-white);
}

.contact-container {
  background: var(--white);
  display: flex;
  /* gap: 3rem; Removed gap for seamless card look */
  align-items: stretch;
  box-shadow: var(--shadow-sm);
  border-radius: 12px;
  overflow: hidden; /* Ensure map doesn't overflow rounded corners */
}

.contact-info {
  flex: 1;
  /* background: var(--white); Parent handles bg */
  padding: 2.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(99, 187, 71, 0.1); /* Secondary color tint */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--secondary-color);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-details h4 {
  margin-bottom: 0.5rem;
  color: var(--primary-dark);
}

.contact-details p {
  color: var(--text-light);
  line-height: 1.6;
}

.contact-map {
  flex: 1;
  /* background: var(--white); Parent handles bg */
  /* padding: 15px; Removed padding so map fills half the card */
  min-height: 400px;
  position: relative;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-info {
    padding: 1.5rem;
  }

  .contact-item {
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .contact-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  
  
  .contact-map {
    height: 250px;
    min-height: auto;
  }
}

/* Page Specific Overrides */
.contact-page-section {
    background: transparent;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 1.5rem !important;
    }
}
