:root {
  --bg: #0b1220;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-2: rgba(255, 255, 255, 0.10);
  --card: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.14);
  --text: #f5f7ff;
  --muted: rgba(245, 247, 255, 0.78);
  --muted-2: rgba(245, 247, 255, 0.62);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  --shadow-xl: 0 30px 70px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 10px 40px rgba(59, 130, 246, 0.3);

  --brand: #3b82f6;
  --brand-2: #2563eb;
  --accent: #10b981;
  --accent-glow: rgba(16, 185, 129, 0.3);

  --radius: 20px;
  --radius-sm: 14px;

  --container: 1200px;
  --topbar-h: 100px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Outfit', ui-sans-serif, system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: radial-gradient(ellipse 1400px 700px at 20% 0%, rgba(59, 130, 246, 0.22), transparent 65%),
    radial-gradient(ellipse 1000px 600px at 80% 20%, rgba(16, 185, 129, 0.18), transparent 60%),
    radial-gradient(circle 800px at 50% 100%, rgba(139, 92, 246, 0.12), transparent 70%),
    linear-gradient(180deg, #070b13, #0b1220 35%, #0a0f1a 70%, #070b13);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

a {
  color: inherit;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  padding: 10px 12px;
  background: #ffffff;
  color: #0b1220;
  border-radius: 10px;
  z-index: 10000;
}

.skip-link:focus {
  left: 14px;
}

/* Top bar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 999;
  height: var(--topbar-h);
  background: rgba(6, 10, 18, 0.78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.logo {
  width: 200px;
  height: 200px;
  border-radius: 10px;
  object-fit: contain;
  background: #ffffff;
  padding: 10px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.logo--footer {
  width: 200px;
  height: 200px;
  border-radius: 18px;
  padding: 10px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.brand-text {
  min-width: 0;
}

.brand-text__name {
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.15rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
}

.brand-text__tag {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--brand);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.topbar__cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.phone {
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

/* Buttons */
.btn {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 200ms cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 200ms cubic-bezier(0.4, 0, 0.2, 1),
    background 200ms cubic-bezier(0.4, 0, 0.2, 1),
    border-color 200ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn:focus-visible {
  outline: 3px solid rgba(47, 124, 255, 0.55);
  outline-offset: 2px;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}

.btn--primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3),
    0 0 20px rgba(59, 130, 246, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn--primary:hover {
  background: linear-gradient(135deg, #4f8df7 0%, #1d4ed8 100%);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.5),
    0 0 35px rgba(59, 130, 246, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.10);
}

.btn--ghost {
  background: transparent;
}

.btn--full {
  width: 100%;
}

/* Hero */
.hero {
  position: relative;
  padding: 40px 0 60px;
  min-height: 400px;
  display: flex;
  align-items: center;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.hero__video,
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.05);
}

.video-wrapper {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  background: #000;
}

.video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 10, 18, 0.3), rgba(6, 10, 18, 0.6));
}

.hero__inner {
  padding-top: calc(var(--topbar-h) * 0.5);
}

.hero__grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__title {
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero__subtitle {
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.35rem;
  font-weight: 500;
  max-width: 60ch;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
}

.form-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.seo-content {
  color: var(--text);
}

.seo-content p {
  margin-bottom: 20px;
  color: rgba(245, 247, 255, 0.9);
  font-size: 1.1rem;
}

.seo-content strong {
  color: #fff;
  font-weight: 700;
}

#quote-section {
  background-image: linear-gradient(rgba(11, 18, 32, 0.85), rgba(11, 18, 32, 0.95)),
    url("images/dumpster-rental-dump-truck-services/background-form.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 80px 0;
}

@media (max-width: 980px) {
  .form-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 600px;
  }

  .seo-content {
    text-align: center;
  }
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  background: rgba(16, 185, 129, 0.14);
  border: 1px solid rgba(16, 185, 129, 0.22);
  color: rgba(245, 247, 255, 0.92);
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
}

/* Form card */
.form-card {
  background: rgba(10, 16, 28, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl),
    0 0 40px rgba(59, 130, 246, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
  backdrop-filter: blur(20px);
  position: relative;
}

.form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--accent), var(--brand));
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% {
    background-position: 0% 0%;
  }

  100% {
    background-position: 200% 0%;
  }
}

.form-card__header {
  padding: 16px 18px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.form-card__title {
  margin: 0;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.form-card__sub {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.lead-form {
  padding: 14px 18px 18px;
}

.field {
  margin-bottom: 12px;
}

label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin: 0 0 6px;
  color: rgba(245, 247, 255, 0.92);
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(10, 16, 28, 0.85);
  /* Much more solid background */
  color: var(--text);
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

input:hover,
select:hover,
textarea:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(15, 23, 42, 0.9);
}

/* Fix for dropdown visibility in all browsers */
select option {
  background-color: #0b1220;
  /* Dark solid background for the options list */
  color: #f5f7ff;
  padding: 12px;
}

select {
  padding-right: 30px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(59, 130, 246, 0.5);
  outline-offset: 1px;
  border-color: var(--brand);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

.hint {
  color: var(--muted-2);
  font-weight: 600;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.radio-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.radio {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
}

.radio input {
  width: auto;
}

.error {
  margin: 8px 0 0;
  font-size: 0.86rem;
  color: #ffd0d0;
}

.is-invalid {
  border-color: rgba(255, 91, 91, 0.7) !important;
  background: rgba(255, 91, 91, 0.08) !important;
}

.form-success {
  margin: 14px 18px 0;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(16, 185, 129, 0.38);
  background: rgba(16, 185, 129, 0.12);
  color: rgba(245, 247, 255, 0.95);
}

.under-submit {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.hours {
  margin: 12px 0 0;
  color: var(--muted-2);
  font-size: 0.9rem;
}

.parallax-section {
  height: 500px;
  background-image: url("images/dumpster-rental-dump-truck-services/hero.png");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-image-section {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-image-section img {
  width: 100%;
  height: auto;
  display: block;
}

/* Sections */
.section {
  padding: 100px 0;
}

.section--alt {
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section__title {
  margin: 0 0 40px;
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  letter-spacing: -0.04em;
  text-align: center;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--brand);
  background: var(--surface-2);
  box-shadow: var(--shadow-xl), 0 0 30px rgba(59, 130, 246, 0.2);
}

.card:hover::before {
  opacity: 1;
}

.card--featured {
  border-color: var(--brand);
  background: rgba(59, 130, 246, 0.12);
  box-shadow: 0 25px 55px rgba(59, 130, 246, 0.25),
    0 0 40px rgba(59, 130, 246, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  position: relative;
}

.card--featured::after {
  content: '⭐ POPULAR';
  position: absolute;
  top: 20px;
  right: -30px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #000;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 35px;
  transform: rotate(45deg);
  box-shadow: 0 4px 10px rgba(251, 191, 36, 0.4);
  letter-spacing: 0.05em;
}

.card__img {
  height: 150px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  margin-bottom: 12px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.card__img--10 {
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.35)),
    url("images/dumpster-rental-dump-truck-services/dumpster-10-feet.png");
}

.card__img--15 {
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.35)),
    url("images/dumpster-rental-dump-truck-services/dumpster-15-feet.png");
}

.card__img--20 {
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.35)),
    url("images/dumpster-rental-dump-truck-services/dumpster-20-feet.png");
}

.card__title {
  margin: 0 0 6px;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.price {
  margin: 0 0 10px;
  color: rgba(245, 247, 255, 0.92);
}

.card__list {
  margin: 0 0 12px;
  padding-left: 18px;
  color: var(--muted);
}

.note {
  margin: 14px 0 0;
  color: var(--muted);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.gallery__item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.gallery__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  border-color: rgba(255, 255, 255, 0.18);
}

.gallery__item img {
  width: 100%;
  height: 240px;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery__item:hover img {
  transform: scale(1.05);
}

.gallery__caption {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.col {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.col__media {
  width: 100%;
  height: 200px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
}

.col__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.col h3 {
  margin: 0 0 10px;
}

.col ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.haul-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.haul-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 20px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
}

.haul-card:hover {
  background: var(--surface-2);
  border-color: var(--brand);
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3), 0 0 20px rgba(59, 130, 246, 0.15);
}

.haul-card:hover .haul-card__icon {
  background: rgba(59, 130, 246, 0.2);
  transform: scale(1.1) rotate(5deg);
}

.haul-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.1);
  color: var(--brand);
  border-radius: 12px;
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.haul-card__text {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.areas-grid li {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 10px;
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 0.95rem;
  color: var(--muted);
  transition: all 0.2s ease;
}

.areas-grid li:hover {
  border-color: var(--brand);
  background: var(--surface-2);
  color: var(--text);
  transform: translateY(-2px);
}

.warning {
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 91, 91, 0.3);
  background: linear-gradient(135deg, rgba(255, 91, 91, 0.05), rgba(0, 0, 0, 0.2));
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.warning::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #ff5b5b;
}

.warning__title {
  margin: 0 0 20px;
  letter-spacing: -0.04em;
  color: #ff5b5b;
  font-size: 1.75rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.warning__title::before {
  content: "⚠️";
  font-size: 1.5rem;
}

.warning ul {
  margin: 0;
  padding-left: 18px;
}

.warning__note {
  margin: 10px 0 0;
  color: rgba(245, 247, 255, 0.92);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.split__content {
  flex: 1;
}

.split__media {
  flex: 1;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 400px;
}

.split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split__cta {
  margin-top: 30px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

/* Final CTA strip */
.cta-strip {
  padding: 26px 0;
  background: linear-gradient(135deg, rgba(47, 124, 255, 0.18), rgba(16, 185, 129, 0.12));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-strip__text {
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 1.15rem;
}

.cta-strip__buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  padding: 46px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.20);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.footer__name {
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.footer__label {
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.footer__line {
  color: var(--muted);
  margin-bottom: 6px;
}

.footer__bottom {
  margin-top: 18px;
  color: var(--muted-2);
}

/* Responsive */
@media (max-width: 980px) {
  .hero {
    padding: 22px 0 16px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
  }

  /* Make form appear near top on mobile (right after hero headline). */
  .hero__intro {
    order: 0;
  }

  .form-card {
    order: 1;
  }

  .hero__details {
    order: 2;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .cols {
    grid-template-columns: 1fr;
  }

  .checklist {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
  }

  .gallery__item img {
    height: 150px;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .radio-row {
    grid-template-columns: 1fr;
  }

  .topbar {
    height: auto;
    padding: 10px 0;
  }

  .logo {
    width: 56px;
    height: 56px;
  }

  .phone {
    flex: 1 1 auto;
    text-align: center;
  }

  .topbar__cta {
    width: 100%;
    justify-content: flex-start;
  }

  .topbar__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .split__media {
    height: 300px;
    order: -1;
  }

  .cta-strip__inner {
    justify-content: flex-start;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .gallery {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn {
    transition: none;
  }

  .hero__video {
    display: none;
  }

  .hero__media {
    background: url("images/dumpster-rental-dump-truck-services/dumpster-rental-dump-truck-services.jpeg") center/cover;
  }
}

/* Sticky Contact Widget */
.contact-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
}

.contact-widget__options {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.9);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: none;
}

.contact-widget.is-active .contact-widget__options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.contact-widget__trigger {
  height: 64px;
  padding: 0 24px;
  border-radius: 32px;
  background: #ff0000;
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: white;
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
  animation: hot-flash 1.5s infinite;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@keyframes hot-flash {
  0% {
    background: #ff0000;
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    transform: scale(1);
  }

  50% {
    background: #ff4d4d;
    box-shadow: 0 0 0 15px rgba(255, 0, 0, 0);
    transform: scale(1.05);
  }

  100% {
    background: #ff0000;
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    transform: scale(1);
  }
}

.contact-widget__trigger:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(255, 0, 0, 0.5);
  animation-play-state: paused;
}

.contact-widget.is-active .contact-widget__trigger {
  transform: rotate(0);
  background: #334155;
  animation: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.contact-widget.is-active .contact-widget__label {
  display: none;
}

.contact-widget.is-active .widget-icon {
  transform: rotate(90deg);
}

.contact-widget__label {
  white-space: nowrap;
}

.contact-widget__btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  white-space: nowrap;
}

.contact-widget__btn--phone {
  background: linear-gradient(135deg, var(--accent) 0%, #059669 100%);
}

.contact-widget__btn--quote {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  cursor: pointer;
}

.contact-widget__btn:hover {
  transform: translateX(-5px);
  filter: brightness(1.1);
}

.widget-icon {
  font-size: 1.25rem;
}

@media (max-width: 768px) {
  .contact-widget {
    bottom: 20px;
    right: 20px;
  }

  .contact-widget__options {
    position: fixed;
    bottom: 100px;
    left: 20px;
    right: 20px;
    align-items: stretch;
  }

  .contact-widget.is-active .contact-widget__options {
    transform: translateY(0);
  }

  .contact-widget__btn {
    justify-content: center;
    padding: 16px;
  }

  .contact-widget__trigger {
    width: 60px;
    height: 60px;
    padding: 0;
    border-radius: 50%;
  }

  .contact-widget__label {
    display: none;
  }
}