/* Contact Page */
.contact-section,
.contact-form-section {
  padding: 80px 0;
}

.contact-section {
  background-color: var(--white);
}

.contact-form-section {
  background-color: var(--light-gray);
}

h2 {
  color: var(--secondary-color);
  margin-bottom: 20px;
  font-size: 1.8rem;
  position: relative;
  padding-bottom: 15px;
}

h2::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
  bottom: 0;
  left: 0;
}

/* Contact Items */
.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  transition: transform 0.2s ease;
}

.contact-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.contact-item:hover {
  transform: translateX(3px);
}

/* Contact Icon */
.contact-icon {
  width: 48px;
  height: 48px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
  box-shadow: 0 3px 6px rgba(15, 53, 86, 0.2);
  transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(15, 53, 86, 0.25);
}

.contact-icon img,
.contact-icon svg {
  width: 24px;
  height: 24px;
  max-width: 24px;
  max-height: 24px;
}

/* Form Elements */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--secondary-color);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--medium-gray);
  border-radius: 6px;
  font-family: inherit;
  font-size: inherit;
  transition: border-color 0.3s, box-shadow 0.3s;
  background-color: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(15, 53, 86, 0.1);
  outline: none;
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

/* Map Styling */
.map-container {
  height: 400px;
  margin-top: 50px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--medium-gray);
}

.map-container:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
  transform: translateY(-1px);
  transition: all 0.3s ease;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Responsive Design */
@media (max-width: 900px) {
  .contact-information-grid-container {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .contact-form,
  .contact-info {
    padding: 25px;
  }
}

.google-maps-panel {
  border: 2px solid gainsboro;
  border-radius: 8px;
}
