/* ============================================================
   النخبة للتسويق الرقمي — Premium Saudi Design System
   Navy + Ivory + Gold | RTL | Arabic Fonts
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;900&family=Tajawal:wght@400;500;700&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --background: hsl(40, 33%, 98%);
  --foreground: hsl(220, 50%, 10%);

  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(220, 50%, 10%);

  --primary: hsl(220, 55%, 14%);
  --primary-foreground: hsl(40, 40%, 97%);

  --secondary: hsl(40, 30%, 95%);
  --muted-foreground: hsl(220, 15%, 38%);

  --gold: hsl(42, 55%, 52%);
  --gold-soft: hsl(42, 60%, 88%);
  --gold-deep: hsl(38, 60%, 38%);

  --border: hsl(220, 20%, 88%);
  --radius: 0.85rem;

  --gradient-hero: radial-gradient(ellipse at top right, hsl(220, 55%, 22%, 0.95), hsl(220, 60%, 10%) 60%);
  --gradient-gold: linear-gradient(135deg, hsl(42, 65%, 60%), hsl(38, 60%, 42%));
  --gradient-ivory: linear-gradient(180deg, hsl(40, 33%, 98%), hsl(40, 25%, 94%));

  --shadow-elegant: 0 30px 60px -30px hsl(220, 55%, 14%, 0.25);
  --shadow-gold: 0 20px 50px -20px hsl(42, 55%, 52%, 0.45);
  --shadow-card: 0 10px 30px -15px hsl(220, 50%, 14%, 0.12);

  --transition-smooth: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--background);
  color: var(--foreground);
  font-family: 'Tajawal', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  direction: rtl;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cairo', 'Tajawal', sans-serif;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--primary);
}
a { text-decoration: none; color: inherit; transition: color 0.2s; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ---------- Utility Classes ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 768px) { .container { padding: 0 2rem; } }

.bg-hero { background: var(--gradient-hero); }
.bg-gold-grad { background: var(--gradient-gold); }
.bg-ivory { background: var(--gradient-ivory); }
.text-gold { color: var(--gold); }
.text-gold-deep { color: var(--gold-deep); }

.shadow-elegant { box-shadow: var(--shadow-elegant); }
.shadow-gold { box-shadow: var(--shadow-gold); }
.shadow-card { box-shadow: var(--shadow-card); }

.gold-divider {
  height: 2px;
  width: 56px;
  background: var(--gradient-gold);
  border-radius: 2px;
  margin: 0 auto;
}

.arabesque {
  background-image:
    radial-gradient(circle at 20% 20%, hsl(42, 55%, 52%, 0.08) 0, transparent 35%),
    radial-gradient(circle at 80% 60%, hsl(220, 55%, 14%, 0.06) 0, transparent 40%);
}

.fade-up { animation: fadeUp 0.9s var(--transition-smooth) both; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s var(--transition-smooth);
  white-space: nowrap;
}
.btn-hero {
  background: var(--gradient-gold);
  color: var(--primary);
  box-shadow: 0 4px 20px hsl(42, 55%, 52%, 0.35);
}
.btn-hero:hover { transform: translateY(-2px); box-shadow: 0 8px 30px hsl(42, 55%, 52%, 0.5); }

.btn-outline-gold {
  background: transparent;
  border-color: hsl(42, 55%, 52%, 0.6);
  color: var(--gold);
}
.btn-outline-gold:hover { background: hsl(42, 55%, 52%, 0.1); }

.btn-gold {
  background: var(--gradient-gold);
  color: var(--primary);
  padding: 0.55rem 1.25rem;
  font-size: 0.875rem;
}
.btn-gold:hover { opacity: 0.9; transform: translateY(-1px); }

.btn-lg { padding: 0.9rem 2rem; font-size: 1rem; }
.btn-xl { padding: 1rem 2.25rem; font-size: 1.05rem; }
.btn-full { width: 100%; }
.btn-dark { background: var(--primary); color: var(--primary-foreground); }
.btn-dark:hover { background: hsl(220, 55%, 20%); }

/* ---------- Navbar ---------- */
.nukhba-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: hsl(40, 33%, 98%, 0.70);
  border-bottom: 1px solid hsl(220, 20%, 88%, 0.6);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.navbar-logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--gradient-gold);
  color: var(--primary);
  font-family: 'Cairo', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
}
.navbar-logo-text {
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  color: var(--primary);
}
.navbar-links {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) { .navbar-links { display: flex; } }
.navbar-links a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.2s;
}
.navbar-links a:hover { color: var(--primary); }

.navbar-cta { display: none; }
@media (min-width: 768px) { .navbar-cta { display: block; } }

.navbar-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--primary);
  padding: 0.5rem;
}
@media (min-width: 768px) { .navbar-toggle { display: none; } }

.navbar-mobile {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--card);
}
.navbar-mobile.is-open { display: block; }
.navbar-mobile-inner {
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.navbar-mobile a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  padding: 0.25rem 0;
}

/* ---------- Hero ---------- */
.hero-section {
  position: relative;
  padding-top: 7rem;
  padding-bottom: 5rem;
  background: var(--gradient-hero);
  color: var(--primary-foreground);
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero-section { padding-top: 9rem; padding-bottom: 7rem; }
}
.hero-orb-1 {
  position: absolute;
  top: -8rem; right: -8rem;
  width: 24rem; height: 24rem;
  border-radius: 50%;
  background: hsl(42, 55%, 52%, 0.20);
  filter: blur(80px);
  pointer-events: none;
}
.hero-orb-2 {
  position: absolute;
  bottom: 0; left: 0;
  width: 28rem; height: 28rem;
  border-radius: 50%;
  background: hsl(42, 55%, 52%, 0.10);
  filter: blur(80px);
  pointer-events: none;
}
.hero-content {
  max-width: 768px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  border: 1px solid hsl(42, 55%, 52%, 0.40);
  color: var(--gold);
  font-size: 0.8rem;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: 'Cairo', sans-serif;
  font-size: clamp(2rem, 6vw, 3.75rem);
  font-weight: 900;
  color: var(--primary-foreground);
  line-height: 1.2;
}
.hero-title .gold-text {
  display: block;
  color: var(--gold);
  margin-top: 0.5rem;
}
.hero-desc {
  margin-top: 1.5rem;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: hsl(40, 40%, 97%, 0.80);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}
.hero-btns {
  margin-top: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}
@media (min-width: 640px) { .hero-btns { flex-direction: row; } }
.hero-features {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) { .hero-features { grid-template-columns: repeat(3, 1fr); } }
.hero-feature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: hsl(40, 40%, 97%, 0.85);
}
.hero-feature svg { color: var(--gold); flex-shrink: 0; }

/* ---------- Section Base ---------- */
.section-header {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-title {
  margin-top: 1.25rem;
  font-family: 'Cairo', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--primary);
}
.section-desc {
  margin-top: 1rem;
  color: var(--muted-foreground);
  line-height: 1.8;
}

/* ---------- Services ---------- */
.services-section { padding: 5rem 0; background: var(--gradient-ivory); }
@media (min-width: 768px) { .services-section { padding: 7rem 0; } }
.services-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  padding: 1.75rem;
  border-radius: 1rem;
  background: var(--card);
  border: 1px solid hsl(220, 20%, 88%, 0.6);
  box-shadow: var(--shadow-card);
  transition: all 0.5s var(--transition-smooth);
}
.service-card:hover {
  box-shadow: var(--shadow-elegant);
  transform: translateY(-4px);
}
.service-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: hsl(42, 55%, 52%, 0.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  transition: background 0.3s;
}
.service-card:hover .service-icon { background: hsl(42, 55%, 52%, 0.25); }
.service-icon svg { color: var(--gold-deep); }
.service-title { font-size: 1.2rem; font-weight: 700; color: var(--primary); }
.service-desc { margin-top: 0.75rem; color: var(--muted-foreground); font-size: 0.9rem; line-height: 1.7; }
.service-result {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
}
.service-result .label { color: var(--muted-foreground); }
.service-result .value { font-weight: 700; color: var(--primary); }

/* ---------- Packages ---------- */
.packages-section { padding: 5rem 0; background: var(--gradient-ivory); }
@media (min-width: 768px) { .packages-section { padding: 7rem 0; } }
.packages-grid {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
}
@media (min-width: 1024px) {
  .packages-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid hsl(220, 20%, 88%, 0.6);
  background: var(--card);
  color: var(--foreground);
  box-shadow: var(--shadow-card);
  transition: all 0.5s var(--transition-smooth);
}
.package-card:hover { box-shadow: var(--shadow-elegant); }

.package-card.featured {
  background: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
@media (min-width: 1024px) {
  .package-card.featured { transform: translateY(-1rem) scale(1.03); }
}

.package-badge {
  position: absolute;
  top: -1rem;
  right: 50%; transform: translateX(50%);
  padding: 0.35rem 1rem;
  border-radius: 9999px;
  background: var(--gradient-gold);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: var(--shadow-gold);
  white-space: nowrap;
}
.package-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.package-icon.normal { background: hsl(42, 55%, 52%, 0.15); color: var(--gold-deep); }
.package-icon.featured-icon { background: var(--gradient-gold); color: var(--primary); }

.package-name { font-size: 1.4rem; font-weight: 700; }
.package-tagline { margin-top: 0.5rem; font-size: 0.875rem; line-height: 1.6; }
.package-card.featured .package-tagline { color: hsl(40, 40%, 97%, 0.75); }
.package-card:not(.featured) .package-tagline { color: var(--muted-foreground); }

.package-price-block {
  margin-top: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid;
}
.package-card.featured .package-price-block { border-color: hsl(42, 55%, 52%, 0.30); }
.package-card:not(.featured) .package-price-block { border-color: var(--border); }

.package-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.price-amount { font-size: clamp(2rem, 5vw, 3rem); font-weight: 900; font-family: 'Cairo', sans-serif; }
.price-period { font-size: 0.875rem; }
.package-card.featured .price-period { color: hsl(40, 40%, 97%, 0.70); }
.package-card:not(.featured) .price-period { color: var(--muted-foreground); }

.price-note { margin-top: 0.5rem; font-size: 0.75rem; color: var(--gold); }

.package-features { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; flex: 1; }
.package-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.6;
}
.feature-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-check.normal { background: hsl(42, 55%, 52%, 0.15); color: var(--gold-deep); }
.feature-check.featured-check { background: var(--gradient-gold); color: var(--primary); }
.package-card.featured .package-feature span { color: hsl(40, 40%, 97%, 0.90); }
.package-card:not(.featured) .package-feature span { color: hsl(220, 50%, 10%, 0.85); }

.package-cta { margin-top: 2rem; }

/* ---------- WhyUs ---------- */
.whyus-section {
  position: relative;
  padding: 5rem 0;
  background: var(--primary);
  color: var(--primary-foreground);
  overflow: hidden;
}
@media (min-width: 768px) { .whyus-section { padding: 7rem 0; } }
.whyus-section .section-title { color: var(--primary-foreground); }
.whyus-bg {
  position: absolute; inset: 0;
  opacity: 0.3;
  background-image:
    radial-gradient(circle at 20% 20%, hsl(42, 55%, 52%, 0.08) 0, transparent 35%),
    radial-gradient(circle at 80% 60%, hsl(40, 40%, 97%, 0.06) 0, transparent 40%);
  pointer-events: none;
}
.whyus-grid {
  display: grid;
  gap: 1.5rem;
  position: relative;
}
@media (min-width: 768px) { .whyus-grid { grid-template-columns: repeat(2, 1fr); } }

.why-card {
  padding: 1.75rem;
  border-radius: 1rem;
  border: 1px solid hsl(42, 55%, 52%, 0.20);
  background: hsl(40, 40%, 97%, 0.05);
  backdrop-filter: blur(4px);
  transition: background 0.3s;
}
.why-card:hover { background: hsl(40, 40%, 97%, 0.10); }
.why-card-inner { display: flex; align-items: flex-start; gap: 1rem; }
.why-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--gradient-gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}
.why-title { font-size: 1.2rem; font-weight: 700; color: var(--primary-foreground); }
.why-desc { margin-top: 0.5rem; color: hsl(40, 40%, 97%, 0.80); font-size: 0.9rem; line-height: 1.7; }

/* ---------- Results ---------- */
.results-section { padding: 5rem 0; }
@media (min-width: 768px) { .results-section { padding: 7rem 0; } }
.results-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) { .results-grid { grid-template-columns: repeat(3, 1fr); } }

.result-card {
  padding: 1.75rem;
  border-radius: 1rem;
  background: var(--card);
  border: 1px solid hsl(220, 20%, 88%, 0.6);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s;
}
.result-card:hover { box-shadow: var(--shadow-elegant); }
.result-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: hsl(42, 55%, 52%, 0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-deep);
  margin-bottom: 1.25rem;
}
.result-industry { font-size: 1.05rem; font-weight: 700; color: var(--primary); }
.result-service { font-size: 0.75rem; color: var(--muted-foreground); margin-top: 0.25rem; }
.result-metrics {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.result-metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.result-metric .metric-label { font-size: 0.875rem; color: hsl(220, 50%, 10%, 0.80); }
.result-metric .metric-value {
  font-family: 'Cairo', sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--gold-deep);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.results-cta { margin-top: 3rem; text-align: center; }

/* ---------- Process ---------- */
.process-section { padding: 5rem 0; }
@media (min-width: 768px) { .process-section { padding: 7rem 0; } }
.process-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }

.process-card {
  position: relative;
  padding: 1.75rem;
  border-radius: 1rem;
  background: var(--card);
  border: 1px solid hsl(220, 20%, 88%, 0.6);
  box-shadow: var(--shadow-card);
}
.process-number {
  font-family: 'Cairo', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: hsl(42, 55%, 52%, 0.30);
  line-height: 1;
}
.process-title { margin-top: 1rem; font-size: 1.15rem; font-weight: 700; color: var(--primary); }
.process-desc { margin-top: 0.75rem; color: var(--muted-foreground); font-size: 0.875rem; line-height: 1.7; }

/* ---------- Trust (Stats + Testimonials) ---------- */
.trust-section { padding: 4rem 0 6rem; }
@media (min-width: 768px) { .trust-section { padding: 6rem 0 8rem; } }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-card {
  text-align: center;
  padding: 1.5rem;
  border-radius: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}
.stat-value { font-family: 'Cairo', sans-serif; font-size: clamp(1.6rem, 4vw, 2.25rem); font-weight: 900; color: var(--primary); }
.stat-label { margin-top: 0.5rem; font-size: 0.85rem; color: var(--muted-foreground); }

.testimonials-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  padding: 1.75rem;
  border-radius: 1rem;
  background: var(--card);
  border: 1px solid hsl(220, 20%, 88%, 0.6);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s;
}
.testimonial-card:hover { box-shadow: var(--shadow-elegant); }
.quote-icon { color: var(--gold); margin-bottom: 1rem; }
.testimonial-text { color: hsl(220, 50%, 10%, 0.90); line-height: 1.75; font-size: 0.95rem; }
.testimonial-stars { display: flex; align-items: center; gap: 0.25rem; margin-top: 1.25rem; color: var(--gold); }
.testimonial-footer {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.testimonial-name { font-weight: 700; color: var(--primary); }
.testimonial-role { font-size: 0.75rem; color: var(--muted-foreground); margin-top: 0.2rem; }

/* ---------- Final CTA ---------- */
.cta-section {
  position: relative;
  padding: 5rem 0;
  background: var(--gradient-hero);
  color: var(--primary-foreground);
  overflow: hidden;
}
@media (min-width: 768px) { .cta-section { padding: 7rem 0; } }
.cta-orb-1 {
  position: absolute; top: -5rem; left: 0;
  width: 24rem; height: 24rem;
  border-radius: 50%;
  background: hsl(42, 55%, 52%, 0.15);
  filter: blur(80px); pointer-events: none;
}
.cta-orb-2 {
  position: absolute; bottom: 0; right: 0;
  width: 24rem; height: 24rem;
  border-radius: 50%;
  background: hsl(42, 55%, 52%, 0.10);
  filter: blur(80px); pointer-events: none;
}
.cta-content { max-width: 768px; margin: 0 auto; text-align: center; position: relative; }
.cta-title {
  margin-top: 1.25rem;
  font-family: 'Cairo', sans-serif;
  font-size: clamp(1.7rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--primary-foreground);
  line-height: 1.3;
}
.cta-desc {
  margin-top: 1.25rem;
  font-size: 1.05rem;
  color: hsl(40, 40%, 97%, 0.80);
  line-height: 1.8;
}
.cta-btns {
  margin-top: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}
@media (min-width: 640px) { .cta-btns { flex-direction: row; } }
.cta-contacts {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: hsl(40, 40%, 97%, 0.70);
}
.cta-contact-item { display: flex; align-items: center; gap: 0.5rem; }
.cta-dot { width: 4px; height: 4px; border-radius: 50%; background: hsl(42, 55%, 52%, 0.4); }
@media (max-width: 640px) { .cta-dot { display: none; } }

/* ---------- Footer ---------- */
.nukhba-footer {
  background: var(--primary);
  color: hsl(40, 40%, 97%, 0.80);
  border-top: 1px solid hsl(42, 55%, 52%, 0.20);
}
.footer-inner {
  padding: 2.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-inner { flex-direction: row; justify-content: space-between; text-align: right; }
}
.footer-logo {
  display: flex; align-items: center; gap: 0.5rem;
  color: var(--primary-foreground);
}
.footer-logo-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--gradient-gold);
  color: var(--primary);
  font-family: 'Cairo', sans-serif;
  font-weight: 900;
  font-size: 0.95rem;
}
.footer-logo-text { font-family: 'Cairo', sans-serif; font-weight: 700; }
.footer-copy { font-size: 0.75rem; color: hsl(40, 40%, 97%, 0.60); }

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  transition: all 0.3s;
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37, 211, 102, 0.65); }

/* ---------- WordPress Core Adjustments ---------- */
.wp-block-image { margin: 0; }
.aligncenter { margin-left: auto; margin-right: auto; text-align: center; }
.screen-reader-text {
  border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%);
  height: 1px; margin: -1px; overflow: hidden; padding: 0;
  position: absolute; width: 1px; word-wrap: normal !important;
}
