/* ═══════════════════════════════════════════════════
   Info Pages – Customer Service & Help
   Scoped under .info-page to avoid conflicts with
   global resets (list-style:none, a color:inherit, etc.)
   ═══════════════════════════════════════════════════ */

.info-page {
  padding: 2rem 0 3rem;
  min-height: 60vh;
}

.info-page-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.info-page-header-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--info-page-accent, rgba(245,197,24,0.15));
  color: var(--info-page-accent-color, #f5c518);
  flex-shrink: 0;
}
.info-page-header-icon svg {
  width: 22px;
  height: 22px;
}
.info-page-header h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  letter-spacing: -0.01em;
}

/* ── Content Area ── */
.info-page-body {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 2rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* Override global resets for content inside .info-page-body */
.info-page-body h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin: 2rem 0 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.info-page-body h2:first-child {
  margin-top: 0;
}

.info-page-body h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(255,255,255,0.95);
  margin: 1.5rem 0 0.5rem;
}

.info-page-body p {
  margin: 0.5rem 0;
}

/* Re-enable list styles stripped by global reset */
.info-page-body ul {
  list-style: disc;
  margin: 0.5rem 0 1rem 0;
  padding-right: 1.5rem;
  padding-left: 0;
}
.info-page-body ol {
  list-style: decimal;
  margin: 0.5rem 0 1rem 0;
  padding-right: 1.5rem;
  padding-left: 0;
}
.info-page-body li {
  margin-bottom: 0.35rem;
  display: list-item;
}
.info-page-body li::marker {
  color: rgba(255,255,255,0.4);
}

/* Re-enable link styles stripped by global reset */
.info-page-body a {
  color: var(--info-page-accent-color, #f5c518);
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 2px;
  transition: text-decoration-color 0.15s;
}
.info-page-body a:hover {
  text-decoration-color: currentColor;
}

.info-page-body strong {
  color: #fff;
  font-weight: 600;
}

/* Highlight box */
.info-page-body .info-highlight {
  background: rgba(245,197,24,0.08);
  border: 1px solid rgba(245,197,24,0.15);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin: 1rem 0;
}
.info-page-body .info-highlight ul {
  margin-top: 0.5rem;
  margin-bottom: 0;
}

/* Card grid */
.info-page-body .info-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
  margin: 1rem 0;
}

.info-page-body .info-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 1.25rem;
  transition: border-color 0.2s;
}
.info-page-body .info-card:hover {
  border-color: rgba(255,255,255,0.15);
}
.info-page-body .info-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.info-page-body .info-card p {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
}
.info-page-body .info-card a {
  color: var(--info-page-accent-color, #f5c518);
}

/* FAQ-style accordion */
.info-page-body .faq-item {
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  margin-bottom: 0.5rem;
  overflow: hidden;
}
.info-page-body .faq-item summary {
  padding: 0.85rem 1rem;
  cursor: pointer;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.03);
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.15s;
  user-select: none;
}
.info-page-body .faq-item summary::-webkit-details-marker {
  display: none;
}
.info-page-body .faq-item summary::before {
  content: '\203A';
  font-size: 1.2em;
  font-weight: 700;
  transition: transform 0.2s;
  color: var(--info-page-accent-color, #f5c518);
  flex-shrink: 0;
}
.info-page-body .faq-item[open] summary::before {
  transform: rotate(90deg);
}
.info-page-body .faq-item summary:hover {
  background: rgba(255,255,255,0.05);
}
.info-page-body .faq-item .faq-answer {
  padding: 0.75rem 1rem 1rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  line-height: 1.75;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.info-page-body .faq-item .faq-answer ul {
  list-style: disc;
  padding-right: 1.25rem;
  margin-top: 0.4rem;
  margin-bottom: 0;
}
.info-page-body .faq-item .faq-answer p {
  margin: 0.35rem 0;
}

/* ── Customer service page (cs-page) ── */
.cs-page {
  padding-top: 1.5rem;
}
.cs-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
  padding: 1.75rem 1.85rem;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(245, 197, 24, 0.08) 0%, transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}
.cs-hero__main {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex: 1 1 280px;
  min-width: 0;
}
.cs-hero__badge {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(245, 197, 24, 0.15);
  color: var(--accent-sport, #f5c518);
}
.cs-hero__titles h1 {
  margin: 0 0 0.4rem;
  font-size: 1.65rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}
.cs-hero__subtitle {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.62);
  max-width: 36rem;
}
.cs-hero__contact {
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.65rem;
  min-width: 200px;
}
.cs-contact-phone {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 1.15rem;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(245, 197, 24, 0.25);
  color: #fff;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.cs-contact-phone:hover {
  border-color: rgba(245, 197, 24, 0.5);
  background: rgba(0, 0, 0, 0.45);
  transform: translateY(-1px);
  color: #fff;
}
.cs-contact-phone__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 197, 24, 0.12);
  color: var(--accent-sport, #f5c518);
  flex-shrink: 0;
}
.cs-contact-phone__icon svg {
  width: 22px;
  height: 22px;
}
.cs-contact-phone__text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.cs-contact-phone__label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.5);
}
.cs-contact-phone__number {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.cs-hero__wa-hint {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding-inline-start: 0.15rem;
}
.cs-hero__wa-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25d366;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(37, 211, 102, 0.6);
}
.cs-page__content {
  margin-top: 0;
}
.cs-page__empty {
  text-align: center;
  padding: 3rem 1.5rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(255, 255, 255, 0.1);
}
.cs-page__empty-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  color: rgba(255, 255, 255, 0.25);
}
.cs-page__empty-icon svg {
  width: 100%;
  height: 100%;
}
.cs-page__empty h2 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
}
.cs-page__empty p {
  margin: 0.35rem 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.92rem;
  line-height: 1.6;
}
.cs-page__empty-admin {
  margin-top: 1rem !important;
  font-size: 0.8rem !important;
  color: rgba(245, 197, 24, 0.55) !important;
}

.info-page-support-link {
  margin: -0.5rem 0 1.25rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
}
.info-page-support-link a {
  color: var(--accent-sport, #f5c518);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s;
}
.info-page-support-link a:hover {
  border-bottom-color: currentColor;
}

@media (max-width: 768px) {
  .cs-hero {
    padding: 1.25rem;
    flex-direction: column;
  }
  .cs-hero__titles h1 {
    font-size: 1.35rem;
  }
  .cs-hero__contact {
    width: 100%;
  }
}

/* ── Contact channels (phone / WhatsApp from site settings) ── */
.site-contact-channels {
  margin-bottom: 1.75rem;
}
.site-contact-channels__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.85rem;
}
.site-contact-channels__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.75rem;
}
.site-contact-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.15rem;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.site-contact-card:hover {
  border-color: rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.07);
  transform: translateY(-1px);
  color: #fff;
}
.site-contact-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(245,197,24,0.15);
  color: #f5c518;
}
.site-contact-card__icon svg {
  width: 22px;
  height: 22px;
}
.site-contact-card--whatsapp .site-contact-card__icon,
.site-contact-card__icon--whatsapp {
  background: rgba(37,211,102,0.15);
  color: #25d366;
}
.site-contact-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}
.site-contact-card__label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.site-contact-card__value {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.site-contact-compact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}
.site-contact-compact--header {
  margin-inline-start: 0.25rem;
}
.site-contact-compact--help {
  margin-bottom: 1.5rem;
}
.site-contact-compact__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.65rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.9);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.site-contact-compact__btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: #fff;
}
.site-contact-compact__btn--whatsapp {
  border-color: rgba(37,211,102,0.35);
  color: #5ee89a;
}
.site-contact-compact__btn--whatsapp:hover {
  background: rgba(37,211,102,0.12);
  color: #7ef0ad;
}
.site-contact-compact__icon {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.site-contact-compact__icon svg {
  width: 16px;
  height: 16px;
}

/* ── Empty State ── */
.info-page-empty {
  text-align: center;
  padding: 4rem 1rem;
  color: rgba(255,255,255,0.35);
}
.info-page-empty svg {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  opacity: 0.3;
}
.info-page-empty p {
  font-size: 1rem;
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .info-page {
    padding: 1.25rem 0 2rem;
  }
  .info-page-header {
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
  }
  .info-page-header h1 {
    font-size: 1.25rem;
  }
  .info-page-header-icon {
    width: 36px;
    height: 36px;
  }
  .info-page-header-icon svg {
    width: 20px;
    height: 20px;
  }
  .info-page-body {
    padding: 1.25rem;
    font-size: 0.9rem;
    border-radius: 10px;
  }
  .info-page-body h2 {
    font-size: 1.08rem;
    margin-top: 1.5rem;
  }
  .info-page-body .info-card-grid {
    grid-template-columns: 1fr;
  }
  .info-page-body .info-card {
    padding: 1rem;
  }
  .info-page-body .faq-item summary {
    padding: 0.75rem;
    font-size: 0.9rem;
  }
  .info-page-body .faq-item .faq-answer {
    padding: 0.65rem 0.75rem 0.85rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 360px) {
  .info-page-body {
    padding: 1rem;
    font-size: 0.88rem;
  }
  .info-page-body ul,
  .info-page-body ol {
    padding-right: 1.1rem;
  }
}

/* תקנון שימוש */
.info-page-body--terms .terms-doc-lead {
  font-size: 1.05rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 1.5rem;
}
.info-page-body--terms .terms-section {
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.info-page-body--terms .terms-section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.info-page-body--terms .terms-section h2 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--info-page-accent-color, #eab308);
  margin: 0 0 0.75rem;
}
.info-page-body--terms .terms-section ol {
  margin: 0;
  padding-right: 1.35rem;
  line-height: 1.85;
}
.info-page-body--terms .terms-section li {
  margin-bottom: 0.45rem;
  color: rgba(255, 255, 255, 0.82);
}
.info-page-body--terms .terms-doc-foot {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}
