:root {
  --primary-emerald: #059669;
  --primary-light: #10b981;
  --primary-soft: #ecfdf5;
  --teal-accent: #0d9488;
  --dark-slate: #0f172a;
  --body-slate: #334155;
  --muted-slate: #64748b;
  --light-border: #e2e8f0;

  --font-arabic:
    "Cairo", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-english:
    "Outfit", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  --transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-card:
    0 16px 40px rgba(15, 23, 42, 0.07), 0 4px 12px rgba(5, 150, 105, 0.05);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  background-color: #ffffff;
}

body {
  background-color: #ffffff;
  background-image:
    radial-gradient(at 15% 15%, rgba(16, 185, 129, 0.06) 0px, transparent 55%),
    radial-gradient(at 85% 85%, rgba(13, 148, 136, 0.05) 0px, transparent 55%);
  color: var(--dark-slate);
  font-family: var(--font-arabic);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow-x: hidden;
  line-height: 1.6;
  width: 100%;
}

body.lang-en {
  font-family: var(--font-english);
  direction: ltr;
}

body.lang-ar {
  font-family: var(--font-arabic);
  direction: rtl;
}

/* Background Particle Canvas */
#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

/* Outer Wrapper */
.coming-soon-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 860px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem 1.25rem;
  margin: 0 auto;
}

/* Top Bar */
.simple-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.5rem;
  width: 100%;
  gap: 1rem;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.alpha-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 12px;
  padding: 4px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.12);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.company-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark-slate);
  line-height: 1.2;
}

.sub-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-emerald);
}

.btn-lang {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: var(--dark-slate);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-lang:hover {
  border-color: var(--primary-emerald);
  color: var(--primary-emerald);
  background: var(--primary-soft);
}

/* Main Card */
.simple-card {
  background: #ffffff;
  border: 1.5px solid rgba(16, 185, 129, 0.22);
  border-radius: 24px;
  padding: 2.75rem 2.25rem;
  box-shadow: var(--shadow-card);
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: auto 0;
}

.simple-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #059669, #0d9488, #0284c7);
}

/* Live Status Badge */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: #f0fdf4;
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--primary-emerald);
  margin-bottom: 1.25rem;
}

.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: var(--primary-emerald);
  box-shadow: 0 0 0 rgba(5, 150, 105, 0.7);
  animation: pulse-ring 1.8s infinite;
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.7);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(5, 150, 105, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(5, 150, 105, 0);
  }
}

/* Massive Coming Soon Section */
.hero-coming-soon {
  margin-bottom: 1.25rem;
}

.big-coming-title {
  font-family: var(--font-english);
  font-size: clamp(2.6rem, 7vw, 4.5rem);
  font-weight: 900;
  letter-spacing: 2px;
  line-height: 1.1;
  background: linear-gradient(135deg, #059669 0%, #0d9488 50%, #0284c7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
}

.arabic-coming-title {
  font-size: clamp(2rem, 5.5vw, 3.2rem);
  font-weight: 900;
  color: var(--dark-slate);
  margin-top: 2px;
  letter-spacing: 1px;
}

/* Description */
.hero-desc {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--body-slate);
  max-width: 650px;
  margin: 0 auto 2.25rem auto;
  line-height: 1.7;
}

.hero-desc strong {
  color: var(--dark-slate);
  font-weight: 800;
}

/* Direct Contacts Section */
.contact-section {
  border-top: 1px solid var(--light-border);
  padding-top: 1.75rem;
}

.contact-heading {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark-slate);
  margin-bottom: 1.25rem;
}

.quick-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.quick-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.9rem 1.1rem;
  background: #ffffff;
  border: 1.5px solid var(--light-border);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
  text-align: right;
}

body.lang-en .quick-btn {
  text-align: left;
}

.quick-btn i {
  font-size: 1.4rem;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  transition: var(--transition);
}

.quick-btn.btn-whatsapp i {
  background: #dcfce7;
  color: #16a34a;
}
.quick-btn.btn-phone i {
  background: #e0f2fe;
  color: #0284c7;
}
.quick-btn.btn-email i {
  background: #fef3c7;
  color: #d97706;
}
.quick-btn.btn-web i {
  background: #ede9fe;
  color: #7c3aed;
}

.quick-btn:hover {
  transform: translateY(-3px);
  border-color: var(--primary-emerald);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.12);
}

.quick-btn.btn-whatsapp:hover i {
  background: #25d366;
  color: #ffffff;
}
.quick-btn.btn-phone:hover i {
  background: #0284c7;
  color: #ffffff;
}
.quick-btn.btn-email:hover i {
  background: #d97706;
  color: #ffffff;
}
.quick-btn.btn-web:hover i {
  background: #7c3aed;
  color: #ffffff;
}

.btn-text {
  display: flex;
  flex-direction: column;
}

.btn-text .label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted-slate);
  text-transform: uppercase;
}

.btn-text .val {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--dark-slate);
}

.dir-ltr {
  direction: ltr;
  display: inline-block;
}

/* Footer */
.simple-footer {
  text-align: center;
  padding-top: 1.5rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--muted-slate);
}

/* ========================================================
   MOBILE PHONE OPTIMIZATION (Responsiveness)
   ======================================================== */
@media (max-width: 680px) {
  .coming-soon-wrapper {
    padding: 1rem 0.85rem;
    min-height: 100vh;
  }

  .simple-card {
    padding: 1.75rem 1.15rem;
    border-radius: 18px;
  }

  .big-coming-title {
    font-size: 2.3rem;
  }

  .arabic-coming-title {
    font-size: 1.9rem;
  }

  .hero-desc {
    font-size: 0.92rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }

  .quick-contact-grid {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .quick-btn {
    padding: 0.75rem 0.9rem;
    gap: 10px;
  }

  .quick-btn i {
    width: 36px;
    height: 36px;
    font-size: 1.15rem;
  }

  .btn-text .val {
    font-size: 0.88rem;
  }

  .alpha-logo {
    width: 40px;
    height: 40px;
  }

  .company-name {
    font-size: 0.9rem;
  }

  .sub-name {
    font-size: 0.74rem;
  }
}
