/* ================================
   Tm Store — Main Stylesheet
   Colors: Orange #E8900A / Black #1a1a1a
   RTL Arabic, Fully Responsive
   ================================ */

:root {
  --orange:       #E8900A;
  --orange-light: #f5a832;
  --orange-dark:  #c97a08;
  --orange-glow:  rgba(232,144,10,0.35);
  --black:        #1a1a1a;
  --black2:       #232323;
  --black3:       #2e2e2e;
  --text:         #1a1a1a;
  --text-muted:   #6b7280;
  --border:       #e5e7eb;
  --white:        #ffffff;
  --bg-light:     #fafafa;
  --wa-green:     #25D366;
  --wa-dark:      #128C7E;
  --radius:       16px;
  --shadow:       0 4px 24px rgba(0,0,0,0.09);
  --shadow-lg:    0 12px 48px rgba(0,0,0,0.16);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Cairo', 'Tajawal', sans-serif;
  direction: rtl;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.65;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Gold text utility */
.gold { color: var(--orange); }

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--wa-green);
  color: white;
  padding: 13px 22px 13px 18px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
  transition: all 0.3s;
  animation: float-wa 3s ease-in-out infinite;
  font-family: 'Cairo', sans-serif;
}
.whatsapp-float svg { width: 22px; height: 22px; flex-shrink: 0; }
.whatsapp-float:hover { background: var(--wa-dark); transform: translateY(-3px) scale(1.04); animation: none; box-shadow: 0 12px 36px rgba(37,211,102,0.65); }
@keyframes float-wa { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; right: 0; left: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 2px solid rgba(232,144,10,0.18);
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 20px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 10px;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-main { font-size: 18px; font-weight: 900; color: var(--black); }
.logo-sub  { font-size: 11px; color: var(--text-muted); font-weight: 500; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; right: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--orange); }
.nav-links a:hover::after { width: 100%; }

.btn-wa-nav {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--wa-green);
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.25s;
  box-shadow: 0 3px 12px rgba(37,211,102,0.38);
  white-space: nowrap;
}
.btn-wa-nav:hover { background: var(--wa-dark); transform: translateY(-2px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}
.hamburger span { display: block; width: 24px; height: 2.5px; background: var(--black); border-radius: 4px; transition: all 0.3s; }

/* Mobile menu */
.mobile-menu { display: none; background: white; border-top: 2px solid rgba(232,144,10,0.2); padding: 14px 20px 20px; }
.mobile-menu.open { display: block; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a { display: block; padding: 12px 15px; font-size: 16px; font-weight: 600; border-radius: 10px; transition: background 0.2s; }
.mobile-menu a:hover { background: #fff8ee; color: var(--orange); }
.mobile-menu .mobile-wa { background: var(--wa-green); color: white; text-align: center; margin-top: 8px; }
.mobile-menu .mobile-wa:hover { background: var(--wa-dark); }

/* ===== TICKER ===== */
.ticker-wrap {
  background: linear-gradient(90deg, var(--black), var(--black2));
  color: white;
  padding: 10px 0;
  overflow: hidden;
  margin-top: 70px;
  border-bottom: 2px solid var(--orange);
}
.ticker {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: ticker 28s linear infinite;
}
.ticker span { font-size: 13.5px; font-weight: 600; white-space: nowrap; }
.ticker span:nth-child(odd) { color: var(--orange-light); }
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ===== HERO ===== */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
  background: linear-gradient(150deg, #fffbf3 0%, #ffffff 55%, #fff5e0 100%);
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-blob { position: absolute; border-radius: 50%; filter: blur(90px); }
.blob1 { width: 500px; height: 500px; background: var(--orange); opacity: 0.1; top: -150px; left: -100px; }
.blob2 { width: 350px; height: 350px; background: var(--black); opacity: 0.06; bottom: -80px; right: 80px; }
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(232,144,10,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(232,144,10,0.05) 1px, transparent 1px);
  background-size: 50px 50px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text { animation: fadeInRight 0.7s ease both; }

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: white;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px var(--orange-glow);
}

.hero-title {
  font-size: 58px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  font-family: 'Tajawal', sans-serif;
}
.hero-title .line1 { display: block; font-size: 68px; color: var(--black); }
.hero-title .line2 { display: block; color: var(--black); }
.hero-title .line3 { display: block; color: var(--orange); font-size: 38px; }

.hero-desc {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 480px;
  line-height: 1.85;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--wa-green);
  color: white;
  padding: 15px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.3s;
  box-shadow: 0 6px 22px rgba(37,211,102,0.42);
  font-family: 'Cairo', sans-serif;
}
.btn-primary:hover { background: var(--wa-dark); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(37,211,102,0.55); }
.btn-primary.large { padding: 17px 34px; font-size: 16px; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: white;
  color: var(--orange);
  padding: 15px 26px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  border: 2px solid var(--orange);
  transition: all 0.3s;
  font-family: 'Cairo', sans-serif;
}
.btn-secondary:hover { background: var(--orange); color: white; transform: translateY(-3px); box-shadow: 0 8px 24px var(--orange-glow); }

/* Stats */
.hero-stats { display: flex; align-items: center; gap: 28px; }
.stat { text-align: center; }
.stat-num { font-size: 30px; font-weight: 900; color: var(--orange); font-family: 'Tajawal', sans-serif; }
.stat-plus { font-size: 18px; font-weight: 900; color: var(--black); }
.stat-label { display: block; font-size: 12px; color: var(--text-muted); font-weight: 600; margin-top: 3px; }
.stat-div { width: 1px; height: 38px; background: var(--border); }

/* ===== PHONE MOCKUP — visible on ALL screens ===== */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInLeft 0.7s 0.2s ease both;
}

.phone-mockup { position: relative; }

.phone-frame {
  width: 250px;
  height: 500px;
  background: linear-gradient(160deg, #1a1a1a, #2e2e2e);
  border-radius: 38px;
  padding: 13px;
  box-shadow: 0 28px 70px rgba(0,0,0,0.45), inset 0 0 0 2px rgba(255,255,255,0.07), 0 0 0 6px rgba(232,144,10,0.12);
  position: relative;
  z-index: 2;
}

.phone-screen {
  background: linear-gradient(160deg, #1a1a1a, #2e2e2e 50%, #1a1100);
  border-radius: 27px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px solid rgba(232,144,10,0.2);
}

.phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px; height: 20px;
  background: #0a0a0a;
  border-radius: 14px;
}

.screen-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 18px;
}

.screen-logo-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-top: 28px;
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  padding: 6px;
}

.screen-phones { display: flex; gap: 14px; align-items: flex-end; }

.mini-phone {
  background: linear-gradient(160deg, #2a2a1a, #1a1a0a);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5px;
  border: 1px solid rgba(232,144,10,0.2);
}
.mini-phone.iphone { width: 50px; height: 92px; }
.mini-phone.samsung { width: 44px; height: 82px; }
.mp-screen {
  background: linear-gradient(160deg, #3a3010, #282005);
  border-radius: 7px;
  flex: 1;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.mp-screen::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(45deg, transparent 40%, rgba(232,144,10,0.08) 50%, transparent 60%);
  animation: shimmer 2.5s infinite;
}
.mp-btn { width: 11px; height: 11px; border-radius: 50%; background: rgba(232,144,10,0.3); margin-top: 4px; }

.screen-tag {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: white;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 4px 14px var(--orange-glow);
  animation: pulse-tag 2.2s ease-in-out infinite;
}

.phone-glow {
  position: absolute; bottom: -55px; left: 50%; transform: translateX(-50%);
  width: 180px; height: 90px;
  background: var(--orange);
  border-radius: 50%; filter: blur(50px); opacity: 0.35; z-index: 1;
}

.floating-badge {
  position: absolute;
  background: white;
  padding: 8px 13px;
  border-radius: 28px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0,0,0,0.14);
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 3;
  white-space: nowrap;
  color: var(--text);
}
.badge-apple  { top: 50px; right: -65px; animation: float1 3s ease-in-out infinite; }
.badge-samsung { bottom: 110px; right: -75px; animation: float2 3.5s ease-in-out infinite; }
.badge-deal   { top: 185px; left: -80px; background: linear-gradient(135deg, var(--orange), var(--orange-light)); color: white; animation: float3 2.8s ease-in-out infinite; }

@keyframes float1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes float2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }
@keyframes float3 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
@keyframes shimmer { 0%{transform:translateX(-100%)} 100%{transform:translateX(100%)} }
@keyframes pulse-tag { 0%,100%{transform:scale(1)} 50%{transform:scale(1.05)} }

/* ===== BRANDS ===== */
.brands-section {
  padding: 38px 0 18px;
  background: white;
  border-bottom: 1px solid var(--border);
}
.brands-label {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 22px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.brands-marquee { overflow: hidden; padding: 8px 0; }
.brands-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: ticker 22s linear infinite;
}

.brand-item {
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 10px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s;
  min-width: 120px;
  height: 52px;
}
.brand-item:hover { border-color: var(--orange); background: #fff8ee; box-shadow: 0 4px 14px var(--orange-glow); }

.brand-item img {
  height: 22px;
  width: auto;
  max-width: 90px;
  object-fit: contain;
  display: block;
  /* Show logo in grayscale, orange on hover */
  filter: grayscale(1) opacity(0.75);
  transition: filter 0.25s;
}
.brand-item:hover img { filter: grayscale(0) opacity(1); }
.brand-item span { display: none; }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 55px; }

.section-badge {
  display: inline-block;
  background: #fff3db;
  color: var(--orange-dark);
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
  border: 1.5px solid rgba(232,144,10,0.25);
}
.section-badge.alt {
  background: #1a1a1a;
  color: var(--orange-light);
  border-color: rgba(232,144,10,0.3);
}

.section-title { font-size: 38px; font-weight: 900; color: var(--black); margin-bottom: 14px; font-family: 'Tajawal', sans-serif; }
.section-desc { font-size: 15px; color: var(--text-muted); max-width: 520px; margin: 0 auto; line-height: 1.85; }

/* ===== CATEGORIES ===== */
.categories { padding: 88px 0; background: var(--bg-light); }

.categories-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
  margin-bottom: 46px;
}

.cat-card {
  background: white;
  border-radius: var(--radius);
  padding: 26px;
  border: 2px solid transparent;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.3s;
  box-shadow: var(--shadow);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.cat-card::before {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 80px; height: 80px;
  background: radial-gradient(circle, var(--orange-glow), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 50%;
}
.cat-card:hover { border-color: var(--orange); transform: translateY(-5px); box-shadow: 0 16px 40px var(--orange-glow); }
.cat-card:hover::before { opacity: 1; }

.cat-card.cat-big {
  grid-column: 1 / 3;
  background: linear-gradient(135deg, var(--black) 0%, var(--black2) 100%);
  color: white;
  padding: 34px;
  border-color: transparent;
}
.cat-card.cat-big:hover { border-color: var(--orange); box-shadow: 0 20px 50px rgba(232,144,10,0.3); }
.cat-card.cat-big h3 { color: white; font-size: 22px; }
.cat-card.cat-big p  { color: rgba(255,255,255,0.7); }
.cat-card.cat-big .cat-arrow { color: var(--orange); }

.cat-icon-wrap {
  width: 60px; height: 60px;
  background: #fff3db;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cat-big .cat-icon-wrap {
  background: rgba(232,144,10,0.2);
  width: 68px; height: 68px;
}
.cat-svg { width: 30px; height: 30px; color: var(--orange); }
.cat-big .cat-svg { color: var(--orange-light); }

.cat-info { flex: 1; }
.cat-info h3 { font-size: 16px; font-weight: 800; color: var(--black); margin-bottom: 4px; }
.cat-info p  { font-size: 13px; color: var(--text-muted); font-weight: 500; }

.cat-brand-logos {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.cbrand {
  height: 16px;
  width: auto;
  max-width: 60px;
  object-fit: contain;
  opacity: 0.9;
}
.white-logo { filter: brightness(0) invert(1); }

.cat-arrow { font-size: 20px; color: var(--text-muted); transition: transform 0.2s, color 0.2s; }
.cat-card:hover .cat-arrow { transform: translateX(-5px); color: var(--orange); }

.cta-center { text-align: center; }

/* ===== FEATURES ===== */
.features {
  padding: 88px 0;
  background: linear-gradient(160deg, var(--black) 0%, var(--black2) 100%);
  position: relative;
  overflow: hidden;
}
.features::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 15% 50%, rgba(232,144,10,0.15) 0%, transparent 50%),
              radial-gradient(circle at 85% 30%, rgba(232,144,10,0.08) 0%, transparent 40%);
}
.features .section-header { position: relative; }
.features .section-title { color: white; }
.features .section-desc  { color: rgba(255,255,255,0.55); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  position: relative;
}

.feature-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(232,144,10,0.15);
  border-radius: var(--radius);
  padding: 32px 26px;
  text-align: center;
  transition: all 0.3s;
  animation: fadeInUp 0.6s var(--delay,0s) ease both;
  backdrop-filter: blur(8px);
}
.feature-card:hover {
  background: rgba(232,144,10,0.08);
  border-color: rgba(232,144,10,0.45);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.feat-icon { font-size: 40px; margin-bottom: 16px; display: block; }
.feature-card h3 { font-size: 17px; font-weight: 800; color: white; margin-bottom: 10px; }
.feature-card p  { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.8; }

/* ===== HOW TO ORDER ===== */
.how-order { padding: 88px 0; background: white; }

.steps-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.step {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 34px 26px;
  text-align: center;
  flex: 1;
  min-width: 220px;
  max-width: 290px;
  border: 2px solid transparent;
  transition: all 0.3s;
  position: relative;
}
.step:hover { border-color: var(--orange); box-shadow: 0 12px 36px var(--orange-glow); transform: translateY(-5px); }

.step-num {
  position: absolute;
  top: -18px; right: 50%; transform: translateX(50%);
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 900;
  box-shadow: 0 4px 14px var(--orange-glow);
}
.step-icon { font-size: 42px; margin-bottom: 14px; margin-top: 10px; }
.step h3 { font-size: 17px; font-weight: 800; color: var(--black); margin-bottom: 10px; }
.step p  { font-size: 14px; color: var(--text-muted); line-height: 1.75; }

.step-arrow { font-size: 26px; color: var(--orange); font-weight: 900; }

/* ===== REVIEWS ===== */
.reviews { padding: 88px 0; background: var(--bg-light); }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.review-card {
  background: white;
  border-radius: var(--radius);
  padding: 30px;
  border: 2px solid transparent;
  box-shadow: var(--shadow);
  transition: all 0.3s;
}
.review-card:hover { border-color: var(--orange); transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.review-card.featured {
  background: linear-gradient(160deg, var(--black), var(--black2));
  transform: scale(1.03);
}
.review-card.featured:hover { border-color: var(--orange); box-shadow: 0 20px 50px rgba(232,144,10,0.25); transform: scale(1.03) translateY(-5px); }

.review-stars { font-size: 17px; margin-bottom: 14px; }
.review-text { font-size: 14px; line-height: 1.85; color: var(--text-muted); margin-bottom: 18px; font-style: italic; }
.featured .review-text { color: rgba(255,255,255,0.8); }

.review-author { display: flex; align-items: center; gap: 11px; }
.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; font-weight: 900; flex-shrink: 0;
}
.featured .author-avatar { background: rgba(232,144,10,0.35); }
.review-author strong { display: block; font-size: 14px; font-weight: 800; color: var(--black); }
.featured .review-author strong { color: white; }
.review-author span { font-size: 12px; color: var(--text-muted); }
.featured .review-author span { color: rgba(255,255,255,0.55); }

/* ===== FINAL CTA ===== */
.final-cta {
  padding: 88px 0;
  background: linear-gradient(160deg, var(--black), #111100);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.final-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(232,144,10,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; }
.cta-logo {
  width: 90px; height: 90px;
  object-fit: contain;
  margin: 0 auto 24px;
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
  padding: 8px;
  box-shadow: 0 0 40px var(--orange-glow);
  animation: glow-logo 2.5s ease-in-out infinite;
}
@keyframes glow-logo { 0%,100%{box-shadow:0 0 30px var(--orange-glow)} 50%{box-shadow:0 0 60px rgba(232,144,10,0.6)} }

.cta-content h2 { font-size: 42px; font-weight: 900; color: white; margin-bottom: 14px; font-family: 'Tajawal', sans-serif; }
.cta-content p  { font-size: 16px; color: rgba(255,255,255,0.65); margin-bottom: 38px; max-width: 480px; margin-left: auto; margin-right: auto; }

.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn-wa-big {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: var(--wa-green);
  color: white;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 800;
  transition: all 0.3s;
  box-shadow: 0 8px 28px rgba(37,211,102,0.48);
  font-family: 'Cairo', sans-serif;
  animation: pulse-wa 2.5s ease-in-out infinite;
}
.btn-wa-big:hover { background: var(--wa-dark); transform: translateY(-4px); box-shadow: 0 14px 38px rgba(37,211,102,0.6); animation: none; }

.btn-call-big {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: white;
  padding: 18px 32px;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 800;
  border: 2px solid rgba(232,144,10,0.5);
  transition: all 0.3s;
  font-family: 'Cairo', sans-serif;
}
.btn-call-big:hover { background: rgba(232,144,10,0.15); border-color: var(--orange); color: var(--orange-light); transform: translateY(-4px); }

@keyframes pulse-wa { 0%,100%{box-shadow:0 8px 28px rgba(37,211,102,0.48)} 50%{box-shadow:0 8px 45px rgba(37,211,102,0.75)} }

/* ===== FOOTER ===== */
.footer { background: #0f0f0f; color: rgba(255,255,255,0.82); padding: 58px 0 0; }

.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 46px; margin-bottom: 46px; }

.footer-brand .logo-main { color: white; }
.footer-brand .logo-sub  { color: rgba(255,255,255,0.4); }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.45); margin-top: 14px; line-height: 1.85; }

.footer-links h4, .footer-contact h4 { font-size: 15px; font-weight: 800; color: var(--orange-light); margin-bottom: 18px; }

.footer-links ul { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-links a:hover { color: var(--orange-light); }

.footer-wa {
  display: flex; align-items: center; gap: 9px;
  font-size: 15px; font-weight: 700;
  color: var(--wa-green);
  margin-bottom: 12px;
  transition: color 0.2s;
}
.footer-wa:hover { color: #40e07a; }
.footer-phone {
  display: flex; align-items: center; gap: 9px;
  font-size: 14px; color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-phone:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(232,144,10,0.15);
  padding: 18px 0;
  text-align: center;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.3); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInRight { from{opacity:0;transform:translateX(40px)} to{opacity:1;transform:translateX(0)} }
@keyframes fadeInLeft  { from{opacity:0;transform:translateX(-40px)} to{opacity:1;transform:translateX(0)} }
@keyframes fadeInUp    { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 1024px) {
  .hero-title { font-size: 46px; }
  .hero-title .line1 { font-size: 54px; }
  .hero-title .line3 { font-size: 32px; }
  .phone-frame { width: 220px; height: 435px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* Mobile — keep phone mockup visible but smaller */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .btn-wa-nav { display: none; }
  .hamburger { display: flex; }
  .ticker-wrap { margin-top: 62px; }

  .hero { padding: 40px 0 50px; min-height: auto; }
  .hero-content {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  /* Phone mockup stays visible on mobile */
  .hero-visual { display: flex; }
  .phone-frame { width: 190px; height: 380px; border-radius: 30px; }
  .phone-screen { border-radius: 22px; }
  .screen-logo-img { width: 60px; height: 60px; margin-top: 22px; }
  .screen-tag { font-size: 11px; padding: 6px 12px; }
  .badge-apple  { top: 30px; right: -50px; font-size: 12px; padding: 6px 10px; }
  .badge-samsung { bottom: 80px; right: -58px; font-size: 12px; padding: 6px 10px; }
  .badge-deal   { top: 140px; left: -62px; font-size: 12px; padding: 6px 10px; }

  .hero-title { font-size: 36px; }
  .hero-title .line1 { font-size: 42px; }
  .hero-title .line3 { font-size: 26px; }
  .hero-desc { font-size: 14.5px; margin: 0 auto 24px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; gap: 18px; }

  .categories-grid { grid-template-columns: 1fr; gap: 13px; }
  .cat-card.cat-big { grid-column: 1; }

  .features-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .feature-card { padding: 22px 16px; }

  .steps-wrap { flex-direction: column; align-items: stretch; }
  .step-arrow { transform: rotate(90deg); text-align: center; }
  .step { max-width: 100%; }

  .reviews-grid { grid-template-columns: 1fr; }
  .review-card.featured { transform: none; }
  .review-card.featured:hover { transform: translateY(-5px); }

  .section-title { font-size: 26px; }
  .cta-content h2 { font-size: 28px; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }

  .whatsapp-float { bottom: 18px; left: 18px; padding: 11px 16px 11px 14px; font-size: 14px; }
  .btn-wa-big { padding: 15px 26px; font-size: 15px; }
  .btn-call-big { padding: 15px 22px; font-size: 15px; }
}

/* Small phones */
@media (max-width: 440px) {
  .hero-title { font-size: 30px; }
  .hero-title .line1 { font-size: 34px; }
  .hero-title .line3 { font-size: 22px; }
  .features-grid { grid-template-columns: 1fr; }
  .phone-frame { width: 160px; height: 320px; border-radius: 26px; }
  .badge-apple, .badge-samsung, .badge-deal { display: none; }
  .hero-stats { gap: 12px; }
  .stat-num { font-size: 24px; }
}

/* Map Section */
.map-section {
  padding: 80px 0;
  background: var(--dark);
}

.map-wrapper {
  display: block;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-top: 32px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 60px rgba(212,175,55,0.25);
}

.map-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 24px;
  transition: background 0.3s ease;
}

.map-wrapper:hover .map-overlay {
  background: rgba(0,0,0,0.15);
}

.map-overlay-btn {
  background: var(--gold);
  color: #000;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(212,175,55,0.5);
  transition: transform 0.3s ease;
}

.map-wrapper:hover .map-overlay-btn {
  transform: scale(1.05);
}
