/* =========================================================
   AL-FARIS PRO — WASHING MACHINE REPAIR
   Premium Luxury Stylesheet
========================================================= */

:root {
  /* Colors */
  --navy: #0b1f45;
  --navy-dark: #071530;
  --navy-light: #142c5c;
  --royal: #2f5fe0;
  --royal-light: #5b85f5;
  --royal-glow: #7ea1ff;
  --gold: #d4af6a;
  --white: #ffffff;
  --off-white: #f7f9fc;
  --gray: #6b7684;
  --gray-light: #e7ebf3;
  --success: #22c55e;
  --danger: #ef4444;

  /* Gradients */
  --grad-primary: linear-gradient(135deg, var(--royal) 0%, var(--navy) 100%);
  --grad-hero: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 45%, var(--royal) 130%);
  --grad-gold: linear-gradient(135deg, #f0d9ab 0%, var(--gold) 100%);
  --grad-glass: linear-gradient(145deg, rgba(255,255,255,0.65), rgba(255,255,255,0.25));

  /* Typography */
  --font-ar: 'Cairo', sans-serif;
  --font-en: 'Poppins', sans-serif;

  /* Shadows */
  --shadow-sm: 0 4px 16px rgba(11, 31, 69, 0.08);
  --shadow-md: 0 12px 32px rgba(11, 31, 69, 0.12);
  --shadow-lg: 0 24px 64px rgba(11, 31, 69, 0.18);
  --shadow-glow: 0 0 40px rgba(47, 95, 224, 0.35);

  /* Radii */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;

  /* Transitions */
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

html[dir="rtl"] body { font-family: var(--font-ar); }
html[dir="ltr"] body { font-family: var(--font-en); }

body {
  background: var(--white);
  color: var(--navy);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

section { position: relative; padding: 110px 0; }

h1, h2, h3, h4, h5 {
  font-weight: 800;
  color: var(--navy);
  line-height: 1.35;
}

h1 { font-size: clamp(2.2rem, 4.2vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.15rem; }

p { color: var(--gray); }

/* =========================================================
   UTILITIES
========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.98rem;
  transition: var(--transition);
  white-space: nowrap;
  border: 2px solid transparent;
}

.btn-lg { padding: 18px 36px; font-size: 1.05rem; }

.btn-primary {
  background: var(--grad-primary);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.btn-outline {
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
  backdrop-filter: blur(6px);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.16);
  border-color: var(--white);
  transform: translateY(-3px);
}

.btn.full { width: 100%; }

.glass-card {
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.6);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.section-tag {
  display: inline-block;
  padding: 7px 22px;
  border-radius: 100px;
  background: linear-gradient(135deg, rgba(47,95,224,0.12), rgba(11,31,69,0.08));
  color: var(--royal);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}

.section-head h2 { margin-bottom: 14px; }
.section-desc { font-size: 1.02rem; }

.section-head.light .section-tag {
  background: rgba(255,255,255,0.12);
  color: var(--royal-glow);
}
.section-head.light h2, .section-head.light p { color: var(--white); }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* =========================================================
   HEADER
========================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(11,31,69,0.06);
  transition: var(--transition);
}
.site-header.scrolled {
  background: rgba(255,255,255,0.92);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon {
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  background: var(--grad-primary);
  border-radius: 14px;
  color: var(--white);
  font-size: 1.2rem;
  box-shadow: var(--shadow-sm);
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-main { font-weight: 800; font-size: 1.15rem; color: var(--navy); }
.logo-sub { font-size: 0.72rem; color: var(--royal); font-weight: 600; }

.main-nav ul { display: flex; gap: 34px; }
.main-nav a {
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--navy);
  position: relative;
  padding: 6px 0;
  transition: var(--transition);
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0; left: auto;
  width: 0; height: 2px;
  background: var(--grad-primary);
  transition: var(--transition);
}
html[dir="ltr"] .main-nav a::after { right: auto; left: 0; }
.main-nav a:hover { color: var(--royal); }
.main-nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 16px; }

.lang-switch {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 16px;
  border-radius: 100px;
  border: 1.5px solid var(--gray-light);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.85rem;
  transition: var(--transition);
}
.lang-switch:hover { border-color: var(--royal); color: var(--royal); background: rgba(47,95,224,0.06); }

.header-call { padding: 12px 24px; font-size: 0.9rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 6px;
}
.hamburger span {
  height: 2.5px;
  background: var(--navy);
  border-radius: 4px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* =========================================================
   HERO
========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 140px;
  overflow: hidden;
  color: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--grad-hero);
  z-index: -2;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  z-index: -1;
  animation: float 10s ease-in-out infinite;
}
.hero-shape-1 {
  width: 420px; height: 420px;
  background: var(--royal-glow);
  top: -100px; right: -100px;
}
.hero-shape-2 {
  width: 340px; height: 340px;
  background: var(--gold);
  bottom: -80px; left: -80px;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, 30px) scale(1.08); }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
  padding-bottom: 60px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 20px;
  border-radius: 100px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 24px;
}

.hero-content h1 { color: var(--white); margin-bottom: 22px; }

.hero-desc {
  color: rgba(255,255,255,0.82);
  font-size: 1.08rem;
  max-width: 560px;
  margin-bottom: 34px;
}

.hero-cta { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 52px; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 34px;
}
.stat-item { display: flex; flex-direction: column; }
.stat-number {
  font-size: 2rem;
  font-weight: 800;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.7); font-weight: 600; }

.hero-visual { display: flex; justify-content: center; }

.hero-glass-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  max-width: 380px;
  box-shadow: var(--shadow-lg);
  animation: floatCard 5s ease-in-out infinite;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.hero-icon-circle {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--grad-gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  color: var(--navy-dark);
  margin-bottom: 24px;
  box-shadow: var(--shadow-glow);
}

.hero-glass-card h3 { color: var(--white); margin-bottom: 10px; }
.hero-glass-card p { color: rgba(255,255,255,0.75); margin-bottom: 22px; font-size: 0.95rem; }

.hero-check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.9);
  font-size: 0.92rem;
  margin-bottom: 12px;
  font-weight: 600;
}
.hero-check-list i { color: #4ade80; }

/* =========================================================
   ABOUT
========================================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

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

.about-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 28px;
}
.about-point {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
}
.about-point i {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(47,95,224,0.12), rgba(11,31,69,0.06));
  display: flex; align-items: center; justify-content: center;
  color: var(--royal);
  font-size: 1.05rem;
  flex-shrink: 0;
}

.about-visual { position: relative; padding: 30px 0; }
.about-card {
  padding: 32px;
  max-width: 320px;
}
.about-card-offset { margin-inline-start: 50px; margin-top: -20px; }
.about-card-icon {
  font-size: 2rem;
  color: var(--royal);
  margin-bottom: 16px;
}
.about-card h4 { margin-bottom: 8px; }
.about-card p { font-size: 0.9rem; }

/* =========================================================
   SERVICES
========================================================= */
.services { background: var(--off-white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 26px;
}

.service-card {
  padding: 36px 30px;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 62px; height: 62px;
  border-radius: 16px;
  background: var(--grad-primary);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}

.service-card h3 { margin-bottom: 10px; }
.service-card p { font-size: 0.93rem; }

/* =========================================================
   MACHINE TYPES
========================================================= */
.types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.type-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--gray-light);
  transition: var(--transition);
}
.type-card:hover {
  border-color: var(--royal);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.type-card i {
  font-size: 2.1rem;
  color: var(--royal);
  margin-bottom: 18px;
}
.type-card h4 { font-size: 1rem; }

/* =========================================================
   BRANDS
========================================================= */
.brands { background: var(--off-white); }

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 26px 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  font-weight: 700;
  color: var(--navy);
  font-size: 1.02rem;
  transition: var(--transition);
}
.brand-item i { color: var(--gold); font-size: 1.1rem; }
.brand-item:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: var(--shadow-md);
  color: var(--royal);
}

/* =========================================================
   WHY CHOOSE US
========================================================= */
.why-us {
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(47,95,224,0.25), transparent 50%);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
  position: relative;
  z-index: 1;
}

.why-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 36px 30px;
  text-align: center;
  transition: var(--transition);
}
.why-card:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-8px);
}
.why-card i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 20px;
}
.why-card h4 { color: var(--white); margin-bottom: 10px; }
.why-card p { color: rgba(255,255,255,0.72); font-size: 0.92rem; }

/* =========================================================
   PROCESS
========================================================= */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.process-card {
  position: relative;
  text-align: center;
  padding: 40px 26px;
  border-radius: var(--radius-md);
  background: var(--off-white);
  transition: var(--transition);
}
.process-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }

.process-number {
  position: absolute;
  top: 16px;
  inset-inline-end: 20px;
  font-size: 2.2rem;
  font-weight: 800;
  color: rgba(47,95,224,0.12);
}

.process-card i {
  font-size: 1.9rem;
  color: var(--royal);
  margin: 10px 0 20px;
}
.process-card h4 { margin-bottom: 10px; }
.process-card p { font-size: 0.92rem; }

/* =========================================================
   REVIEWS
========================================================= */
.reviews { background: var(--off-white); }

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

.review-card { padding: 34px 30px; }

.stars { color: var(--gold); margin-bottom: 18px; font-size: 0.95rem; }
.stars i { margin-inline-end: 3px; }

.review-card > p {
  font-size: 0.96rem;
  color: var(--navy-light);
  margin-bottom: 24px;
  font-weight: 500;
}

.reviewer { display: flex; align-items: center; gap: 14px; }
.reviewer-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.reviewer h5 { font-size: 0.95rem; margin-bottom: 2px; }
.reviewer span { font-size: 0.82rem; color: var(--gray); }

/* =========================================================
   FAQ
========================================================= */
.faq-list { max-width: 820px; margin: 0 auto; }

.faq-item {
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.active { border-color: var(--royal); box-shadow: var(--shadow-sm); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  text-align: start;
}
.faq-question i { transition: var(--transition); color: var(--royal); flex-shrink: 0; margin-inline-start: 16px; }
.faq-item.active .faq-question i { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 26px;
}
.faq-item.active .faq-answer { max-height: 260px; padding: 0 26px 22px; }
.faq-answer p { font-size: 0.94rem; }

/* =========================================================
   CONTACT
========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 30px;
  margin-bottom: 50px;
}

.contact-info-card { padding: 38px 32px; height: 100%; }

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 26px;
}
.contact-info-item i {
  width: 46px; height: 46px;
  border-radius: 13px;
  background: var(--grad-primary);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.contact-info-item h5 { margin-bottom: 4px; font-size: 0.95rem; }
.contact-info-item a, .contact-info-item span { color: var(--gray); font-size: 0.92rem; }
.contact-info-item a:hover { color: var(--royal); }

.contact-social { display: flex; gap: 12px; margin-top: 10px; }
.contact-social a {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  transition: var(--transition);
}
.contact-social a:hover { background: var(--grad-primary); color: var(--white); transform: translateY(-3px); }

.contact-form {
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }

.form-group label { font-weight: 700; font-size: 0.9rem; color: var(--navy); }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.7);
  color: var(--navy);
  font-size: 0.94rem;
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--royal);
  box-shadow: 0 0 0 4px rgba(47,95,224,0.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.form-group.error input,
.form-group.error select,
.form-group.error textarea { border-color: var(--danger); }

.error-msg {
  display: none;
  color: var(--danger);
  font-size: 0.8rem;
  font-weight: 600;
}
.form-group.error .error-msg { display: block; }

.form-success {
  display: none;
  grid-column: 1 / -1;
  align-items: center;
  gap: 10px;
  color: var(--success);
  font-weight: 700;
  font-size: 0.92rem;
  background: rgba(34,197,94,0.1);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
}
.form-success.show { display: flex; }

.map-wrap {
  width: 100%;
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* =========================================================
   FOOTER
========================================================= */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.8);
  padding-top: 80px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.92rem; margin: 18px 0 20px; }
.footer-brand .logo-sub { color: var(--royal-glow); }

.footer-col h4 { color: var(--white); font-size: 1.02rem; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 13px; }
.footer-col ul a, .footer-col ul span {
  color: rgba(255,255,255,0.62);
  font-size: 0.92rem;
  transition: var(--transition);
}
.footer-col ul a:hover { color: var(--royal-glow); }

.footer-contact li { display: flex; align-items: center; gap: 10px; }
.footer-contact i { color: var(--royal-glow); width: 18px; }

.footer-bottom {
  text-align: center;
  padding: 26px 0;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
}

/* =========================================================
   FLOATING BUTTONS
========================================================= */
.floating-btn {
  position: fixed;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  z-index: 900;
  transition: var(--transition);
}
.floating-btn:hover { transform: scale(1.1); }

.whatsapp-btn {
  background: #25d366;
  inset-inline-start: 28px;
  bottom: 28px;
}

.call-btn {
  background: var(--grad-primary);
  inset-inline-start: 28px;
  bottom: 98px;
  animation: pulse 2.2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(47,95,224,0.5); }
  70% { box-shadow: 0 0 0 16px rgba(47,95,224,0); }
  100% { box-shadow: 0 0 0 0 rgba(47,95,224,0); }
}

.back-to-top {
  background: var(--navy);
  inset-inline-end: 28px;
  bottom: 28px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { justify-content: flex-start; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .header-call span { display: none; }
  .header-call { padding: 12px 16px; }

  .main-nav.mobile-open {
    display: block;
    position: absolute;
    top: 84px;
    left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    box-shadow: var(--shadow-md);
    padding: 20px 24px;
    backdrop-filter: blur(16px);
  }
  .main-nav.mobile-open ul { flex-direction: column; gap: 18px; }

  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .about-points { grid-template-columns: 1fr; }
  .about-card-offset { margin-inline-start: 0; margin-top: 20px; }
  .contact-form { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  section { padding: 76px 0; }
  .hero { padding-top: 120px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .footer-inner { grid-template-columns: 1fr; }
  .floating-btn { width: 50px; height: 50px; font-size: 1.2rem; }
  .whatsapp-btn, .call-btn { inset-inline-start: 18px; }
  .back-to-top { inset-inline-end: 18px; }
  .call-btn { bottom: 86px; }
  .map-wrap { height: 300px; }
}

/* =========================================================
   SECTION IMAGES (added — no layout/color changes)
========================================================= */

/* --- Hero image --- */

.hero-visual{
    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-image-wrap{
    width:100%;
    max-width:560px;
    height:580px;
    overflow:hidden;
    border-radius:24px;
    box-shadow:var(--shadow-lg);
    margin-bottom:22px;
}

.hero-image{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .6s ease;
}

.hero-image-wrap:hover .hero-image{
    transform:scale(1.05);
}

@media (max-width:1024px){
    .hero-image-wrap{
        max-width:500px;
        height:500px;
    }
}

@media (max-width:860px){
    .hero-image-wrap{
        width:100%;
        max-width:100%;
        height:420px;
    }
}

@media (max-width:560px){
    .hero-image-wrap{
        width:100%;
        height:320px;
    }
}

/* --- About image (stacked above the existing glass cards) --- */
.about-image-wrap {
  width: 100%;
  max-width: 460px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 22px;
}
.about-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.about-image-wrap:hover .about-image { transform: scale(1.05); }

/* --- Generic section image (Services, Types, Why Us, Process, Reviews) --- */
.section-image-wrap {
  max-width: 900px;
  margin: 0 auto 50px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.section-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.section-image-wrap:hover .section-image { transform: scale(1.04); }

.section-image-wrap-light {
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: var(--shadow-lg);
}

/* --- Contact image (above the existing contact info card) --- */
.contact-image-wrap {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}
.contact-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.contact-image-wrap:hover .contact-image { transform: scale(1.05); }

/* =========================================================
   CALL TO ACTION BANNER (new section, matches existing style)
========================================================= */
.cta-banner {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  color: var(--white);
  text-align: center;
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.cta-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(7,21,48,0.92) 0%, rgba(11,31,69,0.85) 50%, rgba(47,95,224,0.75) 100%);
}

.cta-content { max-width: 720px; margin: 0 auto; }
.cta-content h2 { color: var(--white); margin-bottom: 16px; }
.cta-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin-bottom: 34px;
}
.cta-buttons {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Responsive image adjustments --- */
@media (max-width: 1024px) {
  .hero-image-wrap { max-width: 100%; }
  .about-image-wrap { max-width: 100%; }
}

@media (max-width: 860px) {
  .hero-image { height: 260px; }
  .about-image { height: 240px; }
  .section-image { height: 240px; }
  .cta-banner { padding: 76px 0; }
}

@media (max-width: 560px) {
  .hero-image { height: 220px; }
  .about-image { height: 200px; }
  .section-image { height: 200px; }
  .contact-image { height: 170px; }
  .cta-content p { font-size: 0.95rem; }
  .cta-buttons { flex-direction: column; }
  .cta-buttons .btn { width: 100%; }
}






/* Premium Marketing Ad Banner */

.marketing-ad {
  background:
    radial-gradient(circle at top left, rgba(37,87,255,0.35), transparent 40%),
    linear-gradient(135deg, #050b1f, #111827);
  padding: 35px 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.marketing-content {
  max-width:1200px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:25px;
}


/* Icon */

.marketing-icon {
  width:75px;
  height:75px;
  background:linear-gradient(135deg,#1557ff,#00c6ff);
  border-radius:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:white;
  font-size:35px;
  box-shadow:0 10px 30px rgba(21,87,255,.4);
}


/* Text */

.marketing-text h3 {
  color:#ffffff;
  font-size:26px;
  margin:0 0 10px;
  font-weight:700;
}

.marketing-text p {
  color:#cbd5e1;
  font-size:16px;
  margin:0;
}


/* Button */

.marketing-btn {

  background:linear-gradient(135deg,#ffb703,#ff8500);
  color:#111;
  padding:15px 30px;
  border-radius:50px;
  text-decoration:none;
  font-weight:800;
  font-size:16px;
  box-shadow:0 8px 25px rgba(255,183,3,.35);
  transition:.3s;
}


.marketing-btn:hover {
  transform:translateY(-5px);
  box-shadow:0 15px 35px rgba(255,183,3,.5);
}


/* RTL Arabic */

html[dir="rtl"] .marketing-content {
  direction:rtl;
}


/* Mobile */

@media(max-width:768px){

.marketing-content{
 flex-direction:column;
 text-align:center;
}

.marketing-icon{
 width:65px;
 height:65px;
}

.marketing-text h3{
 font-size:21px;
}

.marketing-btn{
 width:100%;
 text-align:center;
}

}