/* ===== Autocarrozzeria Piccolo - Limena (PD) Stylesheet ===== */

:root {
	--brand-primary: #ea580c;
	--brand-primary-hover: #c2410c;
	--brand-primary-light: rgba(234, 88, 12, 0.08);
	--brand-navy: #0f172a;
	--brand-navy-light: #1e293b;
	--brand-slate: #334155;
	--brand-amber: #d97706;
	--brand-green: #16a34a;
	--brand-green-bg: #dcfce7;
	--brand-red: #dc2626;

	--bg-page: #f8fafc;
	--bg-card: #ffffff;
	--bg-warm: #fffbf5;
	--bg-muted: #f1f5f9;
	--border-color: #e2e8f0;
	--border-focus: #ea580c;

	--text-main: #0f172a;
	--text-muted: #475569;
	--text-subtle: #64748b;
	--text-light: #f8fafc;

	--radius-sm: 6px;
	--radius-md: 10px;
	--radius-lg: 16px;
	--radius-xl: 24px;
	--radius-full: 9999px;

	--shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
	--shadow-card: 0 4px 16px -2px rgba(15, 23, 42, 0.06), 0 2px 6px -1px rgba(15, 23, 42, 0.04);
	--shadow-elevated: 0 12px 30px -4px rgba(15, 23, 42, 0.12), 0 4px 12px -2px rgba(15, 23, 42, 0.06);

	--font-sans: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	--font-mono: "Space Grotesk", monospace;

	--container-max: 1200px;
}

*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	font-family: var(--font-sans);
	background-color: var(--bg-page);
	color: var(--text-main);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	padding-bottom: 72px; /* space for mobile sticky bar */
}

@media (min-width: 900px) {
	body {
		padding-bottom: 0;
	}
}

a {
	color: inherit;
	text-decoration: none;
}

button {
	font-family: inherit;
	cursor: pointer;
	border: none;
	background: none;
}

img, svg {
	display: block;
	max-width: 100%;
}

.container {
	width: 100%;
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 0 20px;
}

/* ========================================================
   EMERGENCY STRIP & LIVE STATUS
   ======================================================== */
.top-notice-bar {
	background: #090e17;
	color: #e2e8f0;
	font-size: 0.825rem;
	padding: 8px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-notice-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}

.status-badge-live {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	background: rgba(255, 255, 255, 0.07);
	padding: 4px 10px;
	border-radius: var(--radius-full);
	font-size: 0.8rem;
	font-weight: 500;
}

.status-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	display: inline-block;
}

.status-dot.open {
	background: #22c55e;
	box-shadow: 0 0 8px #22c55e;
	animation: pulseGreen 2s infinite;
}

.status-dot.closed {
	background: #ef4444;
}

@keyframes pulseGreen {
	0% { transform: scale(0.95); opacity: 0.8; }
	50% { transform: scale(1.15); opacity: 1; }
	100% { transform: scale(0.95); opacity: 0.8; }
}

.top-contacts {
	display: flex;
	align-items: center;
	gap: 18px;
}

.top-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #f1f5f9;
	transition: color 0.15s;
}

.top-link:hover {
	color: var(--brand-primary);
}

/* ========================================================
   HEADER & NAVIGATION
   ======================================================== */
.site-header {
	background: #ffffff;
	border-bottom: 1px solid var(--border-color);
	position: sticky;
	top: 0;
	z-index: 50;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 0;
	gap: 20px;
}

.brand-logo {
	display: flex;
	align-items: center;
	gap: 12px;
}

.logo-icon-wrap {
	width: 46px;
	height: 46px;
	background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	box-shadow: 0 4px 10px rgba(234, 88, 12, 0.25);
	flex-shrink: 0;
}

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

.brand-title {
	font-size: 1.15rem;
	font-weight: 800;
	color: var(--brand-navy);
	line-height: 1.15;
	letter-spacing: -0.02em;
}

.brand-subtitle {
	font-size: 0.725rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--text-subtle);
	font-weight: 600;
}

.desktop-nav {
	display: none;
	align-items: center;
	gap: 22px;
}

@media (min-width: 992px) {
	.desktop-nav {
		display: flex;
	}
}

.nav-link {
	font-size: 0.925rem;
	font-weight: 600;
	color: var(--brand-slate);
	padding: 6px 4px;
	position: relative;
	transition: color 0.15s;
}

.nav-link:hover {
	color: var(--brand-primary);
}

.header-cta-group {
	display: flex;
	align-items: center;
	gap: 10px;
}

.btn-phone-header {
	display: none;
	align-items: center;
	gap: 8px;
	padding: 9px 16px;
	background: var(--bg-muted);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-full);
	font-weight: 700;
	font-size: 0.88rem;
	color: var(--brand-navy);
	transition: all 0.15s;
}

@media (min-width: 680px) {
	.btn-phone-header {
		display: inline-flex;
	}
}

.btn-phone-header:hover {
	background: #ffffff;
	border-color: var(--brand-primary);
	color: var(--brand-primary);
}

.btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 20px;
	background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
	color: #ffffff;
	font-weight: 700;
	font-size: 0.92rem;
	border-radius: var(--radius-full);
	box-shadow: 0 4px 14px rgba(234, 88, 12, 0.28);
	transition: transform 0.15s, box-shadow 0.15s;
	text-decoration: none;
	white-space: nowrap;
}

.btn-primary:hover {
	transform: translateY(-1px);
	box-shadow: 0 6px 18px rgba(234, 88, 12, 0.35);
}

.btn-primary:active {
	transform: translateY(1px);
}

.btn-secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 20px;
	background: #ffffff;
	color: var(--brand-navy);
	border: 1.5px solid var(--border-color);
	font-weight: 700;
	font-size: 0.92rem;
	border-radius: var(--radius-full);
	transition: all 0.15s;
	text-decoration: none;
}

.btn-secondary:hover {
	border-color: var(--brand-navy);
	background: var(--bg-muted);
}

/* ========================================================
   HERO SECTION
   ======================================================== */
.hero-section {
	background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
	padding: 40px 0 50px;
	position: relative;
	overflow: hidden;
	border-bottom: 1px solid var(--border-color);
}

.hero-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 36px;
	align-items: center;
}

@media (min-width: 960px) {
	.hero-grid {
		grid-template-columns: 1.15fr 0.85fr;
	}
}

.hero-tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 5px 14px;
	background: rgba(234, 88, 12, 0.09);
	color: #c2410c;
	border-radius: var(--radius-full);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	margin-bottom: 16px;
}

.hero-title {
	font-size: clamp(2.1rem, 4.4vw, 3.2rem);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -0.03em;
	color: var(--brand-navy);
	margin-bottom: 18px;
}

.hero-title span {
	color: var(--brand-primary);
	display: inline;
}

.hero-desc {
	font-size: 1.08rem;
	color: var(--text-muted);
	line-height: 1.6;
	margin-bottom: 26px;
	max-width: 580px;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 30px;
}

.hero-trust-badges {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	padding-top: 20px;
	border-top: 1px solid var(--border-color);
}

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

.trust-item {
	display: flex;
	align-items: center;
	gap: 10px;
}

.trust-item svg {
	width: 20px;
	height: 20px;
	color: var(--brand-primary);
	flex-shrink: 0;
}

.trust-item strong {
	display: block;
	font-size: 0.84rem;
	color: var(--brand-navy);
	line-height: 1.2;
}

.trust-item span {
	font-size: 0.74rem;
	color: var(--text-subtle);
}

/* HERO CARD (Urgency card on the right) */
.hero-card {
	background: #ffffff;
	border: 1px solid var(--border-color);
	border-radius: var(--radius-xl);
	padding: 26px;
	box-shadow: var(--shadow-elevated);
	position: relative;
}

.hero-card-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 16px;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--border-color);
}

.hero-card-header h3 {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--brand-navy);
}

.urgency-badge {
	background: #fee2e2;
	color: #b91c1c;
	font-size: 0.75rem;
	font-weight: 700;
	padding: 3px 8px;
	border-radius: var(--radius-full);
}

.quick-call-box {
	background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
	color: #ffffff;
	padding: 18px;
	border-radius: var(--radius-lg);
	margin-bottom: 18px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.quick-call-box small {
	color: #94a3b8;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.quick-call-phone {
	font-size: 1.7rem;
	font-weight: 800;
	color: #ffffff;
	letter-spacing: 0.02em;
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.quick-call-phone:hover {
	color: #fb923c;
}

.quick-features-list {
	list-style: none;
	display: grid;
	gap: 10px;
	margin-bottom: 20px;
}

.quick-features-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 0.88rem;
	color: var(--brand-slate);
}

.quick-features-list svg {
	width: 18px;
	height: 18px;
	color: var(--brand-green);
	flex-shrink: 0;
	margin-top: 2px;
}

/* ========================================================
   LOCAL SEO & LOCATION BAR
   ======================================================== */
.local-seo-bar {
	background: #ffffff;
	border-bottom: 1px solid var(--border-color);
	padding: 18px 0;
}

.local-seo-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	align-items: center;
}

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

.local-seo-item {
	display: flex;
	align-items: center;
	gap: 14px;
}

.local-seo-icon {
	width: 42px;
	height: 42px;
	border-radius: 10px;
	background: var(--bg-muted);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--brand-primary);
	flex-shrink: 0;
}

.local-seo-content p {
	font-size: 0.775rem;
	color: var(--text-subtle);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-weight: 600;
}

.local-seo-content strong {
	font-size: 0.95rem;
	color: var(--brand-navy);
}

/* ========================================================
   SECTION COMMON HEADERS
   ======================================================== */
.section {
	padding: 60px 0;
}

.section-alt {
	background: #ffffff;
}

.section-header {
	text-align: center;
	max-width: 680px;
	margin: 0 auto 42px;
}

.section-tag {
	display: inline-block;
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--brand-primary);
	margin-bottom: 8px;
}

.section-title {
	font-size: clamp(1.75rem, 3.2vw, 2.35rem);
	font-weight: 800;
	letter-spacing: -0.025em;
	color: var(--brand-navy);
	line-height: 1.2;
	margin-bottom: 12px;
}

.section-subtitle {
	font-size: 1rem;
	color: var(--text-muted);
	line-height: 1.6;
}

/* ========================================================
   SERVICES SECTION
   ======================================================== */
.services-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 22px;
}

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

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

.service-card {
	background: #ffffff;
	border: 1px solid var(--border-color);
	border-radius: var(--radius-lg);
	padding: 28px;
	transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
	display: flex;
	flex-direction: column;
	position: relative;
}

.service-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-card);
	border-color: #cbd5e1;
}

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

.service-icon-box {
	width: 50px;
	height: 50px;
	border-radius: 12px;
	background: var(--bg-muted);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: var(--brand-primary);
	flex-shrink: 0;
}

.service-timing-badge {
	font-size: 0.75rem;
	font-weight: 600;
	padding: 4px 10px;
	background: var(--bg-muted);
	color: var(--brand-slate);
	border-radius: var(--radius-full);
}

.service-card h3 {
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--brand-navy);
	margin-bottom: 10px;
	line-height: 1.3;
}

.service-card p {
	font-size: 0.92rem;
	color: var(--text-muted);
	line-height: 1.55;
	margin-bottom: 18px;
	flex-grow: 1;
}

.service-bullet-list {
	list-style: none;
	display: grid;
	gap: 6px;
	margin-bottom: 20px;
	padding-top: 14px;
	border-top: 1px dashed var(--border-color);
}

.service-bullet-list li {
	font-size: 0.84rem;
	color: var(--brand-slate);
	display: flex;
	align-items: center;
	gap: 8px;
}

.service-bullet-list li::before {
	content: "•";
	color: var(--brand-primary);
	font-weight: bold;
	font-size: 1.1rem;
}

.service-cta-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.86rem;
	font-weight: 700;
	color: var(--brand-primary);
	cursor: pointer;
	padding: 6px 0;
	transition: gap 0.15s;
}

.service-cta-link:hover {
	gap: 10px;
}

/* ========================================================
   BEFORE & AFTER INTERACTIVE SHOWCASE
   ======================================================== */
.comparison-container {
	background: #ffffff;
	border: 1px solid var(--border-color);
	border-radius: var(--radius-xl);
	padding: 24px;
	box-shadow: var(--shadow-card);
	margin-bottom: 30px;
}

.tabs-slider-select {
	display: flex;
	gap: 8px;
	overflow-x: auto;
	padding-bottom: 12px;
	margin-bottom: 20px;
	scrollbar-width: thin;
}

.tab-btn {
	padding: 8px 18px;
	border-radius: var(--radius-full);
	font-size: 0.88rem;
	font-weight: 600;
	background: var(--bg-muted);
	color: var(--brand-slate);
	white-space: nowrap;
	transition: all 0.15s;
}

.tab-btn.active {
	background: var(--brand-navy);
	color: #ffffff;
}

.comparison-wrapper {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	align-items: center;
}

@media (min-width: 900px) {
	.comparison-wrapper {
		grid-template-columns: 1.35fr 1fr;
	}
}

/* Visual Split Canvas/Interactive Slider */
.interactive-slider-box {
	position: relative;
	width: 100%;
	height: 340px;
	border-radius: var(--radius-lg);
	overflow: hidden;
	user-select: none;
	touch-action: pan-y;
	background: #0f172a;
	box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.4);
}

@media (min-width: 600px) {
	.interactive-slider-box {
		height: 380px;
	}
}

.slider-layer {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.slider-badge-corner {
	position: absolute;
	top: 14px;
	padding: 4px 12px;
	border-radius: var(--radius-full);
	font-size: 0.78rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	z-index: 10;
	pointer-events: none;
}

.slider-badge-before {
	left: 14px;
	background: rgba(220, 38, 38, 0.9);
	color: #ffffff;
}

.slider-badge-after {
	right: 14px;
	background: rgba(22, 163, 74, 0.95);
	color: #ffffff;
}

.slider-divider-line {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 3px;
	background: #ffffff;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
	z-index: 20;
	pointer-events: none;
}

.slider-handle-circle {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: #ffffff;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--brand-navy);
	font-size: 0.85rem;
	pointer-events: none;
}

.slider-handle-circle svg {
	width: 20px;
	height: 20px;
}

.slider-input-range {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: ew-resize;
	z-index: 30;
}

.comparison-details {
	padding: 10px 0;
}

.comparison-details .badge {
	display: inline-block;
	font-size: 0.78rem;
	font-weight: 700;
	color: var(--brand-primary);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 6px;
}

.comparison-details h4 {
	font-size: 1.35rem;
	font-weight: 800;
	color: var(--brand-navy);
	margin-bottom: 10px;
}

.comparison-details p {
	font-size: 0.94rem;
	color: var(--text-muted);
	line-height: 1.6;
	margin-bottom: 18px;
}

.work-detail-stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	background: var(--bg-muted);
	padding: 14px;
	border-radius: var(--radius-md);
	margin-bottom: 20px;
}

.work-stat-item span {
	font-size: 0.75rem;
	color: var(--text-subtle);
	display: block;
}

.work-stat-item strong {
	font-size: 0.92rem;
	color: var(--brand-navy);
}

/* ========================================================
   PREVENTIVO RAPIDO (QUOTE FORM & DAMAGE DIAGRAM)
   ======================================================== */
.quote-section {
	background: #0d1525;
	color: #ffffff;
	padding: 60px 0;
	position: relative;
}

.quote-section .section-tag {
	color: #fb923c;
}

.quote-section .section-title {
	color: #ffffff;
}

.quote-section .section-subtitle {
	color: #cbd5e1;
}

.quote-card-box {
	background: #1e293b;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius-xl);
	padding: 30px;
	box-shadow: var(--shadow-elevated);
	max-width: 860px;
	margin: 0 auto;
}

@media (max-width: 600px) {
	.quote-card-box {
		padding: 20px 16px;
	}
}

.quote-steps-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 26px;
	padding-bottom: 16px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	flex-wrap: wrap;
	gap: 12px;
}

.quote-badge-guarantee {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.8rem;
	color: #4ade80;
	background: rgba(74, 222, 128, 0.1);
	padding: 4px 10px;
	border-radius: var(--radius-full);
}

.quote-form-grid {
	display: grid;
	gap: 20px;
}

.form-row-2 {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}

@media (min-width: 600px) {
	.form-row-2 {
		grid-template-columns: 1fr 1fr;
	}
}

.form-row-3 {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}

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

.form-group {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.form-label {
	font-size: 0.85rem;
	font-weight: 600;
	color: #e2e8f0;
}

.form-label span {
	color: #fb923c;
}

.form-input, .form-select, .form-textarea {
	width: 100%;
	padding: 11px 14px;
	background: #0f172a;
	border: 1.5px solid #334155;
	border-radius: var(--radius-md);
	color: #ffffff;
	font-family: inherit;
	font-size: 0.92rem;
	outline: none;
	transition: border-color 0.15s, box-shadow 0.15s;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
	border-color: #ea580c;
	box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.25);
}

.form-textarea {
	min-height: 90px;
	resize: vertical;
}

/* CAR DAMAGE ZONES SELECTOR */
.damage-zones-container {
	background: #0f172a;
	border: 1px solid #334155;
	border-radius: var(--radius-lg);
	padding: 18px;
}

.damage-zones-title {
	font-size: 0.88rem;
	font-weight: 700;
	color: #f1f5f9;
	margin-bottom: 4px;
}

.damage-zones-hint {
	font-size: 0.78rem;
	color: #94a3b8;
	margin-bottom: 14px;
}

.car-zones-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.chip-zone {
	padding: 7px 14px;
	border-radius: var(--radius-full);
	font-size: 0.82rem;
	font-weight: 600;
	background: #1e293b;
	color: #cbd5e1;
	border: 1px solid #475569;
	cursor: pointer;
	transition: all 0.15s;
}

.chip-zone:hover {
	background: #334155;
	color: #ffffff;
}

.chip-zone.selected {
	background: #ea580c;
	border-color: #ea580c;
	color: #ffffff;
}

/* PHOTO UPLOADER BOX */
.photo-upload-zone {
	border: 2px dashed #475569;
	background: rgba(15, 23, 42, 0.6);
	border-radius: var(--radius-lg);
	padding: 24px;
	text-align: center;
	transition: border-color 0.15s, background-color 0.15s;
	cursor: pointer;
}

.photo-upload-zone:hover {
	border-color: #ea580c;
	background: rgba(234, 88, 12, 0.04);
}

.upload-icon {
	width: 44px;
	height: 44px;
	margin: 0 auto 10px;
	color: #ea580c;
}

.photo-upload-zone strong {
	display: block;
	font-size: 0.94rem;
	color: #ffffff;
	margin-bottom: 4px;
}

.photo-upload-zone small {
	font-size: 0.8rem;
	color: #94a3b8;
}

.photos-preview-strip {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 14px;
}

.preview-thumb {
	position: relative;
	width: 74px;
	height: 74px;
	border-radius: var(--radius-md);
	overflow: hidden;
	border: 2px solid #334155;
}

.preview-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.remove-thumb-btn {
	position: absolute;
	top: 2px;
	right: 2px;
	width: 20px;
	height: 20px;
	background: rgba(0, 0, 0, 0.7);
	color: #ffffff;
	border-radius: 50%;
	font-size: 11px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* CHECKBOX TOGGLES */
.checkbox-card-row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
}

@media (min-width: 600px) {
	.checkbox-card-row {
		grid-template-columns: 1fr 1fr;
	}
}

.checkbox-card {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 12px 14px;
	background: #0f172a;
	border: 1.5px solid #334155;
	border-radius: var(--radius-md);
	cursor: pointer;
	transition: border-color 0.15s;
}

.checkbox-card.checked {
	border-color: #ea580c;
	background: rgba(234, 88, 12, 0.08);
}

.checkbox-card input {
	margin-top: 3px;
	accent-color: #ea580c;
	width: 17px;
	height: 17px;
}

.checkbox-card-text strong {
	display: block;
	font-size: 0.86rem;
	color: #ffffff;
	margin-bottom: 2px;
}

.checkbox-card-text p {
	font-size: 0.76rem;
	color: #94a3b8;
	line-height: 1.35;
}

.quote-submit-btn {
	width: 100%;
	padding: 14px;
	font-size: 1.05rem;
	font-weight: 800;
	background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
	color: #ffffff;
	border-radius: var(--radius-full);
	box-shadow: 0 6px 20px rgba(234, 88, 12, 0.4);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	transition: transform 0.15s, opacity 0.15s;
}

.quote-submit-btn:hover {
	transform: translateY(-2px);
}

.quote-submit-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
}

.whatsapp-alt-box {
	margin-top: 20px;
	padding: 14px;
	background: rgba(37, 211, 102, 0.08);
	border: 1px solid rgba(37, 211, 102, 0.25);
	border-radius: var(--radius-lg);
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
}

.whatsapp-alt-text {
	font-size: 0.86rem;
	color: #e2e8f0;
}

.btn-whatsapp-direct {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	background: #25d366;
	color: #052e16;
	font-weight: 800;
	font-size: 0.86rem;
	border-radius: var(--radius-full);
	transition: opacity 0.15s;
}

.btn-whatsapp-direct:hover {
	opacity: 0.92;
}

/* ========================================================
   USEFUL INFO & SINISTRI ACCIDENT GUIDE
   ======================================================== */
.info-guides-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}

@media (min-width: 900px) {
	.info-guides-grid {
		grid-template-columns: 1.2fr 0.8fr;
	}
}

.guide-steps-card {
	background: #ffffff;
	border: 1px solid var(--border-color);
	border-radius: var(--radius-xl);
	padding: 30px;
	box-shadow: var(--shadow-card);
}

.guide-steps-card h3 {
	font-size: 1.3rem;
	font-weight: 800;
	color: var(--brand-navy);
	margin-bottom: 8px;
}

.guide-steps-card p.intro {
	font-size: 0.94rem;
	color: var(--text-muted);
	margin-bottom: 24px;
}

.timeline-steps {
	display: grid;
	gap: 18px;
}

.step-card-item {
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

.step-number-bubble {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(234, 88, 12, 0.12);
	color: var(--brand-primary);
	font-weight: 800;
	font-size: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.step-card-item h4 {
	font-size: 1rem;
	font-weight: 700;
	color: var(--brand-navy);
	margin-bottom: 4px;
}

.step-card-item p {
	font-size: 0.88rem;
	color: var(--text-muted);
	line-height: 1.5;
}

/* Timing & Insurance Cards */
.insurance-card {
	background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
	color: #ffffff;
	border-radius: var(--radius-xl);
	padding: 26px;
	box-shadow: var(--shadow-card);
	margin-bottom: 20px;
}

.insurance-card h4 {
	font-size: 1.15rem;
	font-weight: 700;
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.insurance-card p {
	font-size: 0.88rem;
	color: #cbd5e1;
	line-height: 1.5;
	margin-bottom: 14px;
}

.insurance-perks {
	list-style: none;
	display: grid;
	gap: 8px;
}

.insurance-perks li {
	font-size: 0.84rem;
	display: flex;
	align-items: center;
	gap: 8px;
	color: #f1f5f9;
}

.insurance-perks svg {
	width: 16px;
	height: 16px;
	color: #4ade80;
	flex-shrink: 0;
}

.timings-card {
	background: #ffffff;
	border: 1px solid var(--border-color);
	border-radius: var(--radius-xl);
	padding: 24px;
	box-shadow: var(--shadow-card);
}

.timings-card h4 {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--brand-navy);
	margin-bottom: 14px;
}

.timing-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 8px 0;
	border-bottom: 1px solid var(--border-color);
	font-size: 0.86rem;
}

.timing-row:last-child {
	border-bottom: none;
}

.timing-row span {
	color: var(--text-muted);
}

.timing-row strong {
	color: var(--brand-navy);
}

/* ========================================================
   ABOUT SECTION (CHI SIAMO)
   ======================================================== */
.about-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 36px;
	align-items: center;
}

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

.about-content h2 {
	font-size: clamp(1.8rem, 3.2vw, 2.35rem);
	font-weight: 800;
	color: var(--brand-navy);
	margin-bottom: 16px;
	line-height: 1.2;
}

.about-content p {
	font-size: 0.98rem;
	color: var(--text-muted);
	line-height: 1.65;
	margin-bottom: 16px;
}

.about-stats-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin: 24px 0;
	padding: 16px 0;
	border-top: 1px solid var(--border-color);
	border-bottom: 1px solid var(--border-color);
}

.about-stat-box strong {
	display: block;
	font-size: 1.8rem;
	font-weight: 800;
	color: var(--brand-primary);
	line-height: 1.1;
}

.about-stat-box span {
	font-size: 0.78rem;
	color: var(--text-subtle);
	line-height: 1.3;
}

.about-visual-card {
	background: #ffffff;
	border: 1px solid var(--border-color);
	border-radius: var(--radius-xl);
	padding: 24px;
	box-shadow: var(--shadow-elevated);
}

.workshop-feature-list {
	list-style: none;
	display: grid;
	gap: 14px;
}

.feature-item-box {
	display: flex;
	gap: 14px;
	align-items: flex-start;
}

.feature-item-icon {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: var(--brand-primary-light);
	color: var(--brand-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	flex-shrink: 0;
}

.feature-item-box strong {
	display: block;
	font-size: 0.94rem;
	color: var(--brand-navy);
	margin-bottom: 2px;
}

.feature-item-box p {
	font-size: 0.84rem;
	color: var(--text-muted);
	line-height: 1.4;
	margin: 0;
}

/* ========================================================
   REVIEWS & TESTIMONIALS
   ======================================================== */
.reviews-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

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

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

.review-card {
	background: #ffffff;
	border: 1px solid var(--border-color);
	border-radius: var(--radius-lg);
	padding: 24px;
	box-shadow: var(--shadow-sm);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.review-stars {
	color: #f59e0b;
	margin-bottom: 12px;
	font-size: 0.95rem;
	letter-spacing: 2px;
}

.review-text {
	font-size: 0.92rem;
	color: var(--brand-slate);
	line-height: 1.55;
	margin-bottom: 18px;
	font-style: italic;
}

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

.author-avatar {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: var(--bg-muted);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	color: var(--brand-navy);
	font-size: 0.85rem;
}

.author-info strong {
	display: block;
	font-size: 0.88rem;
	color: var(--brand-navy);
}

.author-info span {
	font-size: 0.76rem;
	color: var(--text-subtle);
}

/* ========================================================
   CONTACTS, MAP & HOURS (LOCAL FOCUS)
   ======================================================== */
.contact-section-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 28px;
}

@media (min-width: 900px) {
	.contact-section-grid {
		grid-template-columns: 1fr 1fr;
	}
}

.contact-card-info {
	background: #ffffff;
	border: 1px solid var(--border-color);
	border-radius: var(--radius-xl);
	padding: 30px;
	box-shadow: var(--shadow-card);
}

.contact-card-info h3 {
	font-size: 1.35rem;
	font-weight: 800;
	color: var(--brand-navy);
	margin-bottom: 14px;
}

.contact-details-list {
	display: grid;
	gap: 16px;
	margin-bottom: 24px;
}

.contact-row-item {
	display: flex;
	gap: 14px;
	align-items: flex-start;
}

.contact-row-icon {
	width: 38px;
	height: 38px;
	border-radius: 10px;
	background: var(--brand-primary-light);
	color: var(--brand-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.contact-row-text strong {
	display: block;
	font-size: 0.94rem;
	color: var(--brand-navy);
}

.contact-row-text p {
	font-size: 0.88rem;
	color: var(--text-muted);
	line-height: 1.4;
}

.hours-table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 14px;
	background: var(--bg-muted);
	border-radius: var(--radius-md);
	overflow: hidden;
}

.hours-table tr {
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.hours-table tr:last-child {
	border-bottom: none;
}

.hours-table td {
	padding: 9px 12px;
	font-size: 0.85rem;
}

.hours-table td.day-name {
	font-weight: 600;
	color: var(--brand-navy);
	text-transform: capitalize;
}

.hours-table td.hours-val {
	text-align: right;
	color: var(--text-muted);
	font-family: var(--font-mono);
	font-size: 0.82rem;
}

.hours-table tr.today-row {
	background: rgba(234, 88, 12, 0.1);
}

.hours-table tr.today-row td.day-name {
	color: var(--brand-primary);
	font-weight: 800;
}

.hours-table tr.today-row td.day-name::after {
	content: " (Oggi)";
	font-size: 0.72rem;
	font-weight: 700;
}

/* MAP WRAPPER */
.map-embed-wrapper {
	background: #ffffff;
	border: 1px solid var(--border-color);
	border-radius: var(--radius-xl);
	overflow: hidden;
	box-shadow: var(--shadow-card);
	display: flex;
	flex-direction: column;
}

.map-header-tip {
	padding: 16px 20px;
	background: #ffffff;
	border-bottom: 1px solid var(--border-color);
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px;
}

.map-header-tip strong {
	font-size: 0.92rem;
	color: var(--brand-navy);
}

.map-header-tip span {
	font-size: 0.8rem;
	color: var(--text-muted);
}

.map-view-box {
	position: relative;
	width: 100%;
	height: 320px;
	background: #e2e8f0;
}

.map-view-box iframe {
	width: 100%;
	height: 100%;
	border: none;
}

.map-directions-actions {
	padding: 16px 20px;
	background: #ffffff;
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

/* ========================================================
   FOOTER
   ======================================================== */
.site-footer {
	background: #090e17;
	color: #94a3b8;
	padding: 50px 0 26px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	font-size: 0.88rem;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
	margin-bottom: 36px;
}

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

@media (min-width: 992px) {
	.footer-grid {
		grid-template-columns: 1.4fr 1fr 1fr;
	}
}

.footer-brand h4 {
	color: #ffffff;
	font-size: 1.15rem;
	font-weight: 800;
	margin-bottom: 10px;
}

.footer-brand p {
	line-height: 1.6;
	margin-bottom: 16px;
}

.footer-col h5 {
	color: #f1f5f9;
	font-size: 0.95rem;
	font-weight: 700;
	margin-bottom: 14px;
}

.footer-links-list {
	list-style: none;
	display: grid;
	gap: 8px;
}

.footer-links-list a {
	color: #94a3b8;
	transition: color 0.15s;
}

.footer-links-list a:hover {
	color: #ea580c;
}

.footer-bottom {
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	font-size: 0.8rem;
}

/* ========================================================
   MOBILE STICKY ACTION BAR
   ======================================================== */
.mobile-sticky-bar {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: #ffffff;
	border-top: 1px solid var(--border-color);
	padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
	z-index: 999;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 6px;
	box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
}

@media (min-width: 900px) {
	.mobile-sticky-bar {
		display: none;
	}
}

.mobile-action-btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	padding: 6px 4px;
	border-radius: var(--radius-sm);
	font-size: 0.7rem;
	font-weight: 700;
	color: var(--brand-slate);
	text-decoration: none;
	text-align: center;
}

.mobile-action-btn svg {
	width: 20px;
	height: 20px;
}

.mobile-action-btn.btn-call-highlight {
	background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
	color: #ffffff;
	border-radius: var(--radius-md);
}

.mobile-action-btn.btn-call-highlight svg {
	color: #ffffff;
}

.mobile-action-btn.btn-whatsapp-highlight {
	background: rgba(37, 211, 102, 0.12);
	color: #15803d;
	border-radius: var(--radius-md);
}

/* SUCCESS MODAL / ALERT */
.alert-success-banner {
	background: #ecfdf5;
	border: 1.5px solid #10b981;
	border-radius: var(--radius-lg);
	padding: 20px;
	margin-top: 20px;
	display: flex;
	gap: 14px;
	align-items: flex-start;
}

.alert-success-icon {
	color: #059669;
	width: 28px;
	height: 28px;
	flex-shrink: 0;
}

.alert-success-text h4 {
	font-size: 1.05rem;
	font-weight: 800;
	color: #065f46;
	margin-bottom: 4px;
}

.alert-success-text p {
	font-size: 0.88rem;
	color: #047857;
	line-height: 1.5;
}
