/* --- Contact Page Specific Styles --- */

/* Section Headings */
.contact-heading {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.contact-description {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

/* Section with bottom margin */
.contact-section-wrap {
  margin-bottom: 5rem;
}

/* Contact Info List Items */
.contact-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background-color: rgba(18, 82, 136, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.contact-info-content h4 {
  color: var(--text-dark);
  margin: 0;
  font-size: 0.95rem;
}

.contact-info-content p {
  margin: 0;
  font-size: 0.9rem;
}

.contact-info-content a {
  color: inherit;
}

.contact-info-content a:hover {
  color: var(--color-yellow);
}

/* Map Placeholder Section */
.map-placeholder {
  width: 100%;
  height: 400px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
  position: relative;
}

.map-inner {
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.map-inner i {
  font-size: 3.5rem;
  color: var(--color-yellow);
  margin-bottom: 1rem;
}

.map-inner h4 {
  color: var(--text-dark);
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
}

.map-inner p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 0.25rem;
  text-align: center;
}

.map-link {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: underline;
  margin-top: 0.5rem;
  display: inline-block;
}

.map-link:hover {
  color: var(--color-yellow);
}

/* Contact Form Select */
.contact-form select.form-control {
  background-color: #ffffff;
  color: var(--text-dark);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 2.5rem;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2364748b' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px 8px;
  line-height: 1.5;
}

.contact-form select.form-control:focus {
  border-color: var(--color-primary);
  background-color: #ffffff;
  box-shadow: 0 0 10px rgba(18, 82, 136, 0.1);
}

.contact-form .btn-accent {
  width: 100%;
}

.contact-form .btn-accent i {
  margin-left: 0.5rem;
}