
/* === RESET === */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* === BRAND COLOURS === */
:root {
  --yellow: #F5B800;
  --yellow-dark: #D9A200;
  --yellow-light: #FFFBEA;
  --yellow-border: #F5CB50;
  --red: #CC2200;
  --red-hover: #AA1800;
  --navy: #1a2e4a;
  --navy-dark: #111e30;
  --green: #059669;
  --text: #1a1a1a;
  --text-light: #555;
  --bg-light: #f5f6f8;
  --border: #dde2ec;
  --white: #ffffff;
  --shadow: 0 2px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 6px 24px rgba(0,0,0,0.12);
}

/* === BASE === */
body { font-family: Arial, Helvetica, sans-serif; font-size: 15px; color: var(--text); line-height: 1.6; background: var(--white); }
h1 { font-size: 36px; line-height: 1.2; font-weight: bold; }
h2 { font-size: 28px; line-height: 1.3; font-weight: bold; }
h3 { font-size: 20px; font-weight: bold; }
h4 { font-size: 16px; font-weight: bold; }
p { margin-bottom: 12px; }
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--red); }
ul { list-style: none; }

/* === LAYOUT === */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section { padding: 64px 0; }
.section-light { background: var(--bg-light); }
.section-yellow { background: var(--yellow-light); }
.section-navy { background: var(--navy); }
.section-navy .section-title h2 { color: white; }
.section-navy .section-title p { color: rgba(255,255,255,0.75); }
.stats-bar { background: var(--navy); padding: 28px 0; border-top: 4px solid var(--yellow); border-bottom: 4px solid var(--yellow); }
.stats-bar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-item { text-align: center; padding: 0 20px; border-right: 1px solid rgba(255,255,255,0.15); }
.stat-item:last-child { border-right: none; }
.stat-number { font-size: 38px; font-weight: 900; color: var(--yellow); line-height: 1; font-family: 'Arial Black', Arial, sans-serif; }
.stat-number span { font-size: 24px; }
.stat-number i { font-size: 32px; }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.85); margin-top: 6px; font-weight: bold; text-transform: uppercase; letter-spacing: 0.5px; }
.section-title { text-align: center; margin-bottom: 48px; }
.section-title h2 { margin-bottom: 12px; display: inline-block; position: relative; }
.section-title h2::after { content: ''; display: block; height: 4px; background: var(--yellow); border-radius: 2px; margin-top: 8px; }
.section-title p { color: var(--text-light); font-size: 16px; max-width: 600px; margin: 8px auto 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* === BUTTONS === */
.btn { display: inline-block; padding: 12px 28px; border-radius: 4px; font-size: 15px; font-weight: bold; cursor: pointer; border: none; transition: all 0.2s; text-decoration: none; }
.btn-primary { background: var(--red); color: white; }
.btn-primary:hover { background: var(--red-hover); color: white; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(204,34,0,0.3); }
.btn-yellow { background: var(--yellow); color: var(--text); }
.btn-yellow:hover { background: var(--yellow-dark); color: var(--text); transform: translateY(-1px); }
.btn-outline { background: transparent; border: 2px solid white; color: white; }
.btn-outline:hover { background: white; color: var(--navy); }
.btn-outline-yellow { background: transparent; border: 2px solid var(--yellow); color: var(--yellow); }
.btn-outline-yellow:hover { background: var(--yellow); color: var(--text); }
.btn-navy { background: var(--navy); color: white; }
.btn-navy:hover { background: var(--navy-dark); color: white; }
.btn-lg { padding: 16px 36px; font-size: 17px; }

/* === TOP BAR === */
.top-bar { background: var(--yellow); color: var(--text); font-size: 13px; padding: 9px 0; }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; }
.top-bar a { color: var(--text); font-weight: bold; }
.top-bar a:hover { color: var(--red); }
.top-bar-right { display: flex; gap: 16px; align-items: center; }
.top-bar strong { color: var(--red); }
.top-bar-social { display: flex; gap: 10px; align-items: center; }
.top-bar-social a { color: var(--text); font-size: 15px; opacity: 0.8; transition: opacity 0.2s; }
.top-bar-social a:hover { opacity: 1; color: var(--red); }

/* === NAV === */
.main-nav { background: white; box-shadow: 0 2px 10px rgba(0,0,0,0.08); position: sticky; top: 0; z-index: 200; border-bottom: 3px solid var(--yellow); }
.main-nav .container { display: flex; align-items: center; justify-content: space-between; padding: 12px 24px; }
.logo { display: grid; grid-template-columns: auto 1fr; align-items: center; column-gap: 12px; text-decoration: none; }
.logo img { grid-column: 1; grid-row: 1 / 4; height: 62px; width: auto; display: block; object-fit: contain; }
.logo-main { font-size: 22px; font-weight: bold; color: var(--red); letter-spacing: 1px; line-height: 1.1; }
.logo-sub { font-family: 'Arial Black', Arial, sans-serif; font-size: 14px; color: var(--text); text-transform: uppercase; letter-spacing: 0.5px; display: block; font-weight: 900; white-space: nowrap; line-height: 1.3; }
.logo-sub-metals { font-family: 'Arial Black', Arial, sans-serif; font-size: 12px; color: var(--red); text-transform: uppercase; letter-spacing: 0.5px; font-weight: 900; display: block; line-height: 1.3; }
.logo-sub-skip { font-family: 'Arial Black', Arial, sans-serif; font-size: 12px; color: var(--red); text-transform: uppercase; letter-spacing: 0.5px; font-weight: 900; display: block; line-height: 1.3; }
.nav-links { display: flex; gap: 2px; align-items: center; }
.nav-links a { padding: 8px 10px; font-size: 13px; font-weight: bold; color: var(--text); border-radius: 4px; transition: all 0.15s; white-space: nowrap; }
.nav-links a:hover { color: var(--red); background: var(--yellow-light); }
.nav-links a.active { color: var(--red); background: var(--yellow-light); }
.nav-links .dropdown { position: relative; }
.nav-links .dropdown-menu { display: none; position: absolute; top: 100%; left: 0; background: white; border: 2px solid var(--yellow); border-top: none; border-radius: 0 0 6px 6px; box-shadow: var(--shadow-lg); min-width: 210px; z-index: 300; }
.nav-links .dropdown:hover .dropdown-menu { display: block; }
.nav-links .dropdown-menu a { display: block; padding: 10px 16px; border-radius: 0; font-weight: normal; border-bottom: 1px solid #f0f0f0; }
.nav-links .dropdown-menu a:last-child { border: none; }
.nav-links .dropdown-menu a:hover { background: var(--yellow-light); color: var(--red); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--text); }
.mobile-menu { background: white; border-top: 2px solid var(--yellow); padding: 8px 24px 16px; }
.mobile-menu a { display: block; padding: 11px 0; border-bottom: 1px solid #f0f0f0; font-weight: bold; color: var(--text); }
.mobile-menu a:hover { color: var(--red); }

/* === HERO === */
.hero { background: linear-gradient(135deg, #1a2e4a 0%, #243d5c 60%, #1a2e4a 100%); color: white; padding: 80px 0; position: relative; overflow: hidden; }
.hero-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; opacity: 0.55; }
.hero-overlay { position: absolute; inset: 0; background: rgba(20,36,60,0.55); z-index: 1; }
.hero .container { position: relative; z-index: 2; }
.hero::before { content: ''; position: absolute; right: -80px; top: -80px; width: 450px; height: 450px; border-radius: 50%; background: rgba(245,184,0,0.06); }
.hero::after { content: ''; position: absolute; left: -60px; bottom: -100px; width: 300px; height: 300px; border-radius: 50%; background: rgba(245,184,0,0.04); }
.hero-content { max-width: 640px; position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--yellow); color: var(--text); font-size: 12px; font-weight: bold; padding: 5px 14px; border-radius: 20px; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 0.5px; }
.hero h1 { color: white; margin-bottom: 20px; font-size: 40px; }
.hero h1 span { color: var(--yellow); }
.hero p { font-size: 17px; color: rgba(255,255,255,0.85); margin-bottom: 32px; max-width: 540px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 28px; margin-top: 44px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.15); flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.8); }
.trust-dot { width: 8px; height: 8px; background: var(--yellow); border-radius: 50%; flex-shrink: 0; }
.trust-icon { width: 34px; height: 34px; background: rgba(245,184,0,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--yellow); flex-shrink: 0; }

/* === PAGE BANNER === */
.page-banner { background: linear-gradient(135deg, #1a2e4a 0%, #243d5c 100%); color: white; padding: 48px 0; border-bottom: 4px solid var(--yellow); position: relative; overflow: hidden; }
.page-banner .banner-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; opacity: 0.90; transform: scale(1.35); }
.page-banner .banner-overlay { position: absolute; inset: 0; background: rgba(20,36,60,0.30); z-index: 1; }
.page-banner .container { position: relative; z-index: 2; }
.page-banner h1 { color: white; margin-bottom: 8px; }
.page-banner p { color: rgba(255,255,255,0.85); font-size: 17px; margin: 0; }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 12px; }
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--yellow); }

/* === SERVICE CARDS === */
.service-card { background: white; border: 2px solid var(--border); border-radius: 8px; overflow: hidden; padding: 0; text-align: center; transition: all 0.2s; text-decoration: none; display: block; color: var(--text); }
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); color: var(--text); border-color: var(--yellow); }
.service-photo { width: 100%; height: 160px; overflow: hidden; }
.service-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.service-card:hover .service-photo img { transform: scale(1.05); }
.service-card h3 { color: var(--red); margin: 16px 16px 8px; }
.service-card p { font-size: 14px; color: var(--text-light); margin: 0 16px 20px; }

/* === FEATURE CARDS === */
.feature-card { background: white; border-radius: 8px; padding: 24px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); border-left: 4px solid var(--yellow); }
.feature-card h4 { color: var(--navy); margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--text-light); margin: 0; }
.feature-icon { width: 52px; height: 52px; background: var(--yellow-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; color: var(--yellow-dark); font-size: 20px; border: 2px solid var(--yellow-border); }
.feature-card.fc-red { border-left-color: var(--red); }
.feature-card.fc-red .feature-icon { background: #fdf0ee; border-color: #f0b0a8; color: var(--red); }
.feature-card.fc-red h4 { color: var(--red); }
.feature-card.fc-navy { border-left-color: var(--navy); }
.feature-card.fc-navy .feature-icon { background: var(--navy); border-color: var(--navy-dark); color: white; }
.feature-card.fc-navy h4 { color: var(--navy); }

/* === SKIP SIZES TABLE === */
.waste-type-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.wt-tab { padding: 8px 18px; border: 2px solid var(--border); border-radius: 20px; background: white; font-size: 13px; font-weight: 600; cursor: pointer; color: var(--text); transition: all 0.15s; }
.wt-tab:hover { border-color: var(--navy); color: var(--navy); }
.wt-tab.active { background: var(--navy); border-color: var(--navy); color: white; }

.skip-table { width: 100%; border-collapse: collapse; margin-bottom: 4px; font-size: 14px; }
.skip-table th { background: var(--navy); color: white; padding: 12px 14px; text-align: left; font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; }
.skip-table th:first-child { background: var(--red); }
.skip-table td { padding: 12px 14px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.skip-table tr:nth-child(even) td { background: var(--bg-light); }
.skip-table tr:hover td { background: var(--yellow-light); }
.size-badge { display: inline-block; background: var(--yellow); color: var(--text); padding: 3px 10px; border-radius: 12px; font-size: 12px; font-weight: bold; }
.price-cell { font-weight: bold; color: var(--red); }
.price-vat-note { font-size: 11px; color: var(--text-light); font-weight: normal; display: block; }

/* === CALCULATOR === */
.calculator { background: white; border-radius: 8px; padding: 36px; box-shadow: var(--shadow-lg); border-top: 5px solid var(--yellow); }
.calculator h2 { color: var(--navy); margin-bottom: 6px; }
.calc-subtitle { color: var(--text-light); margin-bottom: 28px; font-size: 14px; }
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: end; }
.calc-field.full-row, .calc-grid .btn { grid-column: 1 / -1; }
.calc-field label { display: block; font-weight: bold; font-size: 13px; margin-bottom: 6px; color: var(--navy); }
.calc-field input, .calc-field select { width: 100%; padding: 12px 14px; border: 2px solid var(--border); border-radius: 4px; font-size: 15px; color: var(--text); background: white; }
.calc-field input:focus, .calc-field select:focus { outline: none; border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(245,184,0,0.15); }
.quote-result { margin-top: 20px; padding: 22px 24px; background: #f0fdf4; border-radius: 6px; border-left: 5px solid var(--green); }
.quote-error { margin-top: 20px; padding: 16px 20px; background: #fff5f5; border-radius: 6px; border-left: 5px solid var(--red); color: #aa0000; font-size: 14px; }
.price-display { display: flex; gap: 32px; align-items: center; flex-wrap: wrap; margin-bottom: 10px; }
.price-main { font-size: 40px; font-weight: bold; color: var(--navy); line-height: 1; }
.price-label { font-size: 12px; color: var(--text-light); margin-top: 3px; }
.price-inc { font-size: 26px; color: var(--text-light); line-height: 1; }
.price-note { font-size: 12px; color: var(--text-light); }
.result-actions { display: flex; gap: 12px; margin-top: 16px; flex-wrap: wrap; }

/* === HOW IT WORKS === */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step { text-align: center; }
.step-num { width: 54px; height: 54px; background: var(--yellow); color: var(--text); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: bold; margin: 0 auto 16px; box-shadow: 0 4px 12px rgba(245,184,0,0.3); }
.step h4 { margin-bottom: 8px; color: var(--navy); }
.step p { font-size: 13px; color: var(--text-light); margin: 0; }

/* === WASTE LISTS === */
.waste-lists { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.waste-list { padding: 24px; border-radius: 8px; }
.waste-list.allowed { background: #f0fdf4; border: 1px solid #bbf7d0; }
.waste-list.prohibited { background: #fff5f5; border: 1px solid #fecaca; }
.waste-list h4 { margin-bottom: 14px; }
.waste-list.allowed h4 { color: var(--green); }
.waste-list.prohibited h4 { color: var(--red); }
.waste-list li { padding: 5px 0; font-size: 14px; border-bottom: 1px solid rgba(0,0,0,0.05); display: flex; align-items: center; gap: 8px; }
.waste-list.allowed li::before { content: "✅"; }
.waste-list.prohibited li::before { content: "❌"; }
.waste-list.call-first { background: #fffbeb; border: 1px solid #fde68a; }
.waste-list.call-first h4 { color: #92400e; }
.waste-list.call-first li::before { content: "📞"; }

/* === STREAM CARDS (trade waste material grid) === */
.stream-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.stream-card { background: white; border: 2px solid var(--border); border-top: 4px solid var(--border); border-radius: 8px; padding: 20px 12px 16px; text-align: center; position: relative; }
.stream-card i { font-size: 26px; color: var(--navy); margin-bottom: 10px; display: block; }
.stream-card span { font-size: 12px; font-weight: 700; color: var(--text); text-transform: uppercase; letter-spacing: 0.4px; line-height: 1.4; display: block; }
.stream-card.stream-pay { border-top-color: var(--green); }
.stream-card.stream-pay i { color: var(--green); }
.stream-card.stream-call { border-top-color: #F59E0B; }
.stream-card.stream-call i { color: #92400e; }
.stream-card.stream-soon { border-top-color: var(--navy); border-style: dashed; opacity: 0.8; }
.stream-card.stream-soon i { color: var(--navy); }
.stream-badge { position: absolute; top: -11px; right: 8px; font-size: 10px; font-weight: 800; padding: 3px 8px; border-radius: 10px; text-transform: uppercase; letter-spacing: 0.3px; white-space: nowrap; }
.badge-pay { background: var(--green); color: white; }
.badge-call { background: #F59E0B; color: white; }
.badge-soon { background: var(--navy); color: white; }
.badge-low { background: #0891B2; color: white; }
.stream-card.stream-low { border-top-color: #0891B2; }
.stream-card.stream-low i { color: #0891B2; }
@media (max-width: 900px) { .stream-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .stream-grid { grid-template-columns: repeat(2, 1fr); } }

/* === RESTRICT CARDS === */
.restrict-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.restrict-card { background: white; border-radius: 8px; padding: 20px; border: 1px solid var(--border); position: relative; display: flex; flex-direction: column; }
.restrict-badge { position: absolute; top: -10px; right: 12px; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; color: white; }
.badge-warn { background: #F59E0B; }
.badge-no { background: var(--red); }
.restrict-icon { font-size: 28px; color: var(--navy); margin-bottom: 12px; }
.restrict-card h4 { color: var(--navy); margin-bottom: 6px; }
.restrict-card p { font-size: 13px; color: var(--text-light); margin: 0; flex: 1; }
.restrict-card.restrict-warn { border-top: 3px solid #F59E0B; }
.restrict-card.restrict-no { border-top: 3px solid var(--red); }
@media (max-width: 640px) { .restrict-grid { grid-template-columns: 1fr 1fr; } }

/* === REVIEWS === */
.review-card { background: white; border-radius: 8px; padding: 24px; box-shadow: 0 4px 16px rgba(0,0,0,0.15); border-top: 3px solid var(--yellow); }
.stars { color: var(--yellow); font-size: 18px; margin-bottom: 10px; }
.review-text { font-size: 14px; color: var(--text-light); font-style: italic; margin-bottom: 12px; line-height: 1.7; }
.reviewer { font-size: 13px; font-weight: bold; color: var(--navy); }
.section-navy .section-title h2 { color: white; }
.section-navy .section-title p { color: rgba(255,255,255,0.75); }
.section-navy .google-rating-bar { color: white; }
.section-navy .google-rating-bar strong { color: white; }
.how-card { text-align: center; padding: 32px 24px; background: white; border-radius: 8px; box-shadow: var(--shadow); position: relative; }
.how-number { width: 60px; height: 60px; background: var(--red); color: white; border-radius: 50%; font-size: 26px; font-weight: 900; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-family: 'Arial Black', Arial, sans-serif; }
.how-card h3 { color: var(--navy); margin-bottom: 10px; }
.how-card p { font-size: 14px; color: var(--text-light); margin: 0; }
.review-source { font-weight: normal; color: var(--text-light); }
.google-rating-bar { margin-top: 16px; font-size: 15px; color: var(--text); display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; }

/* === CREDENTIALS BAR === */
.cred-bar { background: var(--yellow); padding: 24px 0; }
.cred-bar .container { display: flex; justify-content: center; align-items: center; gap: 48px; flex-wrap: wrap; }
.cred-item { color: var(--text); font-size: 13px; font-weight: bold; text-align: center; }
.cred-item .cred-icon { font-size: 26px; display: block; margin-bottom: 4px; }
.cred-item.cred-logo img { height: 52px; width: auto; max-width: 140px; object-fit: contain; display: block; }

/* === AREA TAGS === */
.area-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.area-tag { background: white; border: 2px solid var(--yellow); color: var(--text); padding: 5px 16px; border-radius: 20px; font-size: 13px; font-weight: bold; }

/* === METALS === */
.metal-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.metal-card { border-radius: 14px; padding: 32px 20px 24px; text-align: center; transition: transform 0.2s, box-shadow 0.2s; position: relative; overflow: hidden; cursor: default; }
.metal-card::before { content: ''; position: absolute; top: -30px; right: -30px; width: 110px; height: 110px; border-radius: 50%; background: rgba(255,255,255,0.12); }
.metal-card:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(0,0,0,0.22); }
.metal-icon { width: 64px; height: 64px; background: rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; color: white; font-size: 24px; box-shadow: 0 4px 14px rgba(0,0,0,0.15); position: relative; z-index: 1; }
.metal-card h4 { color: white; font-size: 14px; margin: 0; text-shadow: 0 1px 3px rgba(0,0,0,0.25); position: relative; z-index: 1; }
/* Photo card overlay */
.metal-card.has-photo { background-size: cover; background-position: center; background-repeat: no-repeat; }
.metal-card.has-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.65) 100%); border-radius: 14px; z-index: 1; }
.metal-card.has-photo .metal-icon { z-index: 2; background: rgba(255,255,255,0.25); }
.metal-card.has-photo h4 { z-index: 2; font-size: 15px; font-weight: bold; }
/* Per-metal colour gradients */
.metal-copper    { background: linear-gradient(135deg, #9c5a1d 0%, #c97c3a 100%); }
.metal-brass     { background: linear-gradient(135deg, #7a6a10 0%, #b09a20 100%); }
.metal-aluminium { background: linear-gradient(135deg, #455a78 0%, #607d9e 100%); }
.metal-lead      { background: linear-gradient(135deg, #3e3e52 0%, #5e5e74 100%); }
.metal-steel     { background: linear-gradient(135deg, #2e3a4a 0%, #4a5a6e 100%); }
.metal-stainless { background: linear-gradient(135deg, #445866 0%, #6a8898 100%); }
.metal-cables    { background: linear-gradient(135deg, #6b2e0e 0%, #a04010 100%); }
.metal-batteries { background: linear-gradient(135deg, #0e4422 0%, #175e32 100%); }
.metal-swarf     { background: linear-gradient(135deg, #4a3a2a 0%, #6e5a46 100%); }
.metal-industrial{ background: linear-gradient(135deg, #1a2232 0%, #2e3e52 100%); }
.metal-plant     { background: linear-gradient(135deg, #0e3822 0%, #1a5236 100%); }
.metal-factory   { background: linear-gradient(135deg, #221840 0%, #3a2e60 100%); }
.metal-cats      { background: linear-gradient(135deg, #3a1a0a 0%, #6a3010 100%); }
.metal-motors    { background: linear-gradient(135deg, #1a3a2a 0%, #2a5a3e 100%); }
.metal-cast      { background: linear-gradient(135deg, #2a2a2a 0%, #4a4a4a 100%); }
.metal-zinc      { background: linear-gradient(135deg, #2a3a4a 0%, #4a6070 100%); }
.metal-silver    { background: linear-gradient(135deg, #5a5a6a 0%, #9a9aaa 100%); }
.metal-titanium  { background: linear-gradient(135deg, #2a3a5a 0%, #4a6090 100%); }
.metal-tungsten  { background: linear-gradient(135deg, #1a1a2a 0%, #3a3a5a 100%); }
.metal-kovar     { background: linear-gradient(135deg, #2a1a3a 0%, #5a3a6a 100%); }
.metal-pewter    { background: linear-gradient(135deg, #4a4a5a 0%, #7a7a8a 100%); }
.metal-motherboard { background: linear-gradient(135deg, #0a2a1a 0%, #1a5a3a 100%); }
.metal-cpu       { background: linear-gradient(135deg, #1a0a2a 0%, #3a1a5a 100%); }
.metal-memory    { background: linear-gradient(135deg, #0a1a3a 0%, #1a3a6a 100%); }

/* === AGGREGATE CARDS === */
.agg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.agg-card { background: white; border: 1px solid var(--border); border-radius: 8px; padding: 24px; border-top: 4px solid var(--yellow); transition: all 0.2s; }
.agg-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.agg-icon { width: 60px; height: 60px; background: var(--yellow); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; color: var(--text); font-size: 22px; }
.agg-card h3 { color: var(--red); margin-bottom: 8px; }
.agg-spec { font-size: 12px; color: var(--text-light); background: var(--yellow-light); border: 1px solid var(--yellow-border); padding: 3px 10px; border-radius: 4px; display: inline-block; margin: 4px 0 10px; font-weight: bold; }
.agg-card p { font-size: 14px; color: var(--text-light); margin: 0; }

/* === CONTACT / INFO === */
.info-card { background: white; border-radius: 8px; padding: 28px; box-shadow: var(--shadow); }
.info-card h3 { color: var(--navy); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 3px solid var(--yellow); }
.hours-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.hours-row:last-child { border: none; }
.contact-row { display: flex; align-items: flex-start; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.contact-row:last-child { border: none; }
.contact-icon { width: 32px; height: 32px; background: var(--yellow-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; color: var(--yellow-dark); flex-shrink: 0; border: 1px solid var(--yellow-border); }
.cred-icon { font-size: 24px; display: flex; align-items: center; justify-content: center; margin-bottom: 6px; color: var(--navy); }
.contact-form { background: white; border-radius: 8px; padding: 32px; box-shadow: var(--shadow); border-top: 4px solid var(--yellow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 13px; font-weight: bold; color: var(--navy); }
.form-field input, .form-field select, .form-field textarea { padding: 12px 14px; border: 2px solid var(--border); border-radius: 4px; font-size: 14px; font-family: inherit; color: var(--text); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(245,184,0,0.15); }
.form-field textarea { height: 120px; resize: vertical; }

/* === YELLOW PROMO STRIP === */
.promo-strip { background: var(--yellow); padding: 16px 0; text-align: center; font-weight: bold; font-size: 15px; color: var(--text); }
.promo-strip a { color: var(--red); font-weight: bold; }

/* === CTA SECTION === */
.cta-section { background: linear-gradient(135deg, var(--red) 0%, #aa1800 100%); color: white; padding: 64px 0; text-align: center; }
.cta-section h2 { color: white; margin-bottom: 16px; }
.cta-section h2::after { background: white; }
.cta-section p { color: rgba(255,255,255,0.9); font-size: 17px; margin-bottom: 32px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* === FAQ === */
/* === CRASH BARRIER PRODUCT CARDS === */
.barrier-product-card { background: white; border-radius: 10px; overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.barrier-product-img { height: 220px; overflow: hidden; }
.barrier-product-img img { width: 100%; height: 100%; object-fit: cover; }
.barrier-product-img-placeholder { display: flex; align-items: center; justify-content: center; background: var(--bg-light); }
.barrier-product-body { padding: 24px; }
.barrier-product-body h3 { color: var(--navy); margin-bottom: 10px; font-size: 18px; }
.barrier-product-body p { font-size: 14px; color: var(--text-light); margin-bottom: 16px; }
.barrier-price { display: flex; align-items: baseline; gap: 8px; margin: 16px 0; padding: 14px 16px; background: var(--yellow-light); border-radius: 6px; border-left: 4px solid var(--yellow); }
.barrier-price-amount { font-size: 32px; font-weight: bold; color: var(--navy); }
.barrier-price-unit { font-size: 13px; color: var(--text-light); }
.barrier-delivery-note { font-size: 13px; color: var(--text-light); background: var(--bg-light); padding: 10px 12px; border-radius: 6px; }
.barrier-delivery-note i { color: var(--navy); margin-right: 6px; }
.use-card { background: white; border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border); border-top: 4px solid var(--red); }
.use-card-img { aspect-ratio: 4/3; overflow: hidden; }
.use-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.use-card-img-placeholder { display: flex; align-items: center; justify-content: center; background: var(--bg-light); font-size: 40px; color: var(--border); }
.use-card-body { padding: 16px; }
.use-card-body h4 { color: var(--navy); margin-bottom: 8px; }
.use-card-body p { font-size: 13px; color: var(--text-light); margin: 0; }

.faq { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { font-weight: bold; color: var(--navy); padding: 16px 0; cursor: pointer; display: flex; justify-content: space-between; font-size: 15px; }
.faq-q:hover { color: var(--red); }
.faq-a { font-size: 14px; color: var(--text-light); padding-bottom: 16px; line-height: 1.7; }

/* === PAYMENT === */
.payment-section { margin-top: 20px; padding: 20px 22px; background: white; border: 2px solid var(--border); border-radius: 8px; }
.payment-header { font-weight: bold; color: var(--navy); margin-bottom: 6px; font-size: 15px; display: flex; align-items: center; gap: 8px; }
.payment-sub { font-size: 13px; color: var(--text-light); margin-bottom: 16px; }
.payment-methods { font-size: 12px; color: var(--text-light); text-align: center; margin-top: 12px; }
.booking-confirmed { background: #f0fdf4; border-radius: 8px; padding: 24px; border-left: 5px solid var(--green); }
.booking-confirmed h3 { color: var(--green); margin-bottom: 10px; }
.booking-confirmed p { font-size: 14px; margin-bottom: 6px; }
.or-divider { display: flex; align-items: center; gap: 12px; margin: 14px 0; color: var(--text-light); font-size: 13px; }
.or-divider::before, .or-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.pay-phone-btn { display: block; text-align: center; padding: 13px; border: 2px solid var(--navy); border-radius: 6px; font-weight: bold; color: var(--navy); font-size: 15px; text-decoration: none; transition: all 0.2s; }
.pay-phone-btn:hover { background: var(--navy); color: white; }

/* === PLACEMENT / PERMIT === */
.placement-options { display: flex; flex-direction: column; gap: 8px; margin-top: 6px; }
.radio-option { display: flex; align-items: center; gap: 12px; padding: 12px 16px; border: 2px solid var(--border); border-radius: 6px; cursor: pointer; font-size: 14px; transition: all 0.15s; user-select: none; }
.radio-option:hover { border-color: var(--yellow); background: var(--yellow-light); }
.radio-option input[type="radio"] { width: 18px; height: 18px; flex-shrink: 0; accent-color: var(--red); cursor: pointer; }
.permit-box { margin-top: 20px; border-radius: 8px; overflow: hidden; border: 2px solid #F59E0B; }
.permit-box-header { background: #F59E0B; padding: 14px 20px; display: flex; align-items: center; gap: 10px; font-weight: bold; font-size: 15px; color: #1a1a1a; }
.permit-box-body { background: #FFFBEB; padding: 20px 24px; }
.permit-price { font-size: 15px; margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px solid #FDE68A; }
.permit-list { padding: 0; margin: 0 0 16px; }
.permit-list li { padding: 8px 0; border-bottom: 1px solid #FDE68A; font-size: 14px; color: #555; display: flex; align-items: center; gap: 8px; }
.permit-list li:last-child { border: none; }

/* === HIGHLIGHT BOX === */
.highlight-box { background: var(--yellow-light); border: 2px solid var(--yellow-border); border-radius: 8px; padding: 20px 24px; display: flex; gap: 16px; align-items: flex-start; }
.highlight-box .hi-icon { font-size: 24px; flex-shrink: 0; }
.highlight-box p { margin: 0; font-size: 14px; }

/* === FOOTER === */
footer { background: var(--navy-dark); color: rgba(255,255,255,0.8); padding: 52px 0 24px; }
footer .footer-top-stripe { height: 4px; background: var(--yellow); margin-bottom: 52px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 24px; }
.footer-logo { font-size: 22px; font-weight: bold; color: var(--yellow); margin-bottom: 8px; letter-spacing: 1px; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 16px; }
.footer-contact { font-size: 13px; line-height: 2.2; }
.footer-contact a { color: rgba(255,255,255,0.75); }
.footer-contact a:hover { color: var(--yellow); }
footer h4 { color: var(--yellow); font-size: 12px; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1.5px; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.6); }
.footer-links a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,0.4); flex-wrap: wrap; gap: 8px; }

/* === AGGREGATE CALCULATOR === */
.agg-layout { display: grid; grid-template-columns: 1fr 360px; gap: 36px; align-items: start; }
.agg-cat-label { font-size: 12px; font-weight: bold; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); margin-bottom: 12px; display: flex; align-items: center; gap: 6px; }
.agg-mat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.agg-mat-card { display: flex; gap: 12px; align-items: center; padding: 12px 14px; background: white; border: 2px solid var(--border); border-radius: 8px; cursor: pointer; transition: all 0.15s; }
.agg-mat-card:hover { border-color: var(--yellow); background: var(--yellow-light); transform: translateY(-1px); }
.agg-mat-card.selected { border-color: var(--red); background: #fff5f5; box-shadow: 0 0 0 3px rgba(204,34,0,0.1); }
.agg-mat-card.tbc { opacity: 0.7; }
.agg-mat-icon { width: 52px; height: 52px; border-radius: 8px; overflow: hidden; flex-shrink: 0; border: 2px solid var(--border); }
.agg-mat-icon img { width: 100%; height: 100%; object-fit: cover; display: block; }
.agg-mat-card.selected .agg-mat-icon { border-color: var(--red); }
.agg-mat-body { min-width: 0; }
.agg-mat-name { font-size: 12px; font-weight: bold; color: var(--navy); line-height: 1.3; }
.agg-mat-spec { font-size: 11px; color: var(--text-light); margin: 2px 0; }
.agg-mat-price { font-size: 13px; font-weight: bold; color: var(--red); }
.agg-mat-vat { font-size: 10px; font-weight: normal; color: var(--text-light); }
.agg-tbc { color: var(--text-light) !important; font-weight: normal !important; font-size: 11px !important; }

.agg-calc-wrap { position: sticky; top: 80px; }
.agg-calc-panel { background: white; border-radius: 10px; box-shadow: var(--shadow-lg); border-top: 5px solid var(--yellow); overflow: hidden; }
.agg-calc-prompt { padding: 40px 28px; text-align: center; color: var(--text-light); }
.calc-prompt-icon { font-size: 36px; color: var(--yellow-dark); margin-bottom: 10px; }
.agg-calc-form { padding: 22px; }
.calc-mat-header { margin-bottom: 16px; padding-bottom: 14px; border-bottom: 2px solid var(--yellow-light); }
.calc-mat-name { font-size: 16px; font-weight: bold; color: var(--navy); }
.calc-mat-desc { font-size: 12px; color: var(--text-light); margin-top: 4px; line-height: 1.5; }

.agg-toggle { display: grid; grid-template-columns: 1fr 1fr; border: 2px solid var(--border); border-radius: 6px; overflow: hidden; }
.agg-toggle-btn { padding: 10px 6px; font-size: 12px; font-weight: bold; border: none; background: white; cursor: pointer; color: var(--text-light); transition: all 0.15s; display: flex; align-items: center; justify-content: center; gap: 5px; }
.agg-toggle-btn:first-child { border-right: 1px solid var(--border); }
.agg-toggle-btn.active { background: var(--navy); color: white; }
.agg-toggle-btn:hover:not(.active) { background: var(--yellow-light); color: var(--text); }

.calc-label { display: block; font-size: 12px; font-weight: bold; color: var(--navy); margin-bottom: 6px; }
.calc-input { width: 100%; padding: 10px 12px; border: 2px solid var(--border); border-radius: 6px; font-size: 15px; color: var(--text); font-family: inherit; }
.calc-input:focus { outline: none; border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(245,184,0,0.15); }
.calc-note { font-size: 11px; color: var(--text-light); margin-top: 5px; }

.qty-row { display: grid; grid-template-columns: 40px 1fr 40px; gap: 6px; }
.qty-btn { background: var(--navy); color: white; border: none; border-radius: 6px; font-size: 20px; font-weight: bold; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.15s; }
.qty-btn:hover { background: var(--red); }
.qty-input { text-align: center; }

.zone-indicator { margin-top: 8px; padding: 8px 12px; border-radius: 6px; font-size: 12px; }
.zone-ok { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.zone-outside { background: #fff5f5; color: #aa0000; border: 1px solid #fecaca; }

.price-breakdown { background: var(--bg-light); border-radius: 8px; padding: 14px; margin-top: 16px; }
.pb-row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 13px; border-bottom: 1px solid var(--border); }
.pb-row:last-child { border: none; }
.pb-subtotal { font-weight: bold; color: var(--navy); border-top: 2px solid var(--border); margin-top: 4px; padding-top: 10px; }
.pb-total { font-weight: bold; font-size: 16px; color: var(--red); }

.tbc-output { margin-top: 16px; background: var(--yellow-light); border: 2px solid var(--yellow-border); border-radius: 8px; padding: 16px; font-size: 13px; color: var(--text); }
.order-actions { margin-top: 14px; display: flex; flex-direction: column; gap: 8px; }

.collect-info { margin-top: 12px; background: var(--bg-light); border-radius: 8px; padding: 12px 16px; font-size: 12px; color: var(--text-light); border-left: 4px solid var(--yellow); line-height: 1.8; }

/* Booking flow */
.booking-step-hdr { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; padding-bottom: 14px; border-bottom: 2px solid var(--yellow-light); }
.step-back-btn { background: none; border: 1px solid var(--border); border-radius: 4px; padding: 4px 10px; font-size: 12px; cursor: pointer; color: var(--text-light); }
.step-back-btn:hover { border-color: var(--navy); color: var(--navy); }
.step-label { font-size: 11px; font-weight: bold; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-light); }
.vehicle-name { font-size: 14px; font-weight: bold; color: var(--navy); margin-bottom: 12px; }
.vehicle-dims { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 12px 0; }
.dim-item { background: var(--bg-light); border-radius: 6px; padding: 8px 10px; display: flex; justify-content: space-between; align-items: center; }
.dim-label { font-size: 11px; color: var(--text-light); }
.dim-val { font-size: 14px; font-weight: bold; color: var(--red); }
.access-title { font-size: 12px; font-weight: bold; color: var(--navy); margin-bottom: 8px; }
.access-check { display: flex; align-items: flex-start; gap: 8px; font-size: 12px; color: var(--text); padding: 8px 10px; background: var(--bg-light); border-radius: 6px; margin-bottom: 6px; cursor: pointer; border: 1px solid var(--border); line-height: 1.5; }
.access-check input { margin-top: 1px; flex-shrink: 0; accent-color: var(--red); }
.wasted-journey-notice { margin-top: 14px; background: #fff8e6; border: 1px solid #f5c842; border-radius: 6px; padding: 10px 12px; font-size: 12px; color: #7a5500; }
.booking-summary { background: var(--yellow-light); border: 1px solid var(--yellow-border); border-radius: 6px; padding: 10px 12px; font-size: 13px; }
.bk-summary { color: var(--navy); font-size: 13px; }

/* === VIDEO GRID === */
.video-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.video-wrap { position: relative; padding-top: 177.78%; border-radius: 8px; overflow: hidden; background: #000; }
.video-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
.video-wrap .yt-thumb-link { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: block; }
.yt-thumb-link img { width: 100%; height: 100%; object-fit: cover; display: block; transition: opacity .2s; }
.yt-thumb-link:hover img { opacity: .85; }
.yt-play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 56px; height: 56px; background: rgba(255,0,0,.9); border-radius: 50%; pointer-events: none; }
.yt-play-btn::after { content: ''; position: absolute; top: 50%; left: 55%; transform: translate(-50%,-50%); border-style: solid; border-width: 10px 0 10px 18px; border-color: transparent transparent transparent white; }
.video-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 560px; margin: 0 auto; }
.video-single { max-width: 280px; margin: 0 auto; }

/* === SOCIAL LINKS === */
.social-links { display: flex; gap: 14px; margin: 14px 0 4px; }
.social-link { color: rgba(255,255,255,0.55); font-size: 22px; transition: color 0.2s; line-height: 1; }
.social-link:hover { color: var(--yellow); }

/* === TRUST BADGES === */
.trust-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.trust-badge { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.65); border: 1px solid rgba(255,255,255,0.18); padding: 4px 10px; border-radius: 3px; font-size: 11px; font-weight: 700; letter-spacing: 0.4px; white-space: nowrap; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  .grid-3, .agg-grid, .steps { grid-template-columns: 1fr 1fr; }
  .grid-4, .metal-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .calc-grid { grid-template-columns: 1fr 1fr; }
  .calc-grid .btn { grid-column: 1 / -1; }
  .cred-bar .container { gap: 28px; }
  .video-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .nav-links, .top-bar-right { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 48px 0; }
  .hero h1 { font-size: 26px; }
  .hero-trust { flex-direction: column; gap: 14px; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3, .agg-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .metal-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .calc-grid { grid-template-columns: 1fr; }
  .waste-lists { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .video-grid-2 { grid-template-columns: 1fr 1fr; max-width: 100%; }
  .section { padding: 40px 0; }
  .hero-btns, .cta-btns { flex-direction: column; }
  .price-display { flex-direction: column; gap: 8px; }
  /* Touch targets */
  .btn { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
  /* Stats bar 2x2 on mobile */
  .stats-bar-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); padding: 16px; }
  .stat-item:nth-child(even) { border-left: 1px solid rgba(255,255,255,0.15); }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }
  /* Page banner smaller on mobile */
  .page-banner { padding: 32px 0; }
  /* Form inputs bigger tap targets */
  input, select, textarea { font-size: 16px !important; min-height: 44px; }
  /* Top bar phone number only on mobile — bigger */
  .top-bar { padding: 11px 0; font-size: 14px; }
  /* Sticky bottom call bar on mobile */
  .mobile-cta-bar { display: flex !important; }
  /* Padding so footer content isn't hidden behind sticky bar */
  body { padding-bottom: 72px; }
}

/* === MOBILE STICKY CTA BAR === */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--navy);
  border-top: 3px solid var(--yellow);
  padding: 10px 16px;
  gap: 10px;
  align-items: center;
}
.mobile-cta-bar a {
  flex: 1;
  text-align: center;
  padding: 11px 8px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 14px;
  text-decoration: none;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.mobile-cta-bar .mcta-call { background: var(--yellow); color: var(--text); }
.mobile-cta-bar .mcta-book { background: var(--red); color: white; }

/* === SKIP SIZE GUIDE === */
.size-scroll { display: flex; gap: 16px; overflow-x: auto; padding: 4px 2px 20px; -webkit-overflow-scrolling: touch; scrollbar-width: thin; scrollbar-color: #ccc #f0f0f0; }
.size-scroll::-webkit-scrollbar { height: 5px; }
.size-scroll::-webkit-scrollbar-track { background: #f0f0f0; border-radius: 3px; }
.size-scroll::-webkit-scrollbar-thumb { background: #ccc; border-radius: 3px; }
.size-card { flex: 0 0 auto; background: #fff; border-radius: 10px; border-top: 4px solid var(--yellow); box-shadow: 0 2px 14px rgba(0,0,0,0.09); display: flex; flex-direction: column; overflow: hidden; }
.scard-img { background: #f8f9fa; padding: 12px 10px 6px; }
.scard-body { padding: 10px 14px 14px; display: flex; flex-direction: column; flex: 1; }
.scard-yd { font-size: 24px; font-weight: 800; color: var(--navy); line-height: 1; }
.scard-name { font-size: 11px; text-transform: uppercase; letter-spacing: 0.6px; color: var(--text-light); margin-top: 2px; font-weight: 600; }
.scard-bags { font-size: 13px; color: var(--text); margin-top: 8px; }
.scard-dims { font-size: 12px; color: var(--text-light); margin-top: 4px; }
.scard-desc { font-size: 12px; color: var(--text-light); margin-top: 4px; flex: 1; }
.scard-btn { display: block; margin-top: 12px; padding: 9px 12px; text-align: center; border-radius: 5px; font-weight: 700; font-size: 13px; text-decoration: none; }
.scard-btn-red { background: var(--red); color: #fff; }
.scard-btn-red:hover { background: var(--red-hover); color: #fff; }
.scard-btn-navy { background: var(--navy); color: #fff; }
.scard-btn-navy:hover { opacity: 0.9; color: #fff; }

/* === SKIP BOOKING FORM === */
.book-section { background: #fff; border-radius: 8px; padding: 20px 24px; margin-bottom: 16px; border: 1px solid var(--border); }
.book-section-hd { font-size: 13px; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 0.6px; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--yellow); }
.book-check { display: flex; gap: 12px; align-items: flex-start; font-size: 13px; color: var(--text); cursor: pointer; line-height: 1.55; }
.book-check input[type="checkbox"] { flex-shrink: 0; margin-top: 3px; width: 16px !important; height: 16px; }
.lbl-opt { font-weight: normal; color: var(--text-light); }

/* === WHATSAPP CHAT BUBBLE === */
.wa-bubble { position: fixed; bottom: 24px; right: 24px; z-index: 1000; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.wa-btn { width: 58px; height: 58px; background: #25D366; border-radius: 50%; border: none; display: flex; align-items: center; justify-content: center; color: white; font-size: 30px; box-shadow: 0 4px 20px rgba(37,211,102,0.5); cursor: pointer; transition: transform 0.2s; flex-shrink: 0; }
.wa-btn:hover { transform: scale(1.1); }
.wa-popup { background: white; border-radius: 14px; padding: 18px; box-shadow: 0 6px 32px rgba(0,0,0,0.18); width: 272px; position: relative; border: 1px solid #e8e8e8; }
.wa-popup-hd { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; font-size: 15px; font-weight: bold; color: var(--navy); }
.wa-popup-msg { font-size: 14px; color: var(--text); line-height: 1.6; margin: 0 0 14px; }
.wa-close { position: absolute; top: 10px; right: 12px; background: none; border: none; color: #bbb; cursor: pointer; font-size: 16px; line-height: 1; padding: 0; }
.wa-close:hover { color: var(--text); }
.wa-start { display: block; background: #25D366; color: white; text-align: center; padding: 11px 16px; border-radius: 7px; font-weight: bold; font-size: 14px; text-decoration: none; transition: background 0.15s; }
.wa-start:hover { background: #1da851; color: white; }

/* === STICKY SIDE BUTTONS === */
.sticky-side { position: fixed; right: 0; top: 50%; transform: translateY(-50%); z-index: 500; display: flex; flex-direction: column; gap: 2px; }
.sticky-btn { display: flex; align-items: center; gap: 8px; padding: 14px 12px; font-size: 13px; font-weight: bold; color: white; text-decoration: none; transition: padding-right 0.2s; white-space: nowrap; overflow: hidden; max-width: 44px; }
.sticky-btn:hover { max-width: 200px; padding-right: 16px; color: white; }
.sticky-btn i { font-size: 16px; flex-shrink: 0; }
.sticky-btn span { opacity: 0; transition: opacity 0.15s; pointer-events: none; }
.sticky-btn:hover span { opacity: 1; }
.sticky-red { background: var(--red); }
.sticky-red:hover { background: var(--red-hover); }
.sticky-green { background: #25D366; }
.sticky-green:hover { background: #1da851; }
.sticky-navy { background: var(--navy); }
.sticky-navy:hover { background: var(--navy-dark); }
@media (max-width: 640px) { .sticky-side { display: none; } }

/* === SKIP HIRE EXTRAS === */
.extras-grid { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.extra-row { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 16px; padding: 12px 16px; border-bottom: 1px solid var(--border); background: #fff; }
.extra-row:last-child { border-bottom: none; }
.extra-row:nth-child(even) { background: var(--bg-light); }
.extra-info { display: flex; flex-direction: column; gap: 2px; }
.extra-name { font-size: 14px; font-weight: 700; color: var(--text); }
.extra-price { font-size: 12px; color: var(--text-light); }
.extra-qty-ctrl { display: flex; align-items: center; gap: 0; border: 1px solid var(--border); border-radius: 6px; overflow: hidden; }
.extra-qty-ctrl button { background: var(--bg-light); border: none; padding: 6px 12px; font-size: 16px; font-weight: bold; cursor: pointer; color: var(--text); line-height: 1; transition: background 0.15s; }
.extra-qty-ctrl button:hover { background: var(--yellow); }
.extra-qty-ctrl span { min-width: 32px; text-align: center; font-size: 15px; font-weight: 700; padding: 0 4px; }
.extras-contact-box { background: #fff8e1; border: 1px solid var(--yellow-border); border-radius: 8px; padding: 16px 18px; margin-top: 16px; }
.extras-contact-box h4 { color: var(--navy); font-size: 14px; margin-bottom: 10px; }
.extras-contact-list { display: flex; flex-direction: column; gap: 6px; list-style: none; padding: 0; margin: 0 0 12px; }
.extras-contact-list li { font-size: 13px; color: var(--text); padding-left: 16px; position: relative; }
.extras-contact-list li::before { content: '•'; position: absolute; left: 0; color: var(--navy); font-weight: bold; }
.extras-not-accepted { background: #fff3f3; border: 1px solid #f0b0a8; border-radius: 8px; padding: 14px 18px; margin-top: 12px; }
.extras-not-accepted p { font-size: 13px; color: #CC2200; font-weight: bold; margin-bottom: 6px; }
.extras-not-accepted ul { list-style: none; padding: 0; margin: 0; }
.extras-not-accepted ul li { font-size: 13px; color: var(--text); padding-left: 16px; position: relative; }
.extras-not-accepted ul li::before { content: '✕'; position: absolute; left: 0; color: #CC2200; font-size: 11px; top: 2px; }

/* === ORDER SUMMARY === */
.order-summary { border: 2px solid var(--yellow); border-radius: 8px; overflow: hidden; }
.order-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 16px; border-bottom: 1px solid var(--border); font-size: 14px; }
.order-row:last-child { border-bottom: none; }
.order-row:nth-child(even) { background: var(--bg-light); }
.order-subtotal { font-weight: 700; background: #fff !important; border-top: 1px solid var(--border); }
.order-total { font-size: 17px; font-weight: 900; background: var(--navy) !important; color: white; border-top: 2px solid var(--yellow); }
.order-total span { color: white; }
#os-total { color: var(--yellow); }
.order-extra-row { display: flex; justify-content: space-between; padding: 8px 16px; font-size: 13px; color: var(--text-light); border-bottom: 1px solid var(--border); }

/* === EXTRAS ITEM DETAILS & CONTACT BOX === */
.extra-desc { display: flex; flex-direction: column; gap: 3px; }
.extra-desc strong { font-size: 14px; color: var(--text); }
.extra-price { font-size: 12px; color: var(--text-light); }
.qty-btn { background: var(--bg-light); border: none; padding: 7px 13px; font-size: 18px; font-weight: bold; cursor: pointer; color: var(--text); line-height: 1; transition: background 0.15s; }
.qty-btn:hover { background: var(--yellow); }
.qty-val { min-width: 34px; text-align: center; font-size: 15px; font-weight: 700; padding: 0 4px; display: inline-block; }
.extras-contact { margin-top: 18px; padding: 16px 18px; background: #fff8e1; border: 1px solid var(--yellow-border); border-radius: 8px; }
.extras-contact-hd { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.extras-contact-list { list-style: none; padding: 0; margin: 0 0 14px; display: flex; flex-direction: column; gap: 6px; }
.extras-contact-list li { font-size: 13px; color: var(--text); padding-left: 16px; position: relative; line-height: 1.5; }
.extras-contact-list li::before { content: '•'; position: absolute; left: 0; color: var(--navy); font-weight: bold; }
