:root {
  --bg: #fdf2f4;
  --card: rgba(255, 255, 255, .92);
  --ink: #2f2f35;
  --muted: #666;
  --rose: #c04040;
  --rose-2: #d05050;
  --rose-soft: #f8e8e8;
  --rose-soft-2: #fdf2f4;
  --border: rgba(224, 125, 125, .45);
  --shadow: 0 18px 45px rgba(111, 45, 45, .12);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(208,80,80,.12), transparent 34rem),
    linear-gradient(180deg, var(--bg), #fff 60%, var(--bg));
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

.hero {
  color: #fff;
  background: linear-gradient(90deg, #d98787, #efaaaa, #d98787);
  box-shadow: 0 12px 35px rgba(192, 64, 64, .25);
}
.hero-inner {
  width: min(1120px, calc(100% - 32px));
  margin: auto;
  padding: 32px 0 26px;
  text-align: center;
}
.logo-wrap {
  width: 116px;
  height: 116px;
  margin: 0 auto 14px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  border: 5px solid rgba(208, 80, 80, .35);
  box-shadow: 0 12px 25px rgba(73, 31, 31, .18);
  display: grid;
  place-items: center;
}
.logo { width: 100%; height: 100%; object-fit: contain; }
h1 {
  margin: 0 0 6px;
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1;
  text-shadow: 0 4px 16px rgba(0,0,0,.18);
}
.subtitle { margin: 0 0 3px; font-size: clamp(1.05rem, 2.5vw, 1.35rem); color: rgba(255,255,255,.92); }
.subtle { color: rgba(255,255,255,.82); }
.badge {
  display: inline-block;
  margin-top: 14px;
  padding: 9px 16px;
  max-width: 92%;
  border-radius: 999px;
  color: var(--rose);
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.55);
  font-weight: 700;
  font-size: .95rem;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}
.icon-btn,
.lang-btn {
  min-width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 999px;
  background: rgba(255,255,255,.22);
  color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: .2s ease;
  font-weight: 900;
}
.lang-btn { gap: 8px; padding: 0 16px; font-weight: 700; }
.icon-btn:hover, .lang-btn:hover { transform: translateY(-2px); background: rgba(255,255,255,.34); }
.hero-line, .footer-line { height: 8px; background: linear-gradient(90deg, var(--rose), var(--rose-2), var(--rose)); }
.container { width: min(1120px, calc(100% - 32px)); margin: auto; padding: 34px 0; }
.section-title { text-align: center; margin-bottom: 28px; }
.section-title h2 { margin: 0 0 8px; font-size: clamp(1.7rem, 4vw, 2.35rem); }
.section-title p { margin: 0; color: var(--muted); }
.grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(111,45,45,.07);
  transition: .25s ease;
  backdrop-filter: blur(10px);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(192, 64, 64, .8); }
.card-top {
  padding: 18px 18px 10px;
  background: linear-gradient(90deg, var(--rose-soft), var(--rose-soft-2));
  text-align: center;
}
.branch-photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #fff;
  box-shadow: 0 8px 22px rgba(83,37,37,.14);
}
.card-title {
  padding: 8px 16px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: linear-gradient(90deg, var(--rose-soft), var(--rose-soft-2));
  border-bottom: 1px solid var(--border);
}
.card-title h3 { margin: 0; font-size: 1.14rem; }
.branch-num { white-space: nowrap; font-size: .82rem; color: var(--rose); border: 1px solid rgba(192,64,64,.25); background: #fff5f5; padding: 5px 10px; border-radius: 999px; font-weight: 800; }
.card-body { padding: 16px; display: grid; gap: 12px; }
.info-row {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
  padding: 11px;
  border-radius: 16px;
  background: var(--rose-soft-2);
  transition: .2s ease;
}
.info-row:hover { background: var(--rose-soft); }
.icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(232,160,160,.32);
  display: grid;
  place-items: center;
  font-size: 1.18rem;
}
.info-label { margin: 0 0 4px; color: var(--rose); font-weight: 800; font-size: .78rem; }
.info-value { margin: 0; font-weight: 700; line-height: 1.55; }
.info-value.small { font-size: .92rem; font-weight: 650; }
.ltr { direction: ltr; unicode-bidi: embed; display: inline-block; }
.map-btn {
  margin-top: 4px;
  width: 100%;
  min-height: 46px;
  border-radius: 16px;
  border: 0;
  color: #fff;
  background: linear-gradient(90deg, var(--rose-2), var(--rose));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(192,64,64,.22);
  transition: .2s ease;
}
.map-btn:hover { transform: translateY(-2px); filter: brightness(.98); }
.footer {
  margin-top: 28px;
  color: #fff;
  background: linear-gradient(90deg, var(--rose-2), var(--rose), var(--rose-2));
}
.footer-inner {
  width: min(1120px, calc(100% - 32px));
  margin: auto;
  min-height: 86px;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-links { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-links a {
  padding: 10px 15px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.12);
}
.rights { color: rgba(255,255,255,.82); font-size: .92rem; }
.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  background: #222;
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(0,0,0,.2);
  z-index: 10;
}

body[dir="ltr"] .info-row { grid-template-columns: 42px 1fr; }
body[dir="ltr"] .card-title { direction: ltr; }

@media (max-width: 980px) {
  .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .hero-inner { width: min(100% - 22px, 1120px); padding-top: 24px; }
  .container { width: min(100% - 22px, 1120px); }
  .grid { grid-template-columns: 1fr; gap: 16px; }
  .card-title { align-items: flex-start; }
  .footer-inner { justify-content: center; text-align: center; }
}
