:root {
  --primary: #ffc107;
  --primary-deep: #f4b400;
  --dark: #1c1c1c;
  --muted: #6c757d;
  --soft-bg: #fff9df;
  --card-bg: #ffffff;
}

body {
  font-family: 'Cairo', sans-serif;
  color: var(--dark);
  background: #fffef8;
}

.py-lg-6 { padding-top: 5rem; padding-bottom: 5rem; }

.navbar-brand { color: var(--dark) !important; }
.nav-link { font-weight: 700; color: #333 !important; }
.nav-link.active, .nav-link:hover { color: #000 !important; }

.brand-badge {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), #ffe082);
  color: #111;
  margin-inline-end: 8px;
  font-weight: 800;
}

.hero-section {
  background: radial-gradient(circle at top right, #fff1a8, #fffef8 55%);
}

.hero-chip, .section-title span, .screen-label {
  display: inline-block;
  background: #fff3c4;
  color: #6f5600;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: .95rem;
  font-weight: 700;
}

.phone-mockup, .cta-panel, .content-box, .service-card, .features-box {
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,193,7,.25);
  box-shadow: 0 20px 50px rgba(0,0,0,.08);
  border-radius: 28px;
}

.phone-mockup { padding: 24px; }
.screen-card {
  background: linear-gradient(180deg, #1f1f1f, #343434);
  color: #fff;
  border-radius: 24px;
  padding: 28px;
  min-height: 420px;
}

.mini-service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.mini-service-grid div {
  background: rgba(255,255,255,.1);
  border-radius: 18px;
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 700;
}

.stat-box, .service-card, .cta-panel, .features-box, .content-box {
  padding: 24px;
}

.stat-box {
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(255,193,7,.2);
  text-align: center;
}
.stat-box h3 { font-weight: 800; margin-bottom: 6px; }
.stat-box p { margin: 0; color: var(--muted); }

.bg-light-yellow { background: var(--soft-bg); }
.section-title h2, .section-title h1 { margin-top: 12px; }
.section-title p { max-width: 720px; margin: 14px auto 0; }

.service-card {
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(0,0,0,.12);
}
.service-icon {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: #fff3c4;
  font-size: 1.6rem;
  margin-bottom: 16px;
}
.service-card h3 { font-size: 1.2rem; font-weight: 800; }
.service-card p { color: var(--muted); margin-bottom: 0; }

.cta-panel h2 { max-width: 520px; }
.store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 14px 20px;
  border-radius: 16px;
  background: var(--primary);
  color: #111;
  text-decoration: none;
  font-weight: 800;
}
.store-btn.dark {
  background: #111;
  color: #fff;
}
.store-btn:hover { opacity: .92; }

.feature-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.feature-item:last-child { border-bottom: 0; }
.feature-item span { color: var(--muted); }

.site-footer {
  background: #111;
  color: #fff;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #fff; text-decoration: none; opacity: .85; }
.footer-links a:hover { opacity: 1; }

.inner-page { min-height: calc(100vh - 180px); }
.highlight-box { background: linear-gradient(180deg, #fff9df, #fff); }
.form-control {
  min-height: 48px;
  border-radius: 14px;
  border-color: rgba(0,0,0,.12);
}
textarea.form-control { min-height: 140px; }
.btn-warning {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #111;
  font-weight: 800;
}

.ltr-mode { direction: ltr; }
.ltr-mode .brand-badge { margin-right: 8px; margin-left: 0; }

@media (max-width: 991.98px) {
  .mini-service-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-section { text-align: center; }
}

@media (max-width: 575.98px) {
  .mini-service-grid { grid-template-columns: 1fr; }
  .store-btn { width: 100%; }
}
