.service-widget {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
  transition: transform .2s;
}

.service-widget:hover {
  transform: translateY(-4px);
}

.service-section {
  background-color: transparent !important;
}

.btn.btn-primary:hover {
  background-color: black !important;
  color: #fff !important;
}

.serv-img {
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.section-header h2 {
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  color: #161616
}

.slider-nav {
  display: flex;
  gap: 8px;
}

.slider-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: #F4F3EF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .15s;
}



#search-results-section {
  border-radius: 12px;
  padding-top: 16px;
}

.no-results {
  text-align: center;
  padding: 60px 20px;
  color: #888;
}

.no-results svg {
  margin-bottom: 16px;
  opacity: .4;
}

/* ── Location Permission Banner ─────────────────────────────────────── */
#locationPermissionBanner {
  background: #111;
  color: #fff;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 8000;
  display: none;
}

#locationPermissionBanner.show {
  display: block;
}

.banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.banner-text {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
}

.banner-text i {
  font-size: 1.1rem;
  color: #facc15;
}

.banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.btn-allow-loc {
  background: #fff;
  color: #111;
  border: none;
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: .85rem;
  cursor: pointer;
  transition: background .15s;
}

.btn-allow-loc:hover {
  background: #f0f0f0;
}

.btn-no-thanks {
  background: transparent;
  color: rgba(255, 255, 255, .7);
  border: 1px solid rgba(255, 255, 255, .3);
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: .85rem;
  cursor: pointer;
  transition: all .15s;
}

.btn-no-thanks:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, .7);
}

.default-loc-badge {
  font-size: .75rem;
  color: rgba(255, 255, 255, .55);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ── Modals ─────────────────────────────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .45);
  z-index: 9000;
  align-items: center;
  justify-content: center;
}

.modal-overlay.active {
  display: flex;
}

.modal-card {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 480px;
  max-height: 92vh;
  overflow-y: auto;
  padding: 28px 24px 24px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .18);
  animation: slideUp .22s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(24px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: #333;
  line-height: 1;
}

.modal-card h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 20px;
}

/* ── Location Modal ─────────────────────────────────────────────────── */
.location-search-wrap {
  display: flex;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
}

.location-search-wrap input {
  flex: 1;
  border: none;
  padding: 12px 14px;
  font-size: .95rem;
  outline: none;
}

.location-search-wrap button {
  background: #f0f0f0;
  border: none;
  padding: 0 16px;
  cursor: pointer;
}

.use-location-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  margin-top: 14px;
  padding: 12px 14px;
  background: #f7f7f7;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  color: #2563eb;
  transition: background .15s;
}

.use-location-btn:hover {
  background: #eef2ff;
}

.location-suggestions {
  margin-top: 16px;
}

.location-suggestions-item {
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
  font-size: .92rem;
  color: #333;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 10px;
}

.location-suggestions-item:hover {
  color: #000;
}

.location-suggestions-item:last-child {
  border-bottom: none;
}

.location-modal-footer {
  text-align: right;
  margin-top: 16px;
}

.btn-cancel {
  background: #f0f0f0;
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  font-size: .9rem;
}

/* ── Date-Time Modal ────────────────────────────────────────────────── */
.dt-section-label {
  font-size: .85rem;
  color: #888;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.calendar-wrap {
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 20px;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.calendar-header span {
  font-weight: 700;
  font-size: 1rem;
}

.cal-nav {
  background: none;
  border: 1px solid #ddd;
  border-radius: 8px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  gap: 2px;
}

.calendar-day-header {
  font-size: .75rem;
  font-weight: 700;
  color: #888;
  padding: 6px 0;
}

.calendar-cell {
  padding: 8px 4px;
  font-size: .85rem;
  border-radius: 8px;
  cursor: pointer;
  color: #333;
}

.calendar-cell:hover:not(.other-month):not(.past) {
  background: #f5f5f5;
}

.calendar-cell.today {
  background: #e8e8e8;
  font-weight: 700;
  border-radius: 50%;
}

.calendar-cell.selected {
  background: #111;
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
}

.calendar-cell.other-month,
.calendar-cell.past {
  color: #ccc;
  pointer-events: none;
}

.time-period-label {
  font-weight: 700;
  font-size: .95rem;
  margin: 16px 0 8px;
}

.time-slots-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.time-slot-btn {
  padding: 8px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: .82rem;
  cursor: pointer;
  background: #fff;
  transition: all .15s;
  white-space: nowrap;
}

.time-slot-btn:hover {
  border-color: #888;
}

.time-slot-btn.selected {
  background: #111;
  color: #fff;
  border-color: #111;
}

.no-slots {
  font-size: .85rem;
  color: #aaa;
  padding: 8px 0;
}

.dt-modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid #eee;
}

.btn-dt-cancel {
  background: #f0f0f0;
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

.btn-dt-save {
  background: #111;
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
}

.btn-dt-save:hover {
  background: #333;
}

.spinner-inline {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid #ccc;
  border-top-color: #555;
  border-radius: 50%;
  animation: spin .6s linear infinite;
  vertical-align: middle;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}



.hero-section-three {
  background: #161212 !important;
  background-image: none !important;
  background-attachment: unset !important;
}

.hero-section-three .home-banner {
  padding: 0 0 5px !important;
  /* min-height: 420px; */
  margin-bottom: -52px;
}

.search-box.search-box-three {
  padding: 5px !important;
  border: 1px solid #E4E4E7
}

.hero-section-three .search-box .search-input {
  border: 1px solid #E4E4E7;
  border-radius: 12px;
  gap: 10px !important;
  padding: 0 10px;
}

.search-btn-three .btn-primary {
  padding: 10px !important;
  font-size: 16px !important;
}

.search-box form {
  padding: 0 8px !important;
}


.searchbox-list {
  gap: 10px
}

.hero-hero-img-wrap {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
}

.hero-hero-img-wrap img {
  max-height: 480px;
  width: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.section-section-three h4 {
  color: #9A8D7E;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.02px;
  margin-bottom: 16px;
}

.section-section-three h1 {
  color: #fff;
  font-size: 60px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 20px;
}

.section-section-three p {
  color: #86868D;
  font-size: 20px;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .hero-section-three .home-banner {
    padding: 60px 0 30px !important;
  }

  .section-section-three h1 {
    font-size: 36px;
  }

  .hero-hero-img-wrap {
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .section-section-three h1 {
    font-size: 28px;
  }
}


.services-section-grid {
  background-color: #f5f5f5;
  padding: 0;
}

.services-grid-wrap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(2, 160px);
  gap: 12px;
}

.service-grid-item {
  position: relative;
  background-color: rgba(22, 18, 18, 0.1);
  border-radius: 8px;
  padding: 12px 16px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  cursor: pointer;
}

.service-grid-item img {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 55%;
  object-fit: cover;
  object-position: center;
  border-radius: 0 8px 8px 0;
  transition: transform 0.4s ease;
}

.service-grid-item:hover img {
  transform: scale(1.05);
}

.service-grid-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-size: 16px;
  font-weight: 600;
  color: #161212;
  z-index: 2;
  line-height: 1.2;
  /* max-width: 45%; */
}

/* Hover overlay effect */
.service-grid-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(22, 18, 18, 0.08);
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-grid-item:hover::after {
  opacity: 1;
}

/* Responsive */
@media (max-width: 1024px) {
  .services-grid-wrap {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
  }
}

@media (max-width: 768px) {
  .services-grid-wrap {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .service-grid-item {
    height: 130px;
  }

  .service-grid-label {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .services-grid-wrap {
    grid-template-columns: 1fr 1fr;
  }

  .service-grid-item {
    height: 110px;
  }

  .service-grid-label {
    font-size: 13px;
    bottom: 10px;
    left: 10px;
  }
}



/* section card  */

.service-widget .fav-item {
  padding: 10px !important;
}

.features-service-rating {
  background: rgba(255, 255, 255, 0.5) !important;
  padding: 4px 8px !important;
}

.features-service-rating span {
  color: #161212 !important;
  font-size: 12px !important;
}

.service-content {
  padding: 8px;
}

.service-content .title {
  font-size: 18px !important;
  color: #161212 !important;
  font-weight: 600 !important;
  margin-bottom: 0 !important;
}

.service-widget {
  background-color: transparent !important;
  border: none !important;
  border-radius: 0% !important;
}

.service-content p {
  font-size: 16px !important;
  color: #71717A !important;
  font-weight: 400 !important;

}

.service-widget .service-content .title a {
  background-image: none !important;
  color: #161212 !important;
  font-weight: 600 !important;

}

.fav-item .fav-icon.fav-icon-five:hover {
  background-color: rgba(22, 18, 18, 0.5) !important;
}

.fav-item .fav-icon {
  background-color: rgba(22, 18, 18, 0.5) !important;
}

[class^="feather-"],
[class*=" feather-"] {
  color: white;
}


[data-aos="fade-up"] {
  transform: none !important;
}


footer .footer-top {
  background-color: #161212 !important;
}

.footer-title-three {
  color: #FFFFFF !important
}

.footer-title {
  font-size: 20px !important;
  font-weight: 600 !important;
}

.footer-menu li a {
  color: #86868D !important;

}

.footer-menu ul li {
  margin-bottom: 10px !important;

}

.footer-subtitle-three {
  color: #FFFFFF !important
}

.subscribe-box {
  width: 234px;
}

.input-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 10px 12px;
  margin-bottom: 12px;
}

.input-wrapper .icon {
  /* color: #aaa; */
  font-size: 14px;
  margin-right: 8px;
}

.input-wrapper input {
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 14px;
  width: 100%;
}

.input-wrapper input::placeholder {
  color: #888;
}

.subscribe-btn {
  width: 100%;
  padding: 12px;
  background: #C5BEB6;

  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: #161212;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* playstore and google app  */

.badge-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 234px;
}

.app-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #F4F3EF;
  border-radius: 13px;
  padding: 10px 14px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.app-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.apple-badge svg {
  flex-shrink: 0;
}

.google-badge svg {
  flex-shrink: 0;
}

.text {
  line-height: 1.1;
  color: #161212;
}

.small-text {
  font-size: 10.8px;
  font-weight: 600;
  letter-spacing: 0.4px;
  display: block;
}

.big-text {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.5px;
  display: block;
  margin-top: 2px;
}

/* Optional: Make Google Play text slightly lighter weight */
.google-badge .big-text {
  font-weight: 600;
}

.footer-bottoms {
  padding: 20px 0;
  background-color: #161212 !important;
}

.policy-menu .ti {
  color: #ffffff !important;
  fill: #ffffff !important;

}

.services-section {
  background-color: transparent !important;
}

.calendar-cell {
  padding: 16px 4px !important;
}

.service-required-card {
  max-width: 480px;
  border-radius: 12px;
  background: #fff;
  padding: 0;
  overflow: hidden;
}

.service-required-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #ececec;
}

.service-required-header h2 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  color: #111;
}

.service-required-header .modal-close {
  background: none;
  border: none;
  font-size: 1.4rem;
  color: #555;
  cursor: pointer;
  line-height: 1;
  padding: 0;
}

.service-required-body {
  padding: 28px 20px;
  color: #555;
  font-size: .93rem;
  line-height: 1.55;
}

.service-required-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding: 14px 20px;
  border-top: 1px solid #ececec;
}

.btn-sr-cancel {
  background: #e5e5e5;
  border: none;
  border-radius: 6px;
  padding: 9px 22px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  cursor: pointer;
  color: #333;
  transition: background .15s;
}

.btn-sr-cancel:hover {
  background: #d5d5d5;
}

.btn-sr-continue {
  background: #111;
  border: none;
  border-radius: 6px;
  padding: 9px 22px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  cursor: pointer;
  color: #fff;
  transition: background .15s;
}

.btn-sr-continue:hover {
  background: #333;
}

.use-my-location-btn {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fafafa;
  font-size: .88rem;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  transition: background .15s, border-color .15s;
  gap: 4px;
}

.use-my-location-btn:hover {
  background: #f0f0f0;
  border-color: #bbb;
}

.use-my-location-btn:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.location-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #aaa;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.location-divider::before,
.location-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #ececec;
}


/* ── Owl Carousel: reset Bootstrap col widths inside slides ── */
.owl-carousel .owl-item [class*="col-"] {
  width: 100% !important;
  max-width: 100% !important;
  flex: 0 0 100% !important;
  padding-left: 0;
  padding-right: 0;
}

.owl-carousel .owl-item .d-flex {
  width: 100%;
}