/* ==========================================================================
   WASTEROUND LTD — Modern Eco-Luxury Design System
   Brand Guidelines: Emerald Green, Obsidian Slate, Clean Typography
   ========================================================================== */

:root {
  /* Color Palette */
  --primary-deep: #0a3d24;
  --primary-green: #0f5132;
  --primary-bright: #198754;
  --accent-emerald: #10b981;
  --accent-emerald-light: #d1fae5;
  --accent-emerald-hover: #059669;
  
  --dark-obsidian: #0b1120;
  --dark-slate: #0f172a;
  --dark-surface: #1e293b;
  --dark-border: rgba(255, 255, 255, 0.08);

  --light-bg: #f8fafc;
  --light-card: #ffffff;
  --light-border: #e2e8f0;
  --light-muted: #64748b;
  --light-text: #1e293b;
  
  --warning-amber: #f59e0b;
  --warning-bg: #fef3c7;
  --warning-text: #92400e;

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Elevation & Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --shadow-emerald: 0 10px 25px -5px rgba(16, 185, 129, 0.3);
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 9999px;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--light-bg);
  color: var(--light-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   Top Announcement / Trust Ribbon
   ========================================================================== */
.top-ribbon {
  background: var(--dark-obsidian);
  color: #94a3b8;
  font-size: 0.8rem;
  padding: 9px 0;
  border-bottom: 1px solid var(--dark-border);
  white-space: nowrap;
}

.top-ribbon .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.ribbon-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #cbd5e1;
  font-size: 0.8rem;
}

.ribbon-badge strong {
  color: #ffffff;
}

.ribbon-badge .status-dot {
  width: 7px;
  height: 7px;
  background: var(--accent-emerald);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-emerald);
  display: inline-block;
  animation: pulse-dot 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.25); opacity: 0.8; }
}

.ribbon-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.8rem;
}

.ribbon-links span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #94a3b8;
}

.ribbon-links strong {
  color: #ffffff;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--light-border);
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.site-logo-img {
  height: 46px;
  max-width: 230px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition-fast);
}

.brand-logo:hover .site-logo-img {
  transform: scale(1.02);
}

.footer-logo-img {
  height: 62px;
  width: auto;
  margin-bottom: 8px;
}

/* Navigation Links */
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #334155;
  position: relative;
  padding: 6px 0;
  transition: color var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-green);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2.5px;
  background: var(--accent-emerald);
  border-radius: 2px;
}

/* Header Right Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--dark-obsidian);
  transition: all var(--transition-fast);
}

.phone-pill:hover {
  background: var(--accent-emerald-light);
  border-color: var(--accent-emerald);
  color: var(--primary-deep);
}

.phone-pill svg {
  width: 16px;
  height: 16px;
  color: var(--primary-green);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--primary-green) 0%, #15803d 100%);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(15, 81, 50, 0.28);
  transition: all var(--transition-normal);
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15, 81, 50, 0.38);
  background: linear-gradient(135deg, #0d462b 0%, #166534 100%);
}

.btn-emerald {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--accent-emerald) 0%, #059669 100%);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-emerald);
  transition: all var(--transition-normal);
}

.btn-emerald:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -4px rgba(16, 185, 129, 0.45);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: var(--dark-obsidian);
}

/* ==========================================================================
   Hero Section with Split Layout & Litta Selector
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 64px 0 88px;
  background: 
    linear-gradient(180deg, rgba(255, 255, 255, 0.93) 0%, rgba(241, 245, 249, 0.89) 100%),
    url('../assets/images/hero-van.jpg') center/cover no-repeat;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  top: -150px;
  right: -100px;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, rgba(15, 81, 50, 0.04) 50%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  flex-direction: column;
}

.trust-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  font-weight: 700;
  color: #065f46;
  width: fit-content;
  margin-bottom: 20px;
}

.trust-badge-pill .star-icon {
  color: #059669;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.12;
  color: var(--dark-obsidian);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero-headline span.highlight {
  color: var(--primary-green);
  position: relative;
}

.hero-headline span.highlight::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 8px;
  background: rgba(16, 185, 129, 0.25);
  z-index: -1;
  border-radius: 4px;
}

.hero-subheadline {
  font-size: 1.125rem;
  line-height: 1.65;
  color: #475569;
  margin-bottom: 32px;
  max-width: 580px;
}

.hero-key-points {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 32px;
}

.key-point-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1e293b;
}

.key-point-item svg {
  width: 18px;
  height: 18px;
  color: var(--accent-emerald);
  flex-shrink: 0;
}

/* Trustpilot Summary Row */
.hero-reviews-mini {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--light-border);
}

.tp-stars {
  display: flex;
  gap: 3px;
  color: #00b67a;
}

.tp-stars svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.tp-text {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--dark-obsidian);
}

.tp-sub {
  font-size: 0.75rem;
  color: var(--light-muted);
  display: block;
}

/* ==========================================================================
   Interactive Quick Selector Widget (Litta Style Card)
   ========================================================================== */
.selector-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: 0 20px 40px -12px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(15, 23, 42, 0.05);
  border: 1px solid rgba(226, 232, 240, 0.8);
  position: relative;
  z-index: 10;
}

.selector-header {
  margin-bottom: 24px;
}

.selector-tag {
  display: inline-block;
  background: var(--accent-emerald-light);
  color: #065f46;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.selector-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark-obsidian);
  letter-spacing: -0.01em;
}

.selector-tabs-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
  background: #f8fafc;
  padding: 6px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--light-border);
}

.tab-option-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 14px 16px;
  background: transparent;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  text-align: left;
  transition: all var(--transition-normal);
}

.tab-option-btn:hover {
  background: #ffffff;
}

.tab-option-btn.active {
  background: #ffffff;
  border-color: var(--accent-emerald);
  box-shadow: var(--shadow-md);
}

.tab-option-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
  width: 100%;
}

.tab-radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.tab-option-btn.active .tab-radio {
  border-color: var(--accent-emerald);
}

.tab-option-btn.active .tab-radio::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-emerald);
}

.tab-option-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark-obsidian);
}

.tab-option-desc {
  font-size: 0.775rem;
  color: var(--light-muted);
  line-height: 1.35;
  padding-left: 26px;
}

/* Postcode Input Box */
.selector-form-group {
  margin-bottom: 20px;
}

.input-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--dark-obsidian);
  margin-bottom: 8px;
}

.input-helper {
  font-size: 0.75rem;
  color: var(--accent-emerald-hover);
  font-weight: 600;
}

.postcode-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.postcode-pin-icon {
  position: absolute;
  left: 16px;
  width: 20px;
  height: 20px;
  color: var(--light-muted);
  pointer-events: none;
}

.postcode-field {
  width: 100%;
  padding: 16px 16px 16px 46px;
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--dark-obsidian);
  background: #ffffff;
  border: 2px solid #cbd5e1;
  border-radius: var(--radius-md);
  outline: none;
  transition: all var(--transition-fast);
}

.postcode-field:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 4px rgba(15, 81, 50, 0.12);
}

.postcode-status {
  margin-top: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  min-height: 20px;
}

.postcode-status.valid {
  color: #059669;
}

.postcode-status.invalid {
  color: #dc2626;
}

/* Start Quote CTA */
.btn-selector-submit {
  width: 100%;
  padding: 16px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary-green) 0%, #15803d 100%);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 6px 18px rgba(15, 81, 50, 0.3);
  transition: all var(--transition-normal);
}

.btn-selector-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(15, 81, 50, 0.4);
  background: linear-gradient(135deg, #0d462b 0%, #166534 100%);
}

.selector-deposit-notice {
  margin-top: 14px;
  font-size: 0.775rem;
  text-align: center;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.selector-deposit-notice strong {
  color: var(--primary-green);
}

/* ==========================================================================
   Hero Visual Image Banner (Van & Crew)
   ========================================================================== */
.hero-photo-container {
  position: relative;
  margin-top: 48px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--light-border);
}

.hero-photo-container img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.hero-photo-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(11, 17, 32, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 480px;
}

.hero-photo-badge .badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
}

.hero-photo-badge .badge-title {
  font-weight: 700;
  font-size: 0.95rem;
}

.hero-photo-badge .badge-desc {
  font-size: 0.8rem;
  color: #cbd5e1;
}

/* ==========================================================================
   Section Header Standard
   ========================================================================== */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

.section-tag {
  display: inline-block;
  background: #ecfdf5;
  color: #065f46;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.18;
  color: var(--dark-obsidian);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--light-muted);
  line-height: 1.6;
}

/* ==========================================================================
   Category Showcase (6 Interactive Photo Cards with Hover Effects)
   ========================================================================== */
.categories-section {
  padding: 96px 0;
  background: #ffffff;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.category-card {
  position: relative;
  background: #ffffff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--light-border);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 420px;
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl), 0 0 0 2px var(--accent-emerald);
}

.category-image-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.category-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.category-card:hover .category-image-wrap img {
  transform: scale(1.08);
}

/* Default Gradient Overlay at bottom */
.category-default-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 32px 24px 24px;
  background: linear-gradient(180deg, transparent 0%, rgba(11, 17, 32, 0.4) 30%, rgba(11, 17, 32, 0.95) 100%);
  z-index: 2;
  transition: opacity var(--transition-fast);
}

.category-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
  line-height: 1.25;
}

.category-starting-price {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent-emerald);
}

/* Emerald Sliding Reveal Overlay */
.category-hover-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(15, 81, 50, 0.85) 0%, rgba(11, 17, 32, 0.96) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 32px 24px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition-normal);
  pointer-events: none;
}

.category-card:hover .category-hover-overlay {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hover-category-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.hover-items-list {
  list-style: none;
  margin-bottom: 24px;
}

.hover-items-list li {
  font-size: 0.875rem;
  color: #e2e8f0;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hover-items-list li svg {
  width: 14px;
  height: 14px;
  color: var(--accent-emerald);
  flex-shrink: 0;
}

.btn-card-action {
  width: 100%;
  padding: 12px;
  background: var(--accent-emerald);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  border: none;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-card-action:hover {
  background: #ffffff;
  color: var(--primary-deep);
}

/* ==========================================================================
   "Can't Decide?" Call-to-Action Banner
   ========================================================================== */
.cant-decide-section {
  padding: 0 0 96px;
}

.cant-decide-banner {
  background: 
    linear-gradient(135deg, rgba(22, 101, 52, 0.92) 0%, rgba(10, 61, 36, 0.94) 60%, rgba(11, 17, 32, 0.97) 100%),
    url('../assets/images/hero-van.jpg') center/cover no-repeat;
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  color: #ffffff;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 40px;
  box-shadow: 0 25px 50px -12px rgba(15, 81, 50, 0.35);
  border: 1px solid rgba(16, 185, 129, 0.25);
  position: relative;
  overflow: hidden;
}

.banner-pattern {
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.cant-decide-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
}

.cant-decide-desc {
  font-size: 1.05rem;
  color: #cbd5e1;
  line-height: 1.6;
}

.banner-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
}

.btn-banner-photo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  background: #ffffff;
  color: var(--primary-deep);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal);
}

.btn-banner-photo:hover {
  transform: translateY(-2px);
  background: #f8fafc;
  color: #064e3b;
}

.btn-banner-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  background: #25d366;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
  transition: all var(--transition-normal);
  text-decoration: none;
}

.btn-banner-whatsapp:hover {
  transform: translateY(-2px);
  background: #20ba59;
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.4);
}

/* ==========================================================================
   "Why Choose WasteRound" (Interactive Badges / Bento Grid)
   ========================================================================== */
.why-choose-section {
  padding: 96px 0;
  background: 
    linear-gradient(180deg, rgba(248, 250, 252, 0.94) 0%, rgba(241, 245, 249, 0.95) 100%),
    url('../assets/images/card-clearance.jpg') center/cover no-repeat;
  border-top: 1px solid var(--light-border);
  border-bottom: 1px solid var(--light-border);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.bento-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  border: 1px solid var(--light-border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  position: relative;
  display: flex;
  flex-direction: column;
}

.bento-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(16, 185, 129, 0.4);
}

.bento-icon-box {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: #ecfdf5;
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all var(--transition-fast);
}

.bento-card:hover .bento-icon-box {
  background: var(--primary-green);
  color: #ffffff;
}

.bento-icon-box svg {
  width: 28px;
  height: 28px;
}

.bento-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark-obsidian);
  margin-bottom: 10px;
}

.bento-card-desc {
  font-size: 0.925rem;
  color: var(--light-muted);
  line-height: 1.55;
}

/* ==========================================================================
   Customer Reviews & Trustpilot Carousel
   ========================================================================== */
.reviews-section {
  padding: 96px 0;
  background: #ffffff;
}

.reviews-carousel-wrapper {
  position: relative;
  overflow: hidden;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.review-card {
  background: #f8fafc;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--light-border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-fast);
}

.review-card:hover {
  background: #ffffff;
  box-shadow: var(--shadow-lg);
  border-color: #cbd5e1;
}

.review-rating {
  display: flex;
  gap: 4px;
  color: #00b67a;
  margin-bottom: 16px;
}

.review-rating svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.review-quote {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #334155;
  margin-bottom: 20px;
  font-style: italic;
}

.review-author-row {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--light-border);
  padding-top: 16px;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary-deep);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.author-meta {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark-obsidian);
}

.author-location {
  font-size: 0.775rem;
  color: var(--light-muted);
}

/* ==========================================================================
   Interactive London Postcode Coverage Checker
   ========================================================================== */
.coverage-section {
  padding: 80px 0;
  background: 
    linear-gradient(135deg, rgba(11, 17, 32, 0.93) 0%, rgba(15, 23, 42, 0.96) 100%),
    url('../assets/images/card-commercial.jpg') center/cover no-repeat;
  color: #ffffff;
}

.coverage-box {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.coverage-info h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.coverage-info p {
  color: #94a3b8;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.borough-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.borough-tag {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.775rem;
  color: #cbd5e1;
}

.coverage-tool {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 32px;
  color: var(--dark-obsidian);
  box-shadow: var(--shadow-xl);
}

.coverage-tool-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.coverage-tool-desc {
  font-size: 0.875rem;
  color: var(--light-muted);
  margin-bottom: 20px;
}

.coverage-search-bar {
  display: flex;
  gap: 10px;
}

.coverage-input {
  flex: 1;
  padding: 14px 16px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  border: 2px solid #cbd5e1;
  border-radius: var(--radius-md);
  outline: none;
}

.coverage-input:focus {
  border-color: var(--primary-green);
}

.btn-check-coverage {
  padding: 14px 20px;
  background: var(--primary-green);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-check-coverage:hover {
  background: #0d462b;
}

.coverage-result-box {
  margin-top: 16px;
  padding: 14px;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  display: none;
}

.coverage-result-box.success {
  display: block;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
}

.coverage-result-box.warning {
  display: block;
  background: #fffbeb;
  border: 1px solid #fde68a;
  color: #92400e;
}

/* ==========================================================================
   Footer & Environmental Compliance Badges
   ========================================================================== */
.site-footer {
  background: var(--dark-obsidian);
  color: #94a3b8;
  padding: 80px 0 32px;
  border-top: 1px solid var(--dark-border);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-brand .logo-title {
  color: #ffffff;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: 16px;
  margin-bottom: 24px;
  max-width: 360px;
  color: #94a3b8;
}

.company-reg-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 16px;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #cbd5e1;
}

.company-reg-card strong {
  color: #ffffff;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.875rem;
  color: #94a3b8;
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 4px;
}

/* Compliance Badge Box */
.compliance-badge-box {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ea-badge-header {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-emerald);
  font-weight: 700;
  font-size: 0.875rem;
}

.ea-badge-header svg {
  width: 22px;
  height: 22px;
}

.ea-badge-details {
  font-size: 0.8125rem;
  color: #e2e8f0;
  line-height: 1.45;
}

.ea-cert-num {
  font-family: monospace;
  background: rgba(0, 0, 0, 0.3);
  padding: 3px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-top: 4px;
  color: var(--accent-emerald-light);
  font-weight: 600;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--dark-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.8125rem;
}

.footer-legal-links {
  display: flex;
  gap: 20px;
}

.footer-legal-links a:hover {
  color: #ffffff;
}

/* ==========================================================================
   Interactive Photo Upload Modal
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 17, 32, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-dialog {
  background: #ffffff;
  border-radius: var(--radius-xl);
  max-width: 560px;
  width: 100%;
  padding: 36px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  position: relative;
  transform: scale(0.95);
  transition: transform var(--transition-normal);
}

.modal-overlay.open .modal-dialog {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #f1f5f9;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #64748b;
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  background: #e2e8f0;
  color: var(--dark-obsidian);
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark-obsidian);
  margin-bottom: 8px;
}

.modal-desc {
  font-size: 0.875rem;
  color: var(--light-muted);
  margin-bottom: 24px;
}

.file-dropzone {
  border: 2px dashed #cbd5e1;
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  text-align: center;
  cursor: pointer;
  background: #f8fafc;
  transition: all var(--transition-fast);
  margin-bottom: 20px;
}

.file-dropzone:hover,
.file-dropzone.dragover {
  border-color: var(--accent-emerald);
  background: #ecfdf5;
}

.dropzone-icon {
  width: 48px;
  height: 48px;
  color: var(--primary-green);
  margin: 0 auto 12px;
}

.dropzone-text {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark-obsidian);
  margin-bottom: 4px;
}

.dropzone-sub {
  font-size: 0.775rem;
  color: var(--light-muted);
}

.modal-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 20px;
}

.modal-input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  outline: none;
}

.modal-input:focus {
  border-color: var(--primary-green);
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 90;
  transition: all var(--transition-normal);
  cursor: pointer;
}

.floating-whatsapp:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.55);
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cant-decide-banner {
    grid-template-columns: 1fr;
    padding: 40px 32px;
  }

  .coverage-box {
    grid-template-columns: 1fr;
  }

  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .top-ribbon .container {
    justify-content: center;
  }
  .ribbon-links {
    display: none;
  }

  .main-nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 24px;
    box-shadow: var(--shadow-xl);
    flex-direction: column;
    border-bottom: 1px solid var(--light-border);
  }

  .main-nav.active {
    display: flex;
  }

  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: 16px;
    margin-bottom: 20px;
  }

  .nav-link {
    font-size: 1.1rem;
    padding: 8px 0;
    width: 100%;
  }

  .mobile-toggle {
    display: block;
  }

  .phone-pill {
    display: none;
  }

  .hero-headline {
    font-size: 2.35rem;
  }

  .hero-photo-container img {
    height: 300px;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .footer-top-grid {
    grid-template-columns: 1fr;
  }

  .modal-form-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   PAGE 2: WASTE REMOVAL SERVICE (`waste-removal.html`)
   ========================================================================== */
.page-hero {
  background: 
    linear-gradient(135deg, rgba(11, 17, 32, 0.92) 0%, rgba(15, 81, 50, 0.88) 100%),
    url('../assets/images/card-furniture.jpg') center/cover no-repeat;
  color: #ffffff;
  padding: 56px 0 42px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.page-hero-desc {
  font-size: 1.05rem;
  color: #94a3b8;
  max-width: 680px;
}

/* Dual Engine Layout */
.engine-container {
  padding: 40px 0 80px;
}

.engine-main-col {
  min-width: 0;
}

.engine-sidebar-col {
  min-width: 0;
}

.engine-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 28px;
  align-items: start;
}

/* Category Filter Bar */
.category-pill-bar {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  max-width: 100%;
  padding-bottom: 12px;
  margin-bottom: 24px;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.category-pill-bar::-webkit-scrollbar {
  height: 4px;
}

.category-pill-bar::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

.cat-pill {
  padding: 8px 16px;
  background: #ffffff;
  border: 1px solid var(--light-border);
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark-obsidian);
  white-space: nowrap;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.cat-pill:hover,
.cat-pill.active {
  background: var(--primary-green);
  color: #ffffff;
  border-color: var(--primary-green);
}

/* Search Bar */
.catalog-search-wrap {
  position: relative;
  margin-bottom: 24px;
  min-width: 0;
}

.catalog-search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--light-muted);
}

.catalog-search-input {
  width: 100%;
  padding: 14px 16px 14px 48px;
  font-size: 1rem;
  border: 2px solid #cbd5e1;
  border-radius: var(--radius-lg);
  outline: none;
  background: #ffffff;
  transition: all var(--transition-fast);
}

.catalog-search-input:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 4px rgba(15, 81, 50, 0.1);
}

/* Item Grid */
.catalog-item-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.item-card {
  background: #ffffff;
  border: 1px solid var(--light-border);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.item-card:hover {
  box-shadow: var(--shadow-md);
  border-color: #cbd5e1;
}

.item-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
  gap: 12px;
}

.item-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-obsidian);
  line-height: 1.3;
}

.item-category-tag {
  font-size: 0.725rem;
  color: var(--light-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 2px;
  display: block;
}

.item-base-price {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-green);
  white-space: nowrap;
}

.item-access-select {
  width: 100%;
  padding: 8px 10px;
  font-size: 0.8125rem;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-md);
  background: #f8fafc;
  margin-bottom: 14px;
  outline: none;
  cursor: pointer;
}

.item-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid #f1f5f9;
}

.quantity-stepper {
  display: inline-flex;
  align-items: center;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-pill);
  padding: 2px;
}

.stepper-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  color: var(--dark-obsidian);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  transition: all var(--transition-fast);
}

.stepper-btn:hover {
  background: var(--primary-green);
  color: #ffffff;
}

.stepper-val {
  min-width: 28px;
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.btn-add-item {
  padding: 8px 16px;
  background: var(--primary-green);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-add-item:hover {
  background: #0d462b;
}

.btn-add-item.in-basket {
  background: #059669;
}

/* Path A: Luton Van Load Size Cards */
.load-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.load-card {
  background: #ffffff;
  border: 2px solid var(--light-border);
  border-radius: var(--radius-xl);
  padding: 24px;
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
}

.load-card:hover,
.load-card.selected {
  border-color: var(--accent-emerald);
  box-shadow: var(--shadow-lg);
}

.load-card.selected {
  background: #f0fdf4;
}

.load-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.load-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark-obsidian);
}

.load-price {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-green);
}

.load-fill-meter {
  height: 8px;
  background: #e2e8f0;
  border-radius: 4px;
  margin-bottom: 14px;
  overflow: hidden;
}

.load-fill-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-green), var(--accent-emerald));
  border-radius: 4px;
}

.load-specs-list {
  list-style: none;
  font-size: 0.85rem;
  color: var(--light-muted);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.load-specs-list li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.load-specs-list li svg {
  width: 14px;
  height: 14px;
  color: var(--accent-emerald);
}

/* Sticky Quote Drawer Sidebar */
.sticky-basket-card {
  position: sticky;
  top: 100px;
  background: #ffffff;
  border: 1px solid var(--light-border);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-xl);
}

.basket-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--light-border);
  margin-bottom: 20px;
}

.basket-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark-obsidian);
}

.basket-count-badge {
  background: var(--accent-emerald-light);
  color: #065f46;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.basket-items-list {
  max-height: 260px;
  overflow-y: auto;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-right: 4px;
}

.basket-empty-state {
  text-align: center;
  padding: 32px 16px;
  color: var(--light-muted);
  font-size: 0.9rem;
}

.basket-row-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  padding-bottom: 8px;
  border-bottom: 1px dashed #f1f5f9;
}

.basket-item-info {
  display: flex;
  flex-direction: column;
}

.basket-item-name {
  font-weight: 700;
  color: var(--dark-obsidian);
}

.basket-item-meta {
  font-size: 0.75rem;
  color: var(--light-muted);
}

.basket-item-price {
  font-weight: 700;
  color: var(--primary-green);
}

.basket-remove-btn {
  background: none;
  border: none;
  color: #ef4444;
  cursor: pointer;
  padding: 4px;
  margin-left: 8px;
}

.surcharge-toggles {
  background: #f8fafc;
  border-radius: var(--radius-md);
  padding: 14px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toggle-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--dark-obsidian);
  cursor: pointer;
}

.toggle-label input {
  accent-color: var(--primary-green);
  width: 16px;
  height: 16px;
}

.basket-totals-box {
  background: #f1f5f9;
  border-radius: var(--radius-lg);
  padding: 16px;
  margin-bottom: 20px;
}

.total-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  margin-bottom: 6px;
  color: #475569;
}

.total-line.final-total {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark-obsidian);
  border-top: 1px solid #cbd5e1;
  padding-top: 10px;
  margin-top: 10px;
  margin-bottom: 0;
}

.deposit-highlight-banner {
  background: var(--primary-deep);
  color: #ffffff;
  border-radius: var(--radius-md);
  padding: 12px 14px;
  font-size: 0.8125rem;
  text-align: center;
  margin-bottom: 20px;
}

.deposit-highlight-banner strong {
  color: var(--accent-emerald);
}

@media (max-width: 1140px) {
  .engine-grid {
    grid-template-columns: 1fr;
  }
  
  .sticky-basket-card {
    position: static;
  }
}

/* ==========================================================================
   PAGE 3: COMMERCIAL WASTE & TRADE RECYCLING (`commercial-waste.html`)
   ========================================================================== */
.commercial-hero {
  background: 
    linear-gradient(135deg, rgba(11, 17, 32, 0.91) 0%, rgba(13, 40, 24, 0.93) 100%),
    url('../assets/images/card-commercial.jpg') center/cover no-repeat;
  color: #ffffff;
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}

.commercial-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--accent-emerald-light);
  margin-bottom: 20px;
}

.commercial-hero-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.commercial-streams-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 64px;
}

.stream-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 32px;
  border: 1px solid var(--light-border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stream-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent-emerald);
}

.stream-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: #ecfdf5;
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.stream-icon-box svg {
  width: 26px;
  height: 26px;
}

.stream-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark-obsidian);
  margin-bottom: 10px;
}

.stream-desc {
  font-size: 0.925rem;
  color: var(--light-muted);
  line-height: 1.55;
  margin-bottom: 20px;
}

.stream-rate-pill {
  display: inline-block;
  background: #f1f5f9;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.775rem;
  font-weight: 700;
  color: var(--primary-deep);
}

/* B2B Quote Form Box */
.commercial-form-box {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--light-border);
}

.form-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--dark-obsidian);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  font-size: 0.95rem;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-md);
  outline: none;
  background: #f8fafc;
  transition: all var(--transition-fast);
}

.form-control:focus {
  border-color: var(--primary-green);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(15, 81, 50, 0.1);
}

.checkbox-group-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
  background: #f8fafc;
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--light-border);
}

@media (max-width: 1024px) {
  .commercial-streams-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .checkbox-group-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .commercial-streams-grid {
    grid-template-columns: 1fr;
  }

  .form-grid-2col {
    grid-template-columns: 1fr;
  }

  .checkbox-group-grid {
    grid-template-columns: 1fr;
  }

  .commercial-hero-title {
    font-size: 2.2rem;
  }
}

/* ==========================================================================
   PAGE 4: MOVING & HOUSE / OFFICE CLEARANCE (`moving-clearance.html`)
   ========================================================================== */
.clearance-hero {
  background: 
    linear-gradient(135deg, rgba(11, 17, 32, 0.92) 0%, rgba(15, 81, 50, 0.88) 100%),
    url('../assets/images/card-clearance.jpg') center/cover no-repeat;
  color: #ffffff;
  padding: 64px 0 56px;
  position: relative;
}

.clearance-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 64px;
}

.clearance-service-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 36px;
  border: 1px solid var(--light-border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.clearance-service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent-emerald);
}

.service-card-tag {
  display: inline-block;
  background: var(--accent-emerald-light);
  color: #065f46;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
  width: fit-content;
}

.steps-flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.step-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  border: 1px solid var(--light-border);
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex;
  flex-direction: column;
}

.step-num-pill {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-green);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(15, 81, 50, 0.2);
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark-obsidian);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.875rem;
  color: var(--light-muted);
  line-height: 1.5;
}

/* Estimator Widget Box */
.estimator-box {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--light-border);
}

.estimator-options-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.estimator-option-card {
  background: #f8fafc;
  border: 2px solid var(--light-border);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.estimator-option-card:hover,
.estimator-option-card.active {
  border-color: var(--accent-emerald);
  background: #f0fdf4;
  box-shadow: var(--shadow-md);
}

.estimator-icon {
  font-size: 2rem;
  margin-bottom: 8px;
  display: block;
}

.estimator-option-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--dark-obsidian);
}

.estimator-result-display {
  background: linear-gradient(135deg, var(--dark-obsidian) 0%, #0f172a 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

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

  .steps-flow-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .estimator-options-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .steps-flow-grid {
    grid-template-columns: 1fr;
  }

  .estimator-options-grid {
    grid-template-columns: 1fr;
  }

  .estimator-result-display {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==========================================================================
   PAGE 5: INTERACTIVE BOOKING FLOW & CHECKOUT (`checkout.html`)
   ========================================================================== */
.checkout-progress-bar {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 36px;
  padding: 0 10px;
}

.checkout-progress-bar::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 30px;
  right: 30px;
  height: 3px;
  background: #e2e8f0;
  z-index: 1;
}

.progress-step-item {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.step-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid #cbd5e1;
  color: var(--light-muted);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.progress-step-item.active .step-circle {
  border-color: var(--primary-green);
  background: var(--primary-green);
  color: #ffffff;
  box-shadow: 0 0 0 4px rgba(15, 81, 50, 0.15);
}

.progress-step-item.completed .step-circle {
  border-color: var(--accent-emerald);
  background: var(--accent-emerald);
  color: #ffffff;
}

.step-label-text {
  font-size: 0.775rem;
  font-weight: 700;
  color: var(--light-muted);
  text-align: center;
}

.progress-step-item.active .step-label-text {
  color: var(--primary-green);
}

/* Stair Warning Banner */
.stair-warning-banner {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  color: #92400e;
  font-size: 0.875rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 14px;
}

/* Time Slot Selection Grid */
.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.slot-card {
  background: #f8fafc;
  border: 2px solid var(--light-border);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
}

.slot-card:hover,
.slot-card.active {
  border-color: var(--accent-emerald);
  background: #f0fdf4;
}

.slot-card.active {
  box-shadow: 0 0 0 2px var(--accent-emerald);
}

.slot-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark-obsidian);
}

.slot-time {
  font-size: 0.8rem;
  color: var(--light-muted);
}

.slot-surcharge-tag {
  font-size: 0.725rem;
  font-weight: 700;
  color: #d97706;
  margin-top: 4px;
}

/* Checkout Form Boxes */
.checkout-box {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--light-border);
  margin-bottom: 24px;
}

.checkout-box-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--dark-obsidian);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkout-box-title i {
  color: var(--primary-green);
}

@media (max-width: 768px) {
  .checkout-progress-bar {
    overflow-x: auto;
  }
  .time-slots-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   PAGE 6: ABOUT US & ENVIRONMENTAL COMPLIANCE (`about-us.html`)
   ========================================================================== */
.about-hero {
  background: 
    linear-gradient(135deg, rgba(11, 17, 32, 0.92) 0%, rgba(15, 81, 50, 0.89) 100%),
    url('../assets/images/hero-van.jpg') center/cover no-repeat;
  color: #ffffff;
  padding: 64px 0 56px;
  position: relative;
}

.ea-compliance-banner {
  background: #ecfdf5;
  border: 2px solid #a7f3d0;
  border-radius: var(--radius-xl);
  padding: 40px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: center;
  margin-bottom: 64px;
}

.official-company-card {
  background: linear-gradient(135deg, var(--dark-obsidian) 0%, #0f172a 100%);
  color: #ffffff;
  border-radius: var(--radius-xl);
  padding: 44px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-xl);
}

.company-info-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.company-info-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.company-info-table td {
  padding: 14px 0;
  font-size: 0.95rem;
}

.company-info-table td:first-child {
  color: #94a3b8;
  font-weight: 600;
  width: 35%;
}

.company-info-table td:last-child {
  color: #ffffff;
  font-weight: 700;
}

@media (max-width: 1024px) {
  .ea-compliance-banner {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   PAGE 7: TERMS & PRIVACY POLICY (`terms-privacy.html`)
   ========================================================================== */
.terms-hero {
  background: 
    linear-gradient(135deg, rgba(11, 17, 32, 0.93) 0%, rgba(15, 23, 42, 0.95) 100%),
    url('../assets/images/card-commercial.jpg') center/cover no-repeat;
  color: #ffffff;
  padding: 56px 0 42px;
}

.legal-layout-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  padding: 48px 0 80px;
  align-items: start;
}

.legal-nav-card {
  position: sticky;
  top: 100px;
  background: #ffffff;
  border: 1px solid var(--light-border);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.legal-nav-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark-obsidian);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--light-border);
}

.legal-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-nav-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--light-muted);
  padding: 8px 12px;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  display: block;
}

.legal-nav-link:hover,
.legal-nav-link.active {
  background: #ecfdf5;
  color: var(--primary-green);
}

.legal-content-card {
  background: #ffffff;
  border: 1px solid var(--light-border);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-sm);
}

.legal-article-section {
  margin-bottom: 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--light-border);
}

.legal-article-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.legal-h2 {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--dark-obsidian);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.legal-h2 i {
  color: var(--primary-green);
}

.legal-h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark-obsidian);
  margin: 24px 0 10px;
}

.legal-text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #334155;
  margin-bottom: 14px;
}

.legal-highlight-box {
  background: #f8fafc;
  border-left: 4px solid var(--primary-green);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 16px 20px;
  margin: 20px 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--dark-obsidian);
}

@media (max-width: 1024px) {
  .legal-layout-grid {
    grid-template-columns: 1fr;
  }
  
  .legal-nav-card {
    position: static;
  }
}


/* ==========================================================================
   Hero Widget & Interactive Panel Display Fixes
   ========================================================================== */
.selector-panel-view {
  display: none !important;
}

.selector-panel-view.active {
  display: block !important;
}

.engine-section-view {
  display: none !important;
}

.engine-section-view.active {
  display: block !important;
}

.van-load-chips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.van-chip-card {
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.van-chip-card:hover,
.van-chip-card.active {
  border-color: #10b981 !important;
  background: #ffffff !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.07);
}

.van-chip-title {
  font-weight: 700;
  font-size: 0.9rem;
  color: #0b1120;
}

.van-chip-price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: #0f5132;
  margin: 2px 0;
}

.van-chip-sub {
  font-size: 0.75rem;
  color: #64748b;
}

.widget-label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #0b1120;
  margin-bottom: 8px;
  display: block;
}

.widget-input-wrap {
  margin-bottom: 16px;
}

.widget-select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-size: 0.9rem;
  outline: none;
  background-color: #ffffff;
  color: #0b1120;
  font-family: 'Inter', sans-serif;
}

.widget-select:focus {
  border-color: #0f5132;
}

.popular-items-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.pop-label {
  font-size: 0.775rem;
  color: #64748b;
  font-weight: 600;
}

.pop-chip {
  font-size: 0.775rem;
  background: #f1f5f9;
  padding: 4px 10px;
  border-radius: 9999px;
  color: #0b1120;
  text-decoration: none;
  transition: all 0.2s ease;
}

.pop-chip:hover {
  background: #0f5132;
  color: #ffffff;
}

.widget-submit-btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 16px;
}

.selector-footer-note {
  font-size: 0.775rem;
  color: #64748b;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid #e2e8f0;
  padding-top: 14px;
  margin-top: 16px;
}

.open-photo-modal-btn {
  background: none;
  border: none;
  color: #0f5132;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  font-size: 0.775rem;
  padding: 0;
}

.tab-option-btn.active {
  border-color: #10b981 !important;
  background: #ffffff !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.07);
}

.tab-option-btn.active .tab-radio {
  border-color: #10b981;
}

.tab-option-btn.active .tab-radio::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  display: block;
}


/* ==========================================================================
   Header, Navigation & Category Card Design System Enhancements
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid #e2e8f0;
  height: 80px;
  display: flex;
  align-items: center;
}

.nav-wrap {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  gap: 20px !important;
}

.brand-logo {
  display: flex !important;
  align-items: center !important;
  flex-shrink: 0 !important;
}

.site-logo-img {
  height: 48px !important;
  width: auto !important;
  max-width: 210px !important;
  object-fit: contain !important;
}

.main-nav {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 1 !important;
}

.nav-list,
.main-nav ul {
  display: flex !important;
  align-items: center !important;
  gap: 24px !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
}

.nav-list li,
.main-nav ul li {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  display: inline-flex !important;
  align-items: center !important;
}

.nav-link,
.nav-list li a,
.main-nav ul li a {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 0.925rem !important;
  font-weight: 600 !important;
  color: #334155 !important;
  text-decoration: none !important;
  padding: 8px 0 !important;
  position: relative !important;
  transition: color 0.2s ease !important;
  white-space: nowrap !important;
}

.nav-link:hover,
.nav-link.active,
.nav-list li a:hover,
.main-nav ul li a:hover,
.main-nav ul li.current-menu-item > a {
  color: #0f5132 !important;
}

.nav-link.active::after {
  content: '' !important;
  position: absolute !important;
  bottom: -4px !important;
  left: 0 !important;
  width: 100% !important;
  height: 2.5px !important;
  background: #10b981 !important;
  border-radius: 2px !important;
}

.header-actions {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  flex-shrink: 0 !important;
}

.phone-pill {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 10px 18px !important;
  background: #f1f5f9 !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 9999px !important;
  font-size: 0.875rem !important;
  font-weight: 700 !important;
  color: #0b1120 !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
  white-space: nowrap !important;
}

.phone-pill:hover {
  background: #d1fae5 !important;
  border-color: #10b981 !important;
  color: #0a3d24 !important;
}

.btn-primary,
#header-cta-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 10px 22px !important;
  background: linear-gradient(135deg, #0f5132 0%, #15803d 100%) !important;
  color: #ffffff !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 0.9375rem !important;
  font-weight: 700 !important;
  border-radius: 9999px !important;
  border: none !important;
  cursor: pointer !important;
  box-shadow: 0 4px 14px rgba(15, 81, 50, 0.28) !important;
  transition: all 0.2s ease !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

.btn-primary:hover,
#header-cta-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(15, 81, 50, 0.38) !important;
  background: linear-gradient(135deg, #0d462b 0%, #166534 100%) !important;
}

/* Section Header Standard */
.section-header {
  text-align: center !important;
  max-width: 760px !important;
  margin: 0 auto 48px !important;
}

.section-tag,
.section-badge {
  display: inline-block !important;
  background: #ecfdf5 !important;
  color: #065f46 !important;
  font-size: 0.8125rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  padding: 6px 14px !important;
  border-radius: 9999px !important;
  margin-bottom: 14px !important;
  border: 1px solid #a7f3d0 !important;
}

.section-title {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 2.5rem !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  color: #0b1120 !important;
  letter-spacing: -0.02em !important;
  margin-bottom: 16px !important;
}

.section-desc {
  font-size: 1.05rem !important;
  color: #64748b !important;
  line-height: 1.6 !important;
}

/* Category Grid & Cards Fixes */
.category-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 28px !important;
}

.category-card {
  background: #ffffff !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.07) !important;
  border: 1px solid #e2e8f0 !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
  display: flex !important;
  flex-direction: column !important;
  text-decoration: none !important;
  height: auto !important;
}

.category-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 0 0 2px #10b981 !important;
}

.category-img-wrap,
.category-image-wrap {
  position: relative !important;
  width: 100% !important;
  height: 240px !important;
  overflow: hidden !important;
  background: #0b1120 !important;
}

.category-img-wrap img,
.category-image-wrap img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.4s ease !important;
  display: block !important;
}

.category-card:hover img {
  transform: scale(1.08) !important;
}

.category-tag {
  position: absolute !important;
  top: 16px !important;
  right: 16px !important;
  background: rgba(11, 17, 32, 0.85) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  color: #ffffff !important;
  font-size: 0.775rem !important;
  font-weight: 700 !important;
  padding: 6px 14px !important;
  border-radius: 9999px !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  z-index: 2 !important;
}

.category-content {
  padding: 24px !important;
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
  background: #ffffff !important;
}

.category-title {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 1.25rem !important;
  font-weight: 800 !important;
  color: #0b1120 !important;
  margin-bottom: 8px !important;
  line-height: 1.3 !important;
}

.category-desc {
  font-size: 0.9rem !important;
  color: #64748b !important;
  line-height: 1.55 !important;
}

@media (max-width: 1024px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .category-grid {
    grid-template-columns: 1fr !important;
  }
  .main-nav {
    display: none !important;
  }
  .mobile-toggle {
    display: block !important;
  }
}
