/* ===== GLOBAL DESIGN SYSTEM ===== */
:root {
  --accent: #FFFFFF;
  --accent-light: #EAF4FF;
  --accent-soft: #BFD7FF;
  --navy: #071B36;
  --navy-mid: #0D2B55;
  --navy-light: #123B73;
  --cream: #FFFFFF;
  --text-light: #EAF4FF;
  --text-muted: #BFD0E8;
  --white: #FFFFFF;
  --danger-soft: rgba(255,255,255,0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Naskh Arabic', serif;
  background: var(--navy);
  color: var(--cream);
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,0.04) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23FFFFFF' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

a { color: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* ===== NAVBAR ===== */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 5%;
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s ease;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 20px;
}

.nav-logo {
  font-family: 'Noto Kufi Arabic', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--accent);
  text-decoration: none;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 22px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-family: 'Noto Kufi Arabic', sans-serif;
  font-size: 0.86rem;
  font-weight: 500;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active { color: var(--accent); }

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  color: var(--navy);
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-family: 'Noto Kufi Arabic', sans-serif;
  font-weight: 700;
  font-size: 0.86rem;
  flex-shrink: 0;
  transition: opacity 0.2s;
  direction: ltr;
}

.nav-phone:hover { opacity: 0.9; }

.nav-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img {
  height: 48px;
  width: auto;
  display: block;
}

.footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-logo img {
  height: 86px;
  width: auto;
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 768px) {
  .nav-logo img { height: 40px; }
  .footer-logo img { height: 74px; }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 5% 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.97) 40%, rgba(18,32,64,0.85) 100%);
  z-index: 1;
}

.hero-img {
  position: absolute;
  inset: 0;
  background-image: url('https://lh3.googleusercontent.com/VbMh2KtDt7FFvXHTcc1tba1wyoZVp-OfpdQuT80gLBdv5Q2ooj8CzC22GwGMwaEmCroDZj_I6-fqTepe7A=s0');
  background-size: cover;
  background-position: center;
  z-index: 0;
  filter: saturate(0.5) brightness(0.4);
}

.hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, transparent 60%, rgba(255,255,255,0.05) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-badge,
.section-tag,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-light);
  font-family: 'Noto Kufi Arabic', sans-serif;
}

.hero-badge {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.85rem;
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease both;
}

.hero-badge::before,
.eyebrow::before { content: '✦'; color: var(--accent); }

h1 {
  font-family: 'Noto Kufi Arabic', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.1s both;
}

h1 span,
.gradient-text {
  display: block;
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc,
.page-desc {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.9;
  max-width: 690px;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-cta,
.inline-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.btn-primary,
.btn-secondary,
.btn-navy {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  border-radius: 8px;
  text-decoration: none;
  font-family: 'Noto Kufi Arabic', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  color: var(--navy);
  box-shadow: 0 4px 24px rgba(255,255,255,0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,255,255,0.4);
}

.btn-secondary {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--cream);
  font-weight: 500;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--accent);
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.15);
  animation: fadeInUp 0.8s ease 0.4s both;
}

.stat-item { text-align: center; }

.stat-num {
  font-family: 'Noto Kufi Arabic', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--accent);
  display: block;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ===== PAGE HEADER ===== */
.page-hero {
  position: relative;
  z-index: 1;
  padding: 140px 5% 78px;
  background:
    linear-gradient(135deg, rgba(10,22,40,0.98), rgba(18,32,64,0.93)),
    radial-gradient(circle at 15% 20%, rgba(255,255,255,0.13), transparent 32%);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.breadcrumbs {
  font-family: 'Noto Kufi Arabic', sans-serif;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.breadcrumbs a {
  color: var(--accent);
  text-decoration: none;
}

.page-hero h1 {
  margin-bottom: 18px;
}

.page-hero .page-desc {
  margin-bottom: 0;
}

/* ===== SECTIONS COMMON ===== */
section,
.page-section {
  position: relative;
  z-index: 1;
  padding: 90px 5%;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

h2 {
  font-family: 'Noto Kufi Arabic', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.65rem);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 16px;
}

h3 {
  font-family: 'Noto Kufi Arabic', sans-serif;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ===== CARDS / GRIDS ===== */
.services-section,
.alt-section {
  background: var(--navy-mid);
}

.services-grid,
.cards-grid,
.steps-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card,
.content-card,
.step-card,
.review-card,
.faq-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 32px 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before,
.content-card::before,
.step-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent), transparent);
  opacity: 0.08;
  border-radius: 0 12px 0 60px;
  transition: all 0.3s;
}

.service-card:hover,
.content-card:hover,
.step-card:hover,
.review-card:hover {
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.04);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.22);
}

.service-icon,
.card-icon,
.contact-icon,
.step-num {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  margin-bottom: 20px;
}

.service-card h3,
.content-card h3,
.step-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--cream);
}

.service-card p,
.content-card p,
.step-card p,
.rich-text p,
.rich-text li {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.9;
}

/* ===== RICH CONTENT ===== */
.rich-text {
  max-width: 920px;
  margin: 0 auto;
}

.rich-text h2,
.rich-text h3 {
  margin-top: 32px;
}

.rich-text p {
  margin-bottom: 18px;
}

.rich-text ul {
  padding-right: 22px;
  margin-bottom: 24px;
}

.notice-box {
  max-width: 1000px;
  margin: 32px auto 0;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 12px;
  padding: 22px 26px;
  color: var(--text-light);
  line-height: 1.85;
}

/* ===== REVIEWS ===== */
.reviews-section {
  background: var(--navy);
}

.reviews-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.review-stars {
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 0.97rem;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 20px;
}

.review-author {
  font-family: 'Noto Kufi Arabic', sans-serif;
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 18px;
  border-radius: 30px;
}

.rating-num {
  font-family: 'Noto Kufi Arabic', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--accent);
}

.rating-stars { color: var(--accent); }

.rating-count {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 950px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.faq-item {
  padding: 0;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: 0;
  color: var(--cream);
  padding: 24px 26px;
  font-family: 'Noto Kufi Arabic', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-align: right;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.faq-question::after {
  content: '+';
  color: var(--accent);
  font-size: 1.45rem;
  line-height: 1;
  flex-shrink: 0;
}

.faq-item.active .faq-question::after {
  content: '−';
}

.faq-answer {
  display: none;
  padding: 0 26px 24px;
  color: var(--text-muted);
  line-height: 1.9;
  font-size: 0.98rem;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ===== CTA STRIP ===== */
.cta-strip {
  background: linear-gradient(135deg, var(--accent-soft), var(--accent));
  padding: 56px 5%;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-strip h2 {
  color: var(--navy);
  margin-bottom: 8px;
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.cta-strip p {
  color: rgba(10,22,40,0.76);
  margin-bottom: 28px;
}

.btn-navy,
.cta-strip .btn-navy {
  background: var(--navy);
  color: var(--accent);
  direction: ltr;
}

.btn-navy:hover { transform: scale(1.03); }

/* ===== CONTACT ===== */
.contact-section {
  background: var(--navy-mid);
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 {
  text-align: right;
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 30px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-bottom: 0;
}

.contact-item-title {
  font-family: 'Noto Kufi Arabic', sans-serif;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-item-val {
  font-weight: 600;
  color: var(--cream);
  font-size: 1rem;
  text-decoration: none;
}

.contact-item-val:hover { color: var(--accent); }

.hours-grid { display: grid; gap: 6px; }

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: var(--text-light);
  gap: 18px;
}

.hours-day { color: var(--text-muted); }

.map-container {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
  height: 360px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.map-link {
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top:14px;
  padding:12px 22px;
  background:rgba(255,255,255,0.1);
  border:1px solid rgba(255,255,255,0.25);
  border-radius:8px;
  color:var(--accent);
  text-decoration:none;
  font-family:'Noto Kufi Arabic',sans-serif;
  font-size:0.9rem;
  font-weight:600;
  transition:background 0.2s;
}

.map-link:hover { background:rgba(255,255,255,0.2); }

/* ===== FORM ===== */
.contact-form {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 28px;
}

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.form-row label {
  font-family: 'Noto Kufi Arabic', sans-serif;
  color: var(--text-light);
  font-size: 0.88rem;
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: var(--cream);
  border-radius: 8px;
  padding: 13px 14px;
  font-family: 'Noto Naskh Arabic', serif;
  font-size: 1rem;
  outline: none;
}

.form-row textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  border-color: rgba(255,255,255,0.55);
}

.form-note {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

/* ===== SOCIAL ===== */
.social-section {
  background: var(--navy);
  padding: 60px 5%;
  text-align: center;
  position: relative;
  z-index: 1;
}

.social-title {
  font-family: 'Noto Kufi Arabic', sans-serif;
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

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

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.2s;
  font-family: 'Noto Kufi Arabic', sans-serif;
}

.social-link:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.3);
  color: var(--accent);
}

/* ===== FOOTER ===== */
footer {
  background: rgba(5, 12, 22, 0.95);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 40px 5%;
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer-logo {
  font-family: 'Noto Kufi Arabic', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 12px;
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 9999;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  color: var(--navy);
  padding: 14px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'Noto Kufi Arabic', sans-serif;
  font-weight: 800;
  box-shadow: 0 8px 30px rgba(0,0,0,0.35);
}

.whatsapp-float:hover { transform: translateY(-2px); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== MOBILE ===== */
.mobile-menu-btn { display: none; }

@media (max-width: 920px) {
  .nav-links { display: none; }
  .mobile-menu-btn {
    display: inline-flex;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.04);
    color: var(--accent);
    font-size: 1.35rem;
    width: 44px;
    height: 42px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
  }
  .nav-links.open {
    display: grid;
    position: absolute;
    top: 72px;
    right: 5%;
    left: 5%;
    background: rgba(10, 22, 40, 0.98);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    padding: 18px;
    gap: 14px;
  }
  .nav-phone { display: none; }
}

@media (max-width: 768px) {
  section,
  .page-section { padding: 70px 5%; }

  .hero {
    min-height: auto;
    padding-top: 120px;
  }

  .hero-stats {
    gap: 28px;
    flex-wrap: wrap;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info h2 { text-align: center; }

  .hours-row {
    flex-direction: column;
    gap: 2px;
  }

  .btn-primary,
  .btn-secondary,
  .btn-navy {
    width: 100%;
    justify-content: center;
  }

  .whatsapp-float {
    left: 16px;
    bottom: 16px;
    padding: 12px 18px;
  }
}

/* ===== SEO / LEGAL / SERVICE PAGE ENHANCEMENTS ===== */
.service-links-grid{max-width:1200px;margin:36px auto 0;display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:16px}
.service-link-card{display:block;text-decoration:none;background:rgba(255,255,255,.035);border:1px solid rgba(255,255,255,.13);border-radius:12px;padding:22px;transition:all .2s ease}
.service-link-card:hover{transform:translateY(-3px);border-color:rgba(255,255,255,.42);background:rgba(255,255,255,.055)}
.service-link-card strong{display:block;font-family:'Noto Kufi Arabic',sans-serif;color:var(--accent);margin-bottom:8px}.service-link-card span{display:block;color:var(--text-muted);line-height:1.75;font-size:.94rem}
.business-data{max-width:1100px;margin:0 auto;background:rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.14);border-radius:12px;padding:28px}
.business-data-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(210px,1fr));gap:18px;margin-top:22px}.business-data-item{padding:18px;border-radius:10px;background:rgba(255,255,255,.025);border:1px solid rgba(255,255,255,.055)}
.business-data-item span{display:block;color:var(--text-muted);font-family:'Noto Kufi Arabic',sans-serif;font-size:.82rem;margin-bottom:6px}.business-data-item strong{color:var(--cream);line-height:1.75}
.legal-links{display:flex;gap:14px;justify-content:center;flex-wrap:wrap;margin-top:20px}.legal-links a{color:var(--text-muted);text-decoration:none;font-size:.85rem}.legal-links a:hover{color:var(--accent)}
.check-list{list-style:none;padding-right:0!important}.check-list li{position:relative;padding-right:28px;margin-bottom:12px}.check-list li::before{content:"✓";position:absolute;right:0;color:var(--accent);font-weight:800}
img{max-width:100%;height:auto}@media (prefers-reduced-motion:reduce){html{scroll-behavior:auto}*,*::before,*::after{animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important}}

/* ===== FINAL SEO / CONVERSION ENHANCEMENTS ===== */
.nav-logo img{object-fit:contain}
.blog-grid{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:22px}
.blog-card{display:block;text-decoration:none;border:1px solid rgba(255,255,255,.13);border-radius:12px;padding:26px;background:rgba(255,255,255,.03);transition:all .22s}
.blog-card:hover{border-color:rgba(255,255,255,.42);background:rgba(255,255,255,.055);transform:translateY(-3px)}
.blog-card span{color:var(--accent);font-family:'Noto Kufi Arabic',sans-serif;font-size:.82rem}
.blog-card strong{display:block;color:var(--cream);font-family:'Noto Kufi Arabic',sans-serif;font-size:1.08rem;margin:12px 0}
.blog-card p{color:var(--text-muted);line-height:1.8}
.related-links{margin-top:34px;padding:24px;border-radius:12px;border:1px solid rgba(255,255,255,.14);background:rgba(255,255,255,.025)}
.related-links h3{margin-bottom:14px;color:var(--accent)}
.related-links a{display:inline-flex;margin:6px 0 6px 12px;color:var(--text-light);text-decoration:none;border-bottom:1px solid rgba(255,255,255,.25)}
.related-links a:hover{color:var(--accent)}
.tracking-note{direction:ltr;text-align:left;background:#0b1220;color:#e5e7eb;padding:18px;border-radius:10px;overflow:auto;font-size:.88rem}

/* ===== BLUE & WHITE OVERRIDES ===== */
.btn-primary,
.nav-phone,
.whatsapp-float {
  background: var(--white) !important;
  color: var(--navy) !important;
  box-shadow: 0 8px 28px rgba(255,255,255,0.18) !important;
}

.btn-primary:hover,
.nav-phone:hover,
.whatsapp-float:hover {
  box-shadow: 0 10px 34px rgba(255,255,255,0.26) !important;
}

.btn-secondary,
.social-link,
.service-link-card,
.blog-card,
.content-card,
.service-card,
.review-card,
.faq-item,
.contact-form,
.business-data {
  border-color: rgba(255,255,255,0.14) !important;
}

.cta-strip {
  background: linear-gradient(135deg, #EAF4FF, #FFFFFF) !important;
}

.cta-strip h2,
.cta-strip p {
  color: var(--navy) !important;
}

.btn-navy,
.cta-strip .btn-navy {
  background: var(--navy) !important;
  color: var(--white) !important;
}

.gradient-text,
h1 span {
  background: none !important;
  -webkit-text-fill-color: var(--white) !important;
  color: var(--white) !important;
}

.hero-badge {
  display: none !important;
}

/* ===== STORE LOCATOR ===== */
.locator-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 28px;
  align-items: start;
}

.locator-map {
  height: 520px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.03);
}

.locator-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.locator-panel {
  display: grid;
  gap: 16px;
}

.locator-card {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  padding: 22px;
}

.locator-card h3 {
  color: var(--white);
  margin-bottom: 12px;
}

.locator-card p,
.locator-card li {
  color: var(--text-muted);
  line-height: 1.85;
}

.locator-actions {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.locator-actions a,
.locator-actions button {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 10px;
  padding: 13px 15px;
  background: rgba(255,255,255,0.06);
  color: var(--white);
  font-family: 'Noto Kufi Arabic', sans-serif;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
}

.locator-actions a.primary,
.locator-actions button.primary {
  background: var(--white);
  color: var(--navy);
}

.locator-status {
  margin-top: 12px;
  color: var(--text-light);
  font-size: .92rem;
  line-height: 1.8;
}

@media (max-width: 920px) {
  .locator-layout { grid-template-columns: 1fr; }
  .locator-map { height: 420px; }
}
