:root {
  --bg-color: #0f0d0d;
  --card-bg: #1c1a19;
  --card-card-inner: #24201e;
  --accent-gold: #d4af37;
  --accent-gold-hover: #f1c40f;
  --accent-red: #d32f2f;
  --text-main: #f5f5f5;
  --text-muted: #b0b0b0;
  --border-color: #332d29;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Vazirmatn', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 15px;
}

:where(a, button, input, textarea, select, summary):focus-visible {
  outline: 2px solid var(--accent-gold-hover);
  outline-offset: 3px;
}

.vcard-container {
  width: 100%;
  max-width: 480px;
  background: var(--card-bg);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.7);
  border: 1px solid var(--border-color);
  position: relative;
}

.banner-wrapper {
  position: relative;
  width: 100%;
  background: #000;
}

.banner-img {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 3px solid var(--accent-gold);
}

.top-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  background: rgba(28, 26, 25, 0.95);
  border-bottom: 1px solid var(--border-color);
}

.nav-brand {
  font-weight: 700;
  color: var(--accent-gold);
  font-size: 0.9rem;
}

.nav-actions {
  display: flex;
  gap: 10px;
}

.nav-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.1rem;
  cursor: pointer;
  transition: color 0.2s;
}

.nav-btn:hover {
  color: var(--accent-gold);
}

.content-body {
  padding: 24px 20px;
}

.title-section {
  text-align: center;
  margin-bottom: 20px;
}

.title-section h1 {
  font-size: 1.6rem;
  color: var(--accent-gold);
  margin-bottom: 6px;
  font-weight: 800;
}

.title-section p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Action Buttons Grid */
.action-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.btn-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-gold), #b8860b);
  color: #000;
  grid-column: span 2;
  font-size: 1.1rem;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-gold-hover), var(--accent-gold));
  transform: translateY(-2px);
}

.btn-order-online {
  background: linear-gradient(135deg, #f7d76a 0%, #d9a829 48%, #b98011 100%);
  color: #1f1608;
  font-weight: 900;
  border: 1px solid rgba(247, 215, 106, 0.7);
  box-shadow: 0 10px 22px rgba(201, 154, 27, 0.35);
}

.btn-order-online:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 14px 26px rgba(201, 154, 27, 0.42);
}

.btn-secondary {
  background: #2a2624;
  color: var(--text-main);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: #38322f;
  color: var(--accent-gold);
  transform: translateY(-2px);
}

.btn-save-contact {
  grid-column: 1 / -1;
  justify-self: center;
  width: min(100%, 260px);
  margin-top: 2px;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
}

.btn-instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
}

/* Information Cards */
.info-card {
  background: var(--card-card-inner);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 16px;
  border: 1px solid var(--border-color);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-item i {
  color: var(--accent-gold);
  font-size: 1.2rem;
  margin-top: 3px;
}

.info-text h4 {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.info-text p, .info-text a {
  font-size: 0.95rem;
  color: var(--text-main);
  text-decoration: none;
  font-weight: 500;
}

/* Map Wrapper (ویژه v1.3) */
.map-wrapper {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 14px;
  border: 1px solid var(--border-color);
}

.map-frame {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Menu List */
.services-title {
  font-size: 1.05rem;
  color: var(--accent-gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.services-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 8px;
}

.services-list li {
  background: #181615;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 8px;
  border-right: 3px solid var(--accent-red);
}

/* Toast Message */
.toast-msg {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--accent-gold);
  color: #000;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
  z-index: 999;
}

.toast-msg.show {
  transform: translateX(-50%) translateY(0);
}

.footer-credit {
  text-align: center;
  margin-top: 20px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-credit a {
  color: var(--accent-gold);
  text-decoration: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}