/* ============================
   CONTACT HERO IMAGE
============================ */
.contact-hero {
  width: 100%;
  height: 400px;
  background: url("images/store-1.jpg") center/cover no-repeat;
  border-bottom: 2px solid #e8e8e8;
}

/* ============================
   CONTACT SECTION
============================ */
.contact-section {
  max-width: 900px;
  margin: 60px auto;
  text-align: center;
  padding: 0 20px;
}

.contact-section h1 {
  font-family: "Playfair Display", serif;
  font-size: 38px;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  color: #222;
}

.contact-section .lead {
  font-size: 20px;
  color: #555;
  margin-bottom: 50px;
  line-height: 1.6;
}

/* ============================
   CONTACT INFO CARDS
============================ */
.contact-info {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-card {
  background: white;
  width: 260px;
  padding: 26px;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.contact-card .icon {
  font-size: 46px;
  color: #cf9e25;
  margin-bottom: 12px;
}

.contact-card h3 {
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 20px;
}

.contact-card p {
  font-size: 17px;
  color: #444;
}

/* MOBILE ADJUSTMENTS */
@media (max-width: 600px) {
  .contact-card {
    width: 100%;
  }
}
