/* ===== FONTS (Local) ===== */
@font-face {
    font-family: 'CameraPlainVariable';
    src: url('../fonts/CameraPlainVariable.woff2') format('woff2');
    font-weight: 100 900;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark: #1a1a1a;
    --dark-lighter: #2a2a2a;
    --gold: #0BAEE8;
    --gold-hover: #0996c8;
    --light-bg: #f4f6fa;
    --white: #ffffff;
    --gray: #999;
    --text-light: #ccc;
    --text-dark: #222;
    --text-secondary: #555;
    --max-width: 80%;
    --header-height: 90px;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    font-family: 'CameraPlainVariable', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--white);
}

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

ul { list-style: none; }

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

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

/* ===== HEADER ===== */
.header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #eee;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: 1px;
}

.logo img {
    filter: invert(1);
}

.logo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gold);
    color: var(--dark);
    font-weight: 900;
    font-size: 1.2rem;
    clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%);
}

.header-phone {
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 1rem;
}

.header-phone small {
    display: block;
    font-weight: 400;
    font-size: 0.75rem;
    color: var(--gray);
}

.btn-angebot {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-angebot:hover {
    background: var(--gold);
    color: #fff;
}

/* Navigation */
.nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-top: 1px solid #eee;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav-links a {
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

.nav-links > a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

.nav-links > a:hover::after,
.nav-links > a.active::after {
    width: 100%;
}

/* Dropdown Navigation */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.nav-dropdown-toggle i {
    font-size: 0.6rem;
    transition: transform 0.3s;
}

.nav-dropdown:hover .nav-dropdown-toggle i {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    min-width: 220px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s;
    z-index: 1000;
    margin-top: 12px;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark) !important;
    font-size: 0.88rem !important;
    font-weight: 400 !important;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.nav-dropdown-menu a:hover {
    background: var(--light-bg);
    color: var(--gold) !important;
}

.nav-dropdown-menu a::after {
    display: none !important;
}

/* Notdienst & Kontakt Buttons in Nav */
.nav-notdienst {
    background: rgba(232,64,64,0.15) !important;
    color: #e84040 !important;
    padding: 6px 16px;
    border-radius: 6px;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 0.3s !important;
}

.nav-notdienst:hover {
    background: #e84040 !important;
    color: var(--white) !important;
}

.nav-notdienst::after {
    display: none !important;
}

.nav-kontakt {
    background: var(--gold) !important;
    color: var(--dark) !important;
    padding: 6px 18px;
    border-radius: 6px;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 0.3s !important;
}

.nav-kontakt:hover {
    background: var(--gold-hover) !important;
}

.nav-kontakt::after {
    display: none !important;
}

.nav-info {
    display: flex;
    gap: 20px;
    color: var(--gray);
    font-size: 0.85rem;
}

.nav-info a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--gray);
    transition: color 0.3s;
}

.nav-info a:hover {
    color: var(--gold);
}

/* Header right group */
.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
    -webkit-tap-highlight-color: transparent;
    z-index: 9999;
    position: relative;
}

/* Mobile nav overlay */
.mobile-nav {
    display: none;
    flex-direction: column;
    background: #fff;
    padding: 15px 25px 25px;
    border-top: 1px solid #eee;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.mobile-nav a {
    padding: 12px 15px;
    color: #222;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    transition: background 0.2s;
}

.mobile-nav a:hover {
    background: #f5f5f5;
}

.mobile-nav-sub {
    padding-left: 30px !important;
    font-size: 0.9rem !important;
    color: #666 !important;
}

/* Desktop nav */
.desktop-nav {
    border-top: 1px solid #eee;
}

/* ===== HERO ===== */
.hero {
    background: var(--white);
    padding: 15px 0 40px;
    position: relative;
    overflow: hidden;
}

.hero > .container {
    background: url('../img/haustechnik-hero-hintergrund.jpg') center/cover no-repeat;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    padding: 60px 50px 80px;
}

.hero > .container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.55) 100%);
    z-index: 0;
    border-radius: 20px;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(11,174,232,0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero > * {
    position: relative;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.hero-text h1 span {
    color: var(--gold);
}

.hero-text p {
    color: #ffffff;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 30px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
    max-width: 520px;
}

.hero-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 30px;
    color: var(--text-light);
    font-size: 0.82rem;
    font-weight: 500;
}

.badge i {
    color: var(--gold);
    font-size: 0.9rem;
}

/* Angebot Form Card */
.angebot-card {
    background: var(--white);
    border-radius: 16px;
    padding: 35px 30px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.angebot-card h2 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.angebot-card .subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 0.88rem;
    margin-bottom: 20px;
}

/* Progress Bar */
.progress-bar {
    width: 100%;
    height: 4px;
    background: #e8e8e8;
    border-radius: 2px;
    margin-bottom: 25px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--dark);
    border-radius: 2px;
    transition: width 0.4s ease;
    width: 25%;
}

/* Multi-step Form */
.form-step {
    display: none;
    animation: fadeIn 0.3s ease;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateX(15px); }
    to { opacity: 1; transform: translateX(0); }
}

.angebot-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 15px;
}

.step-option {
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    padding: 18px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    background: var(--white);
}

.step-option:hover,
.step-option.selected {
    border-color: var(--gold);
    background: #e8f6fc;
}

.step-option i {
    font-size: 1.5rem;
    color: var(--gray);
    margin-bottom: 8px;
    display: block;
    transition: color 0.3s;
}

.step-option:hover i,
.step-option.selected i {
    color: var(--gold);
}

.step-option span {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-dark);
    display: block;
}

.notdienst-option {
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    padding: 18px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    background: var(--white);
    color: var(--text-dark);
}

.notdienst-option:hover {
    border-color: var(--gold);
    background: #e8f6fc;
}

.notdienst-option:hover i {
    color: var(--gold);
}

.notdienst-option i {
    font-size: 1.5rem;
    color: var(--gray);
    margin-bottom: 8px;
    display: block;
    transition: color 0.3s;
}

.notdienst-option span {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-dark);
    display: block;
}

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

/* Step Back Button */
.step-back {
    background: none;
    border: none;
    color: var(--gray);
    font-size: 0.85rem;
    cursor: pointer;
    padding: 8px 0;
    margin-top: 8px;
    font-family: inherit;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
}

.step-back:hover {
    color: var(--text-dark);
}

/* Wizard Form (Step 4) */
.wizard-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.wizard-form input[type="text"],
.wizard-form input[type="email"],
.wizard-form input[type="tel"] {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: inherit;
    transition: border-color 0.3s;
    background: var(--white);
}

.wizard-form input:focus {
    outline: none;
    border-color: var(--gold);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-dark);
    cursor: pointer;
    margin: 5px 0;
}

.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--gold);
    cursor: pointer;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: var(--gold);
    color: var(--dark);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: var(--gold-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(11,174,232,0.3);
}

.angebot-note {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 500;
    justify-content: center;
}

/* Generation badge on card */
.generation-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 80px;
    height: 80px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    line-height: 1.2;
    box-shadow: 0 4px 15px rgba(11,174,232,0.4);
}

.generation-badge strong {
    font-size: 0.7rem;
    text-transform: uppercase;
}

/* ===== BRANDS ===== */
.brands-section {
    background: var(--light-bg);
    padding: 30px 0;
    overflow: hidden;
}

.brands-section .section-label {
    text-align: center;
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.brands-track {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: scrollBrands 20s linear infinite;
}

.brands-track span {
    font-size: 1.4rem;
    font-weight: 700;
    color: #aaa;
    white-space: nowrap;
    opacity: 0.6;
}

@keyframes scrollBrands {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== SECTIONS COMMON ===== */
.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--text-dark);
}

/* ===== LEISTUNGEN (Services) ===== */
.leistungen-section {
    padding: 80px 0;
    background: var(--white);
}

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

.leistung-card {
    border: 2px solid #eee;
    border-radius: 14px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    background: var(--white);
    display: block;
}

.leistung-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.leistung-card i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 18px;
    display: block;
}

.leistung-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.leistung-card p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.5;
}

/* ===== PARTNER SECTION ===== */
.partner-section {
    background: var(--dark-lighter);
    padding: 60px 0;
    text-align: center;
}

.partner-section h2 {
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 700;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.4;
}

.partner-section p {
    color: var(--text-light);
    margin-top: 12px;
    font-size: 0.95rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-item strong {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    display: block;
    line-height: 1;
}

.stat-item span {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 6px;
    display: block;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 80px 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.about-image {
    position: relative;
}

.about-image .image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-lighter) 100%);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.about-image .image-placeholder::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 60px;
    background: var(--gold);
    opacity: 0.3;
    transform: rotate(-15deg);
    bottom: 35%;
}

.about-image .image-placeholder::after {
    content: '';
    position: absolute;
    width: 150%;
    height: 60px;
    background: var(--gold);
    opacity: 0.2;
    transform: rotate(-15deg);
    bottom: 25%;
}

.about-image .image-placeholder i {
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.6;
    z-index: 1;
}

.about-image .image-placeholder span {
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 10px;
    z-index: 1;
}

.about-text h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.about-text .owner {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(11,174,232,0.3);
}

/* ===== FAQ ===== */
.faq-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.faq-images {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 0;
}

.faq-img-main {
    width: 100%;
    border-radius: 14px;
    object-fit: cover;
    aspect-ratio: 16/10;
}

.faq-img-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.faq-img-row img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    aspect-ratio: 4/3;
}

.faq-content {
    min-width: 0;
}

.faq-list {
    max-width: 100%;
    margin: 0;
}

.faq-item {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
    border: 1px solid #eee;
}

.faq-question {
    width: 100%;
    padding: 18px 24px;
    background: none;
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-family: inherit;
}

.faq-question i {
    transition: transform 0.3s;
    color: var(--gray);
    font-size: 0.85rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 24px 18px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* ===== MAP / CONTACT ===== */
.einzug-section {
    padding: 60px 0;
    background: var(--light-bg);
}

.einzug-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a5276;
    margin-bottom: 8px;
}

.einzug-subtitle {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 32px;
}

.einzug-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 32px;
    align-items: start;
}

.einzug-map {
    width: 100%;
    height: 420px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #ddd;
    z-index: 1;
}

.einzug-map .leaflet-control-attribution {
    display: none;
}

.map-icon-hq,
.map-icon-busy,
.map-icon-free {
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative;
    background: #fff;
    border: 1.5px solid;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    overflow: visible;
}

.map-icon-hq > i,
.map-icon-busy > i,
.map-icon-free > i {
    font-size: 16px;
    position: relative;
    z-index: 2;
    line-height: 1;
}

.map-icon-hq {
    border-color: var(--gold);
}
.map-icon-hq i { color: var(--gold); }

.map-icon-busy {
    border-color: #c0392b;
}
.map-icon-busy > i { color: #c0392b; }

.map-icon-free {
    border-color: var(--gold);
}
.map-icon-free > i { color: var(--gold); }

/* Mini hammer badge on busy cars */
.mini-hammer {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 18px;
    height: 18px;
    background: #c0392b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #fff;
    z-index: 5;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.mini-hammer i {
    font-size: 10px !important;
    color: #fff !important;
    animation: hammer-swing 1.2s ease-in-out infinite;
}

/* Pulse ring elements - double ring */
.map-pulse,
.map-pulse-red,
.map-pulse-green {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.map-pulse {
    width: 100%;
    height: 100%;
    background: rgba(11,174,232,0.12);
    animation: ring-spread-blue 2.5s ease-out infinite;
}
.map-pulse::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100%; height: 100%;
    border-radius: 50%;
    background: rgba(11,174,232,0.08);
    animation: ring-spread-blue 2.5s ease-out 0.8s infinite;
}

.map-pulse-red {
    width: 100%;
    height: 100%;
    background: rgba(192,57,43,0.15);
    animation: ring-spread-red 2.5s ease-out infinite;
}
.map-pulse-red::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100%; height: 100%;
    border-radius: 50%;
    background: rgba(192,57,43,0.08);
    animation: ring-spread-red 2.5s ease-out 0.8s infinite;
}

.map-pulse-green {
    width: 100%;
    height: 100%;
    background: rgba(11,174,232,0.12);
    animation: ring-spread-blue 2.5s ease-out infinite;
}
.map-pulse-green::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100%; height: 100%;
    border-radius: 50%;
    background: rgba(11,174,232,0.08);
    animation: ring-spread-blue 2.5s ease-out 0.8s infinite;
}

@keyframes ring-spread-red {
    0% { width: 100%; height: 100%; opacity: 1; }
    100% { width: 350%; height: 350%; opacity: 0; }
}

@keyframes ring-spread-green {
    0% { width: 100%; height: 100%; opacity: 1; }
    100% { width: 350%; height: 350%; opacity: 0; }
}

@keyframes ring-spread-blue {
    0% { width: 100%; height: 100%; opacity: 1; }
    100% { width: 350%; height: 350%; opacity: 0; }
}

@keyframes hammer-swing {
    0%, 100% { transform: rotate(0deg); }
    20% { transform: rotate(-25deg); }
    40% { transform: rotate(15deg); }
    60% { transform: rotate(-10deg); }
}

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

.city-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 14px 8px;
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s;
}

.city-card:hover {
    border-color: var(--gold);
    background: #eef7fb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(11,174,232,0.15);
}

.city-card.card-busy {
    background: #fef2f2;
    border-color: #fca5a5;
}

.city-card.card-busy i {
    color: #c0392b;
}


.city-card i {
    color: #e74c3c;
    font-size: 1.1rem;
}

.city-card span {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
}

.einzug-note {
    margin-top: 14px;
    font-size: 0.8rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 6px;
}

.einzug-note i {
    color: var(--gold);
}

.einzug-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #eee;
}

.einzug-contact label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 4px;
}

.einzug-contact p {
    font-size: 0.88rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.5;
}

.fleet-status {
    display: flex;
    gap: 20px;
    margin-top: 16px;
    padding: 12px 16px;
    background: var(--white);
    border-radius: 10px;
    border: 1px solid #e0e0e0;
}

.fleet-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-dark);
}

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

.fleet-dot.busy {
    background: #e74c3c;
}

.fleet-dot.free {
    background: var(--gold);
}

@media (max-width: 768px) {
    .einzug-content {
        grid-template-columns: 1fr;
    }
    .einzug-map {
        height: 350px;
    }
    .einzug-cities {
        display: none;
    }
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border: 2px solid #eee;
    border-radius: 8px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ===== CTA SECTION ===== */
/* ===== REVIEWS SECTION ===== */
.reviews-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.reviews-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.reviews-badge .stars {
    color: var(--gold);
    font-size: 0.75rem;
}

.reviews-badge small {
    color: var(--gray);
    font-size: 0.75rem;
}

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

.review-card {
    background: var(--white);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.04);
}

.review-stars {
    color: var(--gold);
    font-size: 0.85rem;
    margin-bottom: 14px;
}

.review-card p {
    color: var(--text-dark);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.review-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.review-author strong {
    font-size: 0.85rem;
    color: var(--text-dark);
}

.review-author span {
    font-size: 0.75rem;
    color: var(--gray);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--dark);
    padding: 80px 0;
    text-align: left;
}

.cta-section h2 {
    color: var(--white);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 40px;
    max-width: 700px;
    line-height: 1.3;
}

.cta-contacts {
    display: flex;
    gap: 40px;
}

.cta-contact-item {
    text-decoration: none;
    display: block;
}

.cta-contact-item small {
    color: var(--gray);
    font-size: 0.8rem;
    display: block;
    margin-bottom: 6px;
}

.cta-contact-item span {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.cta-contact-item:hover span {
    color: var(--gold);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 30px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-brand h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.footer-brand .footer-contacts {
    display: flex;
    gap: 20px;
    color: var(--gray);
    font-size: 0.85rem;
}

.footer-brand .footer-contacts a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--gray);
    transition: color 0.3s;
}

.footer-brand .footer-contacts a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-bottom span {
    color: var(--gray);
    font-size: 0.8rem;
}

.footer-bottom a {
    color: var(--gray);
    font-size: 0.8rem;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: var(--white);
}

/* ===== LEISTUNG DETAIL PAGE ===== */
.page-hero {
    background: var(--dark);
    padding: 50px 0 60px;
    text-align: center;
}

.page-hero .breadcrumb {
    color: var(--gray);
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.page-hero .breadcrumb a {
    color: var(--gold);
}

.page-hero h1 {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.page-hero p {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

.leistung-detail {
    padding: 60px 0;
}

.leistung-detail-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.leistung-detail-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    margin-top: 35px;
    color: var(--text-dark);
}

.leistung-detail-content h2:first-child {
    margin-top: 0;
}

.leistung-detail-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

.leistung-detail-content ul {
    padding-left: 0;
    margin-bottom: 20px;
}

.leistung-detail-content ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.leistung-detail-content ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.8rem;
}

.sidebar-cta {
    background: var(--light-bg);
    border-radius: 16px;
    padding: 30px;
    position: sticky;
    top: 110px;
}

.sidebar-cta h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.sidebar-cta p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.sidebar-cta .btn-primary {
    width: 100%;
    justify-content: center;
    margin-bottom: 15px;
}

.sidebar-cta .phone-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
}

.sidebar-cta .phone-link i {
    color: var(--gold);
}

/* Related services */
.related-services {
    padding: 60px 0;
    background: var(--light-bg);
}

/* ===== ANGEBOT PAGE ===== */
.angebot-page {
    padding: 60px 0;
    background: var(--light-bg);
}

.angebot-form-full {
    max-width: 100%;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.angebot-form-full h2 {
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.3s;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
}

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

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

.service-select-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 25px;
}

.service-select-grid label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 15px 8px;
    border: 2px solid #eee;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-select-grid label:hover {
    border-color: var(--gold);
}

.service-select-grid input[type="checkbox"] {
    display: none;
}

.service-select-grid input[type="checkbox"]:checked + i {
    color: var(--gold);
}

.service-select-grid input[type="checkbox"]:checked ~ span {
    color: var(--gold);
}

.service-select-grid label:has(input:checked) {
    border-color: var(--gold);
    background: #e8f6fc;
}

.service-select-grid label i {
    font-size: 1.4rem;
    color: var(--gray);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    :root {
        --max-width: 90%;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero > .container {
        padding: 40px 30px 50px;
    }

    .angebot-card {
        max-width: 100%;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .leistung-detail-content {
        grid-template-columns: 1fr;
    }

    .map-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .desktop-nav {
        display: none;
    }

    .header-right .btn-angebot span {
        display: none;
    }

    .nav-links a, .nav-links .nav-dropdown-toggle {
        padding: 10px 12px;
        border-radius: 8px;
        font-size: 0.95rem;
        transition: background 0.2s;
    }

    .nav-links a:hover, .nav-links .nav-dropdown-toggle:hover {
        background: #f5f5f5;
    }

    .nav-info {
        display: none;
    }

    .nav-bar {
        position: relative;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-badges {
        flex-wrap: nowrap;
        gap: 6px;
    }

    .hero-badges .badge {
        font-size: 0.68rem;
        padding: 5px 10px;
        gap: 4px;
        white-space: nowrap;
    }

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

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

    .contact-details {
        grid-template-columns: 1fr;
    }

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

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

    .header-phone small {
        display: none;
    }

    .header-right {
        gap: 10px;
    }

    .header-phone {
        font-size: 0.85rem;
    }

    .btn-angebot {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .faq-layout {
        grid-template-columns: 1fr;
    }

    .faq-images {
        position: static;
    }

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

    .reviews-header {
        flex-direction: column;
        gap: 15px;
    }

    .stats-row {
        gap: 30px;
    }

    .stat-item strong {
        font-size: 2rem;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }

    .cta-contacts {
        flex-direction: column;
        gap: 20px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-brand .footer-contacts {
        justify-content: center;
    }

    .footer-bottom {
        justify-content: center;
    }

    .page-hero h1 {
        font-size: 1.8rem;
    }

    .hero-text > div[style] {
        flex-wrap: wrap;
        gap: 15px !important;
    }
}

@media (max-width: 480px) {
    :root {
        --max-width: 95%;
    }

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

    .header-right {
        gap: 6px;
    }

    .header-phone {
        font-size: 0.78rem;
        gap: 5px;
    }

    .header-phone i {
        font-size: 0.85rem;
    }

    .btn-angebot {
        padding: 7px 10px;
        font-size: 0.75rem;
        gap: 5px;
    }

    .header-contact .btn-angebot span {
        display: none;
    }

    .hero {
        padding: 10px 0 20px;
    }

    .hero > .container {
        padding: 30px 20px 40px;
        border-radius: 14px;
    }

    .hero-text h1 {
        font-size: 1.5rem;
    }

    .hero-text p {
        font-size: 0.9rem;
    }

    .hero-badges {
        gap: 4px;
        flex-wrap: nowrap;
    }

    .hero-badges .badge {
        font-size: 0.6rem;
        padding: 4px 7px;
        gap: 3px;
        white-space: nowrap;
    }

    .hero-badges .badge i {
        font-size: 0.5rem;
    }

    .generation-badge {
        width: 50px;
        height: 50px;
        font-size: 0.45rem;
        right: 5px;
        top: -10px;
    }

    .angebot-card {
        padding: 20px 15px;
    }

    .angebot-title {
        font-size: 1.1rem;
    }

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

    .step-option {
        padding: 12px 6px;
    }

    .step-option span {
        font-size: 0.7rem;
    }

    .step-option i {
        font-size: 1.2rem;
    }

    .stats-row {
        flex-direction: column;
        gap: 20px;
    }

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

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

    /* Prevent horizontal overflow on mobile */
    .header-top {
        flex-wrap: wrap;
        gap: 8px;
    }

    .header-phone strong {
        font-size: 0.72rem;
    }

    .btn-angebot i {
        font-size: 0.75rem;
    }

    .container {
        max-width: 95% !important;
        overflow: hidden;
    }

    .cta-section .container,
    .partner-section .container {
        overflow: visible;
    }

    .map-placeholder iframe {
        width: 100%;
    }

    .faq-img-row {
        flex-direction: column;
    }
}
