/* ========================================
   شركة الهادي للخدمات المتكاملة
   Optimized for Google Ads & SEO
   ======================================== */

:root {
  --primary: #0a4d8c;
  --primary-dark: #073864;
  --primary-light: #1e6fb8;
  --accent: #00b4d8;
  --whatsapp: #25d366;
  --whatsapp-dark: #1ebe57;
  --text: #1a2942;
  --text-muted: #5a6478;
  --bg: #ffffff;
  --bg-alt: #f5f9fd;
  --border: #e3edf7;
  --shadow-sm: 0 2px 8px rgba(10, 77, 140, 0.06);
  --shadow: 0 4px 20px rgba(10, 77, 140, 0.08);
  --shadow-lg: 0 12px 40px rgba(10, 77, 140, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --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: 'Cairo', system-ui, -apple-system, 'Segoe UI', Tahoma, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  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;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  box-shadow: 0 4px 14px rgba(10, 77, 140, 0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(10, 77, 140, 0.4); }
.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.96);
  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 img { height: 50px; width: auto; }
.nav { display: flex; gap: 28px; }
.nav a {
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  position: relative;
}
.nav a:hover { 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 { width: 100%; }

/* ═══════════════════════════════════
   HERO SLIDER
   ═══════════════════════════════════ */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--primary-dark);
}
.hero-slides {
  position: relative;
  height: clamp(520px, 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;
}
.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(7, 56, 100, 0.92) 0%, rgba(10, 77, 140, 0.78) 45%, rgba(0, 180, 216, 0.35) 100%);
  z-index: 1;
}
.hero-slide .container {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-content {
  max-width: 640px;
  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);
}
.hero h1 {
  font-size: clamp(30px, 5vw, 54px);
  font-weight: 800;
  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.92);
  margin-bottom: 36px;
  max-width: 580px;
  line-height: 1.7;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero .btn-primary {
  background: linear-gradient(135deg, #00b4d8, #0a4d8c);
  border: 2px solid rgba(255, 255, 255, 0.2);
  font-size: 17px;
  padding: 16px 32px;
}
.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.15);
  backdrop-filter: blur(10px);
  -webkit-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.3); 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(7, 56, 100, 0.95), rgba(10, 77, 140, 0.95));
  backdrop-filter: blur(10px);
  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: #00b4d8;
  font-weight: 800;
}
.hero-trust span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 4px;
}

/* ═══════════════════════════════════
   FOREIGN LABOR SECTION (Featured)
   ═══════════════════════════════════ */
.labor-section {
  background: linear-gradient(180deg, #fff 0%, #f5f9fd 100%);
  padding: 90px 0 100px;
  position: relative;
}
.labor-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #d4af37, #f4d35e, #d4af37);
}
.eyebrow-gold {
  color: #d4af37 !important;
  position: relative;
}
.eyebrow-gold::before, .eyebrow-gold::after {
  content: '★';
  margin: 0 8px;
  color: #d4af37;
}

.labor-highlight {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 50px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.labor-highlight::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.3), transparent 60%);
  transform: rotate(-15deg);
}
.labor-highlight-content { color: #fff; position: relative; z-index: 1; }
.labor-tag {
  display: inline-block;
  background: linear-gradient(135deg, #d4af37, #f4d35e);
  color: #073864;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 14px;
}
.labor-highlight-content h3 {
  font-size: clamp(22px, 2.8vw, 30px);
  margin-bottom: 10px;
  color: #fff;
}
.labor-highlight-content p {
  font-size: 17px;
  opacity: 0.95;
  margin-bottom: 22px;
}
.labor-highlight-stats {
  display: flex;
  gap: 24px;
  justify-content: space-around;
  position: relative;
  z-index: 1;
}
.lh-stat {
  text-align: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  padding: 18px 14px;
  border-radius: var(--radius);
  flex: 1;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}
.lh-stat strong { display: block; font-size: 26px; color: #f4d35e; font-weight: 800; }
.lh-stat span { font-size: 13px; opacity: 0.9; }

.labor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
  margin-bottom: 50px;
}
.labor-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 2px solid transparent;
  position: relative;
  display: flex;
  flex-direction: column;
}
.labor-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.labor-card.featured {
  border: 2px solid #d4af37;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.2);
}
.labor-card.featured::before {
  content: '⭐ مميز';
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, #d4af37, #f4d35e);
  color: #073864;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 800;
  z-index: 3;
  box-shadow: var(--shadow-sm);
}
.labor-flag {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 36px;
  z-index: 3;
  background: rgba(255, 255, 255, 0.95);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  border: 2px solid #fff;
}
.labor-image {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-alt);
}
.labor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.labor-card:hover .labor-image img { transform: scale(1.06); }
.labor-body {
  padding: 22px 24px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.labor-badge {
  display: inline-block;
  background: rgba(0, 180, 216, 0.12);
  color: var(--accent);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
  align-self: flex-start;
}
.labor-badge.premium { background: rgba(212, 175, 55, 0.15); color: #b8941f; }
.labor-badge.new { background: rgba(37, 211, 102, 0.12); color: var(--whatsapp-dark); }
.labor-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 14px;
}
.labor-features {
  list-style: none;
  margin: 0 0 20px;
  flex: 1;
}
.labor-features li {
  padding: 6px 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

.labor-guarantees {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  background: #fff;
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: 40px;
  border: 1px solid var(--border);
}
.lg-item { text-align: center; }
.lg-icon {
  font-size: 36px;
  width: 64px;
  height: 64px;
  background: var(--bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.lg-item h4 { font-size: 16px; color: var(--primary-dark); margin-bottom: 4px; font-weight: 800; }
.lg-item p { font-size: 13px; color: var(--text-muted); }

.labor-bottom-cta {
  text-align: center;
  background: var(--bg-alt);
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  border: 2px dashed var(--border);
}
.labor-bottom-cta p {
  font-size: 17px;
  color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 20px;
}

/* Sections */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-alt); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 50px; }
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}
.section h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 16px;
  line-height: 1.3;
}
.section-head p { color: var(--text-muted); font-size: 17px; }

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.feature {
  background: #fff;
  padding: 28px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid transparent;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--border); }
.feature .icon {
  font-size: 36px;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #e0eef9, #c8e0f0);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.feature h3 { font-size: 18px; font-weight: 700; color: var(--primary-dark); margin-bottom: 8px; }
.feature p { color: var(--text-muted); font-size: 15px; }

/* Services */
.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(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.service-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg-alt);
}
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-image img { transform: scale(1.06); }
.service-body { padding: 24px 28px 28px; flex: 1; display: flex; flex-direction: column; }
.service-icon {
  font-size: 36px;
  margin-bottom: 10px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #e0eef9, #c8e0f0);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -50px;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-sm);
  border: 3px solid #fff;
}
.service-card h3 { font-size: 20px; font-weight: 700; color: var(--primary-dark); margin: 12px 0 8px; }
.service-card p { color: var(--text-muted); margin-bottom: 18px; flex: 1; }
.service-link {
  font-weight: 700;
  color: var(--primary);
  font-size: 15px;
  transition: all var(--transition);
}
.service-link:hover { color: var(--accent); padding-left: 6px; }

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  position: relative;
}
.step {
  text-align: center;
  background: #fff;
  padding: 32px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step-num {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  margin: 0 auto 16px;
}
.step h3 { font-size: 17px; font-weight: 700; color: var(--primary-dark); margin-bottom: 8px; }
.step p { color: var(--text-muted); font-size: 14px; }

/* CTA Band */
.cta-band {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 60px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(0, 180, 216, 0.15), transparent 50%);
}
.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, 32px); font-weight: 800; margin-bottom: 8px; color: #fff; }
.cta-inner p { font-size: 17px; opacity: 0.9; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-band .btn-primary {
  background: #fff;
  color: var(--primary);
}
.cta-band .btn-primary:hover { background: var(--bg-alt); }

/* Booking */
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 920px;
  margin: 0 auto;
}
.booking-card {
  background: #fff;
  padding: 40px 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(-6px);
  box-shadow: var(--shadow-lg);
}
.booking-card:hover::before { height: 100%; opacity: 0.05; }
.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(10, 77, 140, 0.3);
}
.booking-card h3 {
  font-size: 22px;
  font-weight: 800;
  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: 700;
  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;
  direction: ltr;
  letter-spacing: 1px;
}
.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);
}

/* Footer */
.footer { background: var(--primary-dark); color: #c8e0f0; 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: 8px 12px; border-radius: 8px; margin-bottom: 16px; }
.footer-brand p { line-height: 1.8; opacity: 0.85; }
.footer h4 { color: #fff; font-size: 16px; margin-bottom: 16px; font-weight: 700; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a { font-size: 14px; opacity: 0.85; transition: opacity var(--transition); }
.footer ul li a:hover { opacity: 1; color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 14px;
  opacity: 0.7;
}

/* 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
   ======================================== */
.page-hero {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 70px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(0, 180, 216, 0.25), 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, 42px);
  font-weight: 800;
  margin: 14px 0 14px;
  line-height: 1.3;
}
.page-hero p {
  font-size: 17px;
  max-width: 720px;
  margin: 0 auto;
  opacity: 0.92;
  line-height: 1.7;
}

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

.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 50px;
}
.filter-btn {
  padding: 10px 20px;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  transition: all var(--transition);
}
.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(10, 77, 140, 0.25);
}

.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(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.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(10, 77, 140, 0.95);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-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: 700;
  color: var(--primary-dark);
  line-height: 1.45;
  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: 700;
  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(--accent); padding-right: 6px; }

/* ========================================
   ARTICLE (Single Post) 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: 700;
  margin-bottom: 18px;
  letter-spacing: 0.3px;
}
.article-header h1 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.3;
  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: 1.9;
  color: var(--text);
}
.article-intro {
  font-size: 19px;
  color: var(--text-muted);
  font-weight: 600;
  line-height: 1.8;
  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: 24px;
  font-weight: 800;
  color: var(--primary-dark);
  margin: 36px 0 14px;
  padding-right: 16px;
  border-right: 4px solid var(--accent);
  line-height: 1.4;
}
.article-content h3 {
  font-size: 20px;
  font-weight: 700;
  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: 700; }
.article-content a {
  color: var(--primary);
  font-weight: 700;
  border-bottom: 1px dashed var(--primary);
}
.article-content a:hover { color: var(--accent); border-color: var(--accent); }

.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(0, 180, 216, 0.3), 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.92;
  font-size: 16px;
  position: relative;
}
.article-cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* Related Articles */
.related {
  margin-top: 60px;
}
.related h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 28px;
  text-align: center;
  position: relative;
}
.related h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  margin: 12px auto 0;
  border-radius: 2px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.related-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
}
.related-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--accent);
}
.related-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.related-body { padding: 16px 18px 20px; }
.related-cat {
  display: inline-block;
  background: var(--bg-alt);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.related-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.5;
}

/* ========================================
   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; }
}

@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; }
  .hero-slides { height: clamp(540px, 100vh, 640px); }
  .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; }
  .booking-card h3 { font-size: 20px; }
  .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 16px; }
  .float-whatsapp { width: 54px; height: 54px; bottom: 16px; left: 16px; }
  .float-whatsapp svg { width: 28px; height: 28px; }
}

@media (max-width: 768px) {
  .page-hero { padding: 50px 0 44px; }
  .blog-filters { gap: 8px; margin-bottom: 36px; }
  .filter-btn { padding: 8px 14px; font-size: 13px; }
  .blog-grid { grid-template-columns: 1fr; gap: 20px; }
  .article { padding: 30px 0 60px; }
  .article-content { padding: 28px 22px; font-size: 16px; }
  .article-content h2 { font-size: 20px; }
  .article-intro { font-size: 16px; padding: 14px 16px; }
  .article-cta { padding: 28px 20px; }
  .article-cta h3 { font-size: 20px; }
  .article-image { margin-bottom: 24px; }
  .related-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .btn { padding: 12px 20px; font-size: 15px; }
  .hero h1 { font-size: 26px; }
  .service-card { padding: 24px; }
  .article-content { padding: 22px 18px; }
  .article-meta { gap: 12px; font-size: 13px; }
}

/* Reduced motion */
@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;
  }
}
