/* -----------------------------------------
   SECTION COMMON
   ----------------------------------------- */
section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.section-bg-dark {
  background-color: var(--bg-deep);
}

.section-bg-darker {
  background-color: var(--bg-darker);
}

.section-header {
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 15px;
  background: linear-gradient(135deg, var(--text-white) 40%, var(--primary-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-subtitle {
  color: var(--text-silver);
  font-size: 1.1rem;
  font-weight: 400;
}

/* -----------------------------------------
   HERO SECTION (3D AIR CONDITIONER)
   ----------------------------------------- */
.hero-section {
  min-height: 100vh;
  padding: 140px 0 80px 0;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 10% 20%, rgba(9, 25, 47, 0.8) 0%, var(--bg-deep) 90%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 50px;
}

.hero-content {
  z-index: 10;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(0, 229, 255, 0.05);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 50px;
  color: var(--primary-glow);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: var(--glow-blue);
  animation: pulseGlow 3s infinite;
}

.hero-title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 25px;
  background: linear-gradient(135deg, var(--text-white) 50%, var(--primary-glow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-silver);
  margin-bottom: 35px;
  line-height: 1.7;
}

.hero-trust-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 40px;
}

.trust-point {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-white);
}

.trust-point svg {
  color: var(--primary-glow);
  width: 18px;
  height: 18px;
  filter: drop-shadow(0 0 5px rgba(0, 229, 255, 0.5));
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

/* 3D Visual Container */
.hero-visual {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}

/* Falcon Emblem background */
.falcon-emblem-bg {
  position: absolute;
  width: 380px;
  height: 380px;
  opacity: 0.04;
  color: var(--primary-glow);
  pointer-events: none;
  z-index: 1;
  animation: floatSlow 8s ease-in-out infinite alternate;
}

/* 3D AC Unit Mockup */
.ac-3d-container {
  position: relative;
  width: 340px;
  height: 130px;
  transform-style: preserve-3d;
  z-index: 5;
  transition: transform 0.1s ease-out;
  animation: floatSlow 5s ease-in-out infinite alternate;
}

.ac-body {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f1f5f9 0%, #cbd5e1 50%, #94a3b8 100%);
  border-radius: 12px;
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.5), 
    0 0 25px rgba(0, 229, 255, 0.15),
    inset 0 1px 3px rgba(255, 255, 255, 0.8),
    inset 0 -3px 8px rgba(0, 0, 0, 0.2);
  transform-style: preserve-3d;
}

/* Shiny metallic grill details */
.ac-grill {
  position: absolute;
  top: 15px;
  left: 20px;
  right: 20px;
  height: 15px;
  background: repeating-linear-gradient(90deg, #475569 0px, #475569 2px, transparent 2px, transparent 6px);
  opacity: 0.6;
  border-radius: 3px;
}

/* Brand display on AC unit */
.ac-brand {
  position: absolute;
  bottom: 25px;
  right: 25px;
  font-size: 11px;
  font-weight: 900;
  color: #334155;
  letter-spacing: 1px;
  font-family: sans-serif;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}

.ac-led {
  position: absolute;
  bottom: 26px;
  left: 25px;
  width: 12px;
  height: 12px;
  background-color: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ac-temp {
  position: absolute;
  left: 45px;
  bottom: 24px;
  font-size: 13px;
  font-weight: bold;
  color: #0f172a;
  font-family: monospace;
}

/* Opening vent flap */
.ac-vent {
  position: absolute;
  bottom: 0;
  left: 10px;
  right: 10px;
  height: 18px;
  background: linear-gradient(to bottom, #94a3b8 0%, #475569 100%);
  border-radius: 0 0 8px 8px;
  transform-origin: top;
  transform: rotateX(25deg);
  transition: transform 1s ease;
  box-shadow: 0 4px 6px rgba(0,0,0,0.15);
}

/* Outflow air glow */
.ac-outflow-glow {
  position: absolute;
  bottom: -20px;
  left: 20px;
  right: 20px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(0, 229, 255, 0.35) 0%, transparent 100%);
  filter: blur(10px);
  pointer-events: none;
  z-index: 4;
  opacity: 0.75;
  animation: pulseGlow 2s infinite alternate;
}

/* Pipes rendering */
.pipes-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

/* Canvas container for waves and ice crystals */
.canvas-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
}

/* -----------------------------------------
   SERVICES MINI BAR
   ----------------------------------------- */
.services-mini-bar {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(9, 16, 32, 0.4);
}

.mini-bar-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.mini-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 15px 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: var(--transition-smooth);
}

.mini-card:hover {
  background: rgba(0, 229, 255, 0.03);
  border-color: rgba(0, 229, 255, 0.2);
  transform: translateY(-5px);
  box-shadow: var(--glow-blue);
}

.mini-card-icon {
  color: var(--primary-glow);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.mini-card:hover .mini-card-icon {
  transform: scale(1.1);
  filter: drop-shadow(0 0 5px rgba(0, 229, 255, 0.5));
}

.mini-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 4px;
}

.mini-card-desc {
  font-size: 0.75rem;
  color: var(--text-silver);
}

/* -----------------------------------------
   INTERACTIVE TROUBLE-SHOOTER
   ----------------------------------------- */
.trouble-grid {
  grid-template-columns: repeat(4, 1fr);
}

.trouble-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.trouble-card-meta {
  margin-top: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.trouble-card-meta .btn {
  flex: 1;
}

.trouble-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-white);
}

.trouble-card-desc {
  font-size: 0.9rem;
  color: var(--text-silver);
}

/* -----------------------------------------
   SERVICES MAIN GRID
   ----------------------------------------- */
.services-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.service-card-content {
  margin-bottom: 25px;
}

.service-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-white);
}

.service-card-desc {
  font-size: 0.95rem;
  color: var(--text-silver);
  line-height: 1.6;
}

.service-card-actions {
  display: flex;
  gap: 10px;
}

.service-card-actions .btn {
  flex: 1;
}

/* -----------------------------------------
   COPPER PIPES SECTION
   ----------------------------------------- */
.pipes-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.pipes-visual-container {
  position: relative;
  width: 100%;
  height: 400px;
  background: rgba(9, 16, 32, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
}

.pipes-points-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pipes-point-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  transition: var(--transition-smooth);
}

.pipes-point-item:hover {
  background: rgba(0, 229, 255, 0.02);
  border-color: rgba(0, 229, 255, 0.15);
  transform: translateX(-5px);
}

.pipes-point-icon {
  color: var(--primary-glow);
  flex-shrink: 0;
  margin-top: 3px;
  filter: drop-shadow(0 0 4px rgba(0, 229, 255, 0.4));
}

.pipes-point-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-white);
}

.pipes-point-desc {
  font-size: 0.9rem;
  color: var(--text-silver);
}

.pipes-action-banner {
  margin-top: 35px;
  padding: 25px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.05) 0%, rgba(9, 16, 32, 0.8) 100%);
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.pipes-action-text h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.pipes-action-text p {
  font-size: 0.9rem;
  color: var(--text-silver);
}

/* -----------------------------------------
   OFFERS SECTION (MOSQUES & SCHOOLS)
   ----------------------------------------- */
.offers-grid {
  grid-template-columns: repeat(3, 1fr);
}

.offer-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  position: relative;
  background: linear-gradient(180deg, rgba(14, 23, 42, 0.6) 0%, rgba(9, 16, 32, 0.9) 100%);
}

.offer-card.highlighted {
  border-color: rgba(249, 115, 22, 0.4);
  box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.8), var(--glow-orange);
}

.offer-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, var(--primary-copper) 0%, var(--primary-copper-glow) 100%);
  color: var(--text-white);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: var(--glow-orange);
}

.offer-icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(0, 229, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px auto;
  color: var(--primary-glow);
  border: 1px solid rgba(0, 229, 255, 0.15);
  font-size: 1.8rem;
  transition: var(--transition-smooth);
}

.offer-card.highlighted .offer-icon-wrapper {
  color: var(--primary-copper);
  background: rgba(249, 115, 22, 0.05);
  border-color: rgba(249, 115, 22, 0.2);
}

.offer-card:hover .offer-icon-wrapper {
  transform: scale(1.1) rotate(360deg);
}

.offer-card-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.offer-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 35px;
  text-align: right;
  padding: 0 10px;
}

.offer-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-silver);
}

.offer-feature-item svg {
  color: var(--primary-glow);
  flex-shrink: 0;
}

.offer-card.highlighted .offer-feature-item svg {
  color: var(--primary-copper);
}

/* -----------------------------------------
   WHY CHOOSE US (DASHBOARD LAYOUT)
   ----------------------------------------- */
.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr;
  align-items: center;
  gap: 60px;
}

/* Dashboard Mockup Visual */
.dashboard-mockup {
  background: linear-gradient(135deg, rgba(14, 23, 42, 0.8) 0%, rgba(9, 16, 32, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow-premium);
  display: flex;
  flex-direction: column;
  gap: 25px;
  position: relative;
}

.dashboard-mockup::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(0, 229, 255, 0.03) 0%, transparent 60%);
  pointer-events: none;
  border-radius: 24px;
}

.dashboard-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 15px;
}

.db-title {
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.db-dots {
  display: flex;
  gap: 6px;
}

.db-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.db-dot:nth-child(1) { background-color: #ef4444; }
.db-dot:nth-child(2) { background-color: #eab308; }
.db-dot:nth-child(3) { background-color: #22c55e; }

.dashboard-meters {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.meter-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.meter-dial-wrapper {
  position: relative;
  width: 100px;
  height: 100px;
  margin-bottom: 15px;
}

.meter-svg {
  transform: rotate(-90deg);
  width: 100%;
  height: 100%;
}

.meter-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.05);
  stroke-width: 8;
}

.meter-fill-blue {
  fill: none;
  stroke: var(--primary-glow);
  stroke-width: 8;
  stroke-dasharray: 251.2;
  stroke-dashoffset: 62.8; /* 75% */
  stroke-linecap: round;
  filter: drop-shadow(0 0 4px rgba(0, 229, 255, 0.5));
  transition: stroke-dashoffset 2s ease-out;
}

.meter-fill-orange {
  fill: none;
  stroke: var(--primary-copper);
  stroke-width: 8;
  stroke-dasharray: 251.2;
  stroke-dashoffset: 25.1; /* 90% */
  stroke-linecap: round;
  filter: drop-shadow(0 0 4px rgba(249, 115, 22, 0.5));
  transition: stroke-dashoffset 2s ease-out;
}

.meter-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-white);
}

.meter-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-silver);
}

.dashboard-stats-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.db-stat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 12px;
}

.db-stat-label {
  font-size: 0.9rem;
  color: var(--text-silver);
  display: flex;
  align-items: center;
  gap: 8px;
}

.db-stat-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-glow);
}

/* 6 Features list */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.feature-item {
  display: flex;
  gap: 15px;
}

.feature-icon-box {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  background: rgba(0, 229, 255, 0.05);
  border: 1px solid rgba(0, 229, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-glow);
  flex-shrink: 0;
  font-size: 1.1rem;
}

.feature-info h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-white);
}

.feature-info p {
  font-size: 0.88rem;
  color: var(--text-silver);
  line-height: 1.5;
}

/* -----------------------------------------
   STEPS TO ORDER (TIMELINE)
   ----------------------------------------- */
.timeline-container {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.timeline-line {
  position: absolute;
  top: 35px;
  right: 5%;
  left: 5%;
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 229, 255, 0.1) 0%, var(--primary-glow) 50%, rgba(0, 229, 255, 0.1) 100%);
  z-index: 1;
  box-shadow: var(--glow-blue);
}

.timeline-step {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline-badge {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid rgba(0, 229, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-glow);
  margin-bottom: 20px;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-premium);
  position: relative;
}

.timeline-step:hover .timeline-badge {
  border-color: var(--primary-glow);
  background: var(--primary-glow);
  color: var(--bg-deep);
  transform: scale(1.1);
  box-shadow: var(--glow-blue-strong);
}

.timeline-number {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--primary-copper);
  color: var(--text-white);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--glow-orange);
}

.timeline-step-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-white);
}

.timeline-step-desc {
  font-size: 0.9rem;
  color: var(--text-silver);
  line-height: 1.5;
  max-width: 220px;
}

/* -----------------------------------------
   DAMMAM DISTRICTS (CHIPS)
   ----------------------------------------- */
.districts-wrapper {
  background: linear-gradient(135deg, rgba(14, 23, 42, 0.7) 0%, rgba(9, 16, 32, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 50px 40px;
  box-shadow: var(--shadow-premium);
}

.chips-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.district-chip {
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50px;
  color: var(--text-silver);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.district-chip:hover {
  background: rgba(0, 229, 255, 0.05);
  border-color: var(--primary-glow);
  color: var(--primary-glow);
  transform: translateY(-2px);
  box-shadow: var(--glow-blue);
}

.districts-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

/* -----------------------------------------
   BEFORE / AFTER CLEANING COMPARISON
   ----------------------------------------- */
.compare-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Premium Visual Comparison Slider */
.compare-slider-wrapper {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  border: 1px solid rgba(255, 255, 255, 0.1);
  user-select: none;
}

.compare-image-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

/* Custom visual drawing via CSS since real photos are not provided */
.image-before {
  background-color: #1e293b;
  background-image: 
    radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.8) 0%, transparent 60%),
    repeating-linear-gradient(0deg, rgba(0,0,0,0.15) 0px, rgba(0,0,0,0.15) 4px, transparent 4px, transparent 8px);
}

.image-after {
  background-color: #0f172a;
  background-image: 
    radial-gradient(circle at 50% 50%, rgba(0, 229, 255, 0.15) 0%, transparent 70%),
    repeating-linear-gradient(0deg, rgba(0, 229, 255, 0.05) 0px, rgba(0, 229, 255, 0.05) 4px, transparent 4px, transparent 8px);
}

/* Visual Mockup overlays */
.ac-mockup-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 160px;
  background: rgba(255,255,255,0.02);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 15px;
}

.ac-mockup-grill {
  height: 50px;
  background: repeating-linear-gradient(0deg, #1e293b 0px, #1e293b 4px, #0f172a 4px, #0f172a 8px);
  border-radius: 4px;
}

.ac-mockup-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Before dusty details */
.image-before .ac-mockup-grill {
  background: repeating-linear-gradient(0deg, #78350f 0px, #78350f 4px, #451a03 4px, #451a03 8px);
  filter: blur(1.5px);
  opacity: 0.85;
}

.image-before .dust-particle {
  position: absolute;
  background: rgba(120, 53, 15, 0.5);
  border-radius: 50%;
  filter: blur(2px);
}

/* After clean details */
.image-after .ac-mockup-grill {
  background: repeating-linear-gradient(0deg, #38bdf8 0px, #38bdf8 4px, #0369a1 4px, #0369a1 8px);
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.3);
}

.image-after .clean-glow {
  position: absolute;
  bottom: 15px;
  left: 0;
  width: 100%;
  height: 40px;
  background: linear-gradient(to bottom, rgba(56, 189, 248, 0.25) 0%, transparent 100%);
  filter: blur(4px);
}

/* Custom Text Badges */
.compare-badge {
  position: absolute;
  top: 20px;
  background: rgba(9, 16, 32, 0.8);
  backdrop-filter: blur(5px);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  z-index: 10;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.compare-badge-before {
  right: 20px;
  border-color: rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

.compare-badge-after {
  left: 20px;
  border-color: rgba(34, 197, 94, 0.3);
  color: #22c55e;
}

.compare-info-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.compare-info-item {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 16px;
}

.compare-col {
  flex: 1;
}

.compare-col-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.compare-col-desc {
  font-size: 0.88rem;
  color: var(--text-silver);
}

.compare-info-item svg {
  flex-shrink: 0;
  margin-top: 3px;
}

/* -----------------------------------------
   CTA BANNER SECTION
   ----------------------------------------- */
.cta-section {
  padding: 120px 0;
  background: radial-gradient(circle at center, rgba(14, 23, 42, 0.6) 0%, var(--bg-deep) 100%);
  position: relative;
}

.cta-wrapper {
  background: linear-gradient(135deg, rgba(14, 23, 42, 0.85) 0%, rgba(9, 16, 32, 0.98) 100%);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 30px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: var(--shadow-premium), var(--glow-blue);
  position: relative;
  overflow: hidden;
  max-width: 960px;
  margin: 0 auto;
}

.cta-wrapper::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 950;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--text-white) 40%, var(--primary-glow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-desc {
  font-size: 1.15rem;
  color: var(--text-silver);
  max-width: 650px;
  margin: 0 auto 40px auto;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* -----------------------------------------
   REVIEWS & TESTIMONIALS
   ----------------------------------------- */
.reviews-grid {
  grid-template-columns: repeat(3, 1fr);
}

.review-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(135deg, rgba(14, 23, 42, 0.6) 0%, rgba(9, 16, 32, 0.85) 100%);
}

.review-stars {
  display: flex;
  gap: 5px;
  color: var(--primary-copper);
  margin-bottom: 20px;
}

.review-text {
  font-size: 1rem;
  color: var(--text-white);
  line-height: 1.6;
  margin-bottom: 25px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 15px;
}

.review-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.1) 0%, rgba(249, 115, 22, 0.1) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 700;
  color: var(--primary-glow);
}

.review-author-name {
  font-size: 0.95rem;
  font-weight: 700;
}

.review-author-city {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* -----------------------------------------
   FAQ ACCORDION
   ----------------------------------------- */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: rgba(14, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover,
.faq-item.active {
  border-color: rgba(0, 229, 255, 0.25);
  box-shadow: var(--glow-blue);
  background: rgba(14, 23, 42, 0.9);
}

.faq-header-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 28px;
  text-align: right;
  color: var(--text-white);
  font-family: var(--font-arabic);
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.faq-icon-arrow {
  color: var(--primary-glow);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.faq-item.active .faq-icon-arrow {
  transform: rotate(180deg);
}

.faq-collapse {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-body {
  padding: 0 28px 24px 28px;
  color: var(--text-silver);
  font-size: 1rem;
  line-height: 1.7;
  border-top: 1px solid rgba(255, 255, 255, 0.02);
  margin-top: -5px;
}

/* -----------------------------------------
   ANIMATIONS KEYFRAMES
   ----------------------------------------- */
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
  }
  50% {
    box-shadow: 0 0 25px rgba(0, 229, 255, 0.5);
  }
  100% {
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
  }
}

@keyframes floatSlow {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(1deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

/* -----------------------------------------
   MEDIA QUERIES (SECTIONS)
   ----------------------------------------- */
@media (max-width: 1200px) {
  .hero-title { font-size: 2.6rem; }
  .mini-bar-grid { grid-template-columns: repeat(3, 1fr); }
  .trouble-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .offers-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .hero-tag { margin-left: auto; margin-right: auto; }
  .hero-trust-points { justify-content: center; }
  .hero-actions { justify-content: center; }
  
  .hero-visual { height: 420px; }
  
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .pipes-section-grid { grid-template-columns: 1fr; gap: 40px; }
  .compare-container { grid-template-columns: 1fr; gap: 40px; }
  
  .timeline-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .timeline-line {
    right: 54px;
    left: auto;
    width: 2px;
    height: 80%;
    top: 50px;
  }
  
  .timeline-step {
    flex-direction: row;
    text-align: right;
    align-items: flex-start;
    gap: 20px;
  }
  
  .timeline-badge {
    margin-bottom: 0;
    flex-shrink: 0;
  }
  
  .timeline-step-desc {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  section { padding: 60px 0; }
  .hero-title { font-size: 2.1rem; }
  .hero-trust-points { grid-template-columns: 1fr; text-align: right; max-width: 300px; margin: 0 auto 30px auto; }
  .mini-bar-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .trouble-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .offers-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .dashboard-meters { grid-template-columns: 1fr; }
  .chips-container { gap: 8px; }
  .district-chip { padding: 8px 16px; font-size: 0.85rem; }
  .cta-title { font-size: 1.8rem; }
  .cta-wrapper { padding: 40px 20px; }
  .districts-wrapper { padding: 30px 20px; }
  .compare-slider-wrapper { height: 300px; }
  .pipes-visual-container { height: 300px; }
}

/* -----------------------------------------
   INNER LANDING PAGES STYLING
   ----------------------------------------- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.breadcrumb-item a {
  color: var(--primary-cyan);
  transition: var(--transition-fast);
}

.breadcrumb-item a:hover {
  color: var(--primary-glow);
  text-decoration: underline;
}

.breadcrumb-item.active {
  color: var(--text-silver);
}

.breadcrumb-separator {
  color: var(--text-muted);
}

.inner-hero-section {
  padding: 160px 0 80px 0;
  background: radial-gradient(circle at 10% 20%, rgba(9, 25, 47, 0.6) 0%, var(--bg-deep) 100%);
}

.inner-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 50px;
}

.inner-hero-visual {
  position: relative;
  width: 100%;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inner-hero-visual svg {
  filter: drop-shadow(0 0 15px rgba(0, 229, 255, 0.15));
  max-width: 80%;
  max-height: 80%;
}

.service-intro-paragraphs {
  font-size: 1.1rem;
  color: var(--text-silver);
  line-height: 1.8;
  margin-bottom: 25px;
}

.service-checklist {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 15px 20px;
  transition: var(--transition-smooth);
}

.checklist-item:hover {
  background: rgba(0, 229, 255, 0.02);
  border-color: rgba(0, 229, 255, 0.15);
  transform: translateY(-2px);
}

.checklist-icon {
  color: var(--primary-glow);
  flex-shrink: 0;
  margin-top: 3px;
  filter: drop-shadow(0 0 5px rgba(0, 229, 255, 0.3));
}

.checklist-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 4px;
}

.checklist-desc {
  font-size: 0.88rem;
  color: var(--text-silver);
}

.related-title {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 40px;
  text-align: center;
}

@media (max-width: 900px) {
  .inner-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .breadcrumb {
    justify-content: center;
  }
  
  .inner-hero-visual {
    height: 300px;
  }
  
  .service-checklist {
    grid-template-columns: 1fr;
  }
}


/* -----------------------------------------
   BLOG & ARTICLES NEW CUSTOM STYLES
   ----------------------------------------- */
.reading-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.05);
  z-index: 9999;
}
.reading-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary-cyan), var(--primary-glow));
  transition: width 0.05s ease-out;
}
.article-layout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 40px;
}
@media (min-width: 992px) {
  .article-layout-grid {
    grid-template-columns: 2.5fr 1fr;
  }
}
.article-main-content {
  color: var(--text-silver);
  line-height: 1.8;
  font-size: 1.05rem;
}
.article-main-content p {
  margin-bottom: 25px;
}
.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.sidebar-widget {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 25px;
}
.sidebar-widget-title {
  font-size: 1.15rem;
  color: var(--text-silver);
  margin-bottom: 20px;
  border-bottom: 1.5px solid rgba(0, 229, 255, 0.15);
  padding-bottom: 10px;
  font-weight: bold;
}
.toc-container {
  background: rgba(255, 255, 255, 0.015);
  border: 1.5px dashed rgba(0, 229, 255, 0.15);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 35px;
}
.toc-title {
  font-size: 1.2rem;
  color: var(--primary-cyan);
  margin-bottom: 15px;
  font-weight: bold;
}
.toc-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.toc-list-item a {
  color: var(--text-silver);
  text-decoration: none;
  transition: var(--transition-fast);
}
.toc-list-item a:hover {
  color: var(--primary-glow);
  padding-right: 5px;
}
.callout-box {
  border-radius: 10px;
  padding: 20px;
  margin: 30px 0;
  display: flex;
  gap: 15px;
  align-items: flex-start;
}
.callout-warning {
  background: rgba(239, 68, 68, 0.04);
  border: 1px solid rgba(239, 68, 68, 0.15);
}
.callout-info {
  background: rgba(0, 229, 255, 0.04);
  border: 1px solid rgba(0, 229, 255, 0.15);
}
.callout-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}
.callout-title {
  font-weight: bold;
  margin-bottom: 5px;
  color: var(--text-white);
}
.callout-text {
  font-size: 0.95rem;
  color: var(--text-silver);
  line-height: 1.6;
}
.category-filter-btn {
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50px;
  color: var(--text-silver);
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}
.category-filter-btn.active, .category-filter-btn:hover {
  background: rgba(0, 229, 255, 0.05);
  border-color: var(--primary-glow);
  color: var(--primary-glow);
}

/* -----------------------------------------
   FEATURED SERVICE CARD STYLES
   ----------------------------------------- */
.service-card.featured-card {
  border: 1px solid var(--primary-copper) !important;
  box-shadow: 0 0 20px rgba(249, 115, 22, 0.2), inset 0 0 15px rgba(249, 115, 22, 0.05) !important;
  position: relative;
  overflow: hidden;
  animation: copperPulse 3s infinite alternate;
}

.service-card.featured-card::before {
  content: 'الخدمة الأبرز';
  position: absolute;
  top: 15px;
  right: -30px;
  background: linear-gradient(135deg, var(--primary-copper), var(--primary-copper-glow));
  color: var(--text-white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 30px;
  transform: rotate(45deg);
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  z-index: 10;
}

@keyframes copperPulse {
  0% {
    border-color: rgba(249, 115, 22, 0.4);
    box-shadow: 0 0 15px rgba(249, 115, 22, 0.15), inset 0 0 10px rgba(249, 115, 22, 0.02);
  }
  100% {
    border-color: rgba(249, 115, 22, 0.8);
    box-shadow: 0 0 25px rgba(249, 115, 22, 0.35), inset 0 0 20px rgba(249, 115, 22, 0.1);
  }
}
