/* ==========================================================================
   OG Express - Main Stylesheet
   Modern dark theme transport company website
   Primary: #488ccb | Accent: #fff000 | Background: #10111f
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Custom Properties
   -------------------------------------------------------------------------- */
:root {
	--color-primary: #488ccb;
	--color-accent: #fff000;
	--color-bg: #10111f;
	--color-surface: #1a1c34;
	--color-surface-light: #242747;
	--color-text: #e4e6f0;
	--color-text-muted: #9a9cb8;
	--color-white: #ffffff;
	--color-danger: #ff4d6a;
	--font-sans: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
	--radius-sm: 6px;
	--radius-md: 12px;
	--radius-lg: 20px;
	--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
	--shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
	--shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
	--transition-fast: 0.2s ease;
	--transition-base: 0.3s ease;
	--transition-slow: 0.5s ease;
}

/* --------------------------------------------------------------------------
   2. Reset & Base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

.container,
body,
html {
	margin: 0;
	padding: 0;
	width: 100%;
	max-width: 100%;
	min-height: 100vh;
	background-color: var(--color-bg);
	overflow: visible;
	font-family: var(--font-sans);
	scroll-padding-top: 125px;
	scroll-behavior: smooth;
}

body {
	color: var(--color-text);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* --------------------------------------------------------------------------
   3. Typography
   -------------------------------------------------------------------------- */
h1 {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 700;
	line-height: 1.15;
	margin-bottom: 0.75rem;
	color: var(--color-white);
	text-align: center;
	letter-spacing: -0.02em;
}

h2 {
	font-size: clamp(1.25rem, 3vw, 1.75rem);
	font-weight: 600;
	line-height: 1.2;
	margin-top: 3em;
	color: var(--color-white);
	text-align: center;
}

p {
	font-size: 1rem;
	line-height: 1.7;
	max-width: 650px;
	color: var(--color-text);
	text-align: center;
	padding-top: 0.75rem;
	margin: 0 auto;
}

p.p3 {
	margin-top: 5px;
	padding-top: 0;
}

/* --------------------------------------------------------------------------
   4. Particle Background
   -------------------------------------------------------------------------- */
#particle-div {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

/* --------------------------------------------------------------------------
   5. Main Content Container & Blurred Box
   -------------------------------------------------------------------------- */
.content {
	background: rgba(16, 17, 31, 0.55);
	backdrop-filter: blur(16px) saturate(120%);
	-webkit-backdrop-filter: blur(16px) saturate(120%);
	border: 1px solid rgba(72, 140, 203, 0.1);
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
	position: relative;
	padding: 3rem 2.5rem;
	margin: 20px auto;
	width: 92%;
	max-width: 1200px;
	height: auto;
	border-radius: var(--radius-lg);
	display: flex;
	z-index: 2;
	justify-content: center;
	align-items: center;
	box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.blurred-box {
	width: 100%;
	max-width: 100%;
}

/* --------------------------------------------------------------------------
   6. Horizontal Rules
   -------------------------------------------------------------------------- */
hr.solid {
	border: none;
	border-top: 1px solid rgba(72, 140, 203, 0.25);
	width: 60%;
	margin: 2.5rem auto 1rem;
}

hr.light {
	border: none;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	width: 30%;
	margin: 1rem auto;
}

/* --------------------------------------------------------------------------
   7. Sections
   -------------------------------------------------------------------------- */
#FAQ,
#kontakt,
#main,
#service {
	padding: 1.5rem 1rem;
	color: var(--color-white);
}

/* --------------------------------------------------------------------------
   8. Logo
   -------------------------------------------------------------------------- */
.logosize-container {
	display: flex;
	justify-content: center;
	align-items: center;
}

.logosize {
	display: block;
	margin: 0 auto;
	width: 20%;
	max-width: 80%;
	height: auto;
	transition: transform var(--transition-base), opacity var(--transition-base);
}

/* --------------------------------------------------------------------------
   9. Service Items
   -------------------------------------------------------------------------- */
.service-item {
	font-size: 1rem;
	max-width: 650px;
	color: var(--color-text);
	margin: 0 auto 1rem;
	text-align: left;
	padding: 0.875rem 1.25rem;
	background: rgba(26, 28, 52, 0.5);
	border-radius: var(--radius-sm);
	border-left: 3px solid var(--color-primary);
	transition: transform var(--transition-fast), background var(--transition-fast);
	line-height: 1.6;
}

.service-item:hover {
	transform: translateX(4px);
	background: rgba(26, 28, 52, 0.8);
}

/* --------------------------------------------------------------------------
   10. Partner Logos Grid
   -------------------------------------------------------------------------- */
.partner-container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
	max-width: 800px;
	margin: 2rem auto;
	padding: 1rem;
	align-items: center;
	justify-items: center;
}

.partner-container a,
.partner-container > img {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	background: rgba(26, 28, 52, 0.6);
	border-radius: var(--radius-md);
	border: 1px solid rgba(72, 140, 203, 0.1);
	transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
	width: 100%;
	aspect-ratio: 3 / 2;
	overflow: hidden;
}

.partner-container a:hover,
.partner-container > img:hover {
	transform: translateY(-4px);
	border-color: rgba(72, 140, 203, 0.35);
	box-shadow: 0 8px 20px rgba(72, 140, 203, 0.15);
}

.partner-container .logosize {
	width: 80%;
	max-width: 100%;
	height: auto;
	max-height: 100%;
	object-fit: contain;
	filter: brightness(0.9);
	transition: filter var(--transition-base);
}

.partner-container a:hover .logosize,
.partner-container > img:hover {
	filter: brightness(1.1);
}

/* --------------------------------------------------------------------------
   11. Price Calculator Card
   -------------------------------------------------------------------------- */
.card {
	max-width: 600px;
	margin: 2rem auto;
	background: rgba(26, 28, 52, 0.7);
	border: 1px solid rgba(72, 140, 203, 0.15);
	border-radius: var(--radius-lg);
	padding: 2rem;
	box-shadow: var(--shadow-md);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.field {
	margin-bottom: 1.25rem;
}

.card label {
	display: block;
	margin-bottom: 0.4rem;
	font-weight: 600;
	font-size: 0.9rem;
	color: var(--color-text);
	letter-spacing: 0.02em;
}

.card input,
.card select {
	width: 100%;
	padding: 0.75rem 1rem;
	border-radius: var(--radius-sm);
	border: 1px solid rgba(72, 140, 203, 0.2);
	background: rgba(16, 17, 31, 0.8);
	color: var(--color-white);
	font-size: 1rem;
	font-family: inherit;
	transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
	outline: none;
}

.card input:focus,
.card select:focus {
	border-color: var(--color-primary);
	box-shadow: 0 0 0 3px rgba(72, 140, 203, 0.2);
}

.card input::placeholder {
	color: var(--color-text-muted);
}

.card button,
#calculateBtn {
	width: 100%;
	padding: 0.85rem 1.5rem;
	border-radius: var(--radius-sm);
	border: none;
	background: linear-gradient(135deg, var(--color-primary), #3a7abf);
	color: var(--color-white);
	font-size: 1rem;
	font-weight: 600;
	font-family: inherit;
	cursor: pointer;
	transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-base);
	letter-spacing: 0.02em;
}

.card button:hover,
#calculateBtn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(72, 140, 203, 0.35);
	background: linear-gradient(135deg, #5a9fd6, var(--color-primary));
}

.card button:active,
#calculateBtn:active {
	transform: translateY(0);
}

.card button:disabled {
	background: var(--color-surface);
	cursor: not-allowed;
	opacity: 0.5;
	transform: none;
	box-shadow: none;
}

.result {
	margin-top: 1.5rem;
	background: linear-gradient(135deg, rgba(72, 140, 203, 0.12), rgba(72, 140, 203, 0.05));
	border: 1px solid rgba(72, 140, 203, 0.2);
	padding: 1.25rem 1.5rem;
	border-radius: var(--radius-md);
	animation: fadeSlideIn 0.4s ease-out;
}

.result p {
	text-align: left;
	padding-top: 0.4rem;
	font-size: 1rem;
	max-width: none;
}

.result p strong {
	color: var(--color-primary);
}

.result #price {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--color-accent);
}

/* --------------------------------------------------------------------------
   12. FAQ Accordion
   -------------------------------------------------------------------------- */
.mainfaq-container {
	padding: 1rem 1.25rem;
	color: var(--color-white);
	max-width: 1200px;
	margin: auto;
}

.faq-container {
	color: var(--color-white);
	display: flex;
	justify-content: center;
	align-items: flex-start;
}

.faq-content {
	color: var(--color-white);
	width: 100%;
	max-width: 800px;
	margin: 0.5rem;
}

.faq-title {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--color-white);
	margin-bottom: 0.5rem;
}

.faq-list {
	list-style: none;
	color: var(--color-white);
	padding: 0;
	margin: 0;
}

.faq-item {
	color: var(--color-white);
	margin: 0.625rem 0;
	border-radius: var(--radius-sm);
	overflow: hidden;
	transition: box-shadow var(--transition-base);
}

.faq-item:hover {
	box-shadow: 0 2px 12px rgba(72, 140, 203, 0.1);
}

.faq-question {
	background: rgba(26, 28, 52, 0.7);
	font-size: 1rem;
	font-weight: 500;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	cursor: pointer;
	padding: 1rem 1.25rem;
	color: var(--color-white);
	border-left: 3px solid var(--color-primary);
	transition: background var(--transition-fast), border-color var(--transition-fast);
}

.faq-question:hover {
	background: rgba(26, 28, 52, 0.9);
	border-left-color: var(--color-accent);
}

h2.faq-question {
	margin-top: 0;
	line-height: 1.3;
}

.faq-answer {
	color: var(--color-text);
	border-left: 3px solid var(--color-accent);
	background: rgba(16, 17, 31, 0.4);
	overflow: hidden;
	max-height: 0;
	transition: max-height 0.35s ease-out;
}

.faq-answer p {
	padding: 1rem 1.25rem;
	color: var(--color-text);
	text-align: left;
	font-size: 0.95rem;
	line-height: 1.7;
	max-width: none;
}

/* --------------------------------------------------------------------------
   13. Contact Form
   -------------------------------------------------------------------------- */
.contact {
	border-radius: var(--radius-md);
	background: transparent;
	padding: 1.5rem;
	max-width: 650px;
	margin: 0 auto;
}

.contact label {
	display: block;
	margin-bottom: 0.3rem;
	font-weight: 600;
	font-size: 0.9rem;
	color: var(--color-text);
	letter-spacing: 0.02em;
}

input[type=text],
select,
textarea {
	width: 100%;
	max-height: 250px;
	padding: 0.75rem 1rem;
	background: rgba(16, 17, 31, 0.8);
	border: 1px solid rgba(72, 140, 203, 0.2);
	color: var(--color-white);
	border-radius: var(--radius-sm);
	font-size: 1rem;
	font-family: inherit;
	margin-top: 0.375rem;
	margin-bottom: 1rem;
	resize: none;
	outline: none;
	transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

input[type=text]:focus,
select:focus,
textarea:focus {
	border-color: var(--color-primary);
	box-shadow: 0 0 0 3px rgba(72, 140, 203, 0.2);
}

input[type=text]::placeholder,
textarea::placeholder {
	color: var(--color-text-muted);
}

button[type=button],
input[type=submit] {
	background: linear-gradient(135deg, var(--color-primary), #3a7abf);
	color: var(--color-white);
	padding: 0.75rem 1.5rem;
	border: none;
	border-radius: var(--radius-sm);
	cursor: pointer;
	margin-right: 0.75rem;
	font-size: 1rem;
	font-weight: 600;
	font-family: inherit;
	letter-spacing: 0.02em;
	transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-base);
}

button[type=button]:hover,
input[type=submit]:hover,
input[type=submit]:not(:disabled):hover {
	background: var(--color-accent);
	color: var(--color-bg);
	transform: translateY(-2px);
	box-shadow: 0 4px 16px rgba(255, 240, 0, 0.25);
}

button[type=button]:active,
input[type=submit]:active {
	transform: translateY(0);
}

input[type=submit]:disabled {
	background: var(--color-surface);
	cursor: not-allowed;
	opacity: 0.4;
	transform: none;
	box-shadow: none;
}

.cf-turnstile {
	display: block;
	margin: 0.5rem auto 1rem;
}

.checkbox-container {
	margin-top: 1.25rem;
	display: flex;
	align-items: flex-start;
	color: var(--color-text);
	gap: 0.5rem;
}

.checkbox-container input[type=checkbox] {
	margin-top: 0.25rem;
	accent-color: var(--color-primary);
	min-width: 18px;
	min-height: 18px;
	cursor: pointer;
}

.checkbox-container label {
	font-size: 0.85rem;
	line-height: 1.5;
	color: var(--color-text-muted);
	font-weight: 400;
}

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

.checkbox-wrapper .required-indicator {
	color: var(--color-danger);
	font-weight: 700;
	margin-left: 5px;
	font-size: 1.2em;
}

.required-text {
	color: var(--color-text-muted);
	font-size: 0.85rem;
	text-align: left;
	margin-top: 0.75rem;
}

/* --------------------------------------------------------------------------
   14. Cookie Banner
   -------------------------------------------------------------------------- */
.cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: rgba(26, 28, 52, 0.95);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	color: var(--color-text);
	padding: 1.25rem 1.5rem;
	text-align: center;
	box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.4);
	z-index: 1000;
	display: flex;
	flex-direction: column;
	align-items: center;
	border-top: 1px solid rgba(72, 140, 203, 0.15);
	animation: slideUp 0.4s ease-out;
}

.cookie-banner.hidden {
	display: none;
}

.cookie-banner p {
	margin: 0 0 0.75rem;
	font-size: 0.9rem;
	text-align: center;
	color: var(--color-text-muted);
	max-width: 700px;
}

.cookie-banner button {
	background: linear-gradient(135deg, var(--color-primary), #3a7abf);
	color: var(--color-white);
	border: none;
	padding: 0.6rem 2rem;
	border-radius: var(--radius-sm);
	cursor: pointer;
	font-size: 0.9rem;
	font-weight: 600;
	font-family: inherit;
	transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.cookie-banner button:hover {
	background: var(--color-accent);
	color: var(--color-bg);
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(255, 240, 0, 0.2);
}

/* --------------------------------------------------------------------------
   15. Map
   -------------------------------------------------------------------------- */
#map {
	border-radius: var(--radius-md);
	overflow: hidden;
	border: 1px solid rgba(72, 140, 203, 0.15);
	margin-top: 1.5rem;
}

/* --------------------------------------------------------------------------
   16. Slideshow
   -------------------------------------------------------------------------- */
.slideshow-container {
	max-width: 1000px;
	position: relative;
	margin: auto;
}

/* --------------------------------------------------------------------------
   17. Animations
   -------------------------------------------------------------------------- */
@keyframes fadeSlideIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slideUp {
	from {
		transform: translateY(100%);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

/* --------------------------------------------------------------------------
   17b. Hero
   -------------------------------------------------------------------------- */
.hero {
	position: relative;
	z-index: 2;
	max-width: 1200px;
	margin: 1rem auto 0;
	padding: 5rem 2.5rem 3rem;
	text-align: center;
}

.hero-inner {
	max-width: 820px;
	margin: 0 auto;
	padding: 2.5rem 2.25rem 2.25rem;
	background: linear-gradient(180deg, rgba(16, 17, 31, 0.78) 0%, rgba(12, 13, 24, 0.72) 100%);
	border: 1px solid rgba(72, 140, 203, 0.22);
	border-radius: 18px;
	backdrop-filter: blur(10px) saturate(120%);
	-webkit-backdrop-filter: blur(10px) saturate(120%);
	box-shadow:
		0 20px 60px -20px rgba(0, 0, 0, 0.65),
		0 0 0 1px rgba(255, 255, 255, 0.02) inset;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	padding: 0.45rem 1rem;
	border-radius: 999px;
	background: rgba(72, 140, 203, 0.12);
	border: 1px solid rgba(72, 140, 203, 0.3);
	color: var(--color-text);
	font-size: 0.82rem;
	font-weight: 500;
	letter-spacing: 0.02em;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.pulse-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #22c55e;
	box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
	animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
	0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
	70% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
	100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.hero-title {
	font-size: clamp(2.2rem, 5.5vw, 3.6rem);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.025em;
	margin: 1.5rem auto 1rem;
	color: var(--color-white);
	text-align: center;
	text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.hero-accent {
	background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	display: inline-block;
}

.hero-sub {
	font-size: 1.1rem;
	line-height: 1.65;
	color: var(--color-text-muted);
	max-width: 620px;
	margin: 0 auto 2rem;
	padding: 0;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-cta {
	display: flex;
	gap: 0.85rem;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 3rem;
}

.btn-primary-lg,
.btn-ghost-lg {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.95rem 1.6rem;
	border-radius: 10px;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	letter-spacing: 0.01em;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.25s ease;
	cursor: pointer;
}

.btn-primary-lg {
	background: linear-gradient(135deg, var(--color-primary), #3a7abf);
	color: var(--color-white);
	box-shadow: 0 4px 20px rgba(72, 140, 203, 0.35);
}

.btn-primary-lg:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 28px rgba(72, 140, 203, 0.5);
	background: linear-gradient(135deg, #5a9fd6, var(--color-primary));
}

.btn-ghost-lg {
	background: rgba(26, 28, 52, 0.6);
	color: var(--color-white);
	border: 1px solid rgba(72, 140, 203, 0.3);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.btn-ghost-lg:hover {
	transform: translateY(-2px);
	background: var(--color-accent);
	color: var(--color-bg);
	border-color: var(--color-accent);
	box-shadow: 0 8px 28px rgba(255, 240, 0, 0.25);
}

.hero-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
	max-width: 700px;
	margin: 0 auto;
	padding: 1.5rem;
	background: rgba(26, 28, 52, 0.45);
	border: 1px solid rgba(72, 140, 203, 0.15);
	border-radius: var(--radius-md);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.stat {
	text-align: center;
}

.stat-num {
	font-size: clamp(1.1rem, 2.2vw, 1.5rem);
	font-weight: 800;
	color: var(--color-white);
	letter-spacing: -0.02em;
	line-height: 1.1;
}

.stat-lbl {
	font-size: 0.78rem;
	color: var(--color-text-muted);
	margin-top: 0.25rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   17c. Section heads (eyebrow, title, sub)
   -------------------------------------------------------------------------- */
.section {
	padding: 2.5rem 0;
}

.section-head {
	text-align: center;
	margin-bottom: 2.5rem;
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
}

.section-eyebrow {
	display: inline-block;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--color-primary);
	margin-bottom: 0.75rem;
}

.section-title {
	font-size: clamp(1.6rem, 3.5vw, 2.3rem);
	font-weight: 700;
	line-height: 1.2;
	color: var(--color-white);
	margin: 0 0 0.75rem;
	letter-spacing: -0.02em;
	text-align: center;
}

.section-sub {
	font-size: 1.02rem;
	color: var(--color-text-muted);
	margin: 0 auto;
	max-width: 580px;
	padding: 0;
}

.section-foot {
	text-align: center;
	color: var(--color-text-muted);
	font-size: 0.85rem;
	margin-top: 1.5rem;
	max-width: none;
}

/* --------------------------------------------------------------------------
   17d. Tracking box (modernized)
   -------------------------------------------------------------------------- */
#tracking-box {
	max-width: 560px;
	margin: 0 auto;
	background: linear-gradient(135deg, rgba(26, 28, 52, 0.85), rgba(36, 39, 71, 0.7));
	border: 1px solid rgba(72, 140, 203, 0.25);
	border-radius: var(--radius-lg);
	padding: 2rem;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
}

#tracking-form {
	display: flex;
	gap: 10px;
	align-items: stretch;
}

#tracking-input {
	flex: 1;
	min-width: 0;
	padding: 0.95rem 1.15rem !important;
	font-size: 1.05rem !important;
	text-transform: uppercase;
	letter-spacing: 4px;
	text-align: center;
	background: rgba(16, 17, 31, 0.85) !important;
	border: 1px solid rgba(72, 140, 203, 0.25) !important;
	color: var(--color-white) !important;
	border-radius: 10px !important;
	outline: none;
	font-family: inherit;
	font-weight: 600;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
	margin: 0 !important;
}

#tracking-input:focus {
	border-color: var(--color-primary) !important;
	box-shadow: 0 0 0 4px rgba(72, 140, 203, 0.2);
}

#tracking-input::placeholder {
	color: var(--color-text-muted);
	letter-spacing: 1px;
	font-weight: 400;
}

#tracking-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.95rem 1.5rem;
	background: linear-gradient(135deg, var(--color-primary), #3a7abf);
	color: var(--color-white);
	border: none;
	border-radius: 10px;
	font-size: 0.95rem;
	font-weight: 600;
	cursor: pointer;
	font-family: inherit;
	white-space: nowrap;
	transition: transform 0.2s, box-shadow 0.2s, background 0.25s;
}

#tracking-btn:hover {
	transform: translateY(-2px);
	background: var(--color-accent);
	color: var(--color-bg);
	box-shadow: 0 6px 20px rgba(255, 240, 0, 0.3);
}

#tracking-result .result {
	margin-top: 1.5rem;
	background: linear-gradient(135deg, rgba(72, 140, 203, 0.12), rgba(72, 140, 203, 0.05));
	border: 1px solid rgba(72, 140, 203, 0.2);
	padding: 1.25rem 1.5rem;
	border-radius: 12px;
}

#tracking-result .result p {
	text-align: left;
	padding-top: 0.3rem;
	font-size: 0.95rem;
	max-width: none;
	margin: 0;
}

/* --------------------------------------------------------------------------
   17e. Service grid (replaces stacked .service-item)
   -------------------------------------------------------------------------- */
.service-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.1rem;
	max-width: 1100px;
	margin: 0 auto;
}

.service-card {
	position: relative;
	background: linear-gradient(160deg, rgba(26, 28, 52, 0.75), rgba(36, 39, 71, 0.55));
	border: 1px solid rgba(72, 140, 203, 0.15);
	border-radius: var(--radius-md);
	padding: 1.5rem 1.25rem;
	transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
	overflow: hidden;
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
	opacity: 0;
	transition: opacity 0.25s ease;
}

.service-card:hover {
	transform: translateY(-5px);
	border-color: rgba(72, 140, 203, 0.4);
	box-shadow: 0 14px 36px rgba(0, 0, 0, 0.4);
}

.service-card:hover::before {
	opacity: 1;
}

.service-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: linear-gradient(135deg, rgba(72, 140, 203, 0.18), rgba(72, 140, 203, 0.05));
	border: 1px solid rgba(72, 140, 203, 0.25);
	color: var(--color-primary);
	margin-bottom: 1rem;
	transition: color 0.25s ease, background 0.25s ease;
}

.service-card:hover .service-icon {
	color: var(--color-accent);
	background: linear-gradient(135deg, rgba(255, 240, 0, 0.18), rgba(255, 240, 0, 0.04));
	border-color: rgba(255, 240, 0, 0.3);
}

.service-card h3 {
	font-size: 1.02rem;
	font-weight: 700;
	color: var(--color-white);
	margin: 0 0 0.5rem;
	line-height: 1.3;
}

.service-card h3 sup {
	color: var(--color-accent);
	font-size: 0.7em;
}

.service-card p {
	font-size: 0.88rem;
	line-height: 1.55;
	color: var(--color-text-muted);
	margin: 0;
	padding: 0;
	text-align: left;
	max-width: none;
}

/* --------------------------------------------------------------------------
   17e2. Servicegebiet & Branchen grids
   -------------------------------------------------------------------------- */
.area-grid,
.branch-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.1rem;
	max-width: 1100px;
	margin: 0 auto;
}

.branch-grid {
	grid-template-columns: repeat(3, 1fr);
}

.area-card,
.branch-card {
	background: linear-gradient(160deg, rgba(26, 28, 52, 0.75), rgba(36, 39, 71, 0.55));
	border: 1px solid rgba(72, 140, 203, 0.15);
	border-radius: var(--radius-md);
	padding: 1.4rem 1.25rem;
	transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.area-card:hover,
.branch-card:hover {
	transform: translateY(-3px);
	border-color: rgba(72, 140, 203, 0.4);
	box-shadow: 0 10px 30px -15px rgba(72, 140, 203, 0.4);
}

.area-card h3,
.branch-card h3 {
	font-size: 1rem;
	font-weight: 700;
	color: var(--color-white);
	margin: 0 0 0.5rem;
	line-height: 1.3;
}

.area-card p,
.branch-card p {
	font-size: 0.88rem;
	line-height: 1.55;
	color: var(--color-text-muted);
	margin: 0;
	text-align: left;
	max-width: none;
}

/* --------------------------------------------------------------------------
   17f. Partner grid (new card style, replaces old .partner-grid inline)
   -------------------------------------------------------------------------- */
.partner-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 1rem;
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 1rem;
}

.partner-card {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.25rem;
	background: rgba(26, 28, 52, 0.5);
	border: 1px solid rgba(72, 140, 203, 0.12);
	border-radius: var(--radius-md);
	aspect-ratio: 3 / 2;
	transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
	text-decoration: none;
}

.partner-card img {
	max-width: 90%;
	max-height: 90%;
	width: auto;
	height: auto;
	object-fit: contain;
	filter: brightness(0.85) saturate(0.9);
	transition: filter 0.25s ease, transform 0.25s ease;
}

.partner-card:hover {
	transform: translateY(-4px);
	border-color: rgba(72, 140, 203, 0.4);
	box-shadow: 0 10px 28px rgba(72, 140, 203, 0.18);
}

.partner-card:hover img {
	filter: brightness(1.05) saturate(1.1);
	transform: scale(1.04);
}

/* --------------------------------------------------------------------------
   17g. FAQ accordion (button-based + open state)
   -------------------------------------------------------------------------- */
.faq-list {
	max-width: 780px;
	margin: 0 auto;
	padding: 0;
	list-style: none;
}

.faq-item {
	margin-bottom: 0.625rem;
	border-radius: var(--radius-md);
	overflow: hidden;
	background: rgba(26, 28, 52, 0.6);
	border: 1px solid rgba(72, 140, 203, 0.12);
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item:hover {
	border-color: rgba(72, 140, 203, 0.3);
	box-shadow: 0 4px 14px rgba(72, 140, 203, 0.12);
}

button.faq-question {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	padding: 1.15rem 1.4rem;
	background: transparent;
	border: none;
	border-left: 3px solid var(--color-primary);
	color: var(--color-white);
	font-size: 0.98rem;
	font-weight: 500;
	font-family: inherit;
	text-align: left;
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease;
	margin: 0;
	border-radius: 0;
	letter-spacing: 0.01em;
}

button.faq-question:hover {
	background: rgba(72, 140, 203, 0.08);
	border-left-color: var(--color-accent);
}

.faq-item.open button.faq-question {
	border-left-color: var(--color-accent);
	background: rgba(72, 140, 203, 0.08);
}

/* --------------------------------------------------------------------------
   17h. Misc
   -------------------------------------------------------------------------- */
.card-hint {
	font-size: 0.8rem;
	color: var(--color-text-muted);
	margin-top: 0.65rem;
	text-align: center;
	max-width: none;
	padding: 0;
}

/* --------------------------------------------------------------------------
   18. Responsive - Tablet (max 768px)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
	.partner-container {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}

	.content {
		padding: 2rem 1.5rem;
		width: 95%;
		border-radius: var(--radius-md);
	}

	.card {
		padding: 1.5rem;
	}

	.faq-question {
		font-size: 0.95rem;
		padding: 0.875rem 1rem;
	}

	.hero {
		padding: 3.5rem 1.5rem 2rem;
	}

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

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

	.partner-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.hero-stats {
		grid-template-columns: repeat(4, 1fr);
		padding: 1.1rem 0.75rem;
		gap: 0.5rem;
	}

	button.faq-question {
		padding: 1rem 1.1rem;
		font-size: 0.94rem;
	}
}

/* --------------------------------------------------------------------------
   19. Responsive - Mobile (max 640px)
   -------------------------------------------------------------------------- */
@media (max-width: 640px) {
	.content,
	body {
		height: auto;
	}

	.content {
		padding: 1.5rem 1rem;
		width: 96%;
		margin: 10px auto;
	}

	hr.solid {
		width: 80%;
		margin-top: 1.5rem;
	}

	p {
		margin-top: 0.75rem;
		font-size: 0.95rem;
		padding: 0 0.5rem;
	}

	.logosize-container {
		margin-right: auto;
		margin-left: auto;
	}

	.logosize {
		width: 60%;
		max-width: 450px;
		margin-bottom: 10px;
		display: block;
	}

	body {
		background-color: var(--color-bg);
		width: 100%;
		max-width: 100%;
		max-height: 100%;
		padding-bottom: 20px;
	}

	#kontakt,
	#main,
	#service {
		padding: 0.75rem;
	}

	h1 {
		font-size: 1.5rem;
	}

	.partner-container {
		grid-template-columns: repeat(2, 1fr);
		gap: 0.75rem;
		padding: 0.5rem;
	}

	.partner-container a,
	.partner-container > img {
		padding: 0.75rem;
	}

	.service-item {
		font-size: 0.9rem;
		padding: 0.75rem 1rem;
		margin-bottom: 0.75rem;
	}

	.hero {
		padding: 2.5rem 1rem 1.5rem;
	}

	.hero-inner {
		padding: 1.75rem 1.25rem 1.5rem;
		border-radius: 14px;
	}

	.hero-title {
		font-size: 2rem;
	}

	.hero-sub {
		font-size: 0.98rem;
	}

	.hero-cta {
		flex-direction: column;
		gap: 0.65rem;
		margin-bottom: 2rem;
	}

	.btn-primary-lg,
	.btn-ghost-lg {
		justify-content: center;
		width: 100%;
	}

	.hero-stats {
		grid-template-columns: repeat(2, 1fr);
		gap: 0.85rem;
		padding: 1rem;
	}

	.section {
		padding: 1.5rem 0;
	}

	.section-head {
		margin-bottom: 1.75rem;
	}

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

	.service-card {
		padding: 1.15rem 1rem;
	}

	.service-icon {
		width: 40px;
		height: 40px;
	}

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

	.partner-card {
		padding: 1rem;
	}

	#tracking-box {
		padding: 1.5rem;
	}

	#tracking-form {
		flex-direction: column;
	}

	#tracking-btn {
		justify-content: center;
	}

	.card {
		padding: 1.25rem;
		border-radius: var(--radius-md);
	}

	.faq-question {
		font-size: 0.9rem;
		padding: 0.75rem 1rem;
	}

	.faq-answer p {
		font-size: 0.9rem;
		padding: 0.75rem 1rem;
	}

	.contact {
		padding: 0.75rem;
	}

	.cookie-banner {
		padding: 1rem;
	}

	.cookie-banner p {
		font-size: 0.8rem;
	}
}

/* --------------------------------------------------------------------------
   20. Responsive - Small Mobile (max 400px)
   -------------------------------------------------------------------------- */
@media (max-width: 400px) {
	.content {
		padding: 1rem 0.75rem;
		border-radius: var(--radius-sm);
	}

	.partner-container {
		grid-template-columns: 1fr 1fr;
		gap: 0.5rem;
	}

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

	.area-grid,
	.branch-grid {
		grid-template-columns: 1fr;
	}

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

	.hero-title {
		font-size: 1.7rem;
	}

	.card {
		padding: 1rem;
	}

	button[type=button],
	input[type=submit] {
		width: 100%;
		margin-right: 0;
		margin-bottom: 0.5rem;
	}
}
