/* PAGE HERO */
.page-hero {
  position: relative;
  background: url('../images/hero-bg.png') center 40% / cover no-repeat;
  min-height: 220px;
  display: flex;
  align-items: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(70,8,8,.88), rgba(40,5,5,.7));
}
.page-hero .container {
  position: relative;
  z-index: 1;
  padding: 50px 20px;
  color: white;
}
.page-hero h1 {
  font-family: 'Cinzel', serif;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 8px;
  color: white;
}
.page-hero p {
  font-size: 14px;
  color: rgba(255,255,255,.8);
  max-width: 550px;
  line-height: 1.6;
  margin-bottom: 14px;
}
.breadcrumb {
  font-size: 12px;
  color: rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  gap: 6px;
}
.breadcrumb a { color: var(--light-gold); }
.breadcrumb a:hover { text-decoration: underline; }

/* CONTACT SECTION */
.contact-section {
  padding: 55px 0 70px;
  background: #f9f6f3;
}

/* Info cards row */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 40px;
}
.info-card {
  background: white;
  border-radius: 8px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  border-top: 3px solid var(--maroon);
  transition: transform .2s;
}
.info-card:hover { transform: translateY(-4px); }
.info-icon {
  font-size: 30px;
  margin-bottom: 10px;
}
.info-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--maroon);
  margin-bottom: 6px;
}
.info-card p {
  font-size: 13px;
  font-weight: 600;
  color: #333;
  margin-bottom: 4px;
}
.info-card p a { color: var(--maroon); }
.info-card p a:hover { text-decoration: underline; }
.info-card span {
  font-size: 11px;
  color: #999;
}

/* Form + Side grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
  align-items: start;
}

/* Form box */
.contact-form-box {
  background: white;
  border-radius: 8px;
  padding: 36px;
  box-shadow: 0 2px 18px rgba(0,0,0,.07);
}
.contact-form-box h2 {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--maroon);
  margin-bottom: 6px;
}
.form-sub {
  font-size: 13px;
  color: #888;
  margin-bottom: 22px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.fg { margin-bottom: 14px; }
.fg label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: #555;
  margin-bottom: 5px;
}
.fg label .req { color: var(--maroon); }
.fg input,
.fg select,
.fg textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #ddd;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: #444;
  outline: none;
  border-radius: 4px;
  background: white;
  transition: border .2s, box-shadow .2s;
}
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--maroon);
  box-shadow: 0 0 0 3px rgba(123,28,28,.08);
}
.fg textarea { min-height: 120px; resize: vertical; }

.contact-send-btn {
  width: 100%;
  font-size: 14px;
  padding: 15px;
  margin-top: 4px;
  letter-spacing: 1px;
}

/* Alerts */
.alert {
  border-radius: 4px;
  padding: 14px 16px;
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 18px;
}
.alert-success {
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  color: #2e7d32;
}
.alert-error {
  background: #fdecea;
  border: 1px solid #f5c6cb;
  color: #c62828;
}

/* Side cards */
.contact-side { display: flex; flex-direction: column; gap: 18px; }
.side-card {
  background: white;
  border-radius: 8px;
  padding: 22px 22px 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.side-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--maroon);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f0e8e0;
}
.why-list { list-style: none; }
.why-list li {
  font-size: 13px;
  color: #555;
  padding: 5px 0;
  border-bottom: 1px solid #f8f3ef;
}
.why-list li:last-child { border-bottom: none; }

.hours-card {}
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  padding: 7px 0;
  border-bottom: 1px solid #f8f3ef;
  color: #555;
}
.hours-row:last-child { border-bottom: none; }
.hours-row span:last-child { font-weight: 600; color: var(--maroon); }

.payment-card .pay-items { gap: 10px; }

/* Responsive */
@media (max-width: 960px) {
  .contact-info-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .contact-info-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-box { padding: 22px 16px; }
  .page-hero h1 { font-size: 26px; }
}
