/* ========================================
   شركة سمارت كلين للخدمات المتكاملة
   Theme: Orange + Tajawal
   ======================================== */

:root {
  --primary: #ea580c;
  --primary-dark: #9a3412;
  --primary-light: #fb923c;
  --primary-50: #fff7ed;
  --primary-100: #ffedd5;
  --primary-200: #fed7aa;
  --accent: #0891b2;
  --whatsapp: #25d366;
  --whatsapp-dark: #1ebe57;
  --text: #1c1917;
  --text-muted: #57534e;
  --bg: #ffffff;
  --bg-alt: #fff7ed;
  --bg-warm: #fffbf5;
  --border: #fed7aa;
  --shadow-sm: 0 2px 8px rgba(234, 88, 12, 0.06);
  --shadow: 0 4px 20px rgba(234, 88, 12, 0.10);
  --shadow-lg: 0 12px 40px rgba(234, 88, 12, 0.15);
  --radius: 14px;
  --radius-lg: 22px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Tajawal', system-ui, -apple-system, 'Segoe UI', Tahoma, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 16px;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
  text-align: center;
  font-family: inherit;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  box-shadow: 0 4px 14px rgba(234, 88, 12, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(234, 88, 12, 0.45); }
.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover { background: var(--whatsapp-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4); }
.btn-block { width: 100%; padding: 16px; }
.btn-call-header {
  background: var(--bg-alt);
  color: var(--primary);
  padding: 10px 18px;
  font-size: 15px;
  border: 2px solid var(--border);
}
.btn-call-header:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* Header */
.header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  gap: 20px;
}
.logo { display: inline-flex; align-items: center; gap: 12px; }
.logo img {
  height: 52px;
  width: 52px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  border: 2px solid var(--border);
}
.logo-text {
  font-size: 22px;
  font-weight: 900;
  color: var(--primary-dark);
  letter-spacing: -0.5px;
}
.nav { display: flex; gap: 28px; }
.nav a {
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  position: relative;
}
.nav a:hover, .nav a.active { color: var(--primary); }
.nav a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition);
}
.nav a:hover::after, .nav a.active::after { width: 100%; }

/* ═══════════════════════════════════
   HERO SLIDER
   ═══════════════════════════════════ */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--primary-dark);
}
.hero-slides {
  position: relative;
  height: clamp(540px, 80vh, 700px);
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.8s ease, transform 6s ease;
  pointer-events: none;
  background-color: var(--primary-dark);
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  z-index: 2;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(124, 45, 18, 0.92) 0%, rgba(154, 52, 18, 0.78) 45%, rgba(234, 88, 12, 0.45) 100%);
  z-index: 1;
}
.hero-slide .container { position: relative; z-index: 2; width: 100%; }
.hero-content { max-width: 680px; color: #fff; animation: heroFadeIn 0.9s ease; }
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-slide.active .hero-content { animation: heroFadeIn 0.9s ease 0.2s both; }
.badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  letter-spacing: 0.5px;
}
.hero h1 {
  font-size: clamp(30px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}
.lead {
  font-size: clamp(16px, 1.7vw, 20px);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 36px;
  max-width: 600px;
  line-height: 1.85;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero .btn-primary {
  background: linear-gradient(135deg, #fff, #ffedd5);
  color: var(--primary-dark);
  border: 2px solid rgba(255, 255, 255, 0.3);
  font-size: 17px;
  padding: 16px 32px;
}
.hero .btn-primary:hover { background: #fff; }
.hero .btn-whatsapp { font-size: 17px; padding: 16px 32px; }

/* Slider Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all var(--transition);
  line-height: 1;
}
.slider-arrow:hover { background: rgba(255, 255, 255, 0.32); transform: translateY(-50%) scale(1.1); }
.slider-prev { right: 24px; }
.slider-next { left: 24px; }
.slider-dots {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}
.dot.active {
  background: #fff;
  width: 36px;
  border-radius: 6px;
}

/* Trust strip */
.hero-trust-strip {
  position: relative;
  z-index: 5;
  background: linear-gradient(135deg, rgba(124, 45, 18, 0.96), rgba(194, 65, 12, 0.96));
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
  margin-top: -60px;
}
.hero-trust { display: flex; gap: 48px; justify-content: space-around; flex-wrap: wrap; }
.hero-trust > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #fff;
}
.hero-trust strong { font-size: 28px; color: #ffedd5; font-weight: 900; }
.hero-trust span { font-size: 14px; color: rgba(255, 255, 255, 0.85); margin-top: 4px; }

/* ═══════════════════════════════════
   SECTIONS — base
   ═══════════════════════════════════ */
.section { padding: 80px 0; position: relative; }
.section-alt { background: var(--bg-alt); }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 50px; }
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}
.eyebrow::before, .eyebrow::after {
  content: '—';
  margin: 0 10px;
  color: var(--primary-light);
}
.section h2 {
  font-size: clamp(26px, 3.6vw, 38px);
  font-weight: 900;
  color: var(--primary-dark);
  margin-bottom: 16px;
  line-height: 1.4;
}
.section-head p { color: var(--text-muted); font-size: 17px; line-height: 1.85; }

/* ═══════════════════════════════════
   ABOUT (style #1: clean centered + decoration)
   ═══════════════════════════════════ */
#about {
  background: var(--bg);
  padding: 100px 0;
  position: relative;
}
#about::before, #about::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  z-index: 0;
}
#about::before {
  width: 280px; height: 280px;
  background: var(--primary-100);
  top: 40px; right: -80px;
}
#about::after {
  width: 240px; height: 240px;
  background: #fee0c8;
  bottom: 20px; left: -60px;
}
#about .container { position: relative; z-index: 1; }
#about .section-head h2 {
  font-size: clamp(28px, 4vw, 44px);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ═══════════════════════════════════
   FOREIGN LABOR SECTION — Modern overlay cards
   ═══════════════════════════════════ */
.labor-section {
  background:
    radial-gradient(circle at 10% 0%, rgba(234, 88, 12, 0.06), transparent 40%),
    radial-gradient(circle at 90% 100%, rgba(251, 146, 60, 0.08), transparent 40%),
    #1c1410;
  padding: 100px 0 110px;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.labor-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
}
.labor-section .section-head h2 {
  color: #fff;
  -webkit-text-fill-color: #fff;
  background: none;
}
.labor-section .section-head p { color: rgba(255, 255, 255, 0.75); }
.eyebrow-rose {
  color: var(--primary-light) !important;
  position: relative;
}
.eyebrow-rose::before, .eyebrow-rose::after {
  content: '◆';
  margin: 0 10px;
  color: var(--primary);
}

/* Highlight banner — split style with stat row */
.labor-highlight {
  background:
    linear-gradient(135deg, rgba(234, 88, 12, 0.95) 0%, rgba(251, 146, 60, 0.92) 100%),
    url('https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=1200&q=60') center/cover;
  background-blend-mode: multiply;
  border-radius: var(--radius-lg);
  padding: 44px 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(234, 88, 12, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.labor-highlight::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(28, 20, 16, 0.25));
  pointer-events: none;
}
.labor-highlight-content { color: #fff; position: relative; z-index: 1; }
.labor-tag {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary-dark);
  padding: 7px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.labor-highlight-content h3 { font-size: clamp(22px, 2.8vw, 32px); margin-bottom: 10px; color: #fff; line-height: 1.3; }
.labor-highlight-content p { font-size: 17px; opacity: 0.95; margin-bottom: 24px; }
.labor-highlight-stats {
  display: flex;
  gap: 14px;
  justify-content: space-around;
  position: relative;
  z-index: 1;
}
.lh-stat {
  text-align: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  padding: 22px 14px;
  border-radius: var(--radius);
  flex: 1;
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform var(--transition);
}
.lh-stat:hover { transform: translateY(-3px); background: rgba(255, 255, 255, 0.22); }
.lh-stat strong { display: block; font-size: 28px; color: #fff; font-weight: 900; line-height: 1; }
.lh-stat span { font-size: 13px; opacity: 0.95; margin-top: 6px; display: inline-block; }

/* Cards — full-bleed image with overlay text */
.labor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 22px;
  margin-bottom: 60px;
}
.labor-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  background: #2a1810;
  display: block;
}
.labor-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-light);
  box-shadow: 0 20px 50px rgba(234, 88, 12, 0.3);
}
.labor-card.featured {
  border: 2px solid var(--primary);
  box-shadow: 0 10px 30px rgba(234, 88, 12, 0.25);
}
.labor-card.featured::before {
  content: '⭐ مميز';
  position: absolute;
  top: 14px; left: 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 900;
  z-index: 4;
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.45);
}
.labor-flag {
  position: absolute;
  top: 14px; right: 14px;
  font-size: 28px;
  z-index: 4;
  background: rgba(255, 255, 255, 0.96);
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border: 2px solid #fff;
}
.labor-image {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  overflow: hidden;
  background: #1c1410;
  z-index: 1;
}
.labor-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  filter: saturate(1.05);
}
.labor-card:hover .labor-image img { transform: scale(1.08); }
.labor-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(28, 20, 16, 0) 0%,
    rgba(28, 20, 16, 0.15) 35%,
    rgba(28, 20, 16, 0.7) 65%,
    rgba(28, 20, 16, 0.95) 100%);
  z-index: 2;
}
.labor-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  padding: 24px 22px 22px;
  color: #fff;
  transform: translateY(calc(100% - 130px));
  transition: transform 0.4s ease;
}
.labor-card:hover .labor-body { transform: translateY(0); }
.labor-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
}
.labor-badge.premium { background: rgba(234, 88, 12, 0.85); border-color: var(--primary-light); }
.labor-badge.new { background: rgba(37, 211, 102, 0.85); border-color: rgba(255, 255, 255, 0.3); }
.labor-card h3 {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}
.labor-features {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  opacity: 0;
  transition: opacity 0.3s ease 0.1s;
}
.labor-card:hover .labor-features { opacity: 1; }
.labor-features li {
  padding: 4px 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  line-height: 1.6;
}
.labor-section .btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  box-shadow: 0 4px 14px rgba(234, 88, 12, 0.4);
}
.labor-card .btn-primary,
.labor-card .btn-outline {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease 0.15s, transform 0.3s ease 0.15s, background var(--transition);
}
.labor-card:hover .btn-primary,
.labor-card:hover .btn-outline { opacity: 1; transform: translateY(0); }
.btn-outline {
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary-dark);
  border: 2px solid transparent;
}
.btn-outline:hover { background: #fff; color: var(--primary-dark); }

/* Guarantees — horizontal pill row */
.labor-guarantees {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  margin-bottom: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.lg-item {
  text-align: center;
  padding: 8px;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.lg-item:hover { background: rgba(234, 88, 12, 0.1); }
.lg-icon {
  font-size: 28px;
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  box-shadow: 0 6px 16px rgba(234, 88, 12, 0.35);
}
.lg-item h4 { font-size: 16px; color: #fff; margin-bottom: 4px; font-weight: 800; }
.lg-item p { font-size: 13px; color: rgba(255, 255, 255, 0.7); }

/* Bottom CTA */
.labor-bottom-cta {
  text-align: center;
  background: linear-gradient(135deg, rgba(234, 88, 12, 0.15), rgba(251, 146, 60, 0.08));
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(234, 88, 12, 0.25);
}
.labor-bottom-cta p {
  font-size: 18px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 22px;
}

/* ═══════════════════════════════════
   WHY US (style #3: alt bg + diagonal pattern)
   ═══════════════════════════════════ */
#why {
  background:
    repeating-linear-gradient(45deg, transparent 0, transparent 14px, rgba(234, 88, 12, 0.025) 14px, rgba(234, 88, 12, 0.025) 28px),
    var(--bg-alt);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.feature {
  background: #fff;
  padding: 32px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
.feature::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 0; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transition: width var(--transition);
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--border); }
.feature:hover::before { width: 100%; }
.feature .icon {
  font-size: 30px;
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--primary-100), var(--primary-200));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--primary-dark);
}
.feature h3 { font-size: 18px; font-weight: 800; color: var(--primary-dark); margin-bottom: 8px; }
.feature p { color: var(--text-muted); font-size: 15px; }

/* ═══════════════════════════════════
   SERVICES (style #4: cards w/ photo + ribbon)
   ═══════════════════════════════════ */
#services {
  background: var(--bg);
  position: relative;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}
.service-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg-alt);
}
.service-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(154, 52, 18, 0.55));
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover .service-image::after { opacity: 1; }
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-image img { transform: scale(1.08); }
.service-body { padding: 24px 28px 28px; flex: 1; display: flex; flex-direction: column; }
.service-icon {
  font-size: 30px;
  margin-bottom: 10px;
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -50px;
  position: relative;
  z-index: 2;
  box-shadow: 0 6px 16px rgba(234, 88, 12, 0.25);
  border: 3px solid #fff;
}
.service-card h3 { font-size: 21px; font-weight: 800; color: var(--primary-dark); margin: 12px 0 8px; }
.service-card p { color: var(--text-muted); margin-bottom: 18px; flex: 1; line-height: 1.85; }
.service-link {
  font-weight: 800;
  color: var(--primary);
  font-size: 15px;
  transition: all var(--transition);
}
.service-link:hover { color: var(--primary-dark); padding-left: 6px; }

/* ═══════════════════════════════════
   VALUE GRID (style #5: gradient bg + glass cards)
   ═══════════════════════════════════ */
.value-section {
  background:
    radial-gradient(circle at 15% 20%, rgba(251, 146, 60, 0.18), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(234, 88, 12, 0.12), transparent 45%),
    var(--bg-alt);
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
}
.value-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid rgba(254, 215, 170, 0.5);
  position: relative;
}
.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: var(--primary-light);
}
.value-num {
  font-size: 64px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
  line-height: 1;
  font-family: 'Tajawal', sans-serif;
}
.value-card h3 { font-size: 22px; color: var(--primary-dark); margin-bottom: 10px; font-weight: 900; }
.value-card p { color: var(--text-muted); font-size: 15px; line-height: 1.8; }

/* CTA Band */
.cta-band {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 70px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 50%, rgba(251, 146, 60, 0.35), transparent 50%),
    radial-gradient(circle at 20% 30%, rgba(255, 237, 213, 0.15), transparent 40%);
}
.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
}
.cta-inner h2 { font-size: clamp(22px, 3vw, 34px); font-weight: 900; margin-bottom: 8px; color: #fff; }
.cta-inner p { font-size: 17px; opacity: 0.95; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-band .btn-primary { background: #fff; color: var(--primary-dark); }
.cta-band .btn-primary:hover { background: var(--primary-50); }

/* Booking */
#contact { background: var(--bg-warm); }
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 920px;
  margin: 0 auto;
}
.booking-card {
  background: #fff;
  padding: 44px 32px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.booking-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: var(--primary);
  transition: height var(--transition);
}
.booking-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.booking-whatsapp::before { background: var(--whatsapp); }
.booking-whatsapp:hover { border-color: var(--whatsapp); }
.booking-call:hover { border-color: var(--primary); }
.booking-icon {
  width: 88px; height: 88px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #fff;
  position: relative;
  z-index: 1;
}
.booking-whatsapp .booking-icon {
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}
.booking-call .booking-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  box-shadow: 0 8px 20px rgba(234, 88, 12, 0.3);
}
.booking-card h3 { font-size: 22px; font-weight: 900; color: var(--primary-dark); margin-bottom: 10px; position: relative; z-index: 1; }
.booking-card p { color: var(--text-muted); margin-bottom: 22px; font-size: 15px; position: relative; z-index: 1; }
.booking-cta {
  display: inline-block;
  font-weight: 800;
  font-size: 17px;
  padding: 14px 32px;
  border-radius: 100px;
  position: relative;
  z-index: 1;
  transition: all var(--transition);
}
.booking-whatsapp .booking-cta { background: var(--whatsapp); color: #fff; }
.booking-call .booking-cta { background: var(--primary); color: #fff; }
.booking-card:hover .booking-cta { transform: scale(1.05); }

.hours-strip { text-align: center; margin-top: 32px; font-size: 16px; color: var(--text-muted); font-weight: 600; }
.hours-strip span {
  background: var(--bg-alt);
  padding: 12px 24px;
  border-radius: 100px;
  display: inline-block;
  border: 1px solid var(--border);
}

/* Contact features */
.contact-features {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.cf-item {
  background: #fff;
  padding: 28px 22px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.cf-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.cf-icon {
  font-size: 32px;
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--primary-100), var(--primary-200));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.cf-item h3 { font-size: 17px; color: var(--primary-dark); margin-bottom: 6px; font-weight: 900; }
.cf-item p { color: var(--text-muted); font-size: 14px; }

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 80px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(251, 146, 60, 0.35), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.08), transparent 50%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  margin: 14px 0 14px;
  line-height: 1.3;
}
.page-hero p { font-size: 17px; max-width: 720px; margin: 0 auto; opacity: 0.95; line-height: 1.7; }

.breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.15);
  padding: 8px 18px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.breadcrumbs a { color: #fff; font-weight: 700; opacity: 0.95; }
.breadcrumbs a:hover { opacity: 1; text-decoration: underline; }
.breadcrumbs span { color: #fff; opacity: 0.75; font-size: 13px; }

/* Footer */
.footer {
  background: linear-gradient(180deg, var(--primary-dark), #5a1d09);
  color: #fed7aa;
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand img { background: #fff; padding: 4px; border-radius: 50%; margin-bottom: 14px; }
.footer-brand h3 { color: #fff; font-size: 24px; margin-bottom: 12px; font-weight: 900; }
.footer-brand p { line-height: 1.9; opacity: 0.9; }
.footer h4 { color: #fff; font-size: 16px; margin-bottom: 16px; font-weight: 800; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a { font-size: 14px; opacity: 0.9; transition: opacity var(--transition); }
.footer ul li a:hover { opacity: 1; color: #ffedd5; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 14px;
  opacity: 0.75;
}

/* Floating WhatsApp */
.float-whatsapp {
  position: fixed;
  bottom: 24px; left: 24px;
  width: 60px; height: 60px;
  background: var(--whatsapp);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  z-index: 99;
  transition: transform var(--transition);
  animation: pulse 2s infinite;
}
.float-whatsapp:hover { transform: scale(1.1); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 6px 28px rgba(37, 211, 102, 0.7), 0 0 0 12px rgba(37, 211, 102, 0); }
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  background: var(--bg-alt);
  border-radius: 10px;
  border: 1px solid var(--border);
}
.menu-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  position: relative;
}
.menu-toggle span::before, .menu-toggle span::after {
  content: '';
  position: absolute;
  right: 0;
  width: 22px; height: 2px;
  background: var(--text);
}
.menu-toggle span::before { top: -7px; }
.menu-toggle span::after { top: 7px; }

/* ═══════════════════════════════════
   BLOG LISTING PAGE
   ═══════════════════════════════════ */
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 50px;
}
.filter-btn {
  padding: 10px 22px;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  transition: all var(--transition);
  font-family: inherit;
  cursor: pointer;
}
.filter-btn:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-1px); }
.filter-btn.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(234, 88, 12, 0.3);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.blog-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}
.blog-card-link { display: flex; flex-direction: column; height: 100%; }
.blog-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg-alt);
}
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card-image img { transform: scale(1.06); }
.blog-card-cat {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(154, 52, 18, 0.95);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  z-index: 1;
}
.blog-card-body { padding: 24px 26px 26px; flex: 1; display: flex; flex-direction: column; }
.blog-card-body h2 {
  font-size: 19px;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.5;
  margin-bottom: 12px;
}
.blog-card-body p { color: var(--text-muted); font-size: 15px; line-height: 1.7; flex: 1; margin-bottom: 16px; }
.blog-card-more {
  font-weight: 800;
  color: var(--primary);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all var(--transition);
}
.blog-card:hover .blog-card-more { color: var(--primary-dark); padding-right: 6px; }

/* ═══════════════════════════════════
   ARTICLE PAGE
   ═══════════════════════════════════ */
.article {
  padding: 50px 0 80px;
  background: var(--bg-alt);
}
.article-container { max-width: 860px; }
.article .breadcrumbs {
  background: #fff;
  border: 1px solid var(--border);
  margin-bottom: 24px;
  display: inline-flex;
}
.article .breadcrumbs a, .article .breadcrumbs span { color: var(--text); }
.article .breadcrumbs a { color: var(--primary); }
.article-header { text-align: center; margin-bottom: 30px; }
.article-cat {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 18px;
}
.article-header h1 {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 900;
  color: var(--primary-dark);
  line-height: 1.4;
  margin-bottom: 18px;
}
.article-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 600;
}
.article-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 36px;
  box-shadow: var(--shadow);
  aspect-ratio: 16/9;
  background: #fff;
}
.article-image img { width: 100%; height: 100%; object-fit: cover; }
.article-content {
  background: #fff;
  padding: 44px 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  font-size: 17px;
  line-height: 2;
  color: var(--text);
}
.article-intro {
  font-size: 19px;
  color: var(--text-muted);
  font-weight: 600;
  line-height: 1.85;
  padding: 18px 22px;
  background: var(--bg-alt);
  border-right: 4px solid var(--primary);
  border-radius: var(--radius);
  margin-bottom: 32px;
}
.article-content h2 {
  font-size: 26px;
  font-weight: 900;
  color: var(--primary-dark);
  margin: 36px 0 14px;
  padding-right: 16px;
  border-right: 4px solid var(--primary);
  line-height: 1.4;
}
.article-content h3 { font-size: 21px; font-weight: 800; color: var(--primary-dark); margin: 28px 0 12px; }
.article-content p { margin-bottom: 18px; }
.article-content ul, .article-content ol { margin: 0 24px 20px 0; padding-right: 18px; }
.article-content ul li, .article-content ol li { margin-bottom: 10px; list-style-position: outside; }
.article-content ul li { list-style: disc; }
.article-content ol li { list-style: decimal; }
.article-content strong { color: var(--primary-dark); font-weight: 800; }
.article-content a { color: var(--primary); font-weight: 700; border-bottom: 1px dashed var(--primary); }
.article-content a:hover { color: var(--primary-dark); border-color: var(--primary-dark); }

.article-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}
.article-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(251, 146, 60, 0.35), transparent 60%);
  pointer-events: none;
}
.article-cta h3 { color: #fff; font-size: 24px; margin-bottom: 8px; position: relative; }
.article-cta p { margin-bottom: 22px; opacity: 0.95; font-size: 16px; position: relative; }
.article-cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ═══════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════ */
@media (max-width: 968px) {
  .labor-highlight { grid-template-columns: 1fr; padding: 32px 28px; gap: 24px; text-align: center; }
  .labor-highlight-content { text-align: center; }
  .booking-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* Touch / mobile: always show full card content */
@media (hover: none), (max-width: 768px) {
  .labor-body { transform: translateY(0) !important; }
  .labor-features { opacity: 1 !important; }
  .labor-card .btn-primary,
  .labor-card .btn-outline { opacity: 1 !important; transform: translateY(0) !important; }
  .labor-card { aspect-ratio: auto; min-height: 480px; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .menu-toggle { display: flex; }
  .nav.open {
    display: flex;
    position: absolute;
    top: 100%;
    right: 0; left: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    box-shadow: var(--shadow);
    border-top: 1px solid var(--border);
  }
  .btn-call-header span { display: none; }
  .btn-call-header { padding: 10px; }
  .logo-text { display: none; }
  .hero-slides { height: clamp(560px, 100vh, 660px); }
  .hero-trust-strip { margin-top: -40px; padding: 16px 0; }
  .hero-trust { gap: 16px; }
  .hero-trust strong { font-size: 20px; }
  .hero-trust span { font-size: 11px; }
  .hero-trust > div { min-width: 70px; }
  .slider-arrow { width: 44px; height: 44px; font-size: 26px; }
  .slider-prev { right: 10px; }
  .slider-next { left: 10px; }
  .slider-dots { bottom: 90px; }
  .section { padding: 60px 0; }
  .hero-cta { justify-content: flex-start; }
  .labor-highlight { padding: 24px 20px; }
  .labor-highlight-stats { flex-wrap: wrap; gap: 12px; }
  .lh-stat { padding: 14px 10px; min-width: 90px; }
  .lh-stat strong { font-size: 22px; }
  .booking-card { padding: 32px 24px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .footer-brand img { margin: 0 auto 14px; }
  .float-whatsapp { width: 54px; height: 54px; bottom: 16px; left: 16px; }
  .float-whatsapp svg { width: 28px; height: 28px; }
  .article-content { padding: 28px 22px; font-size: 16px; }
  .article-content h2 { font-size: 22px; }
  .article-intro { font-size: 16px; padding: 14px 16px; }
  .article-cta { padding: 28px 20px; }
  .blog-grid { grid-template-columns: 1fr; gap: 20px; }
  .filter-btn { padding: 8px 16px; font-size: 13px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .btn { padding: 12px 20px; font-size: 15px; }
  .hero h1 { font-size: 26px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
