/* =====================================================================
   INDEX PAGE COMPONENT STYLES
   ===================================================================== */

/* ---------------------------------------------------------------------
   HERO SECTION
--------------------------------------------------------------------- */

.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: 140px;
  padding-bottom: 60px;
  display: flex;
  align-items: flex-start;
  box-sizing: border-box;
  background-color: #0b1528;
  overflow: hidden;
}

.hero-section .container {
  margin-top: auto;
  margin-bottom: auto;
}

/* Background Carousel */

.hero-bg-carousel {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.hero-bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 2s ease-in-out;
  z-index: 1;
}

.hero-bg-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(29, 29, 31, 0.815) 0%,
    rgba(169, 195, 243, 0) 100%
  );
  z-index: 3;
}

/* Carousel Content Container */

.hero-content-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 700px;
  z-index: 10;
}

.hero-content-slide {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) translateX(-30px);
  width: 100%;
  max-width: 680px;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1),
    transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.hero-content-slide.active {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
  pointer-events: auto;
  z-index: 12;
}

.hero-content-slide .badge-highlight {
  background-color: rgba(255, 255, 255, 0.12);
  color: #ffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  margin-bottom: 16px;
}

.hero-content-slide .hero-title {
  color: var(--white);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
}

.hero-content-slide .hero-title span {
  color: var(--accent-yellow);
}

.hero-content-slide .hero-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.hero-content-slide .hero-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-bottom: 24px;
  width: 100%;
}

.hero-content-slide .hero-actions .btn {
  width: auto;
}

.btn-white-outline i {
  scale: 1.2;
}

/* Vertical Carousel Controls (dots on the right) */

.hero-carousel-controls {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 20;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-dot:hover {
  background-color: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.hero-dot.active {
  background-color: var(--accent-yellow);
  border-color: var(--white);
  transform: scale(1.3);
  box-shadow: 0 0 10px var(--accent-yellow);
}

/* Fallback base styles for standard elements if used outside carousel context */

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero-title span {
  font-weight: 800;
}
.hero-desc {
  font-size: 14px;
  margin-bottom: 36px;
  max-width: 600px;
  line-height: 1.6;
}

/* Mobile responsive media query for hero section */

@media (max-width: 768px) {
  .hero-section {
    height: auto;
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 80px;
  }

  .hero-content-carousel {
    height: auto;
    min-height: auto;
    display: block;
  }

  .hero-content-slide {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    opacity: 0;
    height: 0;
    overflow: hidden;
    pointer-events: none;
    transition: opacity 0.8s ease;
  }

  .hero-content-slide.active {
    opacity: 1;
    height: auto;
    transform: none;
    pointer-events: auto;
    padding: 10px;
  }

  .hero-content-slide .hero-title {
    font-size: 2.25rem;
  }

  .hero-content-slide .hero-desc {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .hero-content-slide .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
    margin-bottom: 24px;
  }

  .hero-content-slide .hero-actions .btn {
    width: 100%;
  }

  .hero-content-slide .hero-contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-top: 16px;
  }

  .hero-carousel-controls {
    right: 15px;
    gap: 12px;
  }

  .hero-dot {
    width: 10px;
    height: 10px;
  }
}

/* ---------------------------------------------------------------------
  SERVICES & ABOUT SECTION
--------------------------------------------------------------------- */

.services-section {
  background-color: var(--white);
  position: relative;
}

/* Services section title underline */

.services-section .section-subtitle {
  color: var(--yellow-dark);
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

/* Services Slider styling */

.services-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 48px;
  margin-bottom: 80px;
  width: 100%;
}
.services-slider-track-container {
  overflow: hidden;
  width: 100%;
  padding: 16px 0;
}
.services-slider-track {
  display: flex;
  gap: 32px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card-new {
  flex: 0 0 100%;
  background-color: var(--white);
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.04);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: start;
  text-align: start;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: visible;
}
@media (min-width: 640px) {
  .service-card-new {
    flex: 0 0 calc((100% - 32px) / 2);
  }
}
@media (min-width: 1024px) {
  .service-card-new {
    flex: 0 0 calc((100% - 64px) / 3);
  }
}

.service-card-new:hover {
  transform: translateY(-10px);
  border-color: var(--yellow);
  box-shadow: 0 20px 40px -15px rgba(40, 95, 189, 0.33);
}

.service-img-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 28px;
  overflow: visible;
}
.service-img-mask {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}
.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card-new:hover .service-img {
  transform: scale(1.06);
}
.service-circle-icon {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffff;
  background-color: var(--yellow);
  border: 4px solid var(--white);
  box-shadow: 0 6px 15px rgba(40, 95, 189, 0.33);
  z-index: 5;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card-new:hover .service-circle-icon {
  transform: translateX(-50%) scale(1.1);
  background-color: var(--yellow-dark);
  box-shadow: 0 8px 20px rgba(40, 95, 189, 0.33);
}

.service-body {
  display: flex;
  flex-direction: column;
  align-items: start;
  flex-grow: 1;
  width: 100%;
}
.service-title-new {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}
.service-desc-new {
  font-size: 14px;
  text-align: start;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}
.btn-read-more {
  text-align: start;
  background: none;
  border: 1px solid #cbd5e1;
  color: #475569;
  padding: 10px 24px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-read-more:hover {
  background-color: var(--yellow);
  color: #ffff;
  border-color: var(--yellow);
}

/* Nav Buttons style */

.services-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--yellow);
  color: #ffff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 15px rgba(40, 95, 189, 0.33);
  z-index: 10;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.services-nav-btn:hover {
  background-color: var(--yellow-dark);
  color: #ffff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 20px rgba(40, 95, 189, 0.33);
}
.services-nav-btn.prev-btn {
  left: -24px;
}
.services-nav-btn.next-btn {
  right: -24px;
}

/* Adjust layout container padding to allow arrows to overlap nicely */

.services-section .container {
  padding-left: 24px;
  padding-right: 24px;
}

/* Redesigned About Section  */

.about-block {
  background-color: var(--white);
  border-radius: var(--radius-2xl);
  padding: 48px 24px;
  border: 1px solid var(--slate-border);
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  z-index: 10;
  position: relative;
}
@media (min-width: 992px) {
  .about-block {
    grid-template-columns: 1.15fr 0.85fr;
    padding: 64px 48px;
    gap: 64px;
  }
}

/* Yellow Subtitle Line */

.subtitle-yellow-line {
  color: var(--yellow-dark) !important;
  display: inline-flex !important;
  align-items: center;
  gap: 12px;
}

.about-title {
  font-size: 2.25rem;
  font-weight: 800;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    #239adf 10%,
    var(--secondary) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-teaser-yellow {
  font-size: 1.05rem;
  font-weight: 600;
  color: #0e3e8d;
  line-height: 1.6;
  margin-bottom: 16px;
}

.about-description {
  font-size: 14px;
  color: var(--slate-body);
  line-height: 1.7;
  margin-bottom: 28px;
}

/* Features Grid (Yellow Checks) */

.about-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}
@media (max-width: 480px) {
  .about-features-grid {
    grid-template-columns: 1fr;
  }
}
.about-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.feature-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: var(--primary);
  color: #ffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}
.feature-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--slate-dark);
}

/* About CTA row */

.about-cta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

/* Navy Accent Button */

.btn-navy-accent {
  background-color: var(--primary-dark);
  color: var(--white) !important;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 16px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(1, 78, 154, 0.25);
  transition: all 0.3s ease;
}
.btn-navy-accent:hover {
  background-color: #0e3e8d;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(1, 78, 154, 0.35);
}
.btn-yellow-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #ffff;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transition: all 0.3s ease;
}
.btn-navy-accent:hover .btn-yellow-arrow {
  transform: translateX(4px);
  background-color: var(--white);
}

/* Phone box */

.about-phone-box {
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-phone-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(4, 107, 210, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.about-phone-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.phone-label {
  font-size: 0.7rem;
  color: var(--slate-light);
  font-weight: 500;
}
.phone-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-dark);
  transition: var(--transition);
}
.phone-value:hover {
  color: var(--primary);
}

/* Right Showcase */

.about-showcase-new {
  position: relative;
  width: 100%;
}
.showcase-blue-card {
  position: relative;
  background-color: #0e3e8d;
  border-radius: 32px;
  padding: 24px;
  height: 380px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.showcase-yellow-circle {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 8px solid var(--accent-yellow);
  background-color: transparent;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  transition: all 0.3s ease;
}
.showcase-main-img-wrapper {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 6px solid var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  transition:
    width 0.3s ease,
    height 0.3s ease;
  animation: wash-spin 18s linear infinite;
}
.showcase-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes wash-spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Dot grid decorations */

.showcase-dot-grid-1 {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 72px;
  height: 72px;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.35) 2px,
    transparent 2.5px
  );
  background-size: 12px 12px;
  z-index: 0;
}
.showcase-dot-grid-2 {
  position: absolute;
  bottom: 24px;
  left: 24px;
  width: 72px;
  height: 72px;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.35) 2px,
    transparent 2.5px
  );
  background-size: 12px 12px;
  z-index: 0;
}

/* Bubbles decoration */

.showcase-bubbles-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.showcase-bubbles-decor .bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.03) 70%,
    rgba(255, 255, 255, 0) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.bubble-1 {
  width: 60px;
  height: 60px;
  top: 15%;
  left: 10%;
}
.bubble-2 {
  width: 40px;
  height: 40px;
  bottom: 20%;
  right: 15%;
}
.bubble-3 {
  width: 24px;
  height: 24px;
  top: 45%;
  left: 25%;
}

/* Floating thumbs */

.floating-thumb {
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  z-index: 3;
  background-color: var(--white);
  transition: all 0.3s ease;
}
.floating-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.floating-thumb:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-xl);
}
.thumb-bottom-left {
  bottom: 20px;
  left: 20px;
}
.thumb-top-right {
  top: 20px;
  right: 20px;
}

/* ---------------------------------------------------------------------
  PREMIUM PRICE LIST SECTION (MODERN SWITCHER & CARDS GRID)
--------------------------------------------------------------------- */

.estimator-section {
  background-color: var(--background);
  position: relative;
  overflow: hidden;
}

/* Tabs Switcher Segmented Control */
.price-list-tabs-container {
  max-width: 1140px;
  margin: 0 auto;
}

.price-tabs-switcher {
  display: inline-flex;
  background-color: rgba(226, 232, 240, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 999px;
  padding: 6px;
  position: relative;
  margin-bottom: 48px;
  box-shadow: var(--shadow-sm);
}

.price-tab {
  padding: 12px 32px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--slate-body);
  border-radius: 999px;
  border: none;
  background: none;
  cursor: pointer;
  z-index: 2;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 10px;
  outline: none;
}
.price-tab i {
  font-size: 1rem;
}

/* Active tab text colors */
.price-tab.active.men-active {
  color: var(--white);
}
.price-tab.active.women-active {
  color: var(--white);
}
.price-tab.active.home-active {
  color: var(--white);
}

/* Sliding Background Indicator Pill */
.active-tab-indicator {
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 6px;
  border-radius: 999px;
  z-index: 1;
  transition: all 0.38s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Indicator Theme Colors */
.indicator-men {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  box-shadow: 0 6px 15px rgba(4, 107, 210, 0.3);
}
.indicator-women {
  background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
  box-shadow: 0 6px 15px rgba(219, 39, 119, 0.3);
}
.indicator-home {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  box-shadow: 0 6px 15px rgba(22, 163, 74, 0.3);
}

/* Grid layout for Cards */
.price-grid-container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  transition: opacity 0.3s ease;
  min-height: 300px;
}

/* Individual Premium Pricing Card */
.price-item-card {
  background: var(--white);
  border: 1px solid var(--slate-border);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Removed old span classes */

/* Animation on item render */
@keyframes cardEntrance {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.price-item-card {
  animation: cardEntrance 0.4s cubic-bezier(0.25, 1, 0.5, 1) both;
}

/* Stagger cards animation */
.price-item-card:nth-child(1) {
  animation-delay: 0.02s;
}
.price-item-card:nth-child(2) {
  animation-delay: 0.04s;
}
.price-item-card:nth-child(3) {
  animation-delay: 0.06s;
}
.price-item-card:nth-child(4) {
  animation-delay: 0.08s;
}
.price-item-card:nth-child(5) {
  animation-delay: 0.1s;
}
.price-item-card:nth-child(6) {
  animation-delay: 0.12s;
}
.price-item-card:nth-child(7) {
  animation-delay: 0.14s;
}
.price-item-card:nth-child(8) {
  animation-delay: 0.16s;
}
.price-item-card:nth-child(9) {
  animation-delay: 0.18s;
}
.price-item-card:nth-child(10) {
  animation-delay: 0.2s;
}
.price-item-card:nth-child(11) {
  animation-delay: 0.22s;
}
.price-item-card:nth-child(12) {
  animation-delay: 0.24s;
}
.price-item-card:nth-child(13) {
  animation-delay: 0.26s;
}
.price-item-card:nth-child(14) {
  animation-delay: 0.28s;
}
.price-item-card:nth-child(15) {
  animation-delay: 0.3s;
}

/* Themed card backgrounds and highlights on hover */
.price-list-tabs-container.theme-men .price-item-card:hover {
  border-color: rgba(4, 107, 210, 0.4);
  box-shadow: 0 12px 30px rgba(4, 107, 210, 0.12);
  transform: translateY(-5px);
}
.price-list-tabs-container.theme-women .price-item-card:hover {
  border-color: rgba(219, 39, 119, 0.4);
  box-shadow: 0 12px 30px rgba(219, 39, 119, 0.12);
  transform: translateY(-5px);
}
.price-list-tabs-container.theme-home .price-item-card:hover {
  border-color: rgba(22, 163, 74, 0.4);
  box-shadow: 0 12px 30px rgba(22, 163, 74, 0.12);
  transform: translateY(-5px);
}

/* Card Header details */
.card-top-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.card-icon-bubble {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.price-list-tabs-container.theme-men .card-icon-bubble {
  background-color: var(--primary-light);
  color: var(--primary);
}
.price-list-tabs-container.theme-women .card-icon-bubble {
  background-color: #fce7f3;
  color: #db2777;
}
.price-list-tabs-container.theme-home .card-icon-bubble {
  background-color: #dcfce7;
  color: var(--green-dark);
}
.price-item-card:hover .card-icon-bubble {
  transform: scale(1.1) rotate(-5deg);
}

.card-icon-bubble svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.8px;
}

.card-title-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--slate-dark);
  text-align: left;
}

/* Card Price layout styling */
.card-price-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price-pill-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 8px 16px;
  transition: all 0.3s ease;
}
.price-pill-row:hover {
  background-color: var(--white);
  border-color: #cbd5e1;
}

.price-pill-lbl {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--slate-light);
  display: flex;
  align-items: center;
  gap: 6px;
}
.price-pill-lbl i {
  font-size: 0.8rem;
  opacity: 0.7;
}

.price-pill-val {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--slate-dark);
}

/* Single Price Box styling (e.g. for Clean Only) */
.single-price-pill {
  grid-column: 1/-1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px;
  text-align: center;
  transition: all 0.3s ease;
}
.price-list-tabs-container.theme-men .single-price-pill {
  border-left: 3px solid var(--primary);
}
.price-list-tabs-container.theme-women .single-price-pill {
  border-left: 3px solid #db2777;
}
.price-list-tabs-container.theme-home .single-price-pill {
  border-left: 3px solid var(--green-dark);
}

.single-price-pill .price-pill-lbl {
  font-size: 0.72rem;
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.single-price-pill .price-pill-val {
  font-size: 1.15rem;
  font-weight: 850;
  color: var(--slate-dark);
}

/* Responsive updates */
@media (max-width: 768px) {
  .price-tabs-switcher {
    width: 100%;
    border-radius: 24px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .price-tab {
    width: 100%;
    justify-content: center;
    padding: 10px;
  }
  .active-tab-indicator {
    display: none; /* Hide animated indicator and use fallback active state */
  }
  .price-tab.active {
    background-color: var(--primary) !important;
    color: var(--white) !important;
  }
  .price-tab.active.women-active {
    background-color: #db2777 !important;
  }
  .price-tab.active.home-active {
    background-color: var(--green-dark) !important;
  }
  .price-grid-container {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .price-item-card,
  .price-item-card.span-3,
  .price-item-card.span-6 {
    grid-column: span 1 !important;
  }
}

/* ---------------------------------------------------------------------
   BENEFITS SECTION
--------------------------------------------------------------------- */

.benefits-section {
  background-color: var(--white);
  position: relative;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.benefits-showcase {
  position: relative;
}
.benefits-image-card {
  position: relative;
  z-index: 10;
  background-color: var(--slate-border);
  padding: 16px;
  border-radius: 40px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: var(--shadow-2xl);
}
.benefits-image-card img {
  border-radius: 32px;
  box-shadow: var(--shadow-md);
  width: 100%;
}

/* Overlay floating badge */

.benefits-floating-badge {
  position: absolute;
  top: -24px;
  background-color: var(--white);
  padding: 16px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-border);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 20;
}
.benefits-badge-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background-color: rgba(4, 107, 210, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.25rem;
}
.benefits-badge-text {
  text-align: left;
}
.benefits-badge-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--slate-dark);
}
.benefits-badge-lbl {
  font-size: 0.625rem;
  color: var(--slate-body);
}

.benefits-content {
  text-align: left;
}

/* Grid of features list */

.benefits-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 40px;
}
.benefit-item {
  display: flex;
  gap: 16px;
}
.benefit-icon-wrapper {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background-color: var(--primary);
  color: #ffff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-top: 4px;
}
.benefit-text-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--slate-dark);
  margin-bottom: 4px;
}
.benefit-text-desc {
  font-size: 0.75rem;
  color: var(--slate-body);
  line-height: 1.6;
}

/* ---------------------------------------------------------------------
 LOCATIONS SECTION
--------------------------------------------------------------------- */

.locations-section {
  background-color: var(--background);
  position: relative;
}

/* Locations Grid column controls styled per breakpoint */

.locations-grid {
  grid-template-columns: 1fr;
}

.location-card {
  background-color: var(--white);
  border-radius: var(--radius-2xl);
  padding: 24px;
  border: 1px solid var(--slate-border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
  text-align: left;
}
.location-card:hover {
  border-color: rgba(4, 107, 210, 0.4);
  box-shadow: 0 20px 45px rgba(4, 107, 210, 0.12);
  transform: translateY(-8px) scale(1.02);
}

.location-icon-wrapper {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background-color: rgba(4, 107, 210, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.25rem;
}

.location-name {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--slate-dark);
  margin-bottom: 4px;
}

.location-area {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--slate-body);
  margin-bottom: 12px;
}

.location-address {
  font-size: 0.75rem;
  color: var(--slate-body);
  line-height: 1.5;
  margin-bottom: 24px;
}

.location-book-btn {
  width: 100%;
  padding: 10px;
  background-color: var(--background);
  border: 1px solid var(--slate-border);
  border-radius: var(--radius-md);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--slate-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: var(--transition);
}
.location-card:hover .location-book-btn {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* Call Support Card below grids */

.support-card {
  margin-top: 48px;
  padding: 24px;
  background-color: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--slate-border);
  box-shadow: var(--shadow-sm);
  max-width: 670px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.support-card-text {
  text-align: center;
}
.support-card-title {
  font-weight: 700;
  color: var(--slate-dark);
  font-size: 0.875rem;
}
.support-card-lbl {
  font-size: 0.75rem;
  color: var(--slate-body);
  margin-top: 2px;
}
.support-card .btn {
  padding: 10px 20px;
  font-size: 0.75rem;
  white-space: nowrap;
}

/* ---------------------------------------------------------------------
   FAQ SECTION ACCORDIONS
--------------------------------------------------------------------- */

.faq-section {
  background-color: var(--white);
  position: relative;
}

.faq-grid-new {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 992px) {
  .faq-grid-new {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
  }
}

.faq-content-col {
  text-align: left;
}

/* Green subtitle line */

.subtitle-green-line {
  color: var(--yellow-dark) !important;
  display: inline-flex !important;
  align-items: center;
  gap: 12px;
}

/* Search bar styling */

.faq-search-box-new {
  position: relative;
  margin-bottom: 32px;
  max-width: 100%;
}
.faq-search-box-new i {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--slate-light);
  font-size: 1.1rem;
  transition: var(--transition);
  pointer-events: none;
}
.faq-search-box-new:focus-within i {
  color: var(--primary);
}
.faq-search-input-new {
  width: 100%;
  padding: 14px 20px 14px 52px;
  border-radius: var(--radius-full);
  border: 1px solid var(--slate-border);
  outline: none;
  font-size: 0.9rem;
  color: var(--slate-dark);
  box-shadow: var(--shadow-sm);
  background-color: var(--white);
  transition: var(--transition);
}
.faq-search-input-new:hover {
  border-color: var(--primary);
}
.faq-search-input-new:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(4, 107, 210, 0.15);
}

/* Accordion list container */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* FAQ Accordion elements */

.faq-item {
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: var(--white);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
}
.faq-item.active {
  background-color: var(--white);
  border-color: #cbd5e1;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}
.faq-item:not(.active):hover {
  border-color: #cbd5e1;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.03);
}

.faq-trigger {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
}
.faq-question {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
  transition: var(--transition);
}
.faq-item.active .faq-question {
  color: var(--primary-dark);
}
.faq-trigger i {
  font-size: 1.2rem;
  color: var(--yellow-dark) !important;
  transition: color 0.2s ease;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.active .faq-trigger i {
  color: #94a3b8;
}

.faq-content-pane {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.active .faq-content-pane {
  border-top: 1px solid #f1f5f9;
}
.faq-answer {
  padding: 20px 24px 24px;
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.7;
  text-align: left;
}

.faq-empty-results {
  padding: 48px 0;
  text-align: center;
  color: var(--slate-light);
}

/* Illustration right column */

.faq-img-col {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 991px) {
  .faq-img-col {
    display: none;
  }
}
.faq-illustration-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: float 6s ease-in-out infinite;
}

/* Yellow background decorative blob for illustration */

.faq-illustration-wrapper::before {
  content: "";
  position: absolute;
  width: 110%;
  height: 110%;
  border-radius: 50%;
  background-color: rgba(81, 137, 227, 0.1);
  z-index: -1;
  filter: blur(16px);
}
.faq-illustration {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* WhatsApp helper link bottom of FAQs */

.faq-support-bar {
  margin-top: 48px;
  text-align: center;
}
.faq-support-bar p {
  font-size: 0.875rem;
  color: var(--slate-body);
  margin-bottom: 16px;
}

/* =====================================================================
   INDEX PAGE RESPONSIVE MEDIA QUERIES
   ===================================================================== */

@media (min-width: 640px) {
  /* Hero Section */

  .hero-title {
    font-size: 2.75rem;
  }

  .hero-desc {
    font-size: 14px;
  }

  .hero-content-slide .badge-highlight {
    font-size: 0.8rem;
    padding: 8px 16px;
    margin-bottom: 16px;
  }

  .hero-actions {
    flex-direction: row;
  }

  .hero-actions .btn {
    width: auto;
    font-size: 14px;
  }

  /* Services & About block */

  .about-block {
    padding: 48px;
  }

  .about-stat-val {
    font-size: 2rem;
  }

  .about-stat-lbl {
    font-size: 0.75rem;
  }

  /* Price Estimator items grid */

  .estimator-items-panel {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Locations grid */

  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  /* Hero grid side-by-side */

  .hero-section {
    padding-top: 140px;
    padding-bottom: 60px;
    align-items: flex-start;
  }

  .hero-content-carousel {
    min-height: 480px;
  }

  .hero-content-slide .hero-title {
    font-size: 3.25rem;
    line-height: 1.15;
    margin-bottom: 16px;
  }

  .hero-content-slide .hero-desc {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .hero-content-slide .badge-highlight {
    font-size: 12px;
    padding: 10px 18px;
    margin-bottom: 20px;
  }

  .hero-content-slide .hero-actions {
    gap: 20px;
    margin-bottom: 20px;
  }

  .hero-showcase-card {
    padding: 20px;
  }

  .floating-badge-title {
    font-size: 0.95rem;
  }

  .floating-badge-tagline {
    font-size: 0.75rem;
  }

  .floating-badge-pill {
    font-size: 0.75rem;
  }

  .hero-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 48px;
  }

  .hero-content {
    grid-column: span 7;
  }

  .hero-content-slide {
    max-width: 580px;
  }

  .hero-showcase {
    grid-column: span 5;
  }

  /* Services list grid columns */

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* About US card split */

  .about-block {
    grid-template-columns: repeat(12, 1fr);
    padding: 64px;
    gap: 48px;
  }

  .about-content {
    grid-column: span 7;
  }

  .about-showcase-new {
    grid-column: span 5;
  }

  .showcase-blue-card {
    height: 420px;
  }

  .showcase-yellow-circle {
    width: 230px;
    height: 230px;
  }

  .showcase-main-img-wrapper {
    width: 200px;
    height: 200px;
  }

  /* Price Estimator layout grid splits */

  .estimator-split-grid {
    grid-template-columns: repeat(12, 1fr);
  }

  .estimator-items-panel {
    grid-column: span 8;
    grid-template-columns: repeat(2, 1fr);
  }

  .estimator-summary-panel {
    grid-column: span 4;
    position: sticky;
    top: 96px;
  }

  /* Benefits block layout */

  .benefits-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 64px;
  }

  .benefits-showcase {
    grid-column: span 5;
  }

  .benefits-content {
    grid-column: span 7;
  }

  .benefits-list {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Locations grid columns */

  .locations-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Services & About US */

  .service-card-new {
    padding: 36px;
  }

  .service-title-new {
    font-size: 1.35rem;
  }

  .service-desc-new {
    font-size: 0.925rem;
  }

  .service-detail-text {
    font-size: 0.8rem;
  }

  .about-title {
    font-size: 2.25rem;
  }

  .about-desc-list {
    font-size: 0.95rem;
  }

  .about-stat-val {
    font-size: 2.25rem;
  }

  /* Estimator */

  .item-info-name {
    font-size: 14px;
  }

  .item-service-name {
    font-size: 14px;
  }

  .item-service-price {
    font-size: 0.875rem;
  }

  .bag-card-title {
    font-size: 1.25rem;
  }

  .bag-item-name {
    font-size: 0.95rem;
  }

  .bag-item-total {
    font-size: 0.95rem;
  }

  /* FAQ */

  .faq-question {
    font-size: 1.05rem;
  }

  .faq-answer {
    font-size: 0.925rem;
  }

  .faq-search-input-new {
    font-size: 0.95rem;
    padding: 14px 18px 14px 52px;
  }
}

@media (min-width: 1280px) {
  .hero-content-carousel {
    min-height: 500px;
  }

  .hero-content-slide {
    max-width: 610px;
  }

  .hero-content-slide .hero-title {
    font-size: 3.5rem;
  }

  .hero-content-slide .hero-desc {
    font-size: 14px;
  }

  .hero-content-slide .badge-highlight {
    font-size: 0.9rem;
    padding: 10px 20px;
    margin-bottom: 20px;
  }

  /* Widescreen components scaling */

  .service-card-new {
    padding: 40px;
  }

  .service-title-new {
    font-size: 1.45rem;
  }

  .service-desc-new {
    font-size: 0.95rem;
  }

  .about-title {
    font-size: 2.5rem;
  }

  .about-desc-list {
    font-size: 1rem;
  }

  .about-stat-val {
    font-size: 2.5rem;
  }

  .showcase-blue-card {
    height: 460px;
  }

  .showcase-yellow-circle {
    width: 340px;
    height: 340px;
  }

  .showcase-main-img-wrapper {
    width: 260px;
    height: 260px;
  }

  .item-info-name {
    font-size: 1.15rem;
  }

  .wizard-step-title {
    font-size: 1.75rem;
  }

  .form-input {
    font-size: 1rem;
  }

  .faq-question {
    font-size: 1.125rem;
  }

  .faq-answer {
    font-size: 0.95rem;
  }

  .locations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1440px) {
  .hero-content-slide {
    max-width: 660px;
  }
}

@media (min-width: 1536px) {
  .hero-content-slide {
    max-width: 700px;
  }

  .hero-content-carousel {
    min-height: 540px;
  }

  .hero-content-slide .hero-title {
    font-size: 4rem; /* Premium scale header for very large layouts */
  }

  .hero-content-slide .hero-desc {
    font-size: 14px;
  }

  .hero-content-slide .badge-highlight {
    font-size: 0.95rem;
    padding: 12px 22px;
    margin-bottom: 24px;
  }

  /* Ultra-wide components scaling */

  .service-card-new {
    padding: 44px;
  }

  .service-title-new {
    font-size: 1.625rem;
  }

  .service-desc-new {
    font-size: 1rem;
  }

  .about-title {
    font-size: 2.75rem;
  }

  .about-desc-list {
    font-size: 1.05rem;
  }

  .about-stat-val {
    font-size: 2.75rem;
  }

  .item-info-name {
    font-size: 1.25rem;
  }

  .wizard-step-title {
    font-size: 1.875rem;
  }

  .faq-question {
    font-size: 1.2rem;
  }
}

@media (min-width: 1650px) {
  .hero-content-slide {
    max-width: 740px;
  }
}

@media (min-width: 1920px) {
  .hero-content-slide {
    max-width: 780px;
  }

  /* Hero Section */

  .hero-section {
    padding-top: 160px;
    padding-bottom: 80px;
    align-items: flex-start;
  }

  .hero-content-carousel {
    min-height: 600px;
  }

  .hero-content-slide .hero-title {
    font-size: 4.5rem;
    margin-bottom: 24px;
  }

  .hero-content-slide .hero-desc {
    font-size: 14px;
    margin-bottom: 24px;
    max-width: 700px;
  }

  .hero-content-slide .badge-highlight {
    font-size: 1rem;
    padding: 12px 24px;
    margin-bottom: 24px;
  }

  .hero-content-slide .hero-actions {
    gap: 24px;
    margin-bottom: 24px;
  }

  .hero-content-slide .hero-contact {
    gap: 32px;
    font-size: 1.1rem;
  }

  .hero-showcase-card {
    padding: 24px;
  }

  .floating-badge-title {
    font-size: 1.1rem;
  }

  .floating-badge-tagline {
    font-size: 0.85rem;
  }

  .floating-badge-pill {
    font-size: 0.85rem;
  }

  .floating-badge-icon {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }

  /* Services & About US */

  .service-card-new {
    padding: 48px;
  }

  .service-title-new {
    font-size: 1.75rem;
  }

  .service-desc-new {
    font-size: 1.1rem;
  }

  .about-title {
    font-size: 3rem;
  }

  .about-desc-list {
    font-size: 1.1rem;
  }

  .about-stat-val {
    font-size: 3rem;
  }

  .showcase-blue-card {
    height: 540px;
  }

  .showcase-yellow-circle {
    width: 400px;
    height: 400px;
  }

  .showcase-main-img-wrapper {
    width: 310px;
    height: 310px;
  }

  .about-stat-lbl {
    font-size: 0.875rem;
  }

  .about-floating-card {
    max-width: 240px;
    padding: 20px;
    gap: 16px;
  }

  .about-floating-title {
    font-size: 0.9rem;
  }

  .about-floating-lbl {
    font-size: 0.75rem;
  }

  /* Cost Estimator */

  .item-info-name {
    font-size: 1.35rem;
  }

  .item-service-name {
    font-size: 1rem;
  }

  .item-service-price {
    font-size: 0.95rem;
  }

  .bag-card-title {
    font-size: 1.4rem;
  }

  .bag-item-name {
    font-size: 1.05rem;
  }

  .bag-item-total {
    font-size: 1.05rem;
  }

  /* FAQ accordion and search */

  .faq-question {
    font-size: 1.25rem;
  }

  .faq-answer {
    font-size: 1.05rem;
  }

  .faq-search-input-new {
    font-size: 1.05rem;
    padding: 16px 20px 16px 56px;
  }

  .faq-search-box-new i {
    left: 24px;
  }
}

@media (min-width: 2560px) {
  .hero-content-slide {
    max-width: 960px;
  }

  /* Hero Section */

  .hero-section {
    min-height: 100vh;
    padding-top: 200px;
    padding-bottom: 100px;
    align-items: flex-start;
  }

  .hero-content-carousel {
    min-height: 700px;
  }

  .hero-content-slide .hero-title {
    font-size: 5.5rem;
    margin-bottom: 32px;
  }

  .hero-content-slide .hero-desc {
    font-size: 14px;
    margin-bottom: 32px;
    max-width: 800px;
  }

  .hero-content-slide .badge-highlight {
    font-size: 1.1rem;
    padding: 14px 28px;
    margin-bottom: 28px;
  }

  .hero-content-slide .hero-actions {
    gap: 32px;
    margin-bottom: 32px;
  }

  .hero-content-slide .hero-contact {
    gap: 40px;
    font-size: 1.35rem;
  }

  .hero-showcase-card {
    padding: 32px;
  }

  .floating-badge-title {
    font-size: 1.3rem;
  }

  .floating-badge-tagline {
    font-size: 1rem;
  }

  .floating-badge-pill {
    font-size: 1rem;
  }

  .floating-badge-icon {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }

  /* Services & About US */

  .service-card-new {
    padding: 56px;
  }

  .service-title-new {
    font-size: 2.1rem;
  }

  .service-desc-new {
    font-size: 1.25rem;
  }

  .about-title {
    font-size: 3.75rem;
  }

  .about-desc-list {
    font-size: 1.25rem;
    gap: 24px;
  }

  .about-stats {
    margin-top: 48px;
    padding-top: 48px;
  }

  .about-stat-val {
    font-size: 3.75rem;
  }

  .showcase-blue-card {
    height: 700px;
  }

  .showcase-yellow-circle {
    width: 520px;
    height: 520px;
  }

  .showcase-main-img-wrapper {
    width: 400px;
    height: 400px;
  }

  .about-stat-lbl {
    font-size: 1.1rem;
  }

  /* Cost Estimator */

  .item-info-name {
    font-size: 1.6rem;
  }

  .item-service-name {
    font-size: 1.25rem;
  }

  .item-service-price {
    font-size: 1.15rem;
  }

  .item-qty-control {
    padding: 8px 16px;
    gap: 16px;
  }

  .item-qty-btn {
    width: 24px;
    height: 24px;
    font-size: 1rem;
  }

  .item-qty-val {
    width: 32px;
    font-size: 1.125rem;
  }

  .bag-card-title {
    font-size: 1.75rem;
  }

  .bag-item-name {
    font-size: 1.25rem;
  }

  .bag-item-total {
    font-size: 1.25rem;
  }

  .bag-calc-row {
    font-size: 1.15rem;
  }

  .bag-calc-row.total-row {
    font-size: 1.5rem;
  }

  /* FAQ accordion and search */

  .faq-question {
    font-size: 1.6rem;
  }

  .faq-answer {
    font-size: 1.35rem;
  }

  .faq-search-input-new {
    font-size: 1.25rem;
    padding: 20px 24px 20px 64px;
  }

  .faq-search-box-new i {
    left: 28px;
  }
}

@media (max-width: 375px) {
  .showcase-yellow-circle {
    width: 220px;
    height: 220px;
  }

  .showcase-main-img-wrapper {
    width: 180px;
    height: 180px;
  }
}

@media (max-width: 768px) {
  .form-grid-2 {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .wizard-tracker {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding-bottom: 20px;
    margin-bottom: 24px;
    border-bottom: none;
  }

  .wizard-step-node {
    width: auto;
    padding: 0;
    background-color: transparent !important;
    border: none !important;
    justify-content: flex-start;
    gap: 16px;
    transition: var(--transition);
  }

  .wizard-step-num {
    width: 20px !important;
    height: 20px !important;
    font-size: 0 !important;
    color: transparent !important;
    border: 2px solid #cbd5e1;
    background-color: var(--white);
    box-shadow: none !important;
    flex-shrink: 0;
  }

  .wizard-step-node.active .wizard-step-num {
    border-color: var(--yellow-dark);
    background-color: var(--white);
  }

  .wizard-step-node.completed .wizard-step-num {
    border-color: var(--yellow-dark);
    background-color: var(--yellow-dark);
  }

  .wizard-tracker-line {
    display: block !important;
    width: 2px !important;
    min-width: 0 !important;
    flex-grow: 0 !important;
    height: 24px;
    margin-left: 9px !important;
    margin-right: 0 !important;
    background-color: #cbd5e1;
    border-radius: 0;
  }

  .wizard-tracker-line.active {
    background-color: var(--yellow-dark);
  }

  .wizard-step-label {
    font-size: 0.875rem;
    font-weight: 500;
  }
}

@media (max-width: 480px) {
  .wizard-card {
    padding: 16px 12px;
  }

  .wizard-step-footer {
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 10px;
  }

  .wizard-step-footer .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Hero Stats Section */
.hero-stats-section {
  background-color: var(--white);
  padding: 35px 0;
  border-bottom: 1px solid var(--slate-border);
  position: relative;
  z-index: 10;
}

.stats-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  align-items: center;
}

.stat-bar-item {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  transition: transform 0.3s ease;
}

.stat-bar-item:hover {
  transform: translateY(-2px);
}

.stat-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: var(--primary);
  flex-shrink: 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px -4px rgba(4, 107, 210, 0.2);
}

.stat-bar-item:hover .stat-icon-wrapper {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: 0 8px 16px -4px rgba(4, 107, 210, 0.3);
}

.stat-svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}

.stat-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stat-number {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--slate-dark);
  margin-bottom: 2px;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--slate-light);
  font-weight: 500;
  line-height: 1.2;
}

@media (max-width: 991px) {
  .stats-bar-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 20px;
  }
  .stat-bar-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .stat-info {
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero-stats-section {
    padding: 30px 0;
  }
  .stats-bar-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 15px;
  }
  .stat-number {
    font-size: 1.1rem;
  }
  .stat-label {
    font-size: 0.8rem;
  }
}
