/* ==========================================================================
   Domestic Home Services (DHS) V2 - Luxury Elevation & Enriched Styling
   Maintains original theme: Deep Forest Green (#075b3f / #0b3028),
   Mint Glow (#c9ffc4 / #86dc77 / #d7ffd5), Warm Paper (#f3f8f1 / #fffdf0)
   ========================================================================== */

/* Base hardware acceleration for reveal sections */
.reveal {
  will-change: transform, opacity;
}


/* 1. Header Elevation & Sticky Glass Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(243, 248, 241, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(185, 212, 190, 0.4);
  transition: all 0.3s ease;
}
.site-header.scrolled {
  box-shadow: 0 10px 25px rgba(11, 48, 40, 0.06);
  background: rgba(243, 248, 241, 0.95);
}
.site-header nav {
  height: 84px;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.whatsapp-quick-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff !important;
  padding: 8px 15px;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.whatsapp-quick-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
}
.whatsapp-quick-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* 2. Hero 3D Stage Container */
.hero-stage {
  position: relative;
  height: 520px;
  perspective: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#three-stage-canvas {
  position: absolute;
  inset: -30px -40px;
  width: calc(100% + 80px);
  height: calc(100% + 60px);
  z-index: 3;
  pointer-events: none;
  overflow: visible;
}
.hero-stage .image-card {
  z-index: 2;
  position: relative;
  pointer-events: auto;
  transform-style: preserve-3d;
}
.hero-stage .image-card.bubble-slider-card {
  position: absolute;
  top: 35px;
  left: 5%;
  width: min(462px, 91%);
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 50% !important;
  background: #075b3f;
  box-shadow: -22px 24px 0 #d4ffd1, 0 30px 60px rgba(7, 91, 63, 0.25), inset 0 0 30px rgba(255, 255, 255, 0.3);
  border: 4px solid rgba(255, 255, 255, 0.95);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  user-select: none;
  transform: none !important;
}
html[dir="ltr"] .hero-stage .image-card.bubble-slider-card {
  left: auto;
  right: 5%;
  transform: none !important;
}

/* Glass bubble shine overlay */
.bubble-glass-sheen {
  position: absolute;
  inset: 0;
  border-radius: 50% !important;
  pointer-events: none;
  z-index: 4;
  background: radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0.08) 42%, transparent 68%),
              linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, transparent 42%, rgba(11, 48, 40, 0.35) 100%);
  border: 1px solid rgba(255, 255, 255, 0.65);
}

/* Slides Wrapper */
.bubble-slides-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 50% !important;
}

/* Individual Bubble Slide */
.bubble-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 50% !important;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.05);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.7s;
  z-index: 1;
}

.bubble-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
}

.bubble-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 50% !important;
}

/* Luxury Service Name Badge Inside Bubble */
.bubble-service-badge {
  position: absolute;
  top: 24px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  z-index: 5;
  background: rgba(7, 50, 36, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: #fff;
  border: 1.5px solid rgba(201, 255, 196, 0.7);
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  white-space: nowrap;
  pointer-events: none;
  max-width: 86%;
}

html[dir="ltr"] .bubble-service-badge,
html[dir="rtl"] .bubble-service-badge {
  left: 50%;
  right: auto;
  transform: translateX(-50%);
}

.bubble-service-icon {
  font-size: 0.95rem;
  line-height: 1;
}

/* Inside Bubble Switches Bar (Bubble Indicators) */
.bubble-switches-bar {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(11, 48, 40, 0.68);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 7px 14px;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

/* Individual Bubble Switch Button */
.bubble-switch-btn {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  padding: 0;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.bubble-switch-btn:hover {
  background: #c9ffc4;
  transform: scale(1.25);
}

.bubble-switch-btn.active {
  background: #edbd42;
  border-color: #fff;
  width: 24px;
  border-radius: 99px;
  box-shadow: 0 0 10px rgba(237, 189, 66, 0.7);
}

/* Bubble Navigation Arrows inside Bubble */
.bubble-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  color: #075b3f;
  font-size: 1.4rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease, background 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-stage .image-card.bubble-slider-card:hover .bubble-nav-arrow {
  opacity: 1;
}

.bubble-nav-arrow.prev {
  right: 12px;
}
.bubble-nav-arrow.next {
  left: 12px;
}

html[dir="ltr"] .bubble-nav-arrow.prev {
  right: auto;
  left: 12px;
}
html[dir="ltr"] .bubble-nav-arrow.next {
  left: auto;
  right: 12px;
}

.bubble-nav-arrow:hover {
  background: #fff;
  color: #0b3028;
  transform: translateY(-50%) scale(1.12);
}

.hero-stage .sun-orb {
  background: radial-gradient(circle, rgba(239, 251, 140, 0.45) 0%, rgba(201, 255, 196, 0.2) 60%, transparent 100%);
  filter: blur(14px);
  opacity: 0.7;
}
.hero-stage .ring {
  border: 1.5px solid rgba(134, 220, 119, 0.35);
  box-shadow: 0 0 20px rgba(134, 220, 119, 0.15);
}
.hero-stage .float-card {
  z-index: 5;
}
.hero-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  margin-bottom: 24px;
}
.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #e1f7e0;
  border: 1px solid #b7e5be;
  color: #075b3f;
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 0.72rem;
  font-weight: 700;
}
.hero-pill-badge i {
  font-style: normal;
  color: #edbd42;
}

/* 3. Bahrain Coverage Marquee / Ticker */
.coverage-ticker-section {
  background: #094e39;
  color: #fff;
  padding: 14px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(201, 255, 196, 0.2);
  border-bottom: 1px solid rgba(201, 255, 196, 0.2);
}
.coverage-ticker-track {
  display: flex;
  white-space: nowrap;
  animation: tickerSlide 38s linear infinite;
  gap: 30px;
}
.coverage-ticker-track:hover {
  animation-play-state: paused;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #c9ffc4;
}
.ticker-item span {
  color: #fff;
}
.ticker-item i {
  font-style: normal;
  color: #edbd42;
}
@keyframes tickerSlide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
html[dir="rtl"] .coverage-ticker-track {
  animation-name: tickerSlideRtl;
}
@keyframes tickerSlideRtl {
  0% { transform: translateX(0); }
  100% { transform: translateX(50%); }
}

/* 4. Live Counter & Trust Bar */
.metrics-section {
  background: #eaf6ea;
  border-bottom: 1px solid #cce5ce;
  padding: 36px max(40px, calc((100vw - 1240px)/2));
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  align-items: center;
}
.metric-box {
  padding: 10px 24px;
  border-inline-start: 2px solid #9fceaa;
  display: flex;
  flex-direction: column;
}
.metric-number-wrap {
  display: flex;
  align-items: baseline;
  gap: 3px;
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 800;
  color: #075b3f;
  line-height: 1.1;
  letter-spacing: -0.05em;
}
.metric-plus {
  color: #edbd42;
}
.metric-label {
  font-size: 0.76rem;
  color: #496c5a;
  font-weight: 600;
  margin-top: 6px;
  line-height: 1.5;
}

/* 5. Expanded 8-Service Catalog with Interior Imagery & Overlay */
.services-v2 {
  max-width: 1240px;
  margin: 0 auto;
  padding: 100px 40px;
}
.section-header-centered {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 55px;
}
.section-header-centered .eyebrow {
  margin-bottom: 14px;
}
.section-header-centered h2 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1.22;
  letter-spacing: -0.06em;
  margin: 0 0 16px;
  font-weight: 800;
}
.section-header-centered h2 em {
  font-family: Georgia, serif;
  color: #13805d;
  font-weight: 400;
}
.section-header-centered p {
  font-size: 0.88rem;
  color: #587364;
  line-height: 1.8;
  margin: 0;
}
.services-catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.v2-service-card {
  position: relative;
  background: #093b2e;
  border-radius: 24px;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 30px rgba(11, 48, 40, 0.12);
  border: 1px solid rgba(201, 255, 196, 0.25);
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  overflow: hidden;
  cursor: pointer;
}
.v2-service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(7, 91, 63, 0.3);
  border-color: #8edc9c;
}
.card-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.4s ease;
  filter: brightness(1.02) contrast(1.08) saturate(1.1);
  opacity: 0.95;
}
.v2-service-card:hover .card-bg-image {
  transform: scale(1.08);
  filter: brightness(1.08) contrast(1.12) saturate(1.15);
  opacity: 1;
}
.card-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  /* Balanced luxury scrim: clear top/center so the photo shines through, dark bottom for white text */
  background: linear-gradient(
    180deg,
    rgba(6, 32, 25, 0.35) 0%,
    rgba(6, 32, 25, 0.45) 40%,
    rgba(4, 20, 15, 0.88) 75%,
    rgba(3, 16, 12, 0.96) 100%
  );
  transition: background 0.4s ease;
}
.v2-service-card:hover .card-bg-overlay {
  background: linear-gradient(
    180deg,
    rgba(6, 32, 25, 0.22) 0%,
    rgba(6, 32, 25, 0.38) 40%,
    rgba(4, 20, 15, 0.82) 75%,
    rgba(3, 16, 12, 0.94) 100%
  );
}
.card-content-wrap {
  position: relative;
  z-index: 3;
  padding: 30px 24px 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
  color: #fff;
}
.card-accent-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 0.65rem;
  color: #075b3f;
  background: #effb8c;
  padding: 5px 12px;
  border-radius: 99px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  letter-spacing: 0.04em;
}
html[dir="rtl"] .card-accent-tag {
  left: auto;
  right: 20px;
}
.v2-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin-top: 15px;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: #c9ffc4;
  border: 1px solid rgba(201, 255, 196, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.v2-service-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin: 38px 0 10px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  letter-spacing: -0.02em;
}
.v2-service-card p.service-summary {
  font-size: 0.78rem;
  line-height: 1.8;
  color: #e5f6eb;
  margin: 0 0 18px;
  min-height: 52px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}
.service-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  border-top: 1px solid rgba(201, 255, 196, 0.25);
  padding-top: 14px;
}
.service-features-list li {
  font-size: 0.72rem;
  color: #e5f6e9;
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-features-list li:before {
  content: '✓';
  color: #effb8c;
  font-weight: 800;
  font-size: 0.8rem;
}
.v2-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(201, 255, 196, 0.25);
}
.service-pricing-wrap {
  display: flex;
  flex-direction: column;
}
.price-tag {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: #effb8c;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}
.price-unit {
  font-size: 0.65rem;
  color: #b3dfc0;
}
.book-service-pill {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #effb8c;
  color: #075b3f;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-family: 'Manrope', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
.v2-service-card:hover .book-service-pill {
  background: #fff;
  color: #075b3f;
  transform: scale(1.15) rotate(15deg);
}

/* 6. Interactive Before & After Clean Slider */
.transformation-section {
  max-width: 1240px;
  margin: 0 auto 100px;
  padding: 0 40px;
}
.transformation-box {
  background: #0a4c3c;
  color: #fff;
  border-radius: 32px;
  padding: 55px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(7, 91, 63, 0.25);
}
.transformation-copy .eyebrow {
  color: #baf4b5;
}
.transformation-copy h2 {
  font-size: clamp(2.2rem, 3.8vw, 3.6rem);
  line-height: 1.22;
  letter-spacing: -0.06em;
  margin: 0 0 20px;
  font-weight: 800;
}
.transformation-copy h2 em {
  font-family: Georgia, serif;
  color: #d9f79f;
  font-weight: 400;
}
.transformation-copy p {
  font-size: 0.88rem;
  line-height: 2;
  color: #c0dbc7;
  margin: 0 0 30px;
}
.transformation-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 30px;
}
.transformation-point {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 14px 18px;
  border-radius: 14px;
}
.transformation-point b {
  display: block;
  font-size: 0.82rem;
  color: #f2fff0;
  margin-bottom: 4px;
}
.transformation-point small {
  font-size: 0.68rem;
  color: #aed9bc;
  line-height: 1.5;
  display: block;
}
.ba-slider-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 11;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
  user-select: none;
  touch-action: pan-y;
}
.ba-slider-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ba-image-before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: contrast(0.9) brightness(0.85) sepia(0.2);
}
.ba-image-after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
  filter: contrast(1.05) brightness(1.05) saturate(1.1);
  transition: clip-path 0.05s linear;
}
html[dir="rtl"] .ba-image-after {
  clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
}
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: #fff;
  transform: translateX(-50%);
  cursor: ew-resize;
  z-index: 10;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
}
.ba-handle-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #effb8c;
  color: #075b3f;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  font-weight: 800;
  pointer-events: none;
}
.ba-tag {
  position: absolute;
  bottom: 16px;
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  backdrop-filter: blur(8px);
  z-index: 8;
}
.ba-tag.before {
  right: 18px;
  background: rgba(0, 0, 0, 0.55);
  color: #ffc4be;
}
.ba-tag.after {
  left: 18px;
  background: rgba(7, 91, 63, 0.85);
  color: #c9ffc4;
}
html[dir="rtl"] .ba-tag.before {
  right: auto;
  left: 18px;
}
html[dir="rtl"] .ba-tag.after {
  left: auto;
  right: 18px;
}

/* 7. The DHS 50-Point Standard (Quality, Safety, Hygiene) */
.standards-section {
  position: relative;
  background: #062b21 url('assets/service_standards.jpg') center/cover no-repeat fixed;
  border-top: 1px solid rgba(201, 255, 196, 0.2);
  border-bottom: 1px solid rgba(201, 255, 196, 0.2);
  padding: 100px 40px;
  color: #fff;
  overflow: hidden;
}
.standards-section:before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 43, 33, 0.94) 0%, rgba(7, 48, 36, 0.88) 100%);
  z-index: 1;
}
.standards-container {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
}
.standards-section .section-header-centered h2 {
  color: #fff;
}
.standards-section .section-header-centered h2 em {
  color: #effb8c;
}
.standards-section .section-header-centered p {
  color: #cde7d5;
}

/* Official Government Manpower Agency Credentials Card (from Image 5) */
.official-credentials-box {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(201, 255, 196, 0.08) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 2px solid rgba(237, 189, 66, 0.6);
  border-radius: 24px;
  padding: 24px 30px;
  margin: 0 auto 45px;
  max-width: 900px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}
.cred-left {
  display: flex;
  align-items: center;
  gap: 18px;
}
.cred-seal {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #edbd42;
  color: #0b3028;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  font-weight: 800;
  box-shadow: 0 0 0 6px rgba(237, 189, 66, 0.25);
  flex-shrink: 0;
}
.cred-title-wrap b {
  display: block;
  font-size: 1.05rem;
  color: #fff;
  font-weight: 800;
  margin-bottom: 4px;
}
.cred-title-wrap small {
  display: block;
  font-size: 0.72rem;
  color: #effb8c;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.cred-badges {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: right;
}
html[dir="ltr"] .cred-badges {
  text-align: left;
}
.cred-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(7, 91, 63, 0.85);
  border: 1px solid #76db8e;
  color: #c9ffc4;
  padding: 5px 14px;
  border-radius: 99px;
  font-size: 0.72rem;
  font-weight: 800;
  font-family: 'Manrope', sans-serif;
}
.cred-tag.lmra {
  background: #edbd42;
  border-color: #f7d57f;
  color: #0b3028;
}

.standards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 30px;
}
.standard-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 22px;
  padding: 32px 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.standard-card:hover {
  border-color: #86dc77;
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 45px rgba(7, 91, 63, 0.35);
  background: rgba(255, 255, 255, 0.14);
}
.standard-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(201, 255, 196, 0.18);
  border: 1px solid #86dc77;
  color: #effb8c;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.standard-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px;
}
.standard-card p {
  font-size: 0.78rem;
  line-height: 1.9;
  color: #d1ebd8;
  margin: 0;
}

/* Eye-Catching Animated How It Works Section */
.how-v2-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 100px 40px;
}
.how-timeline-container {
  position: relative;
  margin-top: 55px;
}
.how-timeline-line {
  position: absolute;
  top: 45px;
  left: 5%;
  right: 5%;
  height: 4px;
  background: linear-gradient(90deg, #86dc77 0%, #edbd42 50%, #13805d 100%);
  border-radius: 99px;
  z-index: 1;
  opacity: 0.5;
}
.how-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}
.how-step-card {
  background: #fff;
  border-radius: 22px;
  padding: 32px 24px 28px;
  border: 2px solid #d4ebd8;
  box-shadow: 0 10px 30px rgba(11, 48, 40, 0.06);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  overflow: hidden;
}
.how-step-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: #075b3f;
  transition: background 0.3s ease;
}
.how-step-card:hover, .how-step-card.active {
  transform: translateY(-10px);
  border-color: #13805d;
  box-shadow: 0 20px 45px rgba(7, 91, 63, 0.14);
}
.how-step-card:hover:before, .how-step-card.active:before {
  background: #edbd42;
}
.step-number-coin {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #075b3f;
  color: #effb8c;
  display: grid;
  place-items: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 20px;
  box-shadow: 0 4px 14px rgba(7, 91, 63, 0.3);
  border: 2px solid #c9ffc4;
}
.how-step-card:hover .step-number-coin {
  background: #edbd42;
  color: #0b3028;
  border-color: #fff;
}
.step-icon-badge {
  font-size: 1.6rem;
  margin-bottom: 12px;
}
.how-step-card h3 {
  font-size: 1.08rem;
  font-weight: 800;
  color: #0b3028;
  margin: 0 0 10px;
}
.how-step-card p {
  font-size: 0.76rem;
  line-height: 1.8;
  color: #527362;
  margin: 0 0 16px;
  flex: 1;
}
.step-perk {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f0faf1;
  border: 1px solid #c8e8ce;
  color: #075b3f;
  padding: 4px 12px;
  border-radius: 99px;
  font-size: 0.68rem;
  font-weight: 700;
}

/* Booking Form Contrast & Visibility Guarantee */
.booking-card {
  background: #ffffff !important;
  color: #0b3028 !important;
  padding: 30px !important;
  border-radius: 24px !important;
  box-shadow: -15px 22px 0 #1b6d4e, 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}
.booking-card label {
  display: block;
  margin: 16px 0;
}
.booking-card label span {
  display: block;
  font-size: 0.78rem !important;
  font-weight: 800 !important;
  color: #0b3028 !important;
  margin-bottom: 8px !important;
}
.booking-card select,
.booking-card input {
  width: 100% !important;
  border: 2px solid #b3d9bc !important;
  border-radius: 12px !important;
  padding: 14px 16px !important;
  background: #ffffff !important;
  color: #0b3028 !important;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  font-family: inherit !important;
  box-sizing: border-box !important;
  outline: none !important;
}
.booking-card select:focus,
.booking-card input:focus {
  border-color: #075b3f !important;
  box-shadow: 0 0 0 3px rgba(7, 91, 63, 0.15) !important;
}
.booking-card option {
  color: #0b3028 !important;
  background: #ffffff !important;
  font-size: 0.88rem !important;
  padding: 10px !important;
}
.booking-card input::placeholder {
  color: #799787 !important;
  opacity: 1 !important;
}

/* 8. Interactive Instant Price & Time Estimator */
.calculator-section {
  max-width: 1240px;
  margin: 0 auto 100px;
  padding: 0 40px;
}
.calculator-card {
  background: #f6fcf5;
  border: 2px solid #b7e3bf;
  border-radius: 32px;
  padding: 50px;
  box-shadow: 0 20px 50px rgba(7, 91, 63, 0.08);
}
.calc-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 45px;
  align-items: start;
  margin-top: 35px;
}
.calc-inputs-col {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.calc-group-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #0b3028;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.calc-chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.calc-chip-btn {
  background: #fff;
  border: 1px solid #cce2d1;
  color: #385b4a;
  padding: 10px 18px;
  border-radius: 99px;
  font-family: inherit;
  font-size: 0.76rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}
.calc-chip-btn:hover {
  border-color: #075b3f;
  color: #075b3f;
}
.calc-chip-btn.active {
  background: #075b3f;
  color: #c9ffc4;
  border-color: #075b3f;
  box-shadow: 0 4px 12px rgba(7, 91, 63, 0.25);
}
.calc-addons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.addon-label {
  background: #fff;
  border: 1px solid #cce2d1;
  padding: 12px 16px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.addon-label:hover {
  border-color: #075b3f;
}
.addon-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #075b3f;
  cursor: pointer;
}
.addon-text {
  display: flex;
  flex-direction: column;
}
.addon-text b {
  font-size: 0.74rem;
  color: #0b3028;
}
.addon-text small {
  font-size: 0.65rem;
  color: #13805d;
  font-weight: 700;
}

/* Calculator Summary Result Box */
.calc-summary-col {
  background: #075b3f;
  color: #fff;
  border-radius: 24px;
  padding: 36px 30px;
  box-shadow: 0 15px 35px rgba(7, 91, 63, 0.3);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 100px;
}
.calc-summary-top {
  border-bottom: 1px solid rgba(201, 255, 196, 0.25);
  padding-bottom: 16px;
}
.calc-summary-top h3 {
  font-size: 1.1rem;
  margin: 0 0 6px;
  color: #f3fff4;
}
.calc-summary-top p {
  font-size: 0.7rem;
  color: #b7e3bf;
  margin: 0;
}
.calc-price-display {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.calc-currency {
  font-size: 1.1rem;
  font-weight: 700;
  color: #effb8c;
}
.calc-total-number {
  font-family: 'Manrope', sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.calc-per-visit {
  font-size: 0.75rem;
  color: #c9ffc4;
}
.calc-specs-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  background: rgba(255, 255, 255, 0.08);
  padding: 14px;
  border-radius: 14px;
}
.calc-spec-item b {
  display: block;
  font-size: 0.65rem;
  color: #bce5c5;
}
.calc-spec-item span {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
}
.calc-apply-btn {
  background: #effb8c;
  color: #075b3f;
  border: 0;
  padding: 16px;
  border-radius: 99px;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.25s ease;
  text-decoration: none;
}
.calc-apply-btn:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* 9. Interactive Bahrain Area Coverage Checker */
.area-checker-section {
  max-width: 1240px;
  margin: 0 auto 100px;
  padding: 0 40px;
}
.area-checker-card {
  background: #eef6ee;
  border: 1px solid #cbe3ce;
  border-radius: 28px;
  padding: 45px;
}
.area-search-wrap {
  display: flex;
  gap: 15px;
  margin: 28px 0 20px;
}
.area-input-box {
  flex: 1;
  position: relative;
}
.area-input-box input {
  width: 100%;
  padding: 14px 20px;
  border-radius: 14px;
  border: 1px solid #b8d9be;
  background: #fff;
  font-family: inherit;
  font-size: 0.85rem;
  color: #0b3028;
}
.area-input-box input:focus {
  outline: none;
  border-color: #075b3f;
  box-shadow: 0 0 0 3px rgba(7, 91, 63, 0.15);
}
.area-quick-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.area-pill {
  background: #fff;
  border: 1px solid #c2dec7;
  color: #3e604f;
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 0.72rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.area-pill:hover, .area-pill.active {
  background: #075b3f;
  color: #c9ffc4;
  border-color: #075b3f;
}
.area-result-box {
  background: #fff;
  border-radius: 18px;
  padding: 20px 24px;
  border: 1px solid #cde5d2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.area-result-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.area-status-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #daf5de;
  color: #0d7f55;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  font-weight: 800;
}
.area-result-text b {
  display: block;
  font-size: 0.88rem;
  color: #0b3028;
}
.area-result-text span {
  font-size: 0.74rem;
  color: #4b6e5b;
}

/* 10. Verified Reviews & Testimonials */
.reviews-section {
  background: #fdfdfa;
  padding: 90px 40px;
  border-top: 1px solid #e1ece1;
  border-bottom: 1px solid #e1ece1;
}
.reviews-container {
  max-width: 1240px;
  margin: 0 auto;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 45px;
}
.review-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  border: 1px solid #dbead9;
  box-shadow: 0 10px 25px rgba(11, 48, 40, 0.04);
  display: flex;
  flex-direction: column;
}
.review-stars {
  color: #edbd42;
  font-size: 0.95rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.review-quote {
  font-size: 0.8rem;
  line-height: 1.9;
  color: #3b5a4b;
  margin: 0 0 20px;
  flex: 1;
}
.review-client {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #edf5ee;
  padding-top: 14px;
}
.client-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #d8f5db;
  color: #075b3f;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.8rem;
}
.client-info b {
  display: block;
  font-size: 0.78rem;
  color: #0b3028;
}
.client-info span {
  font-size: 0.68rem;
  color: #728f80;
}

/* 11. Comprehensive FAQ Accordion */
.faq-section {
  max-width: 980px;
  margin: 0 auto 100px;
  padding: 0 30px;
}
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 45px;
}
.faq-item {
  background: #fff;
  border: 1px solid #cfe2d3;
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item.active {
  border-color: #075b3f;
  box-shadow: 0 8px 24px rgba(7, 91, 63, 0.08);
}
.faq-trigger {
  width: 100%;
  padding: 22px 26px;
  background: transparent;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: inherit;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  color: #0b3028;
  cursor: pointer;
}
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #eef7ee;
  color: #075b3f;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: #075b3f;
  color: #c9ffc4;
}
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.faq-content {
  padding: 0 26px 24px;
  font-size: 0.82rem;
  line-height: 2;
  color: #4b6a5b;
}

/* 12. SEO Articles & Knowledge Hub */
.articles-section {
  max-width: 1240px;
  margin: 0 auto 100px;
  padding: 0 40px;
}
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 45px;
}
.article-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #d9eada;
  box-shadow: 0 8px 20px rgba(11, 48, 40, 0.04);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}
.article-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(11, 48, 40, 0.09);
  border-color: #8edc9c;
}
.article-thumb {
  height: 190px;
  background: #0a4c3c;
  position: relative;
  overflow: hidden;
}
.article-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.article-card:hover .article-thumb img {
  transform: scale(1.06);
}
.article-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(7, 91, 63, 0.85);
  color: #c9ffc4;
  padding: 4px 12px;
  border-radius: 99px;
  font-size: 0.65rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}
html[dir="ltr"] .article-tag {
  right: auto;
  left: 14px;
}
.article-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.article-date {
  font-size: 0.68rem;
  color: #799788;
  margin-bottom: 8px;
}
.article-body h3 {
  font-size: 0.98rem;
  color: #0b3028;
  margin: 0 0 10px;
  line-height: 1.5;
}
.article-body p {
  font-size: 0.74rem;
  line-height: 1.8;
  color: #557564;
  margin: 0 0 18px;
}
.article-read-more {
  margin-top: auto;
  color: #075b3f;
  font-size: 0.76rem;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.article-read-more:hover {
  text-decoration: underline;
}

/* 13. High-Converting Closing Banner */
.closing-cta-section {
  max-width: 1240px;
  margin: 0 auto 90px;
  padding: 0 40px;
}
.closing-cta-card {
  background: linear-gradient(135deg, #075b3f 0%, #053b2a 100%);
  color: #fff;
  border-radius: 36px;
  padding: 70px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(7, 91, 63, 0.3);
}
.closing-cta-card .eyebrow {
  color: #bbf6be;
}
.closing-cta-card h2 {
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  line-height: 1.2;
  letter-spacing: -0.06em;
  margin: 0 auto 24px;
  max-width: 820px;
  font-weight: 800;
}
.closing-cta-card h2 em {
  font-family: Georgia, serif;
  color: #effb8c;
  font-weight: 400;
}
.closing-cta-card p {
  font-size: 0.92rem;
  line-height: 2;
  color: #c9e8d3;
  max-width: 600px;
  margin: 0 auto 35px;
}
.closing-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* 14. Full SEO Mega Footer */
.mega-footer {
  background: #082d23;
  color: #fff;
  padding: 80px 40px 30px;
  border-top: 1px solid rgba(201, 255, 196, 0.15);
}
.mega-footer-inner {
  max-width: 1240px;
  margin: 0 auto;
}
.mega-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 45px;
  margin-bottom: 60px;
}
.footer-col h4 {
  font-size: 0.88rem;
  color: #effb8c;
  margin: 0 0 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.footer-col p {
  font-size: 0.74rem;
  line-height: 1.9;
  color: #a8cdb9;
  margin: 0 0 16px;
}
.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links-list a {
  color: #bddbc9;
  text-decoration: none;
  font-size: 0.74rem;
  transition: color 0.2s ease;
}
.footer-links-list a:hover {
  color: #effb8c;
}
.footer-payment-badges {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.payment-badge {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.65rem;
  font-weight: 700;
  color: #fff;
}
.mega-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.7rem;
  color: #7da590;
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  color: inherit;
  text-decoration: none;
}
.footer-bottom-links a:hover {
  color: #effb8c;
}

/* 15. Floating Quick Action Bubble (WhatsApp & Direct Call) */
.floating-quick-bar {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
html[dir="rtl"] .floating-quick-bar {
  right: auto;
  left: 25px;
}
.floating-action-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.22);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
}
.floating-action-btn.whatsapp {
  background: #25d366;
  color: #fff;
}
.floating-action-btn.whatsapp:before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: radarPulse 2.2s infinite;
  opacity: 0.6;
}
@keyframes radarPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}
.floating-action-btn:hover {
  transform: scale(1.12);
}
.floating-action-btn svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

/* Responsive Breakpoints */
@media (max-width: 1100px) {
  .services-catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .standards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mega-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .hero-badges-row {
    justify-content: center;
  }
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .transformation-box {
    grid-template-columns: 1fr;
    padding: 35px 25px;
  }
  .calc-grid {
    grid-template-columns: 1fr;
  }
  .calc-summary-col {
    position: static;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .articles-grid {
    grid-template-columns: 1fr;
  }
  .area-result-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .site-header nav {
    height: 72px;
  }
  .hero-stage {
    height: 380px;
  }
  .metrics-grid {
    grid-template-columns: 1fr;
  }
  .services-catalog-grid {
    grid-template-columns: 1fr;
  }
  .standards-grid {
    grid-template-columns: 1fr;
  }
  .calculator-card {
    padding: 25px 18px;
  }
  .calc-addons-grid {
    grid-template-columns: 1fr;
  }
  .mega-footer-grid {
    grid-template-columns: 1fr;
  }
  .mega-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .closing-cta-card {
    padding: 45px 20px;
  }
  .bubble-service-badge,
  html[dir="ltr"] .bubble-service-badge,
  html[dir="rtl"] .bubble-service-badge {
    top: 16px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    padding: 6px 14px;
    font-size: 0.72rem;
    max-width: 88%;
  }
  .bubble-switches-bar {
    bottom: 14px;
    padding: 5px 10px;
    gap: 6px;
  }
  .bubble-switch-btn {
    width: 8px;
    height: 8px;
  }
  .bubble-switch-btn.active {
    width: 18px;
  }
}

