@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #6c63ff;
  --primary-dark: #5a52d5;
  --secondary: #ff6584;
  --accent: #43e97b;
  --bg: #f7f8fc;
  --card-bg: #ffffff;
  --text: #2d2d4e;
  --text-muted: #7a7a9d;
  --border: #e8e8f0;
  --shadow: 0 4px 20px rgba(108, 99, 255, 0.08);
  --shadow-hover: 0 8px 30px rgba(108, 99, 255, 0.18);
  --radius: 14px;
  --radius-sm: 8px;
}

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

body {
  font-family: 'Heebo', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  direction: rtl;
  min-height: 100vh;
}

/* NAV */
nav {
  background: var(--card-bg);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(108,99,255,0.06);
}
.nav-brand {
  font-size: 1.6rem; font-weight: 800;
  text-decoration: none; letter-spacing: -0.5px;
  display: inline-flex; align-items: center; gap: 0;
}
.brand-logo {
  direction: ltr;
  unicode-bidi: bidi-override;
  display: inline-flex;
  white-space: nowrap;
  font-weight: 900;
}
.brand-tip {
  color: #4F46E5 !important;
  -webkit-text-fill-color: #4F46E5 !important;
}
.brand-it {
  color: #FF2D78 !important;
  -webkit-text-fill-color: #FF2D78 !important;
}
.nav-logo-img {
  width: 32px; height: 32px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}
.nav-logo-wide {
  height: 38px;
  width: auto;
  object-fit: contain;
  display: block;
}
.nav-links { display: flex; gap: 0.5rem; align-items: center; }
.nav-links a {
  color: var(--text-muted); text-decoration: none; font-weight: 500;
  padding: 0.4rem 0.9rem; border-radius: var(--radius-sm);
  transition: all 0.2s; font-size: 0.95rem;
}
.nav-links a:hover { color: var(--primary); background: rgba(108,99,255,0.07); }
.lang-switcher-btn {
  font-size: 0.82rem !important; padding: 0.3rem 0.7rem !important;
  border: 1.5px solid var(--border) !important; border-radius: 20px !important;
  color: var(--text-muted) !important; font-weight: 600 !important;
}
.lang-switcher-btn:hover { border-color: var(--primary) !important; color: var(--primary) !important; background: rgba(108,99,255,0.06) !important; }
.nav-user-name {
  font-size: 0.85rem; font-weight: 600; color: var(--text-muted);
  padding: 0.4rem 0.6rem; white-space: nowrap; overflow: hidden;
  text-overflow: ellipsis; max-width: 130px;
}
.nav-login-btn {
  background: var(--primary) !important; color: #fff !important;
  font-weight: 700 !important; border-radius: 8px !important;
  padding: 0.4rem 1rem !important;
}
.nav-login-btn:hover { background: var(--primary-dark) !important; color: #fff !important; }
.nav-logout-btn {
  font-size: 0.82rem !important; color: var(--text-muted) !important;
  border: 1.5px solid var(--border) !important; border-radius: 20px !important;
  padding: 0.3rem 0.7rem !important; font-weight: 600 !important;
}
.nav-logout-btn:hover { border-color: #ef4444 !important; color: #ef4444 !important; background: #fef2f2 !important; }

/* CONTAINER */
.container { max-width: 1100px; margin: 0 auto; padding: 2rem 1.5rem; }

/* PAGE HEADER */
.page-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 2rem; flex-wrap: wrap; gap: 1rem;
}
.page-title { font-size: 1.8rem; font-weight: 800; color: var(--text); }
.page-subtitle { color: var(--text-muted); font-size: 0.95rem; margin-top: 0.25rem; }

/* ED ACTIONS */
.ed-actions {
  display: flex; gap: 0.5rem; align-items: center; flex-wrap: wrap;
}

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.55rem 1.3rem; border-radius: var(--radius-sm);
  font-family: 'Heebo', Arial, sans-serif; font-size: 0.95rem;
  font-weight: 600; cursor: pointer; text-decoration: none;
  border: none; transition: all 0.2s; white-space: nowrap;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(108,99,255,0.35); }
.btn-secondary { background: var(--bg); color: var(--text); border: 1.5px solid var(--border); }
.btn-secondary:hover { border-color: var(--primary); color: var(--primary); }
.btn-danger { background: #fff0f3; color: var(--secondary); border: 1.5px solid #ffd6e0; }
.btn-danger:hover { background: var(--secondary); color: #fff; }
.btn-sm { padding: 0.35rem 0.85rem; font-size: 0.85rem; }
.btn-success { background: var(--accent); color: #fff; }
.btn-success:hover { background: #38c96a; transform: translateY(-1px); }

/* CARDS */
.card {
  background: var(--card-bg); border-radius: var(--radius);
  border: 1px solid var(--border); box-shadow: var(--shadow);
  padding: 1.5rem; transition: box-shadow 0.2s;
}
.card:hover { box-shadow: var(--shadow-hover); }
.card-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--border);
}
.card-title { font-size: 1.1rem; font-weight: 700; }

/* GRID */
.grid { display: grid; gap: 1.25rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* EVENT CARD */
.event-card {
  background: var(--card-bg); border-radius: var(--radius);
  border: 1px solid var(--border); padding: 1.5rem; text-decoration: none;
  color: inherit; display: block; transition: all 0.2s; position: relative; overflow: hidden;
}
.event-card::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 4px; height: 100%; background: var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0; opacity: 0; transition: opacity 0.2s;
}
.event-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.event-card:hover::before { opacity: 1; }
.event-card-name { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.35rem; }
.event-card-date { color: var(--text-muted); font-size: 0.88rem; }
.event-card-meta { display: flex; gap: 0.75rem; margin-top: 1rem; flex-wrap: wrap; }
.meta-badge {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-size: 0.82rem; color: var(--text-muted);
  background: var(--bg); padding: 0.25rem 0.65rem; border-radius: 20px;
}

/* FORMS */
.form-group { margin-bottom: 1.2rem; }
label { display: block; font-weight: 600; margin-bottom: 0.4rem; font-size: 0.9rem; color: var(--text); }
input[type="text"], input[type="number"], input[type="date"], input[type="tel"],
textarea, select {
  width: 100%; padding: 0.65rem 0.9rem; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-family: 'Heebo', Arial, sans-serif;
  font-size: 0.95rem; color: var(--text); background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s; direction: rtl;
}
input:focus, textarea:focus, select:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(108,99,255,0.12);
}
textarea { resize: vertical; min-height: 90px; }

/* MODAL */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(45,45,78,0.35); z-index: 200;
  align-items: center; justify-content: center; backdrop-filter: blur(2px);
}
.modal-overlay.active { display: flex; }
.modal {
  background: var(--card-bg); border-radius: var(--radius);
  padding: 2rem; width: 100%; max-width: 480px; margin: 1rem;
  box-shadow: 0 20px 60px rgba(45,45,78,0.25); animation: modalIn 0.2s ease;
}
@keyframes modalIn { from{opacity:0;transform:translateY(-10px) scale(0.97)} to{opacity:1;transform:translateY(0) scale(1)} }
.modal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }
.modal-title { font-size: 1.2rem; font-weight: 700; }
.modal-close { background: none; border: none; font-size: 1.4rem; cursor: pointer; color: var(--text-muted); padding: 0.2rem; line-height: 1; }
.modal-close:hover { color: var(--text); }

/* TABS */
.tabs { display: flex; gap: 0.25rem; border-bottom: 2px solid var(--border); margin-bottom: 1.5rem; flex-wrap: wrap; }
.tab-btn {
  background: none; border: none; font-family: 'Heebo', Arial, sans-serif;
  font-size: 0.92rem; font-weight: 600; color: var(--text-muted);
  padding: 0.65rem 1.1rem; cursor: pointer; position: relative; bottom: -2px;
  border-bottom: 2px solid transparent; transition: all 0.2s;
}
.tab-btn:hover { color: var(--primary); }
.tab-btn.active { color: var(--primary); border-bottom-color: var(--primary); }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* WAITER LIST */
.waiter-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem 1rem; border: 1px solid var(--border);
  border-radius: var(--radius-sm); margin-bottom: 0.65rem;
  background: var(--card-bg); transition: box-shadow 0.15s;
}
.waiter-item:hover { box-shadow: var(--shadow); }
.waiter-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 1rem; flex-shrink: 0; margin-left: 0.75rem;
}
.waiter-info { flex: 1; }
.waiter-name { font-weight: 600; font-size: 0.95rem; }
.waiter-phone { color: var(--text-muted); font-size: 0.82rem; }

/* TABLE GRID */
.tables-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(185px, 1fr)); gap: 1rem; }
.table-card {
  background: var(--card-bg); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 1rem; text-align: center; transition: all 0.2s;
}
.table-card:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.table-inactive { opacity: 0.55; border-style: dashed; }
.table-number { font-size: 2.2rem; font-weight: 800; color: var(--primary); line-height: 1; margin-bottom: 0.3rem; }
.table-waiter { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0.6rem; min-height: 1.2rem; }
.table-card-actions { display: flex; gap: 0.35rem; margin-top: 0.75rem; }
.qr-container { margin: 0.5rem auto; }
.qr-container img { width: 100%; max-width: 110px; border-radius: var(--radius-sm); }

/* AREA BADGE */
.area-badge {
  display: inline-block; padding: 0.18rem 0.6rem; border-radius: 20px;
  font-size: 0.75rem; font-weight: 700; background: rgba(108,99,255,0.1); color: var(--primary);
}
.area-badge.area-VIP { background: rgba(251,191,36,0.15); color: #92400e; }
.area-badge.area-גן { background: rgba(67,233,123,0.15); color: #166534; }
.area-badge.area-בר { background: rgba(239,68,68,0.1); color: #991b1b; }
.area-badge.area-מרפסת { background: rgba(59,130,246,0.1); color: #1e3a8a; }
.area-badge.area-כניסה { background: rgba(168,85,247,0.1); color: #581c87; }
.area-badge-sm {
  display: inline-block; padding: 0.12rem 0.5rem; border-radius: 20px;
  font-size: 0.7rem; font-weight: 600; background: rgba(108,99,255,0.08); color: var(--primary);
}

/* STATUS BADGE */
.status-badge {
  display: inline-block; padding: 0.15rem 0.55rem; border-radius: 20px;
  font-size: 0.72rem; font-weight: 700;
}
.status-active { background: rgba(67,233,123,0.12); color: #166534; }
.status-inactive { background: #f3f4f6; color: #6b7280; }

/* EXPORT DROPDOWN */
.export-dropdown { position: relative; }
.export-menu {
  display: none; position: absolute; top: calc(100% + 6px); left: 0;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1); min-width: 180px; z-index: 50; overflow: hidden;
}
.export-menu.open { display: block; }
.export-menu a {
  display: block; padding: 0.65rem 1rem; font-size: 0.88rem; font-weight: 500;
  color: var(--text); text-decoration: none; transition: background 0.15s;
}
.export-menu a:hover { background: var(--bg); }

/* LIVE BADGE */
.live-badge {
  display: inline-flex; align-items: center; gap: 0.35rem;
  background: rgba(34,197,94,0.1); color: #166534;
  font-size: 0.78rem; font-weight: 700; padding: 0.3rem 0.75rem; border-radius: 20px;
}

/* STARS */
.stars-display { color: #fbbf24; font-size: 0.88rem; }
.star-filled { color: #fbbf24; }
.star-empty { color: #d1d5db; }

/* FEEDBACK CARD */
.feedback-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 1rem; margin-bottom: 0.75rem;
  transition: box-shadow 0.15s;
}
.feedback-card:hover { box-shadow: var(--shadow); }
.feedback-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.4rem; }
.feedback-waiter { font-weight: 700; font-size: 0.92rem; }
.feedback-stars { color: #fbbf24; font-size: 1rem; margin-bottom: 0.35rem; }
.feedback-message { font-size: 0.9rem; color: var(--text); font-style: italic; line-height: 1.55; }
.feedback-customer { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.3rem; }

/* TIP PAGE */
.tip-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex; align-items: center; justify-content: center; padding: 1.5rem;
}
.tip-card {
  background: #fff; border-radius: 24px; padding: 2.5rem 2rem;
  width: 100%; max-width: 420px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.2); text-align: center; direction: rtl;
}
.tip-logo { font-size: 2rem; font-weight: 800; color: var(--primary); margin-bottom: 0.3rem; }
.tip-logo span { color: var(--secondary); }
.tip-event-name { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 0.4rem; }
.tip-waiter-name { font-size: 1.4rem; font-weight: 700; color: var(--text); margin-bottom: 0.2rem; }
.tip-table-num { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 1.75rem; }
.tip-amounts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6rem; margin-bottom: 1rem; }
.amount-btn {
  padding: 0.8rem 0.4rem; border: 2px solid var(--border); border-radius: var(--radius-sm);
  background: var(--bg); font-family: 'Heebo', Arial, sans-serif; font-size: 1rem;
  font-weight: 700; cursor: pointer; transition: all 0.18s; color: var(--text);
}
.amount-btn:hover, .amount-btn.selected {
  border-color: var(--primary); background: var(--primary); color: #fff;
  transform: translateY(-2px); box-shadow: 0 4px 12px rgba(108,99,255,0.3);
}
.tip-divider {
  text-align: center; color: var(--text-muted); font-size: 0.85rem; margin: 0.9rem 0;
  position: relative;
}
.tip-divider::before, .tip-divider::after {
  content: ''; position: absolute; top: 50%; width: 40%; height: 1px; background: var(--border);
}
.tip-divider::before { right: 0; }
.tip-divider::after { left: 0; }
.tip-submit-btn {
  width: 100%; padding: 1rem; background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; border: none; border-radius: var(--radius-sm);
  font-family: 'Heebo', Arial, sans-serif; font-size: 1.05rem; font-weight: 700;
  cursor: pointer; transition: all 0.2s; margin-top: 0.5rem;
}
.tip-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(108,99,255,0.4); }
.tip-success { text-align: center; padding: 1.5rem; }
.tip-success-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.tip-success-title { font-size: 1.6rem; font-weight: 800; color: var(--text); margin-bottom: 0.5rem; }
.tip-success-text { color: var(--text-muted); line-height: 1.65; }

/* DASHBOARD */
.stat-card {
  background: var(--card-bg); border-radius: var(--radius);
  border: 1px solid var(--border); padding: 1.5rem; text-align: center;
}
.stat-value { font-size: 2rem; font-weight: 800; color: var(--primary); line-height: 1; margin-bottom: 0.35rem; }
.stat-label { color: var(--text-muted); font-size: 0.88rem; font-weight: 500; }
.waiter-stat-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.85rem 1rem; border: 1px solid var(--border);
  border-radius: var(--radius-sm); margin-bottom: 0.6rem; background: var(--card-bg);
}
.waiter-stat-info { display: flex; align-items: center; gap: 0.65rem; flex: 1; }
.waiter-rank {
  width: 26px; height: 26px; border-radius: 50%; background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.78rem; color: var(--text-muted); flex-shrink: 0;
}
.waiter-rank.gold { background: #fef3c7; color: #92400e; }
.waiter-rank.silver { background: #f3f4f6; color: #4b5563; }
.waiter-rank.bronze { background: #fde8d8; color: #7c3b0f; }
.tips-bar-wrap { height: 6px; background: var(--bg); border-radius: 10px; overflow: hidden; }
.tips-bar { height: 100%; border-radius: 10px; background: linear-gradient(90deg, var(--primary), var(--secondary)); transition: width 0.6s ease; }
.amount-display { font-size: 1.05rem; font-weight: 700; color: var(--primary); white-space: nowrap; }

/* ALERTS */
.alert { padding: 0.85rem 1.1rem; border-radius: var(--radius-sm); margin-bottom: 1.25rem; font-size: 0.92rem; font-weight: 500; }
.alert-success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.alert-error { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

/* EMPTY STATE */
.empty-state { text-align: center; padding: 3rem 1.5rem; color: var(--text-muted); }
.empty-state-icon { font-size: 3rem; margin-bottom: 1rem; opacity: 0.5; }
.empty-state-title { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.4rem; color: var(--text); }

/* BACK LINK */
.back-link {
  display: inline-flex; align-items: center; gap: 0.35rem;
  color: var(--text-muted); text-decoration: none; font-size: 0.9rem;
  font-weight: 500; margin-bottom: 1.5rem; transition: color 0.2s;
}
.back-link:hover { color: var(--primary); }

/* TABLE */
table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
th {
  text-align: right; padding: 0.7rem 1rem; background: var(--bg);
  color: var(--text-muted); font-weight: 600; font-size: 0.82rem;
  border-bottom: 2px solid var(--border);
}
td { padding: 0.72rem 1rem; border-bottom: 1px solid var(--border); vertical-align: middle; }
tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(108,99,255,0.025); }

/* BADGE */
.badge { display: inline-block; padding: 0.2rem 0.65rem; border-radius: 20px; font-size: 0.78rem; font-weight: 600; }
.badge-primary { background: rgba(108,99,255,0.1); color: var(--primary); }
.badge-success { background: rgba(67,233,123,0.1); color: #2d9e5f; }

/* RESPONSIVE */
@media (max-width: 600px) {
  nav { padding: 0 1rem; }
  .container { padding: 1.25rem 1rem; }
  .page-title { font-size: 1.4rem; }
  .modal { padding: 1.5rem; }
  .ed-actions { gap: 0.35rem; }
}

/* ── CONTACT PAGE ── */
.contact-page { max-width: 960px; margin: 0 auto; }

.contact-hero {
  text-align: center;
  padding: 2.5rem 1rem 2rem;
}
.contact-hero h1 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.contact-hero p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 1.5rem;
  align-items: start;
}

.contact-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.contact-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.contact-form .form-group { margin-bottom: 1.1rem; }
.contact-form label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.15s;
  direction: inherit;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
}
.contact-form textarea { resize: vertical; min-height: 110px; }
.contact-submit { width: 100%; justify-content: center; margin-top: 0.5rem; }

.contact-success {
  text-align: center;
  padding: 2rem 1rem;
}
.contact-success-icon { font-size: 3rem; margin-bottom: 0.75rem; }
.contact-success h2 { font-size: 1.4rem; font-weight: 700; color: var(--text); margin-bottom: 0.5rem; }
.contact-success p { color: var(--text-muted); }

/* WhatsApp button */
.contact-wa-btn {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: #25d366;
  color: #fff;
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 1rem;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}
.contact-wa-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
}
.contact-wa-icon { flex-shrink: 0; display: flex; }
.contact-wa-label { font-size: 0.88rem; opacity: 0.9; }
.contact-wa-num { font-size: 1.05rem; font-weight: 700; direction: ltr; }
.contact-wa-arrow { margin-right: auto; font-size: 1.2rem; }

.contact-info-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.contact-info-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--text);
}
.contact-reasons {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.contact-reasons li {
  font-size: 0.9rem;
  color: var(--text-muted);
}

@media (max-width: 700px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ── FLOATING WHATSAPP BUTTON ── */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  z-index: 9999;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37,211,102,0.55);
}
.wa-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.4);
  animation: wa-pulse 2s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}
