/* ==========================================================
   ORA HOME SOLUTIONS CAROUSEL & HOME PAGE POLISH STYLES
   Modern light-mode V3 card layout, Bento slider, and Marquee.
   ========================================================== */

/* ── Scoped Light Card V3 Style (for Recommended Services) ── */
.services-section .service-grid-v3 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin: 0 auto;
  max-width: var(--container-max);
}
@media (max-width: 1024px) {
  .services-section .service-grid-v3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .services-section .service-grid-v3 {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

.service-card-v3 {
  background: var(--white);
  border: 1.5px solid var(--hairline);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  text-align: left;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, box-shadow;
}
.service-card-v3:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 35px -8px rgba(79, 70, 229, 0.18);
  border-color: var(--brand-orange);
}
.service-card-v3-media {
  aspect-ratio: 16/11;
  overflow: hidden;
  position: relative;
  background: var(--surface-light);
}
.service-card-v3-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.service-card-v3:hover .service-card-v3-img {
  transform: scale(1.08);
}
.service-card-v3-price {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--brand-orange); /* Vibrant Indigo Bg */
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12.5px;
  padding: 5px 14px;
  border-radius: var(--r-pill);
  z-index: 10;
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.3);
}
.service-card-v3-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.service-card-v3-rating-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.service-card-v3-tag-line {
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brand-orange);
  background: var(--blue-bg-soft);
  padding: 3px 8px;
  border-radius: var(--r-pill);
}
.service-card-v3-stars {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: var(--accent-rating);
  font-size: 12px;
  font-weight: 700;
}
.service-card-v3-stars svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}
.service-card-v3-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-strong);
  margin: 0 0 14px 0;
  line-height: 1.35;
}
.service-card-v3-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-card-v3-bullets li {
  font-size: 13px;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-card-v3-bullets svg {
  color: var(--brand-orange);
  flex-shrink: 0;
}
.service-card-v3-btn-wa {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: transparent;
  border: 1.5px solid var(--brand-dark);
  color: var(--brand-dark);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  padding: 11px 20px;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.service-card-v3:hover .service-card-v3-btn-wa {
  background: var(--brand-dark);
  color: #fff;
  border-color: var(--brand-dark);
}
.service-card-v3-btn-wa:hover {
  background: var(--brand-dark) !important;
  color: #ffffff !important;
  border-color: var(--brand-dark) !important;
  transform: translateY(-2px);
}
.service-card-v3-btn-wa svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
}

/* ── Variant B: Bento Asymmetric Details Card ── */
.card-v2 {
  background: var(--white);
  border: 1.5px solid var(--hairline);
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  height: 100%;
  position: relative;
  text-align: left;
}
@media(max-width: 480px) {
  .card-v2 {
    grid-template-columns: 1fr;
  }
  .card-v2-aside {
    height: 160px;
  }
}
.card-v2-main {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card-v2-badge-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.card-v2-tag {
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brand-orange);
  background: var(--blue-bg-soft);
  padding: 3px 8px;
  border-radius: var(--r-pill);
}
.card-v2-price {
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 800;
  color: var(--text-strong);
}
.card-v2-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--text-strong);
  margin: 0 0 10px 0;
  line-height: 1.35;
}
.card-v2-desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-main);
  margin: 0 0 20px 0;
}
.card-v2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--brand-dark);
  color: #fff;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: var(--r-pill);
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  align-self: flex-start;
}
.card-v2-btn:hover {
  background: var(--brand-orange);
  transform: translateY(-1px);
}
.card-v2-btn svg {
  color: #fff;
}
.card-v2-aside {
  position: relative;
  overflow: hidden;
  background: var(--surface-light);
}
.card-v2-aside img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.card-v2:hover .card-v2-aside img {
  transform: scale(1.06);
}
.card-v2-rating-circle {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(11, 19, 32, 0.85);
  backdrop-filter: blur(6px);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.1;
  z-index: 10;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.card-v2-rating-circle span {
  font-size: 8px;
  color: var(--accent-rating);
}

/* ── Horizontal Services Category Slider ── */
.v4-bento-slider-container {
  position: relative;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
}
.v4-bento-slider-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  padding: 16px 0;
}
.v4-bento-slider-track::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}
.v4-bento-slide {
  flex: 0 0 calc(50% - 12px);
  scroll-snap-align: start;
  box-sizing: border-box;
}
@media(max-width: 991px) {
  .v4-bento-slide {
    flex: 0 0 100%;
  }
}
.v4-bento-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--hairline);
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: var(--shadow-lg);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--text-strong);
}
.v4-bento-nav-btn:hover {
  background: var(--brand-orange);
  color: #fff;
  border-color: var(--brand-orange);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 10px 25px -5px rgba(79, 70, 229, 0.4);
}
.v4-bento-nav-btn.prev {
  left: -22px;
}
.v4-bento-nav-btn.next {
  right: -22px;
}
@media(max-width: 1240px) {
  .v4-bento-nav-btn.prev { left: 10px; }
  .v4-bento-nav-btn.next { right: 10px; }
}

/* ── Dynamic Infinite Auto-Scrolling Marquee ── */
.v4-marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 30px 0;
  background: var(--white);
  border-top: 1.5px solid var(--hairline);
  border-bottom: 1.5px solid var(--hairline);
  --marquee-speed: 28s;
  --marquee-gap: 40px;
}
.v4-marquee-wrap {
  display: flex;
  user-select: none;
  overflow: hidden;
  width: 100%;
  position: relative;
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}
.v4-marquee-track {
  display: flex;
  flex-shrink: 0;
  white-space: nowrap;
  gap: var(--marquee-gap);
  min-width: 100%;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  animation: marquee-scroll var(--marquee-speed) linear infinite;
}
.v4-marquee-wrap:hover .v4-marquee-track {
  animation-play-state: paused;
}
@keyframes marquee-scroll {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(calc(-100% - var(--marquee-gap)), 0, 0); }
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: var(--marquee-gap);
  font-family: var(--font-display);
  font-size: clamp(24px, 3.2vw, 36px);
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--brand-dark);
}
.marquee-item.marquee-outline {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(11, 19, 32, 0.4);
}
.marquee-star {
  width: 26px;
  height: 26px;
  color: var(--brand-orange);
  animation: star-rotate 16s linear infinite;
  flex-shrink: 0;
}
@keyframes star-rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ==========================================================
   WHY CHOOSE US V2 STYLES
   Symmetrical grid layout, counters, service slider, and marquee.
   ========================================================== */
.wcu-section-v2 {
  padding: 80px 0;
  background: var(--surface-warm);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  position: relative;
  overflow: hidden;
}
.wcu-grid-v2 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 52px;
  align-items: start;
}
@media (max-width: 1024px) {
  .wcu-grid-v2 {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ── Left Content column ── */
.wcu-left-content-v2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.wcu-eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-orange); /* Indigo */
  background: var(--blue-bg-soft);
  padding: 5px 12px;
  border-radius: var(--r-pill);
  border: 1.5px solid rgba(79, 70, 229, 0.12);
  margin-bottom: 20px;
}
.wcu-heading-v2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.8vw, 42px);
  font-weight: 800;
  color: var(--text-strong);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 16px 0;
}
.wcu-desc-v2 {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-main);
  margin: 0 0 32px 0;
}

/* ── Credibility trust cards ── */
.wcu-credibility-grid-v2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 24px;
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 520px) {
  .wcu-credibility-grid-v2 {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.wcu-credibility-card-v2 {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: all var(--t-fast);
}
.wcu-credibility-card-v2:hover {
  transform: none;
  box-shadow: none;
}
.wcu-credibility-icon-v2 {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--blue-bg-soft);
  color: var(--brand-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wcu-credibility-icon-v2 svg {
  width: 20px;
  height: 20px;
}
.wcu-credibility-info-v2 {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: left;
}
.wcu-credibility-title-v2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--text-strong);
}
.wcu-credibility-sub-v2 {
  font-size: 12px;
  color: var(--text-main);
}

/* ── Buttons Row ── */
.wcu-buttons-row-v2 {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 480px) {
  .wcu-buttons-row-v2 {
    flex-direction: column;
    width: 100%;
  }
  .wcu-btn-primary-v2, .wcu-btn-outline-v2 {
    width: 100%;
    justify-content: center;
  }
}
.wcu-btn-primary-v2 {
  background: var(--brand-dark);
  color: var(--white);
  border: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  padding: 16px 28px;
  border-radius: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}
.wcu-btn-primary-v2:hover {
  background: var(--brand-orange);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -10px rgba(79, 70, 229, 0.4);
}
.wcu-btn-outline-v2 {
  background: transparent;
  color: var(--brand-dark);
  border: 2px solid var(--hairline);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}
.wcu-btn-outline-v2:hover {
  border-color: var(--brand-dark);
  background: rgba(11, 19, 32, 0.03);
  transform: translateY(-2px);
}

/* ── Right Stack ── */
.wcu-right-stack-v2 {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

/* ── Stack 1: Service Slider (strictly 2 columns) ── */
.wcu-slider-wrapper-v2 {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.wcu-slider-header-v2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.wcu-slider-label-v2 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-strong);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.wcu-slider-nav-v2 {
  display: flex;
  gap: 8px;
}
.wcu-nav-btn-v2 {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--hairline);
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--text-strong);
}
.wcu-nav-btn-v2:hover {
  background: var(--brand-orange);
  color: var(--white);
  border-color: var(--brand-orange);
}
.wcu-nav-btn-v2 svg {
  width: 16px;
  height: 16px;
}
.wcu-slider-track-v2 {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 4px 0 16px 0;
}
.wcu-slider-track-v2::-webkit-scrollbar {
  display: none;
}
.wcu-service-card-wrapper {
  flex: 0 0 calc(50% - 10px);
  scroll-snap-align: start;
  box-sizing: border-box;
}
@media (max-width: 580px) {
  .wcu-service-card-wrapper {
    flex: 0 0 100%;
  }
}

/* Vertical Service Card embedded styling */
.wcu-service-card {
  background: var(--white);
  border: 1.5px solid var(--hairline);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: left;
  transition: all var(--t-default);
}
.wcu-service-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-orange);
  box-shadow: var(--shadow-md);
}
.wcu-service-card-media {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
  background: var(--surface-light);
}
.wcu-service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.wcu-service-card:hover .wcu-service-card-media img {
  transform: scale(1.04);
}
.wcu-service-card-price {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(11, 19, 32, 0.85);
  backdrop-filter: blur(6px);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: var(--r-pill);
}
.wcu-service-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.wcu-service-card-rating {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.wcu-service-card-tag {
  font-family: var(--font-mono);
  font-size: 8.5px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--brand-orange);
  background: var(--blue-bg-soft);
  padding: 2px 6px;
  border-radius: var(--r-pill);
}
.wcu-service-card-stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: var(--accent-rating);
  font-size: 11px;
  font-weight: 700;
}
.wcu-service-card-stars svg {
  width: 11px;
  height: 11px;
  fill: currentColor;
}
.wcu-service-card-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-strong);
  margin: 0 0 10px 0;
  line-height: 1.3;
}
.wcu-service-card-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.wcu-service-card-bullets li {
  font-size: 11.5px;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 6px;
}
.wcu-service-card-bullets svg {
  color: var(--brand-orange);
  flex-shrink: 0;
}
.wcu-service-card-btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: transparent;
  border: 1.5px solid var(--brand-dark);
  color: var(--brand-dark);
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.wcu-service-card:hover .wcu-service-card-btn {
  background: var(--brand-dark);
  color: #fff;
}

/* ── Stack 2: 3-Counter Grid (Component 11 style) ── */
.wcu-stats-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
}
@media (max-width: 520px) {
  .wcu-stats-grid-v2 {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.wcu-stat-card-v2 {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  text-align: left;
  transition: border-color 0.3s, transform 0.3s var(--t-default), box-shadow 0.3s;
}
.wcu-stat-card-v2::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(79,70,229,0.04), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.wcu-stat-card-v2:hover {
  border-color: rgba(79,70,229,0.25);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.wcu-stat-card-v2:hover::before {
  opacity: 1;
}
.wcu-stat-num-wrap-v2 {
  display: flex;
  align-items: baseline;
  gap: 1px;
  position: relative;
  z-index: 1;
}
.wcu-stat-number-v2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--text-strong);
}
.wcu-stat-suffix-v2 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--brand-orange);
}
.wcu-stat-title-v2 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-strong);
  margin: 12px 0 0 0;
  position: relative;
  z-index: 1;
  text-transform: capitalize;
}
.wcu-pulse-indicator-v2 {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-green);
  position: absolute;
  top: 16px;
  right: 16px;
}
.wcu-pulse-indicator-v2::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1.5px solid var(--brand-green);
  animation: indicator-pulse-v2 2s infinite ease-in-out;
}
@keyframes indicator-pulse-v2 {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2); opacity: 0; }
}

/* ── Stack 3: Category Slider (slider-style-2 bento style) ── */
.wcu-category-slider-v2 {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  background: var(--white);
  border: 1.5px solid var(--hairline);
  border-radius: 16px;
  padding: 10px 14px;
}
.wcu-category-track-v2 {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-behavior: smooth;
  width: 100%;
}
.wcu-category-track-v2::-webkit-scrollbar {
  display: none;
}
.wcu-category-item-v2 {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--surface-light);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  text-decoration: none;
  color: var(--text-strong);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.wcu-category-item-v2:hover {
  background: var(--blue-bg-soft);
  color: var(--brand-orange);
  border-color: rgba(79, 70, 229, 0.2);
}
.wcu-category-icon-v2 {
  display: flex;
  align-items: center;
  color: var(--brand-orange);
}
.wcu-category-icon-v2 svg {
  width: 14px;
  height: 14px;
}
.wcu-category-title-v2 {
  line-height: 1;
}
.wcu-slider-btn-v2 {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--hairline);
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: var(--shadow-sm);
  color: var(--text-strong);
  z-index: 10;
}
.wcu-slider-btn-v2:hover {
  background: var(--brand-orange);
  color: #fff;
  border-color: var(--brand-orange);
}
.wcu-slider-btn-v2 svg {
  width: 12px;
  height: 12px;
  stroke-width: 2.5;
}
.wcu-slider-btn-v2.prev {
  left: -14px;
}
.wcu-slider-btn-v2.next {
  right: -14px;
}

/* ── Services Horizontal Slider (About Page) ── */
.services-slider-section {
  padding: 90px 0;
  background: var(--white);
  border-bottom: 1px solid var(--hairline);
  position: relative;
  overflow: hidden;
}
.services-slider-container {
  position: relative;
  width: 100%;
}
.services-slider-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  width: 100%;
  padding: 12px 0 24px;
}
.services-slider-track::-webkit-scrollbar {
  display: none;
}
.services-slider-card-wrap {
  flex: 0 0 290px;
  flex-shrink: 0;
  box-sizing: border-box;
}
@media (max-width: 480px) {
  .services-slider-card-wrap {
    flex: 0 0 260px;
  }
}
/* Navigation buttons */
.services-slider-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
}
.services-slider-nav {
  display: flex;
  gap: 10px;
}
.services-slider-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--hairline);
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--brand-dark);
}
.services-slider-nav-btn:hover {
  background: var(--brand-dark);
  color: var(--white);
  border-color: var(--brand-dark);
}
.services-slider-nav-btn svg {
  width: 18px;
  height: 18px;
}

/* Dual CTA Card buttons styling */
.service-card-v3-btn-call {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: transparent;
  border: 1.5px solid var(--brand-dark);
  color: var(--brand-dark);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11.5px;
  padding: 10px 8px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
}
.service-card-v3-btn-call:hover {
  background: rgba(11, 19, 32, 0.03);
  transform: translateY(-2px);
}
.service-card-v3-btn-wa-new {
  flex: 1.4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--brand-dark);
  color: #fff;
  border: 1.5px solid var(--brand-dark);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11.5px;
  padding: 10px 8px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
}
.service-card-v3-btn-wa-new:hover {
  background: var(--brand-dark) !important;
  color: #ffffff !important;
  border-color: var(--brand-dark) !important;
  transform: translateY(-2px);
  box-shadow: none !important;
}

/* Overlapping Navigation Buttons for Horizontal Sliders */
.services-slider-nav-btn.overlap {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--hairline);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--brand-dark);
}
.services-slider-nav-btn.overlap:hover {
  background: var(--brand-dark);
  color: var(--white);
  border-color: var(--brand-dark);
  box-shadow: 0 10px 20px -10px rgba(11, 19, 32, 0.5);
  transform: translateY(-50%) scale(1.08); /*Tactile lift*/
}
.services-slider-nav-btn.overlap.prev {
  left: -22px;
}
.services-slider-nav-btn.overlap.next {
  right: -22px;
}
@media (max-width: 768px) {
  .services-slider-nav-btn.overlap.prev {
    left: -10px;
  }
  .services-slider-nav-btn.overlap.next {
    right: -10px;
  }
}

/* ── Hero Dark Slate Custom Category Cards (Style-2 overrides) ── */
.slider-style-2 .slider-item.hero-custom-category-item {
  background: #1e293b; /* Premium Dark Slate */
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.3);
  transition: all var(--t-fast);
}

.slider-style-2 .slider-item.hero-custom-category-item .slider-title {
  color: #f1f5f9; /* Slate 100 near white */
}

.slider-style-2 .slider-item.hero-custom-category-item .slider-icon {
  color: #ffffff; /* Crisp white icon for high contrast */
}

.slider-style-2 .slider-item.hero-custom-category-item:hover {
  background: #0f172a; /* Slate 900 */
  border-color: var(--brand-orange);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -5px rgba(249, 115, 22, 0.25);
}

.slider-style-2 .slider-item.hero-custom-category-item:hover .slider-icon {
  transform: scale(1.05);
}

/* ==========================================================
   GLOBAL PRIMARY & SECONDARY BUTTON HOVER STYLES
   ========================================================== */

/* ── Global Primary Button Styling (Slate Dark normal, White hover) ── */
.service-card-v3-btn-wa-new,
.service-card-v3-btn-wa,
.about-cta-btn,
.faq-cta,
.wcu-btn-primary-v2 {
  background: var(--brand-dark) !important;
  color: #ffffff !important;
  border: 1.5px solid var(--brand-dark) !important;
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-sizing: border-box !important;
}

.service-card-v3-btn-wa-new:hover,
.service-card-v3-btn-wa:hover,
.about-cta-btn:hover,
.faq-cta:hover,
.wcu-btn-primary-v2:hover {
  background: #ffffff !important;
  color: var(--brand-dark) !important;
  border-color: var(--brand-dark) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(11, 19, 32, 0.1) !important;
}

/* Ensure SVGs inside primary buttons inherit color correctly */
.service-card-v3-btn-wa-new svg,
.service-card-v3-btn-wa svg,
.about-cta-btn svg,
.faq-cta svg,
.wcu-btn-primary-v2 svg {
  stroke: currentColor !important;
  transition: stroke 0.3s ease !important;
}

/* ── Secondary CTA Call Buttons Styling (White background globally, white hover) ── */
.service-card-v3-btn-call,
.wcu-btn-outline-v2 {
  background: #ffffff !important;
  color: var(--brand-dark) !important;
  border: 1.5px solid var(--brand-dark) !important;
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-sizing: border-box !important;
}

.service-card-v3-btn-call:hover,
.wcu-btn-outline-v2:hover {
  background: #ffffff !important;
  color: var(--brand-dark) !important;
  border-color: var(--brand-dark) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(11, 19, 32, 0.08) !important;
}

/* Ensure SVGs inside Call Now buttons inherit color correctly */
.service-card-v3-btn-call svg,
.wcu-btn-outline-v2 svg {
  stroke: currentColor !important;
  transition: stroke 0.3s ease !important;
}


/* ── About Category Image Slider Section Styles ── */
.about-category-slider-section {
  padding: 40px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.about-category-badge-row {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.about-category-badge {
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-category-badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue-bg-soft);
  color: var(--brand-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-category-badge-icon svg {
  width: 20px;
  height: 20px;
}
.about-category-badge-content {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.about-category-badge-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-strong);
  line-height: 1.2;
}
.about-category-badge-sub {
  font-size: 12.5px;
  color: var(--text-main);
  margin-top: 2px;
}
.about-category-track-wrapper {
  position: relative;
  width: 100%;
}
.about-category-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 8px 0;
}
.about-category-track::-webkit-scrollbar {
  display: none;
}
.about-category-card {
  flex: 0 0 calc(20% - 16px);
  min-width: 240px;
  height: 330px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  cursor: pointer;
}
.about-category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(11, 19, 32, 0.14);
}
.about-category-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.about-category-card:hover .about-category-card-img {
  transform: scale(1.06);
}
.about-category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 19, 32, 0.95) 0%, rgba(11, 19, 32, 0.4) 50%, transparent 100%);
  z-index: 2;
}
.about-category-card-content {
  position: absolute;
  bottom: 24px;
  left: 20px;
  right: 20px;
  z-index: 3;
  text-align: left;
}
.about-category-card-eyebrow {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white) !important;
  background: var(--brand-orange) !important;
  padding: 4px 10px;
  border-radius: 8px;
  margin-bottom: 10px;
  display: inline-block;
  box-shadow: 0 4px 10px rgba(79, 70, 229, 0.15);
}
.about-category-card-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin: 0;
}
@media (max-width: 1024px) {
  .about-category-card {
    flex: 0 0 calc(33.333% - 14px);
  }
}
@media (max-width: 768px) {
  .about-category-card {
    flex: 0 0 calc(50% - 10px);
  }
}
@media (max-width: 480px) {
  .about-category-card {
    flex: 0 0 100%;
  }
}





