/* ══════════════════════════════════════════
   ZOWNA Marketing — Refactored CSS
   Production-ready | Clean | DRY
══════════════════════════════════════════ */

/* ──────────────────────────────────────
   BASE: Variables & Reset
────────────────────────────────────── */
:root {
  --navy:      #0B132B;
  --navy-80:   rgba(11,19,43,0.8);
  --navy-10:   rgba(11,19,43,0.06);
  --navy-05:   rgba(11,19,43,0.03);
  --neon:      #00F5D4;
  --neon-mid:  #00c9ad;
  --neon-10:   rgba(0,245,212,0.10);
  --neon-20:   rgba(0,245,212,0.20);
  --neon-40:   rgba(0,245,212,0.40);
  --white:     #FFFFFF;
  --off:       #F7F9FB;
  --gray-100:  #F1F4F8;
  --gray-200:  #E4E9F0;
  --gray-400:  #9BA8BA;
  --gray-600:  #5A677A;
  --gray-800:  #2D3748;
  --r-sm: 14px;
  --r-md: 22px;
  --r-lg: 32px;
  --r-xl: 48px;
  --shadow-sm:   0 2px 12px rgba(11,19,43,0.06);
  --shadow-md:   0 8px 40px rgba(11,19,43,0.10);
  --shadow-lg:   0 20px 80px rgba(11,19,43,0.14);
  --shadow-neon: 0 8px 40px rgba(0,245,212,0.25);
}

*, *::before, *::after { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}

html { 
  scroll-behavior: smooth; 
  scroll-snap-type: y proximity; 
}

body {
  font-family: 'Cairo', sans-serif;
  background: var(--white);
  color: var(--navy);
  overflow-x: hidden;
  line-height: 1;
}

/* ──────────────────────────────────────
   SCROLLBAR
────────────────────────────────────── */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--neon); border-radius: 2px; }

/* ──────────────────────────────────────
   SHARED UTILITIES
────────────────────────────────────── */
.section-container {
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
  padding: 0;
}

.sec-head {
  text-align: center;
  margin-bottom: 56px;
}

.sec-label {
  display: inline-flex;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--neon-mid);
  background: var(--neon-10);
  border: 1px solid var(--neon-20);
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.sec-label.inv {
  color: var(--neon);
  background: rgba(0,245,212,0.08);
  border-color: rgba(0,245,212,0.2);
}

.sec-title {
  font-size: clamp(26px, 3.5vw, 52px);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: ;
  color: var(--navy);
  margin-bottom: 14px;
}

.sec-title.inv { 
  color: var(--white); 
}

.sec-sub {
  font-size: 16px;
  color: var(--gray-600);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.75;
}

.sec-sub.inv { 
  color: rgba(255,255,255,0.55); 
}

.u-neon {
  position: relative;
  display: inline-block;
}

.u-neon::after {
  content: '';
  position: absolute;
  bottom: 1px; 
  right: 0; 
  left: 0;
  height: 5px;
  background: var(--neon);
  border-radius: 3px;
  z-index: -1;
  opacity: 0.5;
}

/* ──────────────────────────────────────
   BUTTONS
────────────────────────────────────── */
.btn-fill,
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-fill {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-md);
  border: none;
}

.btn-fill:hover {
  background: var(--neon-mid);
  color: var(--navy);
  box-shadow: var(--shadow-neon);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--gray-200);
}

.btn-outline:hover {
  border-color: var(--navy);
  background: var(--navy-10);
  transform: translateY(-2px);
}

.btn-price {
  display: block;
  text-align: center;
  padding: 13px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid var(--gray-200);
  color: var(--navy);
}

.btn-price:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.btn-price.hot-btn {
  background: var(--neon);
  color: var(--navy);
  border-color: var(--neon);
  box-shadow: var(--shadow-neon);
}

.btn-price.hot-btn:hover {
  background: var(--neon-mid);
  border-color: var(--neon-mid);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,245,212,0.35);
}

.btn-results {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  background: var(--neon);
  color: var(--navy);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  box-shadow: var(--shadow-neon);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-results:hover {
  transform: translateY(-2px);
}

.wa-big {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--neon);
  color: var(--navy);
  padding: 20px 52px;
  border-radius: 100px;
  font-weight: 900;
  font-size: 20px;
  text-decoration: none;
  box-shadow: 0 0 60px rgba(0,245,212,0.35), var(--shadow-lg);
  transition: all 0.3s ease;
  margin-bottom: 40px;
  border: none;
  cursor: pointer;
}

.wa-big:hover {
  background: #00e5c5;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 0 90px rgba(0,245,212,0.5), var(--shadow-lg);
}

/* ──────────────────────────────────────
   NAVBAR
────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;

  width: 92%;
  max-width: 1200px;
  height: 72px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;

  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 999px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.08);

  transition: all 0.4s ease;
}

#navbar.solid {
  background: rgba(255,255,255,0.2);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  border: 1px solid rgba(0,0,0,0.08);
}

.logo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  flex-shrink: 0;
  width: 160px;
  height: 40px;
}



.logo-icon {
  height: 67px;
  width: 67px;
  transition: opacity 0.55s cubic-bezier(.4,0,.2,1), transform 0.55s cubic-bezier(.4,0,.2,1);
  position: absolute;
  right: 0;
  opacity: 0;
  transform: scale(0.5) rotate(-30deg);
  color: #0B132B;
}

.logo-wrap.logo-morphed .logo-wordmark { 
  opacity: 0; 
  transform: scale(1.15) rotate(5deg); 
}

.logo-wrap.logo-morphed .logo-icon { 
  opacity: 1; 
  transform: scale(1) rotate(0deg); 
}

.logo-wrap.logo-morphed {
  width: 40px;
}

/* Nav Links */
.nav-list {
  list-style: none;
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-list li a {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-600);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.25s;
  position: relative;
}

.nav-list li a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--neon);
  border-radius: 1px;
  transition: width 0.3s ease;
}

.nav-list li a:hover { 
  color: var(--navy); 
}

.nav-list li a:hover::after { 
  width: 100%; 
}

.nav-cta-btn {
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: 11px 26px;
  border-radius: 50px;
  font-weight: 700 !important;
  font-size: 14px !important;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease !important;
}

.nav-cta-btn::after { 
  display: none !important; 
}

.nav-cta-btn:hover {
  background: var(--neon-mid) !important;
  color: var(--navy) !important;
  box-shadow: var(--shadow-neon) !important;
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ──────────────────────────────────────
   MOBILE NAV
────────────────────────────────────── */

/* =========================
   MOBILE NAV BASE
========================= */
.mobile-nav {
  position: fixed;
  top: 98px;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);

  width: 92%;
  max-width: 1200px;

  padding: 18px;

  display: flex;
  flex-direction: column;
  gap: 14px;

  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);

  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 22px; /* 🔥 كبسولة */

  box-shadow: 0 12px 35px rgba(0,0,0,0.10);

  opacity: 0;
  pointer-events: none;

  transition: all 0.35s ease;

  z-index: 9999;
}

/* OPEN STATE */
.mobile-nav.open {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* =========================
   ROWS
========================= */
.mobile-nav .row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}

.mobile-nav .row.single {
  justify-content: center;
}

/* =========================
   LINKS
========================= */
.mobile-nav a {
  flex: 1;
  text-align: center;

  padding: 12px 16px;

  border-radius: 999px;

  font-size: 14px;
  font-weight: 600;

  text-decoration: none;

  color: #0B132B;

  background: rgba(255,255,255,0.35);
  border: 1px solid rgba(255,255,255,0.35);

  backdrop-filter: blur(30px);

  transition: 0.25s ease;

  white-space: nowrap;
}

/* hover */
.mobile-nav a:hover {
  background: rgba(0,245,212,0.12);
  transform: translateY(-2px);
}
/* ──────────────────────────────────────
   PAGE INDICATOR DOTS
────────────────────────────────────── */
.page-dots {
  position: fixed;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pd {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gray-200);
  cursor: pointer;
  transition: all 0.3s;
}

.pd.active {
  background: var(--neon-mid);
  transform: scale(1.4);
}

/* ──────────────────────────────────────
   PAGES
────────────────────────────────────── */
.page {
  min-height: 100vh;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 100px 6%;
}

/* ──────────────────────────────────────
   HERO
────────────────────────────────────── */
#pg-hero {
  background: var(--white);
  align-items:center;
  text-align:center;
}

.hero-big-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 600px;
  min-height:auto;
  margin-bottom: 15px;
  animation: fade-up 0.9s ease both;
}
.logo-svg {
  width: 1800px;
  height: auto;
  display: block;
  transition: transform 0.6s ease, filter 0.6s ease;
  color: var(--navy);
}

.hero-big-logo:hover .logo-svg {
  transform: scale(1.05);
  filter: drop-shadow(0 10px 30px rgba(0,245,212,0.2));
}


.live-dot {
  width: 6px;
  height: 6px;
  background: var(--neon-mid);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--neon);
  animation: blink 1.8s ease infinite;
}

.hero-h1 {
  font-size: clamp(38px, 5.5vw, 80px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 22px;
  animation: fade-up 0.9s ease 0.18s both;
}

.hero-h1 span {
  display: block;
  margin-bottom: 18px;
}

.hero-h1 span:last-child {
  margin-bottom: 0;
}

.hero-type-row {
  font-size: clamp(18px, 2.5vw, 28px);
  color: var(--gray-600);
  font-weight: 500;
  margin-bottom: 36px;
  height: 40px;
  animation: fade-up 0.9s ease 0.26s both;
}

.hero-type-row strong {
  color: var(--neon-mid);
  font-weight: 800;
  border-left: 2.5px solid var(--neon-mid);
  padding-left: 5px;
  animation: cursor-blink 0.75s step-end infinite;
}

.hero-desc {
  max-width: 560px;
  margin: 0 auto 44px;
  font-size: 17px;
  line-height: 1.85;
  color: var(--gray-600);
  animation: fade-up 0.9s ease 0.34s both;
}

.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fade-up 0.9s ease 0.42s both;
}

.btn-fill {
  font-weight: 800;
}

/* Hero Decorations */
.hero-deco {
  position: absolute;
  pointer-events: none;
}

.deco-ring {
  width: 600px;
  height: 600px;
  border: 1px solid var(--neon-10);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.deco-ring-2 {
  width: 900px;
  height: 900px;
  border: 1px solid rgba(11,19,43,0.04);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


/*حركة الخلفية*/

#bgCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: #ffffff;
}
/* ──────────────────────────────────────
   SERVICES
────────────────────────────────────── */
#pg-services {
  background: var(--off);
  padding: 100px 6% 80px;
  align-items: stretch;
}

.srv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.srv-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 36px 30px;
  border: 1.5px solid var(--gray-200);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.srv-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, var(--neon-10) 0%, transparent 70%);
  border-radius: 0 var(--r-lg) 0 80px;
  transition: all 0.4s ease;
}

.srv-card:hover {
  border-color: var(--neon-mid);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.srv-card:hover::before { 
  width: 160px; 
  height: 160px; 
}

.srv-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--r-sm);
  background: var(--neon-10);
  border: 1.5px solid var(--neon-20);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
  transition: all 0.3s;
  color: var(--navy);
}

.srv-card:hover .srv-icon-wrap {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.srv-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}

.srv-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
}

.srv-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--neon-mid);
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.3s;
}

.srv-card:hover .srv-arrow { 
  opacity: 1; 
  transform: translateX(0); 
}

/* ──────────────────────────────────────
   RESULTS
────────────────────────────────────── */
#pg-results {
  background: var(--navy);
  padding: 100px 6%;
  color: var(--white);
}

.res-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.res-left {
  text-align: right;
}

.res-left .sec-title { 
  color: var(--white); 
}

.res-left .sec-sub { 
  color: rgba(255,255,255,0.55); 
  max-width: none; 
  text-align: right; 
}

.res-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin-top: 16px;
}

.res-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.res-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.res-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,245,212,0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s;
}

.res-card:hover { 
  border-color: rgba(0,245,212,0.3); 
  transform: translateY(-4px); 
}

.res-card:hover::after { 
  opacity: 1; 
}

.res-val {
  font-family: 'Outfit', sans-serif;
  font-size: 54px;
  font-weight: 900;
  color: var(--neon);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}

.res-lbl {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.res-desc-small {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  margin-top: 6px;
  line-height: 1.5;
}

/* ──────────────────────────────────────
   PRICING
────────────────────────────────────── */
#pg-pricing {
  background: var(--white);
  padding: 100px 6%;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1140px;
  margin: 0 auto;
}

.price-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  transition: all 0.35s ease;
}

.price-card.hot {
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: var(--shadow-lg), 0 0 0 4px rgba(0,245,212,0.15);
  transform: scale(1.03);
}

.price-card:not(.hot):hover {
  border-color: var(--gray-800);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.price-card.hot:hover { 
  transform: scale(1.03) translateY(-4px); 
}

.hot-tag {
  display: inline-block;
  background: var(--neon);
  color: var(--navy);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
  width: fit-content;
}

.price-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}

.price-card.hot .price-name { 
  color: var(--white); 
}

.price-amount {
  font-family: 'Outfit', sans-serif;
  font-size: 54px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.04em;
  line-height: 1;
}

.price-card.hot .price-amount { 
  color: var(--neon); 
}

.price-amount sub {
  font-size: 20px;
  font-weight: 600;
  color: var(--gray-400);
  vertical-align: super;
  letter-spacing: 0;
}

.price-card.hot .price-amount sub { 
  color: rgba(0,245,212,0.6); 
}

.price-amount-custom {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.04em;
}

.price-amount-custom span {
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-400);
  font-family: Cairo, sans-serif;
  letter-spacing: 0;
}

.price-period {
  font-size: 13px;
  color: var(--gray-400);
  margin-bottom: 24px;
  margin-top: 4px;
}

.price-card.hot .price-period { 
  color: rgba(255,255,255,0.4); 
}

.price-feats {
  list-style: none;
  flex: 1;
  margin-bottom: 28px;
}

.price-feats li {
  font-size: 14px;
  color: var(--gray-600);
  padding: 9px 0;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 9px;
}

.price-feats li:last-child { 
  border-bottom: none; 
}

.price-card.hot .price-feats li { 
  color: rgba(255,255,255,0.7); 
  border-bottom-color: rgba(255,255,255,0.07); 
}

.price-feats li::before {
  content: '✓';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--neon-10);
  color: var(--neon-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 900;
  flex-shrink: 0;
}

.price-card.hot .price-feats li::before {
  background: rgba(0,245,212,0.15);
  color: var(--neon);
}

/* ──────────────────────────────────────
   WHY WEBSITE
────────────────────────────────────── */
#pg-why {
  background: var(--off);
  padding: 100px 6%;
}

.section-why {
  max-width: 1000px;
}

.why-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 0 auto;
  width: 100%;
}

.why-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 36px 30px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.35s ease;
}

.why-card:hover {
  border-color: var(--neon-mid);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.why-num {
  font-family: 'Outfit', sans-serif;
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
  min-width: 52px;
  color: var(--gray-200);
}

.why-body h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.why-body p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ──────────────────────────────────────
   CONTACT
────────────────────────────────────── */
#pg-contact {
  background: var(--navy);
  padding: 100px 6%;
  color: var(--white);
  position: relative;
}

.contact-z {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.04;
  pointer-events: none;
}

.contact-z svg {
  width: 500px;
  height: 500px;
}

.contact-box {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.contact-highlight {
  color: var(--neon);
}

.socials-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.soc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  backdrop-filter: blur(8px);
}

.soc-btn:hover {
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

/* ──────────────────────────────────────
   FOOTER
────────────────────────────────────── */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255,255,255,0.3);
  font-size: 13px;

  position: relative;
  z-index: 10;
  width: 100%;
  box-sizing: border-box;
}

.footer-logo svg {
  height: 20px;
  opacity: 0.3;
  fill: white;
}

.footer-link {
  color: var(--neon);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--neon-mid);
}

/* SVG Symbols Container */
.svg-symbols {
  display: none;
}
/* ──────────────────────────────────────
   SCROLL REVEAL & ANIMATIONS
────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.in { 
  opacity: 1; 
  transform: translateY(0); 
}

@keyframes fade-up {
  from { 
    opacity: 0; 
    transform: translateY(22px); 
  }
  to { 
    opacity: 1; 
    transform: translateY(0); 
  }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

@keyframes cursor-blink {
  50% { border-color: transparent; }
}

@keyframes scroll-bob {
  0%, 100% { 
    transform: translateY(0); 
    opacity: 1; 
  }
  70% { 
    transform: translateY(8px); 
    opacity: 0; 
  }
}

/* ──────────────────────────────────────
   RESPONSIVE
────────────────────────────────────── */
@media (max-width: 1024px) {
  .srv-grid { 
    grid-template-columns: repeat(2, 1fr); 
  }
  
  .price-grid { 
    grid-template-columns: repeat(2, 1fr); 
  }
  
  .price-card.hot { 
    transform: none; 
  }
  
  .res-inner { 
    grid-template-columns: 1fr; 
  }
  
  .res-left { 
    text-align: center; 
  }
  
  .res-left .sec-sub { 
    text-align: center; 
  }
}

@media (max-width: 768px) {
  html { 
    scroll-snap-type: none; 
  }
  
  .nav-list { 
    display: none; 
  }
  
  .hamburger { 
    display: flex; 
  }
  
  .srv-grid { 
    grid-template-columns: 1fr; 
  }
  
  .price-grid { 
    grid-template-columns: 1fr; 
  }
  
  .price-card.hot { 
    transform: none; 
  }
  
  .why-wrap { 
    grid-template-columns: 1fr; 
  }
  
  .res-cards { 
    grid-template-columns: 1fr 1fr; 
  }
  
  .logo-svg { 
    width: 100%; 
    max-width: 380px; 
  }
  
  footer { 
    flex-direction: column; 
    gap: 10px; 
    text-align: center; 
  }
  
  .page-dots { 
    display: none; 
  }
}

/* ===== Mobile + Safari Fix ===== */
.sec-label,
.hero-tag,
.label,
.inv.sec-label,
.sec-label.inv {
  direction: rtl;
  unicode-bidi: plaintext;

  letter-spacing: 0 !important;
  text-transform: none !important;

  font-family: 'Cairo', sans-serif;

  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;

  word-spacing: normal;
  white-space: nowrap;
}