/* ========================================
   Gunderson Law Firm - Contact Page Styles
   ======================================== */

/* Map background section with white overlay */
.contact-map-section {
  position: relative;
  min-height: 520px;
  background-color: #f5f5f5;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding: 80px 40px;
}

.contact-map-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.15);
  z-index: 0;
}

/* Floating contact card */
.contact-card {
  position: relative;
  z-index: 1;
  background-color: var(--background);
  padding: 56px 52px;
  max-width: 400px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

.contact-card-title {
  font-size: 1.5rem;
  font-weight: normal;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.contact-card-rule {
  width: 36px;
  height: 2px;
  background-color: var(--primary);
  margin-bottom: 32px;
}

.contact-card-item {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e8e8e8;
}

.contact-card-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.contact-card-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #999;
  margin-bottom: 6px;
}

.contact-card-value {
  font-size: 1.05rem;
  color: var(--text-dark);
  line-height: 1.5;
}

.contact-card-value a {
  color: var(--primary);
  transition: color 0.2s ease;
}

.contact-card-value a:hover {
  color: #7a1818;
}

/* =========================
   TABLET
   ========================= */
@media (max-width: 1024px) {
}

/* =========================
   MOBILE
   ========================= */
@media (max-width: 900px) {
  .contact-map-section {
    padding: 60px 30px;
    min-height: 480px;
    justify-content: center;
  }

  .contact-card {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 768px) {
}

/* =========================
   SMALL MOBILE
   ========================= */
@media (max-width: 600px) {
  .contact-map-section {
    padding: 40px 20px;
    min-height: auto;
  }

  .contact-card {
    padding: 40px 32px;
  }
}

@media (max-width: 480px) {
}
