/* ===========================
   Variables
   =========================== */
:root {
  --bg:           #f3f4f6;
  --card:         #ffffff;
  --accent:       #f4b400;
  --accent-end:   #ff8c00;
  --text:         #1f2937;
  --muted:        #6b7280;
  --border:       rgba(0, 0, 0, 0.08);
  --wa:           #25D366;
  --viber:        #7360f2;
  --email-bg:     #1d4ed8;
  --radius-card:  24px;
  --radius-btn:   14px;
}

/* ===========================
   RTL Support
   =========================== */
[dir="rtl"] .info__row,
[dir="rtl"] .btn {
  flex-direction: row-reverse;
}

/* ===========================
   Reset & Base
   =========================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* ===========================
   Card
   =========================== */
.card {
  width: 100%;
  max-width: 400px;
  background: var(--card);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

/* ===========================
   Header
   =========================== */
.header {
  background: linear-gradient(135deg, var(--accent), var(--accent-end));
  padding: 32px 24px 24px;
  text-align: center;
}

.header__icon {
  font-size: 3rem;
  margin-bottom: 8px;
}

.header__name {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--bg);
}

.header__region {
  font-size: 0.9rem;
  color: var(--bg);
  opacity: 0.7;
  margin-top: 4px;
}

/* ===========================
   Info rows
   =========================== */
.info {
  padding: 8px 24px;
}

.info__row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.info__row:last-child {
  border-bottom: none;
}

.info__icon {
  font-size: 1.3rem;
  width: 36px;
  text-align: center;
  flex-shrink: 0;
}

.info__label {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 2px;
}

.info__value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
}

.info__value:hover {
  color: var(--accent);
}

/* ===========================
   Action buttons
   =========================== */
.actions {
  padding: 0 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  border-radius: var(--radius-btn);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.15s, opacity 0.15s;
  -webkit-tap-highlight-color: transparent;
}

.btn:active {
  transform: scale(0.97);
  opacity: 0.85;
}

.btn__icon {
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
}

.btn__img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  object-fit: contain;
}

.btn--call {
  background: linear-gradient(135deg, var(--accent), var(--accent-end));
  color: var(--bg);
}

.btn--whatsapp {
  background: var(--wa);
  color: #fff;
}

.btn--viber {
  background: var(--viber);
  color: #fff;
}

.btn--email {
  background: var(--email-bg);
  color: #fff;
  border: 1px solid var(--border);
}

.btn--save {
  background: #ffffff;
  color: #1f2937;
  border: 2px solid var(--border);
  cursor: pointer;
  font-family: inherit;
}
