@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* =========================
   Basis-Layout und Grid
   ========================= */

/* Container: Begrenzung auf 1440px */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Grid-System */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
}

[class*="col-"] {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    box-sizing: border-box;
}

.col-1  { flex: 0 0 8.3333%; max-width: 8.3333%; }
.col-2  { flex: 0 0 16.6666%; max-width: 16.6666%; }
.col-3  { flex: 0 0 25%; max-width: 25%; }
.col-4  { flex: 0 0 33.3333%; max-width: 33.3333%; }
.col-5  { flex: 0 0 41.6666%; max-width: 41.6666%; }
.col-6  { flex: 0 0 50%; max-width: 50%; }
.col-7  { flex: 0 0 58.3333%; max-width: 58.3333%; }
.col-8  { flex: 0 0 66.6666%; max-width: 66.6666%; }
.col-9  { flex: 0 0 75%; max-width: 75%; }
.col-10 { flex: 0 0 83.3333%; max-width: 83.3333%; }
.col-11 { flex: 0 0 91.6666%; max-width: 91.6666%; }
.col-12 { flex: 0 0 100%; max-width: 100%; }
:root {
    /* Hauptfarben */
    --color-primary:   #002344; /* z.B. Header-Hintergrund */
    --color-secondary: #0071C5; /* Akzentfarbe (CTA, Buttons, Hover) */
    --color-secondary-hover: #005a9e; /* Akzentfarbe dunkler (Hover) */
    --color-background: #ffffff; /* Seitenhintergrund */
    --color-overlay: rgba(0, 0, 0, 0.5); /* Overlay-Hintergrund */

    /* Textfarben */
    --color-text-light: white;
    --color-text-dark: #222;

    /* Highlight Farben (optional) */
    --color-accent: #0071C5; /* Akzentfarbe */
     /* Schriftarten */
     --font-family-base: 'Poppins', sans-serif;

     /* Standard-Schriftgrößen */
     --font-size-base: 16px;
     --font-size-h1: 2.5rem;
     --font-size-h2: 2rem;
     --font-size-h3: 1.50rem;
     --font-size-small: 0.875rem;
     --font-size-nav: 18px;
}
/* =========================
   Basis-Design
   ========================= */

body {
    display: grid;
    grid-template-rows: auto 1fr auto;
    min-height: 100vh;
    font-family: var(--font-family-base);
    font-size: var(--font-size-base);
    margin: 0;
    padding: 0;
    background: var(--color-background);
    color: var(--color-text-dark);
    overflow-x: hidden;
}

header, main, footer {
    padding: 1rem 0;
}
h1 {
    font-size: var(--font-size-h1);
}

h2 {
    font-size: var(--font-size-h2);
}

h3 {
    font-size: var(--font-size-h3);
}

small {
    font-size: var(--font-size-small);
}
/* Hero-Block */
.hero-block {
    position: relative;
    background: url('../img/hero.webp') center center / cover no-repeat;
    color: var(--color-text-light);
    text-align: center;
    padding: 8rem 1rem;
    height: 70vh; /* NEU: mehr Höhe für mehr Wirkung */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Overlay im Hero */
.hero-block .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5); /* NEU: transparenter, 50% */
    z-index: 1;
}

/* Textinhalt */
.hero-block .hero-content {
    position: relative;
    z-index: 2; /* Text liegt über dem Overlay */
    max-width: 800px;
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Überschrift */
.hero-block .hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Textabschnitt */
.hero-block .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Button im Hero */
.hero-block .btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--color-accent);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.2s ease;
}

.hero-block .btn:hover {
    background: #d62828;
    transform: scale(1.05);
}
/* Services-Block */
.services-block {
    background: var(--color-background);
    padding: 4rem 1rem;
    text-align: center;
}

.services-block .row {
    margin-top: 2rem;
}
.services-block h2 {
    margin-bottom: 3rem;
    font-size: var(--font-size-h2);
}
.services-block h3 {
    margin-bottom: 1rem;
}
.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 2rem;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--color-accent);
}
/* Anfangszustand der Animation */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Sichtbar-Zustand */
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
/* Responsive Grid Anpassung */
@media (max-width: 992px) {
    .col-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 600px) {
    .col-1, .col-2, .col-3, .col-4, .col-5, .col-6,
    .col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
        /* H3 Titel kleiner machen */
        .service-card h3 {
            font-size: 1.4rem; /* oder 1.2rem je nach Gefühl */
        }
    
}
/* Kontakt-Block */
.contact-block {
    background: var(--color-primary);
    color: var(--color-text-light);
    text-align: center;
    padding: 4rem 1rem;
}

.contact-block .btn {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: var(--color-accent);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.contact-block .btn:hover {
    background: #d62828;
}
.about-company {
    padding: 6rem 1rem;
    background: var(--color-background);
}

.section-subtitle {
    text-transform: uppercase;
    color: var(--color-accent);
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 1rem;
    margin-bottom: 5px;
    display: inline-block;
}

.about-text h2 {
    font-size: var(--font-size-h2);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: var(--color-text-dark);
}

.facts {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.fact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.fact-item i {
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.fact-item h3 {
    font-size: 2rem;
    margin: 0;
}

.fact-item p {
    font-size: 1rem;
    margin: 0;
}

/* Bildbereich */
.about-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
}

.image-wrapper img {
    width: 100%;
    border-radius: 12px;
    position: relative;
    z-index: 2;
}

.image-border {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border: 0px solid var(--color-accent);
    z-index: 1;
    border-radius: 12px;
}
/* CAll to Action */
.cta-soft {
    background: #f0f4f8;
    text-align: center;
    padding: 5rem 2rem;
    border-radius: 16px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
/* Sichtbar beim Scrollen */
.cta-soft.visible {
    opacity: 1;
    transform: translateY(0);
}
.cta-soft h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #222;
}

.cta-soft p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 2rem;
}

.btn-soft {
    background: var(--color-accent);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.3s ease;
}

.btn-soft:hover {
    background: #d62828;
    transform: scale(1.05);
    transition: background 0.3s ease, transform 0.3s ease;
}
/* Responsive Verhalten */
@media (max-width: 768px) {
    .row {
        flex-direction: column;
    }
    .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .about-image {
        margin-top: 3rem;
    }
}
/* SERVICES SLIDER */
.services-slider-block {
    padding: 6rem 1rem;
    background: var(--color-background);
    text-align: center;
    overflow: hidden;
}

.services-header {
    margin-bottom: 2rem;
    position: relative;
}

.services-header .slider-controls {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    gap: 1rem;
}

.slider-btn {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    padding: 0.5rem;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background 0.3s ease, color 0.3s ease;
}

.slider-btn:hover {
    background: var(--color-primary);
    color: #fff;
}

.services-slider-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    margin-top: 2rem;
    scroll-snap-type: x mandatory; /* NEU: Snap beim Wischen */
    -webkit-overflow-scrolling: touch; /* NEU: Weiches Scrollen auf iOS */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
}

.services-slider {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
}

/* Nur für den neuen Slider */
.slider-service-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    min-width: 300px;
    max-width: 300px;
    flex: 0 0 auto;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    text-align: left;
    transition: transform 0.3s ease;
    scroll-snap-align: start; /* NEU: Snap auf Karte */
}

.services-slider-wrapper::-webkit-scrollbar {
    display: none; /* Safari und Chrome */
}
.slider-service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.slider-service-card .card-content {
    padding: 1.5rem;
}

.slider-service-card .card-content h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.slider-service-card .card-content p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.slider-service-card .read-more {
    text-decoration: none;
    color: var(--color-accent);
    font-weight: bold;
    font-size: 1rem;
}

/* Hover Effekt NUR für Slider Cards */
.slider-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
/* Benefits / Vorteile */
.vorteile-block {
    padding: 6rem 1rem;
    background: #f0f4f8;
    text-align: center;
}

.vorteile-header {
    margin-bottom: 4rem;
}

.vorteile-header .section-subtitle {
    text-transform: uppercase;
    color: var(--color-accent);
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    display: inline-block;
    letter-spacing: 1px;
}

.vorteile-header h2 {
    font-size: var(--font-size-h2);
    color: var(--color-primary);
}

.vorteile-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.vorteil-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    flex: 0 0 22%;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.vorteil-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.vorteil-card i {
    font-size: 3rem;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.vorteil-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.vorteil-card p {
    font-size: 1rem;
    color: #555;
}

/* Responsive */
@media (max-width: 992px) {
    .vorteil-card {
        flex: 0 0 45%;
    }
}

@media (max-width: 600px) {
    .vorteil-card {
        flex: 0 0 100%;
    }
}
/* =========================
   Navigation
   ========================= */

/* Standard Header */
header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: transparent;
    z-index: 1000;
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

/* Wenn Header aktiv wird (nach Scroll) */
header.scrolled {
    background: rgba(0, 0, 0, 0.8); /* <<< Halbtransparenter Hintergrund */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2); /* Sanfter Schatten */
}
/* Wenn Header gescrollt wird */
header.scrolled .nav-container {
    min-height: 60px; /* kleiner */
}

header.scrolled h1 {
    font-size: 1.5rem; /* kleiner */
}
/* (Optional) Abstand bei Telefon und Button anpassen */
header.scrolled .nav-contact {
    gap: 1rem; /* etwas kompakter */
}

header.scrolled .btn-quote {
    padding: 0.6rem 1.2rem; /* Button etwas kleiner */
    font-size: 0.9rem;
}

/* Container im Header */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
    padding: 0.5rem 0;
}
/* Logo */
.nav-container h1 {
    margin: 0;
    padding: 0;
    font-size: 1.8rem;
    line-height: 1;
    transition: font-size 0.3s ease; /* sanfte Font-Verkleinerung */
}
/* Logo links */
.nav-container h1 a {
    color: var(--color-text-light);
    text-decoration: none;
    font-weight: 600;
}
/* Navigation Wrapper */
.nav-wrapper {
    display: flex;
    flex-direction: column;
}

/* Navigation-Links + Toggle zusammen */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}
/* Logo */
.nav-logo img {
    height: 50px; /* oder 40px, je nach Wunsch */
    width: auto;
    display: block;
}
.nav-logo h1 {
    margin: 0;
    font-size: 1.8rem;
}

.nav-logo h1 a {
    color: var(--color-text-light);
    text-decoration: none;
    font-weight: 700;
}
/* Navigation */
nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

nav a {
    color: var(--color-text-light);
    font-size: var(--font-size-nav);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
}

nav a:hover {
    text-decoration: none;
}
/* Navigation Mitte */
.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--color-text-light);
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    font-size: var(--font-size-nav);
}

.nav-menu a:hover {
    text-decoration: underline;
}
/* Dropdown Grundstruktur */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    cursor: pointer;
}

.dropdown-menu {
    position: absolute; /* WICHTIG: Schwebt über allem */
    top: 100%;
    left: 0;
    /* background: var(--color-primary); */
    /* background: (0, 0, 0, 0.7); */
    background: #00000088;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    min-width: 200px;
    z-index: 2000; /* Schwebt über anderem Content */
    backdrop-filter: blur(5px);
}
.dropdown-menu a {
    padding: 0.8rem 1rem;
    color: var(--color-text-light);
    text-decoration: none;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background: var(--color-accent);
}

/* Dropdown sichtbar, wenn Klasse "active" */
.dropdown.active .dropdown-menu {
    display: flex;
}

/* Mobile Anpassung: Klick statt Hover */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: var(--color-primary);
        border-radius: 0;
    }
    .dropdown.active .dropdown-menu {
        display: flex;
    }
}
/* Kontaktbereich Rechts */
.nav-contact {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Telefonbereich */
.phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-light);
}

.phone i {
    font-size: 1.5rem;
}

.phone-info small {
    font-size: 0.8rem;
    color: var(--color-text-light);
    opacity: 0.7;
}
.phone-info a {
    color:#ffffff;
}
.phone-info strong {
    font-size: 1rem;
}

/* Button "Jetzt Anfragen" */
.btn-quote {
    background: var(--color-accent);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-quote:hover {
    background: #d62828; /* dunkler beim Hover */
}
/* Hamburger Toggle-Button */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background: var(--color-secondary);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-left: 1rem;
}

.nav-toggle:hover {
    background: var(--color-secondary-hover);
}

.nav-toggle span {
    background: white;
    display: block;
    height: 3px;
    width: 25px;
    margin: 4px 0;
}

/* Toggle Animation (☰ zu ✖️) */
.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}
/* Floating Button */
#contact-fab {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: var(--color-accent);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    z-index: 2000;
    animation: blink 1.5s infinite;
    cursor: pointer;
}

/* Blinken */
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Kontakt Pop-up */
#contact-popup {
    position: fixed;
    bottom: 90px;
    right: 50px;
    width: 260px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    padding: 1rem;
    display: none;
    flex-direction: column;
    z-index: 2000;
}

#contact-popup h3 {
    margin-top: 0;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.popup-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-primary);
    color: white;
    padding: 0.6rem 1rem;
    margin-bottom: 0.8rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1rem;
}

.popup-link i {
    font-size: 1.2rem;
}

#close-popup {
    background: none;
    border: none;
    color: var(--color-accent);
    text-align: center;
    font-size: 1rem;
    cursor: pointer;
}
#close-popup-x {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--color-accent);
    cursor: pointer;
}

/* Nur auf Mobile sichtbar */
@media (min-width: 769px) {
    #contact-fab, #contact-popup {
        display: none !important;
    }
}
/* =========================
   Overlay Hintergrund
   ========================= */

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-overlay);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
    z-index: 900; /* liegt unter dem Menü */
}

#overlay.show {
    opacity: 1;
    visibility: visible;
}

/* =========================
   Responsive Anpassungen
   ========================= */

/* Tablet und Handy */
@media (max-width: 768px) {
    .col-1, .col-2, .col-3, .col-4, .col-5, .col-6,
    .col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .container {
        padding: 0 1rem;
    }
    .nav-menu,
    .nav-contact {
        display: none;
    }
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100%;
        background: var(--color-primary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        opacity: 0; /* <<< hinzugefügt: Menü ist unsichtbar */
        pointer-events: none; /* <<< Klicks verhindern solange geschlossen */
        transition: right 0.4s ease, opacity 0.4s ease;
        z-index: 1000;
    }

    nav.show {
        position: fixed;
        top: 80px;
        right: 0;
        background: var(--color-primary);
        width: 100%;
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        justify-content: center;
        opacity: 1;
        pointer-events: auto;
    }
    .nav-menu.show {
        display: flex;
    }
    .nav-toggle {
        display: flex;
        margin-right: 30px;
    }

    main {
        padding: 1rem;
    }
}

/* Handy kleiner als 480px */
@media (max-width: 480px) {
    body {
        font-size: 16px;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    nav a {
        font-size: 1.2rem;
    }

    footer {
        font-size: 0.9rem;
    }
}
footer {
    background: var(--color-primary);
    color: var(--color-text-light);
    padding: 4rem 1rem 2rem 1rem;
    font-size: 0.9rem;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}
.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    width: 80%;
    margin-bottom: 1rem;
}

.footer-social a {
    margin-right: 0.5rem;
    color: var(--color-accent);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: white;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--color-accent);
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: var(--color-text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--color-accent);
}

/* Newsletter */
.footer-newsletter {
    display: flex;
    gap: 0.5rem;
}

.footer-newsletter input {
    flex: 1;
    padding: 0.6rem 1rem;
    border: none;
    border-radius: 30px;
    outline: none;
}

.footer-newsletter button {
    background: var(--color-accent);
    border: none;
    padding: 0.6rem 1rem;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
}

.footer-newsletter button:hover {
    background: #d62828;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.8rem;
    gap: 0.5rem;
}
.footer-bottom a {
    color: var(--color-accent);
    text-decoration: none;
}
.footer-links {
    display: flex;
    gap: 1rem;
}

.footer-links a {
    color: var(--color-text-light);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--color-accent);
}
.fade-in-footer {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-footer.visible {
    opacity: 1;
    transform: translateY(0);
}
/* Responsiv anpassen */
@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}
@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr 1fr; /* 2 Spalten auf Tablets */
    }
}

@media (max-width: 480px) {
    .footer-top {
        grid-template-columns: 1fr; /* 1 Spalte auf Handys */
    }
}

/* TextLayout1 */
.textlayout1-block {
    padding: 6rem 1rem;
}

/* Jede Zeile */
.textlayout1-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 2rem;
    margin-bottom: 4rem;
}
/* Bild und Text-Spalten */
.textlayout1-image, .textlayout1-content {
    flex: 0 0 50%;
    max-width: 50%;
}
.textlayout1-content {
    padding: 1rem;
}

.textlayout1-content h2 {
    font-size: var(--font-size-h2);
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.textlayout1-content h3 {
    font-size: var(--font-size-h3);
    margin-bottom: 1rem;
    color: var(--color-accent);
    font-weight: 400;
}

.textlayout1-content p {
    font-size: 1rem;
    color: #555;
}

.textlayout1-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

/* Zeile 2: Reihenfolge umkehren */
.textlayout1-row.reverse {
    flex-direction: row-reverse;
}

.fade-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .textlayout1-row {
        flex-direction: column;
        text-align: center;
    }

    .textlayout1-row.reverse {
        flex-direction: column-reverse;
        text-align: center;
    }

    .textlayout1-image, .textlayout1-content {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
.titlebar-service {
    position: relative;
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-text-light);
    overflow: hidden;
    padding-top: 80px;
}

.titlebar-service .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.titlebar-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    width: 100%;
}

.titlebar-left {
    flex: 0 0 50%;
    text-align: left;
}

.titlebar-left .section-subtitle {
    font-size: 1.5rem;
    text-transform: uppercase;
    color: var(--color-accent);
    letter-spacing: 1px;
    margin-bottom: -1.5rem;
    display: inline-block;
    background-color: #ffffffcb;
    padding: 15px 15px;
    border-radius: 5px;
}

.titlebar-left h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.breadcrumb {
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--color-text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--color-accent);
}

.titlebar-right {
    flex: 0 0 40%;
    font-size: 1rem;
}


/* Mobile Anpassung */
@media (max-width: 768px) {
    .titlebar-content {
        flex-direction: column;
        text-align: center;
    }

    .titlebar-left, .titlebar-right {
        flex: 0 0 100%;
    }

    .titlebar-left h1 {
        font-size: 1.4rem;
        text-align: center;
    }
    .titlebar-left .section-subtitle {
        font-size: 1.0rem;
        text-align: center;
        text-transform: uppercase;
        color: var(--color-accent);
        letter-spacing: 1px;
        margin-bottom: -1.5rem;
        display: inline-block;
        background-color: #ffffffcb;
        padding: 15px 15px;
        border-radius: 5px;
    }
}
.services-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.services-menu li {
    background: #f5f8fc;
    border-radius: 10px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.services-menu li a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    position: relative;
}

.services-menu li .arrow {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

/* Pfeil bei Hover nach rechts kippen */
.services-menu li a:hover .arrow {
    transform: translateX(5px);
}

/* Hover Effekt für Links */
.services-menu li:hover {
    background: var(--color-accent);
}

.services-menu li:hover a {
    color: var(--color-text-light);
}

/* Aktives Menüelement */
.services-menu li.active {
    background: var(--color-accent);
}

.services-menu li.active a {
    color: var(--color-text-light);
}

.services-menu li.active .arrow {
    transform: rotate(180deg); /* Pfeil nach links beim aktiven Menüpunkt */
}

/* PREISE */
.preise-block {
    padding: 6rem 1rem;
    text-align: center;
    background: var(--color-background);
}

.preise-beschreibung {
    max-width: 800px;
    margin: 1rem auto 3rem auto;
    font-size: 1rem;
    color: #555;
}

.preise-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.preis-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 2rem;
    flex: 0 0 300px;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.preis-header {
    background: var(--color-primary);
    color: var(--color-text-light);
    width: 100%;
    padding: 1rem;
    border-radius: 8px 8px 0 0;
    font-size: 1.2rem;
    font-weight: bold;
}

.preis-header small {
    display: block;
    font-size: 0.9rem;
    font-weight: normal;
    margin-top: 0.5rem;
}

.preis {
    margin: 2rem 0 1rem 0;
    font-size: 2rem;
    color: var(--color-primary);
}

.betrag {
    font-size: 2.5rem;
    font-weight: bold;
}

.betrag small {
    font-size: 1.2rem;
}

.pro {
    display: block;
    margin-top: 0.5rem;
    font-size: 1rem;
}

.preis-leistungen {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.preis-leistungen li {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #555;
    border-top: 1px solid #ddd;
    padding-top: 1rem;
}

.btn-cta {
    background: var(--color-accent);
    color: var(--color-text-light);
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn-cta:hover {
    background: var(--color-secondary-hover);
}

/* Featured-Karte (mittlere Hauptkarte hervorheben) */
.preis-card-featured {
    transform: scale(1.04);
    box-shadow: 0 8px 24px rgba(0, 113, 197, 0.18);
    border: 2px solid var(--color-accent);
    position: relative;
}

.preis-card-featured::before {
    content: "Beliebt";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent);
    color: var(--color-text-light);
    font-size: 0.75rem;
    font-weight: bold;
    letter-spacing: 0.5px;
    padding: 0.25rem 0.9rem;
    border-radius: 999px;
    text-transform: uppercase;
}

/* Subtitle für Sektionen innerhalb des Preise-Blocks */
.preise-subtitle {
    margin: 4rem 0 1.5rem 0;
    font-size: 1.75rem;
    color: var(--color-primary);
    text-align: center;
}

/* Tiles für Zusatzleistungen / Entrümpelung */
.preise-tiles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin: 0 auto;
    max-width: 1100px;
}

.preise-tiles:has(.preis-tile:nth-child(3):last-child) {
    grid-template-columns: repeat(3, 1fr);
    max-width: 900px;
}

.preis-tile {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border-top: 3px solid var(--color-accent);
    padding: 1.5rem 1rem;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.preis-tile:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.preis-tile-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.preis-tile-betrag {
    font-size: 1.75rem;
    font-weight: bold;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.preis-tile-betrag span {
    font-size: 1rem;
    font-weight: normal;
    color: #555;
}

.preis-tile-info {
    font-size: 0.85rem;
    color: #777;
}

/* Abschluss-CTA innerhalb des Preise-Blocks */
.preise-cta {
    margin-top: 4rem;
    padding: 2.5rem 1.5rem;
    background: #f5f7fa;
    border-radius: 12px;
    text-align: center;
}

.preise-cta p {
    margin-bottom: 1.5rem;
    color: var(--color-text-dark);
    font-size: 1.05rem;
}

/* Responsive Anpassung */
@media (max-width: 1024px) {
    .preise-tiles {
        grid-template-columns: repeat(2, 1fr) !important;
        max-width: 600px !important;
    }
}

@media (max-width: 768px) {
    .preise-grid {
        flex-direction: column;
        align-items: center;
    }
    .preis-card-featured {
        transform: none;
    }
    .preise-tiles {
        grid-template-columns: 1fr !important;
        max-width: 360px !important;
    }
    .preise-subtitle {
        font-size: 1.5rem;
        margin-top: 3rem;
    }
    .preise-cta {
        padding: 2rem 1rem;
    }
    .preise-cta .btn-cta {
        display: inline-block;
        margin: 0.4rem 0 !important;
    }
}
/* KONTAKT */
.kontaktseite-block {
    padding: 6rem 1rem;
    background: var(--color-background);
}

.kontakt-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.kontakt-intro h2 {
    font-size: var(--font-size-h2);
    margin-bottom: 1rem;
}

.kontakt-intro p {
    font-size: 1.1rem;
    color: #555;
}

/* Grid für Kontaktinfos und Formular */
.kontakt-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 4rem;
    flex-wrap: wrap;
}

/* Boxen für Info und Formular */
.kontakt-infos, .kontakt-formular {
    flex: 0 0 48%;
    max-width: 48%;
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.kontakt-infos h3, .kontakt-formular h3 {
    margin-bottom: 1.5rem;
    font-size: var(--font-size-h3);
}

/* Kontaktinfos: Liste */
.kontakt-infos ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.kontakt-infos ul li {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.kontakt-infos a {
    color: var(--color-primary);
    text-decoration: none;
}

.kontakt-infos a:hover {
    color: var(--color-accent);
}

/* Kontaktformular */
.kontakt-formular form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Eingabefelder und Button */
.kontakt-formular input,
.kontakt-formular textarea,
.kontakt-formular button {
    width: 100%;
    display: block;
    padding: 0.75rem 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    box-sizing: border-box;
}

/* Spezielles für Textarea */
.kontakt-formular textarea {
    resize: vertical;
    min-height: 150px;
}

/* Button-Design */
.kontakt-formular button {
    background: var(--color-accent);
    color: var(--color-text-light);
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.kontakt-formular button:hover {
    background: #c62828;
    transform: scale(1.05);
}

/* Responsive Anpassung */
@media (max-width: 768px) {
    .kontakt-grid {
        flex-direction: column;
        align-items: center;
    }

    .kontakt-infos, .kontakt-formular {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
.formular-fehler {
    background: #ffe0e0;
    color: #b00000;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 2rem;
    font-size: 1rem;
}

/* Danke-Seite */
.danke-block {
    padding: 6rem 1rem;
    text-align: center;
    background: var(--color-background);
}

.danke-block h1 {
    font-size: var(--font-size-h1);
    margin-bottom: 1rem;
}

.danke-block p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* =========================
   BLOG-ÜBERSICHT
   ========================= */
.blog-overview {
    background: var(--color-background);
    padding: 5rem 1rem;
}
.blog-overview h2 {
    text-align: center;
    font-size: var(--font-size-h2);
    color: var(--color-primary);
    margin-bottom: 1rem;
}
.blog-overview-intro {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3.5rem auto;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.7;
}
.blog-grid {
    margin-top: 0;
}
.blog-card {
    margin-bottom: 1.75rem;
}
.blog-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}
.blog-card-link:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 24px rgba(0, 113, 197, 0.12);
    border-color: var(--color-accent);
}
.blog-card-icon {
    background: var(--color-primary);
    color: #fff;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    position: relative;
}
.blog-card-icon::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--color-accent);
}
.blog-card-content {
    padding: 1.5rem 1.5rem 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.blog-card-date {
    font-size: 0.8rem;
    color: var(--color-accent);
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}
.blog-card-content h3 {
    color: var(--color-primary);
    font-size: 1.2rem;
    line-height: 1.35;
    margin-bottom: 0.85rem;
    min-height: 3.2em;
}
.blog-card-content p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    flex: 1;
}
.blog-card-more {
    color: var(--color-accent);
    font-weight: 600;
    font-size: 0.95rem;
    align-self: flex-start;
    transition: gap 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.blog-card-link:hover .blog-card-more {
    gap: 0.7rem;
}

/* =========================
   BLOG-ARTIKEL (Detail)
   ========================= */
.blog-article .left-column {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
    font-size: 0.9rem;
    color: #777;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #eee;
}
.blog-meta i {
    color: var(--color-accent);
    margin-right: 0.4rem;
}
.blog-lead {
    font-size: 1.1rem;
    line-height: 1.75;
    color: #333;
    margin-bottom: 1.75rem;
    padding-left: 1rem;
    border-left: 3px solid var(--color-accent);
}
.blog-article p {
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: #444;
}
.blog-article h3 {
    margin-top: 2.25rem;
    margin-bottom: 0.85rem;
    color: var(--color-primary);
    font-size: 1.3rem;
}
.blog-list {
    padding-left: 1.25rem;
    margin: 1.5rem 0;
    counter-reset: blog-counter;
    list-style: none;
}
.blog-list li {
    position: relative;
    padding-left: 2.75rem;
    margin-bottom: 1.25rem;
    line-height: 1.75;
    color: #444;
    counter-increment: blog-counter;
}
.blog-list li::before {
    content: counter(blog-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 1.9rem;
    height: 1.9rem;
    border-radius: 50%;
    background: var(--color-accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}
.blog-nav {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
    font-size: 0.95rem;
}
.blog-nav a {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}
.blog-nav a:hover {
    color: var(--color-secondary-hover);
}
.sidebar-heading {
    color: var(--color-primary);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-accent);
}

/* Responsive */
@media (max-width: 768px) {
    .blog-article .left-column {
        padding: 1.5rem;
    }
    .blog-card-content h3 {
        min-height: auto;
    }
    .blog-meta {
        gap: 0.75rem;
    }
    .blog-nav {
        flex-direction: column;
    }
    .blog-list li {
        padding-left: 2.5rem;
    }
}

/* =========================
   SERVICE-DETAILSEITEN
   ========================= */
.service-detail .left-column {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.service-detail h2 {
    color: var(--color-primary);
    margin-bottom: 1.25rem;
    font-size: 1.9rem;
}
.service-detail h3 {
    color: var(--color-primary);
    margin-top: 2.25rem;
    margin-bottom: 0.85rem;
    font-size: 1.3rem;
}
.service-detail p {
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: #444;
}
.service-detail .row {
    margin: 1.5rem 0;
}
.service-lead {
    font-size: 1.1rem !important;
    line-height: 1.75 !important;
    color: #333 !important;
    padding-left: 1rem;
    border-left: 3px solid var(--color-accent);
    margin-bottom: 2rem !important;
}
.service-leistungen {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2rem 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem 1.5rem;
}
.service-leistungen li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    color: #444;
    line-height: 1.5;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}
.service-leistungen li i {
    color: var(--color-accent);
    margin-top: 0.2rem;
    flex-shrink: 0;
}
.service-cta-box {
    margin-top: 2.5rem;
    padding: 2rem 1.5rem;
    background: #f5f7fa;
    border-radius: 10px;
    text-align: center;
    border-left: 4px solid var(--color-accent);
}
.service-cta-box h3 {
    margin-top: 0 !important;
}
.service-cta-box p {
    margin-bottom: 1.25rem;
    color: var(--color-text-dark);
}
.services-menu .active {
    background: var(--color-accent);
    color: #fff !important;
    border-radius: 6px;
}
.services-menu .active .arrow {
    color: #fff !important;
}
.sidebar-info {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #eee;
}
.sidebar-info h3 {
    color: var(--color-primary);
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid var(--color-accent);
}
.sidebar-info p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}
.sidebar-info i {
    color: var(--color-accent);
    margin-right: 0.4rem;
    width: 16px;
}
.sidebar-info a {
    color: var(--color-accent);
    text-decoration: none;
}
.sidebar-info a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .service-detail .left-column {
        padding: 1.5rem;
    }
    .service-leistungen {
        grid-template-columns: 1fr;
    }
    .service-cta-box {
        padding: 1.5rem 1rem;
    }
    .service-cta-box .btn-cta {
        display: inline-block;
        margin: 0.4rem 0 !important;
    }
}