* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Cairo', sans-serif;
}

body {
  min-height: 100vh;
  background: linear-gradient(180deg, #f5f5f7 0%, #ffffff 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
}

.header h1 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
}

.badge {
  font-size: 16px;
  font-weight: 600;
  color: #444;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 15px;
  color: #666;
  margin-bottom: 24px;
  line-height: 1.6;
}

.item {
  font-size: 16px;
}

.item span {
  font-size: 18px;
}

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 20px 0 26px;
}

.service {
  background: #f3f3f3;
  padding: 10px 6px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  transition: transform 0.2s ease, background 0.2s ease;
}

.service:hover {
  background: #eaeaea;
  transform: translateY(-2px);
}

.cta {
  font-size: 18px;
  padding: 16px;
  border-radius: 16px;
}

@media (max-width: 480px) {
  .header h1 {
    font-size: 24px;
  }

  .services {
    grid-template-columns: 1fr;
  }

  .service {
    font-size: 15px;
  }
}

/* Language Switch */
.lang-switch {
  position: fixed;
  top: 18px;
  right: 18px;
  display: flex;
  gap: 8px;
}

html[dir="rtl"] .lang-switch {
  right: auto;
  left: 18px;
}

.lang-switch button {
  border: none;
  background: #eee;
  padding: 6px 10px;
  border-radius: 20px;
  font-size: 12px;
  cursor: pointer;
  transition: 0.2s;
}

.lang-switch button.active,
.lang-switch button:hover {
  background: #222;
  color: #fff;
}

/* Card */
.card {
  background: #fff;
  width: 100%;
  max-width: 380px;
  padding: 28px 22px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.07);
  text-align: center;
}

/* Entrance animation */
.animate {
  animation: fadeUp 0.7s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Header */
.header h1 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #111;
}

.badge {
  font-size: 14px;
  color: #555;
  margin-bottom: 18px;
}

/* Info */
.info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 26px;
}

.item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #333;
  transition: transform 0.2s ease;
}

.item:hover {
  transform: scale(1.02);
}

.item a {
  text-decoration: none;
  color: #111;
}

/* CTA */
.cta {
  display: block;
  padding: 14px;
  background: #25D366;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

/* Text fade */
[data-ar] {
  transition: opacity 0.12s ease;
}
