/* ========================================
   OzLab — style.css
   Font: Cairo (Google Fonts)
   Theme: Black + Teal
======================================== */

:root {
  --teal:      #00D4C8;
  --teal-dark: #00A89E;
  --teal-dim:  #00D4C820;
  --teal-mid:  #00D4C850;
  --black:     #050A0A;
  --black2:    #0A1212;
  --black3:    #0F1A1A;
  --card:      #0D1F1F;
  --text:      #E8F5F5;
  --muted:     #7AA8A8;
  --border:    #00D4C818;

  --font-main: 'Cairo', sans-serif;
  --font-mono: 'Space Mono', monospace;
}

/* ── RESET ── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  font-weight: 400;
  background: var(--black);
  color: var(--text);
  overflow-x: hidden;
}

/* ── NOISE TEXTURE ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ════════════════════════════════════════
   NAVBAR
════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, rgba(5,10,10,0.95), transparent);
  backdrop-filter: blur(10px);
}

.logo {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 2px;
}
.logo span { color: var(--text); }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--teal); }

.nav-cta {
  background: var(--teal) !important;
  color: var(--black) !important;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 800 !important;
  transition: all 0.3s !important;
}
.nav-cta:hover {
  background: var(--teal-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px var(--teal-mid);
}

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 60px 80px;
}

/* Animated grid */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0%   { transform: translateY(0); }
  100% { transform: translateY(60px); }
}

/* Glowing orb */
.hero::after {
  content: '';
  position: absolute;
  top: 20%; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--teal-dim) 0%, transparent 70%);
  pointer-events: none;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
  50%       { opacity: 1;   transform: translateX(-50%) scale(1.1); }
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-dim);
  border: 1px solid var(--teal-mid);
  color: var(--teal);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 32px;
  letter-spacing: 1px;
  animation: fadeDown 0.8s ease both;
}

.badge-dot {
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.2; }
}

.hero h1 {
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 24px;
  animation: fadeDown 0.8s ease 0.1s both;
}
.hero h1 .teal { color: var(--teal); }

.hero p {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 48px;
  font-weight: 400;
  animation: fadeDown 0.8s ease 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeDown 0.8s ease 0.3s both;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--teal);
  color: var(--black);
  padding: 16px 36px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  font-family: var(--font-main);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}
.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px var(--teal-mid);
}

.btn-secondary {
  background: transparent;
  color: var(--teal);
  padding: 16px 36px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid var(--teal-mid);
  font-family: var(--font-main);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}
.btn-secondary:hover {
  background: var(--teal-dim);
  border-color: var(--teal);
  transform: translateY(-2px);
}

/* ════════════════════════════════════════
   STATS BAR
════════════════════════════════════════ */
.stats-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--black2);
  padding: 32px 60px;
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.stat { text-align: center; }

.stat-num {
  font-family: var(--font-mono);
  font-size: 32px;
  font-weight: 700;
  color: var(--teal);
  display: block;
}
.stat-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin-top: 4px;
}

/* ════════════════════════════════════════
   SECTIONS SHARED
════════════════════════════════════════ */
section {
  padding: 100px 60px;
  position: relative;
  z-index: 1;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--teal);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 16px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.8;
  max-width: 560px;
}

.section-header { margin-bottom: 64px; }

/* ════════════════════════════════════════
   FEATURES
════════════════════════════════════════ */
#features { background: var(--black2); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 120px; height: 120px;
  background: radial-gradient(circle at top right, var(--teal-dim), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.feature-card:hover {
  border-color: var(--teal-mid);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,212,200,0.08);
}
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 52px; height: 52px;
  background: var(--teal-dim);
  border: 1px solid var(--teal-mid);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.feature-card p {
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.8;
}

/* ════════════════════════════════════════
   PLANS
════════════════════════════════════════ */
#plans { background: var(--black); }

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.plan-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  transition: all 0.4s;
}
.plan-card.pro {
  border-color: var(--teal-mid);
  background: linear-gradient(135deg, var(--card) 0%, #0A2525 100%);
}
.plan-card.pro::before {
  content: 'الأكثر طلباً';
  position: absolute;
  top: -14px; right: 32px;
  background: var(--teal);
  color: var(--black);
  font-size: 12px;
  font-weight: 800;
  font-family: var(--font-main);
  padding: 4px 16px;
  border-radius: 100px;
}
.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(0,212,200,0.1);
}

.plan-name {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--teal);
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.plan-title {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 24px;
}
.plan-divider {
  height: 1px;
  background: var(--border);
  margin: 24px 0;
}

.plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}
.plan-feature .check { color: var(--teal); font-size: 16px; margin-top: 1px; flex-shrink: 0; }
.plan-feature .cross { color: #444;       font-size: 16px; margin-top: 1px; flex-shrink: 0; }
.plan-feature span   { line-height: 1.5; }

.plan-btn {
  display: block;
  text-align: center;
  margin-top: 32px;
  padding: 14px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  font-family: var(--font-main);
  transition: all 0.3s;
}
.plan-btn.outline {
  border: 1px solid var(--teal-mid);
  color: var(--teal);
}
.plan-btn.outline:hover { background: var(--teal-dim); }
.plan-btn.filled {
  background: var(--teal);
  color: var(--black);
}
.plan-btn.filled:hover {
  background: var(--teal-dark);
  box-shadow: 0 8px 32px var(--teal-mid);
}

/* ════════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════════ */
#how { background: var(--black2); }

.how-wrapper {
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
}
.how-text { max-width: 380px; }

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 700px;
}

.step {
  display: flex;
  gap: 32px;
  position: relative;
}
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 20px;
  top: 52px;
  bottom: -32px;
  width: 1px;
  background: linear-gradient(to bottom, var(--teal-mid), transparent);
}

.step-num {
  width: 42px; height: 42px;
  border: 1px solid var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--teal);
  flex-shrink: 0;
  background: var(--black);
  position: relative;
  z-index: 1;
}

.step-content { padding-bottom: 48px; }
.step-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.step-content p {
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.8;
}

/* ════════════════════════════════════════
   CONTACT
════════════════════════════════════════ */
#contact { background: var(--black); }

.contact-wrapper {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 60px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.contact-wrapper::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--teal-dim), transparent 70%);
  pointer-events: none;
}

.contact-wrapper h2 {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 12px;
  position: relative;
}
.contact-wrapper > p {
  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 40px;
  position: relative;
}

.contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--teal-dim);
  border: 1px solid var(--teal-mid);
  color: var(--teal);
  padding: 16px 32px;
  border-radius: 12px;
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 40px;
  transition: all 0.3s;
  direction: ltr;
  position: relative;
}
.contact-phone:hover {
  background: var(--teal-mid);
  transform: scale(1.02);
  box-shadow: 0 12px 40px var(--teal-dim);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  font-family: var(--font-main);
  border: 1px solid var(--border);
  color: var(--muted);
  background: var(--black2);
  transition: all 0.3s;
}
.social-btn:hover {
  border-color: var(--teal-mid);
  color: var(--teal);
  transform: translateY(-2px);
}
.social-btn svg {
  width: 18px; height: 18px;
  fill: currentColor;
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
footer {
  border-top: 1px solid var(--border);
  padding: 32px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--black2);
  flex-wrap: wrap;
  gap: 16px;
}
footer p {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}
.footer-country {
  font-family: var(--font-mono);
  font-size: 12px !important;
  color: var(--teal) !important;
}

/* ════════════════════════════════════════
   ANIMATIONS
════════════════════════════════════════ */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 768px) {
  nav          { padding: 16px 24px; }
  .nav-links   { display: none; }
  section      { padding: 60px 24px; }
  .hero        { padding: 100px 24px 60px; }
  .stats-bar   { padding: 24px; gap: 40px; }
  footer       { padding: 24px; flex-direction: column; text-align: center; }
  .contact-wrapper { padding: 40px 24px; }
  .how-wrapper { flex-direction: column; gap: 40px; }
}

/* ════════════════════════════════════════
   GIFT BANNER
════════════════════════════════════════ */
#gift {
  background: var(--black2);
  padding: 60px;
}

.gift-banner {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(135deg, #0A2525 0%, var(--card) 50%, #0A2525 100%);
  border: 1px solid var(--teal-mid);
  border-radius: 20px;
  padding: 40px 48px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.gift-banner::before {
  content: '';
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--teal-dim), transparent 70%);
  pointer-events: none;
}

.gift-icon {
  font-size: 52px;
  flex-shrink: 0;
  animation: swing 2s ease-in-out infinite;
}

@keyframes swing {
  0%, 100% { transform: rotate(-8deg); }
  50%       { transform: rotate(8deg); }
}

.gift-text {
  flex: 1;
  min-width: 200px;
  position: relative;
}

.gift-text h3 {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 8px;
  color: var(--text);
}

.gift-text p {
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.7;
}

.gift-highlight {
  color: var(--teal);
  font-weight: 800;
}

@media (max-width: 768px) {
  #gift { padding: 24px; }
  .gift-banner { padding: 28px 24px; justify-content: center; text-align: center; }
}
