/* =====================================================
GLOBAL
===================================================== */

body {
  font-family: "Inter", sans-serif;
  background: var(--bg-light);
}

/* =====================================================
SECTION SPACING
===================================================== */

/* =====================================================
CONTACT FORM CARD
===================================================== */

.contact-card {
  background: white;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 40px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

/* =====================================================
BUTTON
===================================================== */

.btn-primary-custom {
  background: var(--color-primary);
  color: white;
  border: none;
  font-weight: 600;
  transition: 0.25s;
}

.btn-primary-custom:hover {
  background: #0f3488;
}

/* =====================================================
ICON BOX
===================================================== */

.icon-box {
  background: rgba(18, 65, 161, 0.1);
  color: var(--color-primary);
  padding: 12px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
}

/* =====================================================
MAP BOX
===================================================== */

.map-box {
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #ddd;
  position: relative;
}

.map-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.map-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 10px 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* =====================================================
FAQ CARDS
===================================================== */

.faq-card {
  background: white;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 25px;
  transition: 0.25s;
}

.faq-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* =====================================================
RESPONSIVE DESIGN
===================================================== */

/* tablets */

@media (max-width: 992px) {
  .section-padding {
    padding: 60px 0;
  }
}

/* mobile */

@media (max-width: 768px) {
  .contact-card {
    padding: 28px;
  }

  .section-padding {
    padding: 50px 0;
  }

  .map-box {
    height: 250px;
  }
}

/* small phones */

@media (max-width: 480px) {
  .contact-card {
    padding: 22px;
  }

  .faq-card {
    padding: 20px;
  }
}
