/* ==========================================================================
   Hero CTA Buttons — Book Online + Call Now
   ========================================================================== */

.oc-hero-cta {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.oc-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 7px;
  font-size: 16px;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  min-height: 48px;
  line-height: 1.2;
  border: 2px solid transparent;
}

/* Book Online — Orange filled */
.oc-hero-btn--book {
  background-color: #ED6F23 !important;
  color: #fff !important;
  border-color: #ED6F23 !important;
}
.oc-hero-btn--book:hover,
.oc-hero-btn--book:focus {
  background-color: #d4621e !important;
  border-color: #d4621e !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(237, 111, 35, 0.4);
}

/* Call Now — White outline / ghost */
.oc-hero-btn--call {
  background-color: transparent !important;
  color: #fff !important;
  border-color: #fff !important;
}
.oc-hero-btn--call:hover,
.oc-hero-btn--call:focus {
  background-color: #fff !important;
  color: #222 !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* SVG icons inside buttons */
.oc-hero-btn svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

/* Mobile: stack full width + center all buttons */
@media (max-width: 767px) {
  .oc-hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .oc-hero-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 16px;
  }
  .elementor-widget-button .elementor-button-wrapper,
  .elementor-widget-html .elementor-button-wrapper {
    text-align: center !important;
    display: flex !important;
    justify-content: center !important;
  }
  .elementor-widget-html:has(.elementor-button-wrapper),
  .elementor-widget-button {
    --align-self: center !important;
    align-self: center !important;
  }
  .custom-btn-cls .elementor-widget-container {
    text-align: center !important;
  }
  .elementor-widget-html.elementor-absolute:has(.elementor-button-wrapper) {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  /* Orange features section (recycle / clock / pricing / neighbors): 2x2 grid */
  .e-con.e-child:has(img[src*="recycle-white.svg"]):has(img[src*="your-friendly-1.svg"]) {
    --flex-direction: row !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 20px 0 !important;
  }
  .e-con.e-child:has(img[src*="recycle-white.svg"]):has(img[src*="your-friendly-1.svg"]) > .e-con.e-child {
    width: 50% !important;
    flex: 0 0 50% !important;
    min-width: 0 !important;
  }
}

/* ── Blog section mobile fix (match homepage look) ── */
@media (max-width: 767px) {
  .our-blog-cls .elementor-swiper-button {
    display: none !important;
  }
  .our-blog-cls .oc-blog-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 14px 0 4px;
  }
  .our-blog-cls .oc-blog-dot {
    width: 10px !important;
    height: 10px !important;
    max-width: 10px !important;
    max-height: 10px !important;
    min-width: 10px !important;
    min-height: 10px !important;
    border-radius: 50% !important;
    border: 2px solid #ED6F23 !important;
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    cursor: pointer !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    font-size: 0 !important;
    line-height: 0 !important;
    box-shadow: none !important;
    outline: none !important;
    transition: background 0.2s ease, transform 0.2s ease !important;
  }
  .our-blog-cls .oc-blog-dot.active {
    background: #ED6F23 !important;
    transform: scale(1.2);
  }
  .our-blog-cls .elementor-widget-button.elementor-absolute {
    position: relative !important;
    width: 100% !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    top: auto !important;
    margin-top: 8px !important;
  }
  .our-blog-cls .elementor-widget-button .elementor-button-wrapper {
    text-align: center !important;
    display: flex !important;
    justify-content: center !important;
  }
  .our-blog-cls .swiper-slide .e-con {
    min-height: auto !important;
    padding-bottom: 10px !important;
  }
}
@media (min-width: 768px) {
  .our-blog-cls .oc-blog-dots {
    display: none !important;
  }
}

/* ── Process steps carousel — mobile only ── */
@media (max-width: 767px) {
  .oc-process-carousel {
    display: flex !important;
    flex-wrap: wrap !important;
    overflow: hidden !important;
  }
  .oc-process-slide {
    display: none !important;
    width: 100% !important;
    min-width: 100% !important;
  }
  .oc-process-slide.oc-process-active {
    display: flex !important;
    animation: ocProcessFade 0.4s ease both;
  }
  @keyframes ocProcessFade {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .oc-process-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 2px 0 4px;
    width: 100% !important;
    flex-basis: 100% !important;
  }
  .oc-process-dot {
    width: 10px !important;
    height: 10px !important;
    min-width: 10px !important;
    min-height: 10px !important;
    max-width: 10px !important;
    max-height: 10px !important;
    border-radius: 50% !important;
    border: 2px solid #ED6F23 !important;
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    cursor: pointer !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    font-size: 0 !important;
    line-height: 0 !important;
    box-shadow: none !important;
    outline: none !important;
    transition: background 0.2s ease, transform 0.2s ease !important;
  }
  .oc-process-dot.active {
    background: #ED6F23 !important;
    transform: scale(1.2);
  }
}
@media (min-width: 768px) {
  .oc-process-dots {
    display: none !important;
  }
}

/* ── Location icon lists — 2-column grid on mobile ── */
@media (max-width: 767px) {
  .oc-loc-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 2px 0 !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  .oc-loc-grid .elementor-icon-list-item {
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
    padding: 6px 8px !important;
  }
  .oc-loc-grid .elementor-icon-list-item a {
    display: flex !important;
    align-items: center !important;
    text-decoration: none !important;
    color: inherit !important;
  }
  .oc-loc-grid .elementor-icon-list-icon {
    display: inline-flex !important;
    flex-shrink: 0 !important;
    margin-right: 8px !important;
  }
  .oc-loc-grid .elementor-icon-list-icon svg {
    width: 18px !important;
    height: 18px !important;
  }
  .oc-loc-grid .elementor-icon-list-text {
    font-size: 14px !important;
  }
  .oc-loc-grid-src {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .oc-loc-grid {
    display: none !important;
  }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1024px) {
  .oc-hero-cta {
    justify-content: flex-start;
  }
}
