/* EcoNclean Theme CSS - Custom Styles for Index and Technology Pages */

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Fixed Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border-radius: 0 0 14px 14px;
  padding: 16px 20px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;

  background: rgba(250, 250, 252, 0.8);
  backdrop-filter: saturate(1.8) blur(20px);
}

header .brand {
  flex-shrink: 1;
  min-width: 0;
}

header .brand img {
  max-width: 100%;
  max-height: 50px;
  height: auto;
  display: block;
}

/* Add padding to body to compensate for fixed header */
body {
  padding-top: 90px;
}

/* Hero Section Enhancements */
.hero-highlights {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.hero-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 1.05rem;
  line-height: 1.6;
}

.hero-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  background: linear-gradient(135deg, var(--green-eco), #5aaa42);
  color: white;
  box-shadow: 0 2px 8px rgba(107, 191, 78, 0.3);
}




.contact-list-btns {display: flex;
  gap: 10px;
  margin-bottom: 20px;}
.contact-list-btns .btn-contact-hero {width: 33.3%;
  border-radius: 10px;
  color: #fff;
  display: flex;
  text-decoration: none;
  padding: 7px;}
  .btn-contact-hero:hover { opacity: .8;}

  .btn-contact-hero-phone { background: linear-gradient(135deg,var(--blue-azur),#2d86d3); }
  .btn-contact-hero-whatsapp {background: linear-gradient(135deg, rgb(37, 211, 102), rgb(18, 140, 126)); }
  .btn-contact-hero-email {background: linear-gradient(135deg, rgb(245, 158, 11), rgb(217, 119, 6)); }

.contact-list-btns .icon {display: flex;
  margin: 0 20px;
  justify-content: center;
  align-content: center;
  align-items: center;}
.contact-list-btns .right {display: flex;
  flex-direction: column;}
  .contact-list-btns .right-title {font-weight: bold;
  font-size: 1.2rem;}
  .contact-list-btns .right-content {}

.contact-get-directions-options {display: flex; }
.contact-get-directions-options > div { margin-left: 10px; }
.contact-get-directions a { text-decoration: none;
  color: var(--blue-dark);
  display: flex;
  align-items: center; margin-bottom: 10px; }
.contact-get-directions a img {
  margin-right: 10px;
}









.scroll-indicator {
  text-align: center;
  margin: 50px 0 30px 0;
  animation: fadeInBounce 2s ease-in-out infinite;
}

.scroll-indicator p {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 16px;
  font-weight: 500;
}

.scroll-arrow {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-eco), #5aaa42);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(107, 191, 78, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.scroll-arrow:hover {
  transform: translateY(3px);
  box-shadow: 0 6px 16px rgba(107, 191, 78, 0.4);
}

@keyframes fadeInBounce {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.8;
  }
  50% {
    transform: translateY(10px);
    opacity: 1;
  }
}

/* Hero CTA Buttons */
.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  white-space: nowrap;
}

.hero-cta-btn.primary {
  background: linear-gradient(135deg, var(--green-eco), #5aaa42);
  color: white;
}

.hero-cta-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(107, 191, 78, 0.4);
}

.hero-cta-btn.secondary {
  background: white;
  color: var(--blue-dark);
  border: 2px solid var(--blue-azur);
}

.hero-cta-btn.secondary:hover {
  background: var(--blue-azur);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(45, 134, 211, 0.3);
}

@media (max-width: 600px) {
  .hero-cta-btn {
    width: 100%;
    max-width: 300px;
  }
}

/* Desktop Layout: Video left, Steps right */
.how-to-order-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 769px) {
  .how-to-order-wrapper {
    grid-template-columns: 45% 50%;
    gap: 50px;
  }

  .how-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

/* Banner video styling with overlay */
.banner {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 14px;
  margin-bottom: 20px;
}

.banner video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}

.banner-overlay {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
  padding: 24px 30px;
  border-radius: 12px;
  color: white;
  z-index: 10;
}

.banner-overlay h2 {
  color: white;
  font-size: 2rem;
  margin: 0 0 8px 0;
  font-weight: 800;
}

.banner-overlay p {
  color: rgba(255,255,255,0.95);
  font-size: 1.1rem;
  margin: 0;
}

.banner-cta {
  display: inline-block;
  background: var(--green-eco);
  color: white;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(107, 191, 78, 0.4);
}

.banner-cta:hover {
  background: #5aaa42;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(107, 191, 78, 0.5);
}

.trust-badges {
  display: flex;
  gap: 20px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
}

/* Video container styling for mobile-friendly vertical video */
.video-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 40px auto;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,.12);
}

.video-container video {
  width: 100%;
  height: auto;
  display: block;
}

/* Sticky Action Buttons (WhatsApp + Call) */
.sticky-actions {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sticky-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 1.8rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.sticky-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(0,0,0,0.4);
}

.whatsapp-btn {
  background: #25D366;
}

.call-btn {
  background: #1D4E89;
}

/* Mobile Order Button (visible only on mobile) */
.mobile-order-btn {
  display: none;
  background: var(--green-eco);
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(107, 191, 78, 0.3);
  white-space: nowrap;
}

.mobile-order-btn:hover {
  background: #5aaa42;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(107, 191, 78, 0.4);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  body {
    padding-top: 80px;
  }

  header {
    border-radius: 0 0 12px 12px;
    padding: 10px 15px;
  }

  header .brand img {
    max-height: 40px;
    width: auto;
  }

  .mobile-order-btn {
    display: inline-block;
    margin-left: auto;
    margin-right: 10px;
    padding: 8px 16px;
    font-size: 0.85rem;
    white-space: nowrap;
  }

  .hamburger {
    margin-left: 8px;
  }

  .banner-overlay {
    bottom: 15px;
    left: 15px;
    right: 15px;
    padding: 16px 20px;
  }

  .banner-overlay h2 {
    font-size: 1.4rem;
  }

  .banner-overlay p {
    font-size: 0.95rem;
  }

  .banner-cta {
    padding: 12px 24px;
    font-size: 0.95rem;
  }

  .trust-badges {
    gap: 12px;
  }

  .trust-badge {
    font-size: 0.8rem;
  }

  .banner {
    border-radius: 8px;
  }

  .banner video {
    border-radius: 8px;
  }

  .video-container {
    max-width: 100%;
    margin: 30px auto;
  }

  .sticky-actions {
    bottom: 15px;
    right: 15px;
    gap: 10px;
  }

  .sticky-btn {
    width: 55px;
    height: 55px;
    font-size: 1.5rem;
  }
}

@media (max-width: 400px) {
  header {
    --padding: 8px 12px;
  }

  header .brand img {
    max-height: 35px;
  }

  .mobile-order-btn {
    padding: 6px 12px;
    font-size: 0.8rem;
  }

  .hamburger {
    margin-left: 6px;
  }
}

/* EcoNclean Theme CSS - Custom Styles for Index and Technology Pages */

/* Video loading animation */
@keyframes pulse {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

.video-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 1;
}

.video-loading img {
  max-width: 80px;
  filter: brightness(0) invert(1);
  animation: pulse 1.5s ease-in-out infinite;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Fixed Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border-radius: 0 0 14px 14px;
  padding: 16px 20px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;

    background: rgba(250, 250, 252, 0.8);
  backdrop-filter: saturate(1.8) blur(20px);
}

header .brand {
  flex-shrink: 1;
  min-width: 0;
}

header .brand img {
  max-width: 100%;
  max-height: 60px;
  height: auto;
  display: block;
}

/* Add padding to body to compensate for fixed header */
body {
  padding-top: 90px;
}

/* Hero Section Enhancements */
.hero-highlights {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.hero-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 1.05rem;
  line-height: 1.6;
}

.hero-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  background: linear-gradient(135deg, var(--green-eco), #5aaa42);
  color: white;
  box-shadow: 0 2px 8px rgba(107, 191, 78, 0.3);
}

.scroll-indicator {
  text-align: center;
  margin: 50px 0 30px 0;
  animation: fadeInBounce 2s ease-in-out infinite;
}

.scroll-indicator p {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 16px;
  font-weight: 500;
}

.scroll-arrow {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-eco), #5aaa42);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(107, 191, 78, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.scroll-arrow:hover {
  transform: translateY(3px);
  box-shadow: 0 6px 16px rgba(107, 191, 78, 0.4);
}

@keyframes fadeInBounce {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.8;
  }
  50% {
    transform: translateY(10px);
    opacity: 1;
  }
}

/* Hero CTA Buttons */
.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  white-space: nowrap;
}

.hero-cta-btn.primary {
  background: linear-gradient(135deg, var(--green-eco), #5aaa42);
  color: white;
}

.hero-cta-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(107, 191, 78, 0.4);
}

.hero-cta-btn.secondary {
  background: white;
  color: var(--blue-dark);
  border: 2px solid var(--blue-azur);
}

.hero-cta-btn.secondary:hover {
  background: var(--blue-azur);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(45, 134, 211, 0.3);
}

@media (max-width: 600px) {
  .hero-cta-btn {
    width: 100%;
    max-width: 300px;
  }
}

/* Desktop Layout: Video left, Steps right */
.how-to-order-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 769px) {
  .how-to-order-wrapper {
    grid-template-columns: 45% 50%;
    gap: 50px;
  }

  .how-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

/* Banner video styling with overlay */
.banner {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 14px;
  margin-bottom: 20px;
}

.banner video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}

.banner-overlay {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
  padding: 24px 30px;
  border-radius: 12px;
  color: white;
  z-index: 10;
}

.banner-overlay h2 {
  color: white;
  font-size: 2rem;
  margin: 0 0 8px 0;
  font-weight: 800;
}

.banner-overlay p {
  color: rgba(255,255,255,0.95);
  font-size: 1.1rem;
  margin: 0;
}

.banner-cta {
  display: inline-block;
  background: var(--green-eco);
  color: white;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(107, 191, 78, 0.4);
}

.banner-cta:hover {
  background: #5aaa42;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(107, 191, 78, 0.5);
}

.trust-badges {
  display: flex;
  gap: 20px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
}

/* Video container styling for mobile-friendly vertical video */
.video-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 40px auto;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,.12);
}

.video-container video {
  width: 100%;
  height: auto;
  display: block;
}

/* Sticky Action Buttons (WhatsApp + Call) */
.sticky-actions {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sticky-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 1.8rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.sticky-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(0,0,0,0.4);
}

.whatsapp-btn {
  background: #25D366;
}

.call-btn {
  background: #1D4E89;
}

/* Mobile Order Button (visible only on mobile) */
.mobile-order-btn {
  display: none;
  background: var(--green-eco);
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(107, 191, 78, 0.3);
  white-space: nowrap;
}

.mobile-order-btn:hover {
  background: #5aaa42;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(107, 191, 78, 0.4);
}

/* Responsive adjustments */
@media (max-width: 992px) {


  .contact-list-btns {   }
  .contact-list-btns .btn-contact-hero { }

  .contact-list-btns .icon { margin: 0 10px; }



}



@media (max-width: 768px) {


  .contact-list-btns { flex-direction: column; }
  .contact-list-btns .btn-contact-hero {width: 100%}

  .contact-list-btns .icon {   }



  body {
    padding-top: 60px;
  }

  header {
    border-radius: 0 0 12px 12px;
    padding: 10px 15px;
  }

  header .brand img {
    max-height: 45px;
    width: auto;
  }

  .mobile-order-btn {
    display: inline-block;
    margin-left: auto;
    margin-right: 10px;
    padding: 8px 16px;
    font-size: 0.85rem;
    white-space: nowrap;
  }

  .hamburger {
    margin-left: 8px;
  }

  .banner-overlay {
    bottom: 15px;
    left: 15px;
    right: 15px;
    padding: 16px 20px;
  }

  .banner-overlay h2 {
    font-size: 1.4rem;
  }

  .banner-overlay p {
    font-size: 0.95rem;
  }

  .banner-cta {
    padding: 12px 24px;
    font-size: 0.95rem;
  }

  .trust-badges {
    gap: 12px;
  }

  .trust-badge {
    font-size: 0.8rem;
  }

  .banner {
    border-radius: 8px;
  }

  .banner video {
    border-radius: 8px;
  }

  .video-container {
    max-width: 100%;
    margin: 30px auto;
  }

  .sticky-actions {
    bottom: 15px;
    right: 15px;
    gap: 10px;
  }

  .sticky-btn {
    width: 55px;
    height: 55px;
    font-size: 1.5rem;
  }


  section.hero { margin-top:0px !important; }

  .contact-location-card { padding:17px !important; }





}

@media (max-width: 400px) {
  header {
    --padding: 8px 12px;
  }

  header .brand img {
    max-height: 45px;
  }

  .mobile-order-btn {
    padding: 6px 12px;
    font-size: 0.8rem;
  }

  .hamburger {
    margin-left: 6px;
  }
}



.breadcrumb-list {list-style: none;
  display: flex;
  gap: 6px;}
.breadcrumb-list li {}
.breadcrumb-list li::before {content:"»";}
.breadcrumb-list li:first-child::before { content:""; }
.breadcrumb-list li:first-child a {
  background: url('data:image/svg+xml,<svg aria-hidden="true" viewBox="0 0 576 512" xmlns="http://www.w3.org/2000/svg"><path fill="rgb(29, 78, 137)" d="M280.37 148.26L96 300.11V464a16 16 0 0 0 16 16l112.06-.29a16 16 0 0 0 15.92-16V368a16 16 0 0 1 16-16h64a16 16 0 0 1 16 16v95.64a16 16 0 0 0 16 16.05L464 480a16 16 0 0 0 16-16V300L295.67 148.26a12.19 12.19 0 0 0-15.3 0zM571.6 251.47L488 182.56V44.05a12 12 0 0 0-12-12h-56a12 12 0 0 0-12 12v72.61L318.47 43a48 48 0 0 0-61 0L4.34 251.47a12 12 0 0 0-1.6 16.9l25.5 31A12 12 0 0 0 45.15 301l235.22-193.74a12.19 12.19 0 0 1 15.3 0L530.9 301a12 12 0 0 0 16.9-1.6l25.5-31a12 12 0 0 0-1.7-16.93z"></path></svg>') no-repeat; background-size: 18px;
  padding-left: 24px;
  background-position: center left;}
.breadcrumb-list li a {text-decoration: none;color: var(--blue-dark);}
.breadcrumb-list li a:hover {opacity: .7;}

@media (max-width: 768px) {
  .breadcrumb-list-container {margin-bottom: 15px;}
}







  .home-hero-banner {
    --margin-bottom: 15px;
    background: url(../img/home/home-hero.webp) no-repeat center top;
    display: flex;
    border-radius: 20px;
    height: 465px;
  }

  .home-hero-banner .hhb-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 100px;
    margin-left: 13%;
  }

  .home-hero-banner .hhb-logo {
    background: url(../img/logo.png) no-repeat center center;
    width: 100%;
    height: 100px;
    background-size: contain;
    margin-bottom: var(--margin-bottom);
  }

  .home-hero-banner h1 {
    color: #2c4c6d;
    margin: 0;
    text-align: center;
    font-size: 20px;
    margin-bottom: var(--margin-bottom);
    text-shadow: 0px 0px 5px white;
    display: flex;
    letter-spacing: 2px;
    font-weight: 500;
    width: 100%;
    justify-content: space-evenly;
    align-items: center;
    gap:10px;
  }

  .home-hero-banner h1 span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
  }

  .home-hero-banner h1:before,
  .home-hero-banner h1:after {
    content: "";
    width: 50px;
    display: block;
    background: #2c4c6d;
    height: 2px;
  }

  .home-hero-banner .hhb-location {
    color: #086aaf;
    margin-bottom: var(--margin-bottom);
    display: flex;
    gap: 10px;
    font-weight: 500;
    text-shadow: 0px 0px 5px white;
    align-items: center;
  }

  .home-hero-banner .hhb-bottom {
    display: flex;
    gap: 20px;
    overflow: hidden;
  }

  .home-hero-banner .hhb-bottom div {
    color: #38546d;
    display: flex;
    flex-direction: column;
    font-size: 12px;
    font-weight: 600;
    align-items: center;
    text-align: center;
    line-height: 1.3;
    position: relative;
    padding: 5px;
  }

  .home-hero-banner .hhb-bottom div::before {
    content: "";
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 40px;
    margin-bottom: 10px;
    background-position: center;
  }

  .home-hero-banner .hhb-bottom div:nth-child(1):before {
    background-image: url(../img/home/1.webp);
  }

  .home-hero-banner .hhb-bottom div:nth-child(2):before {
    background-image: url(../img/home/2.webp);
  }

  .home-hero-banner .hhb-bottom div:nth-child(3):before {
    background-image: url(../img/home/3.webp);
  }

  .home-hero-banner .hhb-bottom div:nth-child(4):before {
    background-image: url(../img/home/4.webp);
  }

  .home-hero-banner .hhb-bottom div::after {
    content: "";
    position: absolute;
    border-left: 1px solid #bbc5cf;
    height: 100%;
    right: -10px;
    top: -5px;
  }

  .home-hero-banner .hhb-bottom div:last-child:after {
    display: none;
  }


  @media (max-width: 992px) {
    .home-hero-banner .hhb-container {
      margin-left: 3%;
    }

    .home-hero-banner .hhb-location {
      background: #ffffff96;
      padding: 3px 6px;
    }

    .home-hero-banner h1 {
      font-size: 16px;
      background: #ffffff96;
      padding: 3px;
    }


  }

  @media (max-width: 480px) {
    .home-hero-banner {
      --margin-bottom: 12px;
      background-position: 58% 0;
      margin-bottom:15px;
    }

    .home-hero-banner .hhb-container {
      margin-left: 0%;
      padding-bottom: 60px;
    }

    .home-hero-banner .hhb-location span {
      width: 215px;
      text-align: center;
    }

    .home-hero-banner .hhb-bottom {
      gap: 10px;
    }

    .home-hero-banner .hhb-bottom div {
      padding: 0;
    }

    .home-hero-banner .hhb-bottom div::after {
      display: none;
    }

    .home-hero-banner h1::before,
    .home-hero-banner h1::after {
      width: 25px;
    }

  }






    #gmaps-reviews-slider { --card-bg: #f8f8f8; --text-main: #000000; --text-muted: #70757a; --star-color: #fbbc05; --star-inactive-color: #dbdbdb; --gap: 20px; }
    #gmaps-reviews-slider .slider-container { position: relative; --max-width: 1000px; margin: 0 auto; display: flex; align-items: center; }
    #gmaps-reviews-slider .slider-wrapper { overflow: hidden; width: 100%; padding: 20px 0; }
    #gmaps-reviews-slider .slider-track { display: flex; gap: var(--gap); align-items: flex-start; transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1); will-change: transform; }
    #gmaps-reviews-slider .review-card { flex: 0 0 calc(50% - (var(--gap) / 2)); background-color: var(--card-bg); border-radius: 16px; padding: 24px; box-sizing: border-box; display: flex; flex-direction: column; transition: all 0.3s ease; border: 1px solid #e0e0e0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08); }
    #gmaps-reviews-slider .card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 14px; }
    #gmaps-reviews-slider .profile-info { display: flex; align-items: center; gap: 12px; }
    #gmaps-reviews-slider .avatar { width: 40px; height: 40px; --border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 500; font-size: 20px; background-repeat: no-repeat; background-size: cover; background-position: center center; }
    #gmaps-reviews-slider .avatar-green { background-color: #134e3a; }
    #gmaps-reviews-slider .avatar-purple { background-color: #7c5cb7; }
    #gmaps-reviews-slider .user-details { display: flex; flex-direction: column; gap: 2px; }
    #gmaps-reviews-slider .user-name { margin: 0; font-size: 16px; font-weight: 700; color: var(--text-main); }
    #gmaps-reviews-slider .review-date { font-size: 13px; color: var(--text-muted); }
    #gmaps-reviews-slider .rating-row { display: flex; align-items: center; gap: 6px; margin-bottom: 12px; }
    #gmaps-reviews-slider .stars { display: flex; gap: 2px; }
    #gmaps-reviews-slider .star { width: 18px; height: 18px; fill: var(--star-color); }
    #gmaps-reviews-slider .star.star-inactive { fill: var(--star-inactive-color); }
    #gmaps-reviews-slider .verified-badge { display: flex; align-items: center; }
    #gmaps-reviews-slider .review-text { margin: 0 0 12px 0; font-size: 15px; line-height: 1.5; color: var(--text-main); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis; }
    #gmaps-reviews-slider .review-card.expanded .review-text { display: block; overflow: visible; -webkit-line-clamp: unset; }
    #gmaps-reviews-slider .read-more-btn { background: none; border: none; padding: 0; font-size: 14px; color: var(--text-muted); font-weight: 500; cursor: pointer; text-align: left; align-self: flex-start; margin-top: auto; }
    #gmaps-reviews-slider .read-more-btn:before { content: "Read more"; }
    #gmaps-reviews-slider .expanded .read-more-btn:before { content: "Read less" }
    #gmaps-reviews-slider .read-more-btn:hover { text-decoration: underline; }
    #gmaps-reviews-slider .nav-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; background-color: #ffffff; border: 1px solid #e0e0e0; box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08); cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 10; transition: opacity 0.2s; pointer-events: auto; }
    #gmaps-reviews-slider .nav-btn:disabled { opacity: 0; pointer-events: none; cursor: default; }
    #gmaps-reviews-slider .nav-btn svg { fill: #5f6368; }
    #gmaps-reviews-slider .prev-btn { left: -22px; }
    #gmaps-reviews-slider .next-btn { right: -22px; }

    @media (max-width: 768px) {
        #gmaps-reviews-slider { padding: 0 5px; }
        #gmaps-reviews-slider .review-card { flex: 0 0 100%; padding: 24px 40px; }
        #gmaps-reviews-slider .prev-btn { --left: -10px; }
        #gmaps-reviews-slider .next-btn { --right: -10px; }
    }
