/* ── MARIKINA HERO ── */
.mb-hero {
  position: relative;
  margin-top: 64px;
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.mb-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(10,20,50,0.55), rgba(10,20,50,0.45)),
    url('/marikina-branch.jpg') center/cover no-repeat;
  z-index: 0;
}
.mb-hero-inner {
  position: relative;
  z-index: 1;
  padding: 40px 24px 48px;
  width: 100%;
}
.mb-back-btn {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 16px;
  transition: background 0.2s;
  letter-spacing: 0.2px;
}
.mb-back-btn:hover { background: rgba(255,255,255,0.25); }
.mb-hero-inner h1 {
  font-size: 2.8rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.15;
}
.mb-blue { color: #4a9eff; }
.mb-hero-inner p {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  max-width: 500px;
  line-height: 1.7;
}
.mb-star {
  position: absolute;
  color: rgba(255,255,255,0.5);
  z-index: 1;
  font-size: 18px;
}
.mb-star1 { top: 30px; right: 80px; }
.mb-star2 { bottom: 40px; right: 40px; font-size: 13px; }
.mb-star3 { top: 60px; right: 200px; font-size: 24px; opacity: 0.3; }

/* ── BRANCH INFO ── */
.mb-info-section {
  background: #fff;
  padding: 64px 0 56px;
}
.mb-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.mb-info-card {
  background: #fff;
  border: 1px solid #e8eaf0;
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(26,46,90,0.05);
}
.mb-info-icon {
  width: 52px; height: 52px;
  background: #eef2fb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 14px;
}
.mb-info-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: #1a2e5a;
  margin-bottom: 8px;
}
.mb-info-card p {
  font-size: 13px;
  color: #7a8aaa;
  line-height: 1.5;
  margin: 0;
}

/* ── SPACE SECTION ── */
.mb-space-section {
  background: #eef4fb;
  padding: 64px 0;
}
.mb-space-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.mb-space-img-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}
.mb-space-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}
.mb-now-open {
  position: absolute;
  top: 14px; right: 14px;
  background: #1a2e5a;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
}
.mb-space-text h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #1a2e5a;
  margin-bottom: 14px;
}
.mb-space-text > p {
  font-size: 14px;
  color: #4a5a7a;
  line-height: 1.7;
  margin-bottom: 24px;
}
.mb-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.mb-feature {
  background: #fff;
  border: 1px solid #e8eaf0;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #1a2e5a;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ── CONTACT SECTION ── */
.mb-contact-section {
  background: #fff;
  padding: 64px 0;
}
.mb-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.mb-form-card {
  background: #fff;
  border: 1px solid #e8eaf0;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(26,46,90,0.05);
}
.mb-form-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a2e5a;
  margin-bottom: 20px;
}
.mb-field {
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
}
.mb-field label {
  font-size: 12px;
  font-weight: 600;
  color: #1a2e5a;
  margin-bottom: 5px;
}
.mb-field input,
.mb-field textarea {
  border: 1px solid #d0d8ea;
  border-radius: 6px;
  padding: 9px 12px;
  font-size: 13px;
  font-family: inherit;
  color: #1a2e5a;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.mb-field input:focus,
.mb-field textarea:focus { border-color: #4a6fa5; }
.mb-field textarea { resize: vertical; }
.mb-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.mb-submit-btn {
  width: 100%;
  background: #1a2e5a;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 4px;
  transition: background 0.2s;
}
.mb-submit-btn:hover { background: #253f7a; }
.mb-map-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e8eaf0;
  box-shadow: 0 2px 12px rgba(26,46,90,0.05);
}
.mb-map-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 16px 18px;
  background: #fff;
  border-top: 1px solid #e8eaf0;
}
.mb-map-label strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #1a2e5a;
  margin-bottom: 3px;
}
.mb-map-label p {
  font-size: 12px;
  color: #7a8aaa;
  margin: 0;
}

/* ── CTA ── */
.mb-cta-section {
  background: #1a2e5a;
  color: #fff;
  padding: 56px 24px;
  text-align: center;
}
.mb-cta-section h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.mb-cta-section p {
  font-size: 14px;
  opacity: 0.85;
  max-width: 480px;
  margin: 0 auto 28px;
  line-height: 1.7;
}
.mb-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.mb-cta-btn-outline {
  background: transparent;
  color: #fff;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 6px;
  padding: 11px 28px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  font-family: inherit;
}
.mb-cta-btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .mb-info-grid { grid-template-columns: repeat(2, 1fr); }
  .mb-space-inner { grid-template-columns: 1fr; }
  .mb-contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .mb-info-grid { grid-template-columns: 1fr; }
  .mb-field-row { grid-template-columns: 1fr; }
  .mb-hero-inner h1 { font-size: 2rem; }
  .mb-features-grid { grid-template-columns: 1fr; }
}
