/* Fix: Show first slideshow image as static background */
.elementor-element-8473377 {
    background-image: url('../uploads/2023/09/slide-1-17.jpg') !important;
    background-size: cover !important;
    background-position: center center !important;
    min-height: 450px !important;
    position: relative !important;
}
/* Fix: Ensure the overlay is semi-transparent, not solid black */
.elementor-element-8473377::before {
    opacity: 0.5 !important;
    z-index: 0 !important;
}
/* Fix: Keep text content above the overlay */
.elementor-element-8473377 > .e-con-inner,
.elementor-element-8473377 > .e-child,
.elementor-element-8473377 > * {
    position: relative !important;
    z-index: 1 !important;
}
/* Fix: Make all Elementor elements visible (animations require JS that isn't available) */
.elementor-invisible { visibility: visible !important; }
/* Fix: Ensure text is visible on light backgrounds */
.elementor-widget-text-editor, .elementor-widget-heading, .elementor-widget-icon-list,
.elementor-widget-counter, .elementor-widget-image-box, .elementor-widget-icon-box,
.elementor-widget-toggle, .elementor-widget-accordion { visibility: visible !important; opacity: 1 !important; }
/* Prevent horizontal overflow */
html, body { overflow-x: hidden; max-width: 100vw; }
*, *::before, *::after { box-sizing: border-box; }

/* Fix alignfull overflow */
.alignfull { width: 100% !important; max-width: 100% !important; margin-inline: 0 !important; }
.alignfull img { width: 100% !important; max-width: 100% !important; }
.alignwide { max-width: 100% !important; }

/* Fix Elementor container overflow */
.elementor-section, .e-con, .elementor-container { max-width: 100% !important; }
.elementor-section > .elementor-container { padding-left: 0; padding-right: 0; }

/* Responsive images */
img { max-width: 100%; height: auto; }

/* Mobile-specific fixes */
@media (max-width: 767px) {
  /* Stack hero columns vertically */
  .elementor-section .elementor-container { flex-wrap: wrap !important; }
  .elementor-column { width: 100% !important; }
  
  /* Fix navigation for mobile */
  .elementor-element-765c660 .jet-mega-menu-list { flex-wrap: wrap; }
  
  /* Fix wide elements */
  .alignwide { margin-inline: 0 !important; }
  
  /* Fix top bar overflow */
  .elementor-section.elementor-section-boxed > .elementor-container { max-width: 100%; }
  
  /* Ensure no horizontal overflow from any element */
  section, div, header, footer, nav, main, article { max-width: 100vw; }
  
  /* Fix image containers */
  .elementor-widget-image img,
  .elementor-widget-image .elementor-widget-container { max-width: 100% !important; }
  
  /* Fix hero section card grid */
  .elementor-element-b3d21f2 { flex-wrap: wrap !important; }
  .elementor-element-b3d21f2 > .e-con-inner { flex-wrap: wrap !important; }
  
  /* Fix the Gravity Forms area / large white gap */
  .gform_wrapper { max-width: 100% !important; overflow: hidden; }
  
  /* Fix font sizes for mobile readability */
  .elementor-heading-title { word-wrap: break-word; overflow-wrap: break-word; }
  
  /* Fix the dumpster sizes grid */
  .elementor-element-dc4f5f8 { flex-direction: column !important; }
  .elementor-element-dc4f5f8 > * { width: 100% !important; max-width: 100% !important; }
  
  /* Fix footer overflow */
  footer .elementor-container { flex-wrap: wrap !important; }
  footer .elementor-column { width: 100% !important; }
}

@media (max-width: 480px) {
  /* Extra small screens */
  .elementor-widget-container { overflow: hidden; }
  
  /* Phone number button */
  .elementor-button { max-width: 100%; white-space: normal !important; }
}
/* ===== GLOBAL MODERN STYLING ===== */
:root {
  --wb-primary: #E8752A;
  --wb-primary-dark: #D05E15;
  --wb-primary-light: #FF9A52;
  --wb-dark: #1A1A2E;
  --wb-darker: #0F0F1A;
  --wb-gray: #4A4A5A;
  --wb-light: #F8F9FA;
  --wb-white: #FFFFFF;
  --wb-accent: #2D9CDB;
  --wb-success: #27AE60;
  --wb-shadow: 0 4px 20px rgba(0,0,0,0.08);
  --wb-shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --wb-radius: 12px;
  --wb-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Smooth scrolling site-wide */
html { scroll-behavior: smooth; }

/* Modern typography upgrade */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* ===== STICKY CALL-TO-ACTION BAR (Mobile) ===== */
.wb-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--wb-primary);
  padding: 12px 20px;
  z-index: 99999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  text-align: center;
  animation: slideUpCTA 0.5s ease-out;
}
@keyframes slideUpCTA {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
.wb-sticky-cta a {
  color: white !important;
  text-decoration: none !important;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.wb-sticky-cta a svg {
  width: 22px;
  height: 22px;
  fill: white;
  animation: phonePulse 2s ease-in-out infinite;
}
@keyframes phonePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15) rotate(10deg); }
}
@media (max-width: 767px) {
  .wb-sticky-cta { display: block; }
  body { padding-bottom: 56px; }
}

/* ===== BACK TO TOP BUTTON ===== */
.wb-back-to-top {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: var(--wb-primary);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: var(--wb-transition);
  box-shadow: var(--wb-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.wb-back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.wb-back-to-top:hover {
  background: var(--wb-primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--wb-shadow-lg);
}

/* ===== ENHANCED CTA BUTTONS ===== */
.elementor-button {
  transition: var(--wb-transition) !important;
  position: relative;
  overflow: hidden;
}
.elementor-button:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 25px rgba(232, 117, 42, 0.4) !important;
}
.elementor-button::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  transition: width 0.6s ease, height 0.6s ease, top 0.6s ease, left 0.6s ease;
}
.elementor-button:hover::after {
  width: 300%;
  height: 300%;
  top: -100%;
  left: -100%;
}

/* ===== ENHANCED IMAGE HOVER EFFECTS ===== */
.elementor-widget-image img {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s ease !important;
}
.elementor-widget-image:hover img {
  transform: scale(1.03);
  box-shadow: var(--wb-shadow-lg);
}

/* ===== CARD-STYLE SECTIONS ===== */
.e-con[data-settings*="background_background"] {
  transition: var(--wb-transition);
}

/* ===== ENHANCED HEADINGS ===== */
.elementor-heading-title {
  transition: var(--wb-transition);
}

/* ===== TRUST BADGE STRIP ===== */
.wb-trust-strip {
  background: var(--wb-dark);
  color: white;
  padding: 15px 0;
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.5px;
  overflow: hidden;
}
.wb-trust-strip-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.wb-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  white-space: nowrap;
}
.wb-trust-item svg {
  width: 18px;
  height: 18px;
  fill: var(--wb-primary);
  flex-shrink: 0;
}

/* ===== LOADING ANIMATION ===== */
.wb-page-loaded .elementor-widget {
  animation: fadeInUp 0.6s ease-out both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== ENHANCED FOOTER ===== */
footer .elementor-widget-heading .elementor-heading-title {
  position: relative;
  padding-bottom: 10px;
}

/* ===== RESPONSIVE IMPROVEMENTS ===== */
@media (max-width: 767px) {
  .wb-trust-strip-inner {
    gap: 15px;
    font-size: 12px;
  }
  .wb-trust-item {
    gap: 5px;
  }
  .wb-back-to-top {
    bottom: 70px;
    right: 12px;
    width: 42px;
    height: 42px;
  }
}

/* Images always visible */
img { opacity: 1 !important; }