/*
 * Main stylesheet for Skippy Skips theme.
 * Brand colors derived from the official Skippy Skips logo:
 * - Skippy Yellow: #FFCC00
 * - Skippy Red: #E63946
 * - Black: #1A1A1A
 */

/* Reset & base */
*, *::before, *::after {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: #1A1A1A;
	background-color: #FAFAF8;
}

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

a {
	color: #E63946;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
	margin-top: 0;
	line-height: 1.2;
	font-weight: 800;
}

p {
	margin-top: 0;
}

/* Container */
.container {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding-left: 1rem;
	padding-right: 1rem;
}

/* Utility */
.text-center {
	text-align: center;
}

.text-yellow {
	color: #FFCC00;
}

.text-red {
	color: #E63946;
}

.hidden-sm {
	display: none;
}

.hidden-md {
	display: none;
}

@media (min-width: 640px) {
	.hidden-sm {
		display: inline;
	}
}

@media (min-width: 768px) {
	.hidden-md {
		display: inline;
	}
}

/* Top bar */
.top-bar {
	background-color: #1A1A1A;
	color: #fff;
	font-size: 0.875rem;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
}

.top-bar-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.top-bar-left {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.top-bar-highlight {
	color: #FFCC00;
	font-weight: 700;
}

.top-bar-phone {
	color: #fff;
	font-weight: 700;
}

.top-bar-phone:hover {
	color: #FFCC00;
}

/* Top bar social links */
.top-bar-right {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	color: rgba(255, 255, 255, 0.85);
	transition: color 0.2s ease, transform 0.2s ease;
}

.social-link:hover {
	color: #FFCC00;
	transform: translateY(-1px);
}

.social-link svg {
	width: 100%;
	height: 100%;
}

.top-bar-phone {
	margin-left: 0.5rem;
}

/* Header */
.site-header {
	background-color: #FFCC00;
	box-shadow: 0 1px 3px rgba(0,0,0,0.1);
	position: sticky;
	top: 0;
	z-index: 1000;
}

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

.site-logo {
	height: 56px;
	width: auto;
}

.main-navigation .nav-menu {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 1.5rem;
}

.main-navigation .nav-menu a {
	color: #1A1A1A;
	font-weight: 600;
	font-size: 0.95rem;
}

.main-navigation .nav-menu a:hover {
	color: #E63946;
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.header-phone {
	color: #1A1A1A;
	font-weight: 800;
	font-size: 1.1rem;
}

/* Buttons */
.btn {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	border-radius: 0.75rem;
	font-weight: 700;
	text-align: center;
	transition: all 0.2s ease;
	border: 2px solid transparent;
	cursor: pointer;
	font-size: 1rem;
	line-height: 1.4;
}

.btn:hover {
	text-decoration: none;
}

.btn-primary {
	background-color: #E63946;
	color: #fff;
	border-color: #E63946;
	box-shadow: 0 4px 14px rgba(230, 57, 70, 0.3);
}

.btn-primary:hover {
	background-color: #C1121F;
	border-color: #C1121F;
	color: #fff;
}

.btn-outline {
	background-color: transparent;
	color: #fff;
	border-color: rgba(255,255,255,0.4);
}

.btn-outline:hover {
	background-color: #fff;
	color: #1A1A1A;
	border-color: #fff;
}

.btn-dark {
	background-color: #1A1A1A;
	color: #fff;
	border-color: #1A1A1A;
}

.btn-dark:hover {
	background-color: #333;
	border-color: #333;
	color: #fff;
}

.btn-lg {
	padding: 1rem 2rem;
	font-size: 1.125rem;
}

/* Hero */
.hero {
	position: relative;
	background-color: #1A1A1A;
	color: #fff;
	overflow: hidden;
}

.hero-bg {
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, rgba(26,26,26,0.92), rgba(26,26,26,0.75), rgba(26,26,26,0.45)),
		url('../images/skippy-media/skippy-gallery-2.jpg');
	background-size: cover;
	background-position: center;
}

.hero-content {
	position: relative;
	z-index: 1;
	padding-top: 6rem;
	padding-bottom: 6rem;
}

.hero-text {
	max-width: 640px;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background-color: rgba(255, 204, 0, 0.15);
	color: #FFCC00;
	padding: 0.5rem 1rem;
	border-radius: 9999px;
	font-size: 0.875rem;
	font-weight: 700;
	border: 1px solid rgba(255, 204, 0, 0.3);
	margin-bottom: 1.5rem;
}

.pulse-dot {
	width: 8px;
	height: 8px;
	background-color: #FFCC00;
	border-radius: 50%;
	animation: pulse 1.5s infinite;
}

@keyframes pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.5; }
}

.hero-title {
	font-size: clamp(2rem, 5vw, 3.75rem);
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 1.5rem;
}

.hero-description {
	font-size: 1.25rem;
	color: #e5e7eb;
	margin-bottom: 2rem;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 2rem;
}

.hero-checklist {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	font-size: 0.875rem;
	color: #d1d5db;
}

.check-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.check-icon {
	width: 20px;
	height: 20px;
	color: #FFCC00;
}

/* Trust bar */
.trust-bar {
	background-color: #FFCC00;
	color: #1A1A1A;
	padding-top: 2rem;
	padding-bottom: 2rem;
}

.trust-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
	text-align: center;
}

.trust-value {
	font-size: 1.875rem;
	font-weight: 800;
}

.trust-label {
	font-size: 0.875rem;
	font-weight: 600;
	opacity: 0.75;
}

@media (min-width: 768px) {
	.trust-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

/* Sections */
.section {
	padding-top: 5rem;
	padding-bottom: 5rem;
}

.section-white {
	background-color: #fff;
}

.section-header {
	margin-bottom: 3.5rem;
}

.section-title {
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	margin-bottom: 1rem;
}

.section-subtitle {
	font-size: 1.125rem;
	color: #6B7280;
	max-width: 640px;
	margin-left: auto;
	margin-right: auto;
}

/* Steps */
.steps-grid {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 2rem;
}

.step-card {
	text-align: center;
}

.step-number {
	width: 80px;
	height: 80px;
	background-color: #FFCC00;
	color: #1A1A1A;
	border-radius: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.875rem;
	font-weight: 800;
	margin: 0 auto 1.25rem;
	box-shadow: 0 4px 15px rgba(255, 204, 0, 0.3);
}

.step-card h3 {
	font-size: 1.25rem;
	margin-bottom: 0.5rem;
}

.step-card p {
	color: #6B7280;
}

@media (min-width: 768px) {
	.steps-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

/* Bin cards */
.bin-cards {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 1.5rem;
}

.bin-card {
	background-color: #FAFAF8;
	border: 1px solid #e5e7eb;
	border-radius: 1rem;
	overflow: hidden;
	transition: transform 0.2s, box-shadow 0.2s;
}

.bin-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.bin-image {
	height: 200px;
	background-color: #f3f4f6;
	overflow: hidden;
}

.bin-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bin-content {
	padding: 1.5rem;
}

.bin-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 0.75rem;
}

.bin-size {
	font-size: 1.875rem;
	font-weight: 800;
	color: #E63946;
}

.bin-price {
	font-size: 1.25rem;
	font-weight: 700;
}

.bin-content h3 {
	font-size: 1.125rem;
	margin-bottom: 0.5rem;
}

.bin-content p {
	font-size: 0.875rem;
	color: #6B7280;
	margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
	.bin-cards {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.bin-cards {
		grid-template-columns: repeat(4, 1fr);
	}
}

/* Waste types */
.waste-types {
	background-color: #F3F4F6;
}

.waste-grid {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 1.25rem;
}

.waste-card {
	background-color: #fff;
	padding: 1.5rem;
	border-radius: 1rem;
	border: 1px solid #e5e7eb;
	text-align: center;
	transition: box-shadow 0.2s, border-color 0.2s;
}

.waste-card:hover {
	box-shadow: 0 4px 15px rgba(0,0,0,0.08);
	border-color: #FFCC00;
	text-decoration: none;
}

.waste-icon {
	width: 56px;
	height: 56px;
	background-color: #FFCC00;
	color: #1A1A1A;
	border-radius: 0.75rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
	transition: background-color 0.2s, color 0.2s;
}

.waste-card:hover .waste-icon {
	background-color: #E63946;
	color: #fff;
}

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

.waste-card h3 {
	font-size: 1.125rem;
	margin-bottom: 0.25rem;
	color: #1A1A1A;
}

.waste-card p {
	font-size: 0.875rem;
	color: #6B7280;
	margin: 0;
}

@media (min-width: 640px) {
	.waste-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.waste-grid {
		grid-template-columns: repeat(5, 1fr);
	}
}

/* Why Skippy */
.why-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 4rem;
	align-items: center;
}

.why-features {
	margin-top: 2rem;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.why-feature {
	display: flex;
	gap: 1rem;
}

.why-icon {
	width: 48px;
	height: 48px;
	background-color: #FFCC00;
	color: #1A1A1A;
	border-radius: 0.75rem;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.why-icon svg {
	width: 24px;
	height: 24px;
}

.why-feature h3 {
	font-size: 1.125rem;
	margin-bottom: 0.25rem;
}

.why-feature p {
	font-size: 0.95rem;
	color: #6B7280;
	margin: 0;
}

.testimonial-card {
	background-color: #FAFAF8;
	border: 1px solid #e5e7eb;
	border-radius: 1.5rem;
	padding: 2rem;
}

.stars {
	display: flex;
	gap: 0.25rem;
	color: #FFCC00;
	margin-bottom: 1rem;
}

.stars svg {
	width: 24px;
	height: 24px;
}

.testimonial-card blockquote {
	font-size: 1.25rem;
	font-weight: 500;
	font-style: italic;
	margin: 0 0 1.5rem;
	line-height: 1.5;
}

.testimonial-author {
	font-weight: 700;
}

.testimonial-role {
	font-size: 0.875rem;
	color: #6B7280;
}

@media (min-width: 1024px) {
	.why-grid {
		grid-template-columns: 1fr 1fr;
	}
}

/* Service areas */
.service-areas {
	background-color: #F3F4F6;
}

.service-card {
	background-color: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 1.5rem;
	padding: 2rem;
	max-width: 800px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

.service-card h3 {
	font-size: 1.25rem;
	margin-bottom: 0.75rem;
}

.service-card p,
.service-card ul {
	font-size: 0.95rem;
	color: #6B7280;
}

.service-card ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.service-card li {
	padding: 0.25rem 0;
}

@media (min-width: 640px) {
	.service-card {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* CTA section */
.cta-section {
	background-color: #1A1A1A;
	color: #fff;
}

.cta-title {
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	margin-bottom: 1rem;
}

.cta-description {
	font-size: 1.125rem;
	color: #d1d5db;
	max-width: 640px;
	margin: 0 auto 2rem;
}

.cta-actions {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	justify-content: center;
	align-items: center;
}

@media (min-width: 640px) {
	.cta-actions {
		flex-direction: row;
	}
}

/* Footer */
.site-footer {
	background-color: #1A1A1A;
	color: #9CA3AF;
	padding-top: 4rem;
	padding-bottom: 2rem;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	margin-bottom: 3rem;
}

.footer-logo {
	height: 56px;
	width: auto;
	margin-bottom: 1rem;
}

.footer-col h4 {
	color: #fff;
	font-size: 1rem;
	margin-bottom: 1rem;
}

.footer-col p,
.footer-col li {
	font-size: 0.9rem;
	margin-bottom: 0.5rem;
}

.footer-menu {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-menu a {
	color: #9CA3AF;
}

.footer-menu a:hover {
	color: #fff;
}

.footer-hours {
	list-style: none;
	padding: 0;
	margin: 0;
}

.payment-methods {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.payment-methods span {
	background-color: #374151;
	color: #fff;
	font-size: 0.75rem;
	padding: 0.35rem 0.75rem;
	border-radius: 0.25rem;
}

.footer-bottom {
	border-top: 1px solid #374151;
	padding-top: 2rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	font-size: 0.875rem;
}

.footer-bottom p {
	margin: 0;
	color: #9CA3AF;
}

.footer-credit {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: #9CA3AF;
	text-decoration: none;
	transition: color 0.2s ease;
}

.footer-credit:hover {
	color: #fff;
}

.footer-credit span {
	font-size: 0.8rem;
}

.footer-credit-logo {
	height: 28px;
	width: auto;
	max-width: 160px;
	object-fit: contain;
}

@media (min-width: 768px) {
	.footer-bottom {
		flex-direction: row;
	}
}

@media (min-width: 768px) {
	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.footer-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

/* Page content */
.site-main {
	min-height: 50vh;
}

.entry-header {
	margin-bottom: 2rem;
}

.entry-title {
	font-size: 2rem;
	margin-bottom: 1rem;
}

.entry-content {
	font-size: 1rem;
	line-height: 1.7;
}

.entry-content > * + * {
	margin-top: 1.25rem;
}

/* WooCommerce overrides */
.woocommerce .site-main {
	padding-top: 3rem;
	padding-bottom: 3rem;
}

/* Booking flow */
.booking-flow {
	background-color: #fff;
	border-radius: 1rem;
	border: 1px solid #e5e7eb;
	padding: 2rem;
	max-width: 900px;
	margin: 2rem auto;
}

.booking-stepper {
	display: flex;
	justify-content: space-between;
	margin-bottom: 2rem;
}

.booking-step {
	flex: 1;
	text-align: center;
	position: relative;
}

.booking-step::after {
	content: '';
	position: absolute;
	top: 16px;
	left: 50%;
	width: 100%;
	height: 2px;
	background-color: #e5e7eb;
	z-index: 0;
}

.booking-step:last-child::after {
	display: none;
}

.step-indicator {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background-color: #e5e7eb;
	color: #6B7280;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	margin: 0 auto 0.5rem;
	position: relative;
	z-index: 1;
	font-size: 0.875rem;
}

.booking-step.active .step-indicator {
	background-color: #FFCC00;
	color: #1A1A1A;
}

.booking-step.completed .step-indicator {
	background-color: #1A1A1A;
	color: #FFCC00;
}

.step-label {
	font-size: 0.75rem;
	font-weight: 600;
	color: #6B7280;
}

.booking-step.active .step-label {
	color: #1A1A1A;
}

.booking-step-title {
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
	text-align: center;
}

.booking-options {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 1rem;
}

.booking-option {
	background-color: #FAFAF8;
	border: 2px solid #e5e7eb;
	border-radius: 1rem;
	padding: 1.5rem;
	cursor: pointer;
	text-align: center;
	transition: all 0.2s;
}

.booking-option:hover,
.booking-option.selected {
	border-color: #FFCC00;
	background-color: #fff;
	box-shadow: 0 4px 15px rgba(255, 204, 0, 0.15);
}

.booking-option.selected {
	border-color: #E63946;
}

.booking-option-icon {
	font-size: 2.5rem;
	margin-bottom: 0.75rem;
}

.booking-option h3 {
	font-size: 1.125rem;
	margin-bottom: 0.25rem;
}

.booking-option p {
	font-size: 0.875rem;
	color: #6B7280;
	margin: 0;
}

.booking-nav {
	display: flex;
	justify-content: space-between;
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid #e5e7eb;
}

.booking-summary {
	background-color: #FAFAF8;
	border: 1px solid #e5e7eb;
	border-radius: 1rem;
	padding: 1.5rem;
	margin-top: 2rem;
}

.booking-summary h3 {
	margin-bottom: 1rem;
}

@media (min-width: 640px) {
	.booking-options {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 768px) {
	.booking-options {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* =====================================================
   MOBILE NAVIGATION
   ===================================================== */
.menu-toggle {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 48px;
	height: 48px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	gap: 6px;
	z-index: 1002;
	position: relative;
}

.menu-bar {
	display: block;
	width: 28px;
	height: 3px;
	background-color: #1A1A1A;
	border-radius: 2px;
	transition: transform 0.3s ease, opacity 0.3s ease;
	transform-origin: center;
}

.menu-toggle[aria-expanded="true"] .menu-bar:nth-child(1) {
	transform: translateY(9px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-bar:nth-child(2) {
	opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-bar:nth-child(3) {
	transform: translateY(-9px) rotate(-45deg);
}

@media (min-width: 1024px) {
	.menu-toggle {
		display: none;
	}
}

.nav-menu {
	display: flex;
	flex-direction: column;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #FFCC00;
	padding: 6rem 2rem 2rem;
	gap: 0;
	z-index: 1001;
	transform: translateX(100%);
	transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	list-style: none;
	margin: 0;
}

.nav-menu.is-open {
	transform: translateX(0);
}

html.mobile-menu-open,
html.mobile-menu-open body {
	overflow: hidden;
	height: 100%;
}

.nav-menu li {
	border-bottom: 1px solid rgba(26, 26, 26, 0.1);
}

.nav-menu a {
	display: block;
	padding: 1.25rem 0;
	font-size: 1.5rem;
	font-weight: 700;
	color: #1A1A1A;
}

.nav-menu a:hover {
	color: #E63946;
	text-decoration: none;
}

@media (min-width: 1024px) {
	.nav-menu {
		position: static;
		flex-direction: row;
		transform: none;
		background-color: transparent;
		padding: 0;
		gap: 1.5rem;
		align-items: center;
		z-index: auto;
	}

	.nav-menu li {
		border-bottom: none;
	}

	.nav-menu a {
		font-size: 0.95rem;
		padding: 0;
		font-weight: 600;
	}
}

/* =====================================================
   HEADER SCROLL STATES
   ===================================================== */
.site-header {
	transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.site-header.is-scrolled {
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.site-header.is-hidden {
	transform: translateY(-100%);
}

/* =====================================================
   SCROLL REVEAL ANIMATIONS
   ===================================================== */
.reveal {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.step-card,
.bin-card,
.waste-card,
.why-feature {
	transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.2s ease;
}

/* =====================================================
   MOBILE TYPOGRAPHY & SPACING
   ===================================================== */
@media (max-width: 639px) {
	.hero-content {
		padding-top: 4rem;
		padding-bottom: 4rem;
	}

	.hero-description {
		font-size: 1.1rem;
	}

	.hero-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.hero-actions .btn {
		width: 100%;
	}

	.hero-checklist {
		flex-direction: column;
		gap: 0.75rem;
	}

	.section {
		padding-top: 3rem;
		padding-bottom: 3rem;
	}

	.section-header {
		margin-bottom: 2rem;
	}

	.trust-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}

	.trust-value {
		font-size: 1.5rem;
	}

	.trust-label {
		font-size: 0.75rem;
	}

	.cta-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.cta-actions .btn {
		width: 100%;
	}

	.footer-grid {
		gap: 2rem;
	}

	.site-logo,
	.footer-logo {
		height: 44px;
	}

	.header-inner {
		height: 64px;
	}

	.top-bar {
		font-size: 0.75rem;
	}

	.top-bar-inner {
		justify-content: center;
	}

	.top-bar-left {
		gap: 0.75rem;
	}

	.top-bar-phone {
		display: none;
	}
}

/* =====================================================
   TOUCH-FRIENDLY IMPROVEMENTS
   ===================================================== */
.btn,
.booking-option,
.menu-toggle,
.remove,
.waste-card,
.footer-menu a {
	touch-action: manipulation;
	-webkit-tap-highlight-color: transparent;
}

.btn:active,
.booking-option:active,
.menu-toggle:active {
	transform: scale(0.98);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
	outline: 3px solid rgba(255, 204, 0, 0.7);
	outline-offset: 2px;
}

/* =====================================================
   BOOKING FLOW MOBILE
   ===================================================== */
@media (max-width: 767px) {
	.booking-flow {
		padding: 1.25rem;
		margin: 1rem 0;
	}

	.booking-stepper {
		margin-bottom: 1.5rem;
	}

	.booking-step::after {
		display: none;
	}

	.step-label {
		font-size: 0.65rem;
	}

	.step-indicator {
		width: 30px;
		height: 30px;
		font-size: 0.8rem;
	}

	.booking-step-title {
		font-size: 1.25rem;
	}

	.booking-option {
		padding: 1.25rem 1rem;
	}

	.booking-option-icon {
		font-size: 2rem;
	}

	.booking-option h3 {
		font-size: 1rem;
	}

	.booking-option p {
		font-size: 0.8rem;
	}

	.booking-nav {
		flex-direction: column-reverse;
		gap: 0.75rem;
	}

	.booking-nav .btn {
		width: 100%;
		justify-content: center;
	}

	.form-row {
		margin-bottom: 1rem;
	}
}

/* =====================================================
   FORM / INPUT IMPROVEMENTS
   ===================================================== */
.form-row label {
	display: block;
	font-weight: 600;
	margin-bottom: 0.5rem;
	font-size: 0.95rem;
}

.input-text,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="date"],
select,
textarea {
	width: 100%;
	padding: 0.85rem 1rem;
	border: 2px solid #e5e7eb;
	border-radius: 0.75rem;
	font-size: 1rem;
	font-family: inherit;
	background-color: #fff;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
	min-height: 48px;
}

.input-text:focus,
input:focus,
select:focus,
textarea:focus {
	border-color: #FFCC00;
	box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.18);
}

.input-error {
	border-color: #E63946 !important;
	background-color: #fff5f5;
}

/* =====================================================
   LOADING / PROGRESS STATES
   ===================================================== */
.btn.is-loading,
.booking-submit.is-loading {
	position: relative;
	color: transparent !important;
	pointer-events: none;
}

.btn.is-loading::after,
.booking-submit.is-loading::after {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	width: 20px;
	height: 20px;
	margin: -10px 0 0 -10px;
	border: 2px solid rgba(255, 255, 255, 0.4);
	border-top-color: #fff;
	border-radius: 50%;
	animation: spin 0.8s linear infinite;
}

@keyframes spin {
	to { transform: rotate(360deg); }
}

/* =====================================================
   WOO COMMERCE MOBILE OVERRIDES
   ===================================================== */
@media (max-width: 767px) {
	.woocommerce-cart-form,
	.woocommerce-checkout {
		font-size: 0.95rem;
	}

	.woocommerce table.shop_table,
	.woocommerce table.shop_table tbody,
	.woocommerce table.shop_table tr,
	.woocommerce table.shop_table td,
	.woocommerce table.shop_table th {
		display: block;
		width: 100%;
		box-sizing: border-box;
	}

	.woocommerce table.shop_table thead {
		display: none;
	}

	.woocommerce table.shop_table td {
		border: none;
		padding: 0.5rem 0;
	}

	.woocommerce table.shop_table tr {
		border-bottom: 1px solid #e5e7eb;
		padding: 1rem 0;
		margin-bottom: 1rem;
	}

	.woocommerce-checkout .form-row {
		width: 100% !important;
		float: none !important;
	}

	.woocommerce .col2-set .col-1,
	.woocommerce .col2-set .col-2 {
		width: 100%;
		float: none;
	}
}

/* =====================================================
   FAQ PAGE
   ===================================================== */
.page-template-default.page-id-13 .entry-content h3,
.page-faq .entry-content h3 {
	font-size: 1.25rem;
	margin-top: 2rem;
	margin-bottom: 0.75rem;
	color: #1A1A1A;
}

.page-template-default.page-id-13 .entry-content h3:first-child,
.page-faq .entry-content h3:first-child {
	margin-top: 0;
}

.page-template-default.page-id-13 .entry-content p,
.page-faq .entry-content p {
	color: #4A4A4A;
	line-height: 1.7;
}

.page-template-default.page-id-13 .entry-content ul,
.page-faq .entry-content ul {
	list-style: disc;
	padding-left: 1.25rem;
	margin-bottom: 1.5rem;
}

.page-template-default.page-id-13 .entry-content li,
.page-faq .entry-content li {
	margin-bottom: 0.5rem;
	color: #4A4A4A;
}
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}

	.reveal {
		opacity: 1;
		transform: none;
	}
}

/* =====================================================
   FORM ANIMATIONS
   ===================================================== */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes shake {
	0%, 100% { transform: translateX(0); }
	20% { transform: translateX(-6px); }
	40% { transform: translateX(6px); }
	60% { transform: translateX(-4px); }
	80% { transform: translateX(4px); }
}

.booking-panel.is-active {
	animation: fadeIn 0.35s ease;
}

/* =====================================================
   BOOKING SUMMARY STYLES
   ===================================================== */
.summary-list {
	list-style: none;
	padding: 0;
	margin: 0 0 1.5rem;
}

.summary-list li {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 0.75rem 0;
	border-bottom: 1px solid #e5e7eb;
	gap: 1rem;
}

.summary-list li span {
	color: #6B7280;
	font-size: 0.9rem;
}

.summary-list li strong {
	text-align: right;
	font-weight: 600;
}

.booking-total {
	font-size: 1.25rem;
	margin-bottom: 0.5rem;
}

.booking-note {
	font-size: 0.875rem;
	color: #6B7280;
}


/* =====================================================
   COOKIE CONSENT BANNER
   ===================================================== */
.skippy-cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #1A1A1A;
	color: #fff;
	padding: 1rem;
	z-index: 9999;
	box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.skippy-cookie-inner {
	max-width: 1280px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	align-items: center;
	text-align: center;
}

.skippy-cookie-text p {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.5;
}

.skippy-cookie-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	align-items: center;
	justify-content: center;
}

.skippy-cookie-actions .btn-outline {
	color: #fff;
	border-color: rgba(255,255,255,0.4);
}

.skippy-cookie-actions .btn-outline:hover {
	background-color: #fff;
	color: #1A1A1A;
}

.skippy-cookie-link {
	color: #FFCC00;
	font-size: 0.875rem;
	font-weight: 600;
}

.skippy-cookie-link:hover {
	color: #fff;
}

@media (min-width: 768px) {
	.skippy-cookie-inner {
		flex-direction: row;
		justify-content: space-between;
		text-align: left;
	}
}

/* =====================================================
   AI SEARCH / AEO Q&A SECTION
   ===================================================== */
.ai-search-section {
	background-color: #fff;
}

.ai-qa-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

.ai-qa-item {
	background-color: #F8F8F8;
	border-left: 4px solid #FFCC00;
	border-radius: 0 12px 12px 0;
	padding: 1.5rem;
}

.ai-qa-item h3 {
	font-size: 1.125rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: #1A1A1A;
}

.ai-qa-item p {
	font-size: 1rem;
	color: #4A4A4A;
	margin: 0;
	line-height: 1.6;
}

@media (min-width: 768px) {
	.ai-qa-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

.nav-menu a.current {
	color: #E63946;
}

@media (min-width: 1024px) {
	.nav-menu a.current::after {
		content: '';
		display: block;
		width: 100%;
		height: 3px;
		background-color: #E63946;
		border-radius: 2px;
		margin-top: 4px;
	}
}

/* =====================================================
   FOOTER SOCIAL LINKS
   ===================================================== */
.footer-social {
	display: flex;
	gap: 0.75rem;
	margin-top: 1rem;
}

.footer-social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	background-color: #374151;
	color: #fff;
	border-radius: 0.5rem;
	transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover {
	background-color: #FFCC00;
	color: #1A1A1A;
	transform: translateY(-2px);
}

.footer-social svg {
	width: 18px;
	height: 18px;
}

/* =====================================================
   SPECIALTY BINS
   ===================================================== */
.specialty-bins {
	background-color: #F3F4F6;
}

.specialty-grid {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 1.5rem;
}

.specialty-card {
	background-color: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 1rem;
	padding: 1.75rem;
	position: relative;
	transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.specialty-card:hover {
	box-shadow: 0 10px 30px rgba(0,0,0,0.08);
	border-color: #FFCC00;
}

.specialty-badge {
	display: inline-block;
	background-color: #E63946;
	color: #fff;
	font-size: 0.75rem;
	font-weight: 800;
	padding: 0.25rem 0.6rem;
	border-radius: 0.25rem;
	margin-bottom: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.specialty-card h3 {
	font-size: 1.25rem;
	margin-bottom: 0.5rem;
}

.specialty-card p {
	font-size: 0.95rem;
	color: #6B7280;
	margin: 0;
}

@media (min-width: 640px) {
	.specialty-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.specialty-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

/* =====================================================
   VIDEO SECTION
   ===================================================== */
.video-section {
	background-color: #fff;
}

.video-wrapper {
	max-width: 900px;
	margin: 0 auto;
	border-radius: 1rem;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.video-wrapper video {
	width: 100%;
	height: auto;
	display: block;
}

/* =====================================================
   GALLERY SECTION
   ===================================================== */
.gallery-section {
	background-color: #F3F4F6;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 1.5rem;
}

.gallery-item {
	border-radius: 1rem;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0,0,0,0.08);
	background-color: #fff;
}

.gallery-item img {
	width: 100%;
	height: 280px;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.gallery-item:hover img {
	transform: scale(1.03);
}

@media (min-width: 640px) {
	.gallery-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.gallery-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}


/* =====================================================
   FAQ PAGE
   ===================================================== */
.page-template-default.page-id-13 .entry-content h3,
.page-faq .entry-content h3 {
	font-size: 1.25rem;
	margin-top: 2rem;
	margin-bottom: 0.75rem;
	color: #1A1A1A;
}

.page-template-default.page-id-13 .entry-content h3:first-child,
.page-faq .entry-content h3:first-child {
	margin-top: 0;
}

.page-template-default.page-id-13 .entry-content p,
.page-faq .entry-content p {
	color: #4A4A4A;
	line-height: 1.7;
}

.page-template-default.page-id-13 .entry-content ul,
.page-faq .entry-content ul {
	list-style: disc;
	padding-left: 1.25rem;
	margin-bottom: 1.5rem;
}

.page-template-default.page-id-13 .entry-content li,
.page-faq .entry-content li {
	margin-bottom: 0.5rem;
	color: #4A4A4A;
}

/* =====================================================
   MAP / CONTACT PAGE
   ===================================================== */
.map-wrapper {
	border-radius: 1rem;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	margin-bottom: 1.5rem;
}

.map-wrapper iframe {
	display: block;
	width: 100%;
}

/* =====================================================
   ACCESSIBILITY
   ===================================================== */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}

	.reveal {
		opacity: 1;
		transform: none;
	}
}
