/* =========================================
   CSS für Steege Autopartner
   Mobile First Approach
   ========================================= */

/* =========================================
   CSS RESET & BASE STYLES
   ========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #2d2d2d;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #e30613;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #b30510;
}

ul {
    list-style: none;
}

/* =========================================
   UTILITY CLASSES
   ========================================= */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   HEADER & NAVIGATION
   ========================================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
    overflow: visible;
}

.header__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    overflow: visible;
}

/* CTA Button in Header - Volle Breite auf Mobile */
.header__cta {
    order: -1;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
}

.header__logo a {
    font-size: 20px;
    font-weight: 700;
    color: #e30613;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.header__logo a:hover {
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

/* SVG Logo Styling */
.header__logo-img {
    height: 40px;
    width: auto;
    display: block;
}

/* Navigation - Mobile First */
.nav {
    position: fixed;
    top: 120px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 120px);
    background-color: #ffffff;
    transition: left 0.3s ease;
    overflow-y: auto;
}

.nav--active {
    left: 0;
}

.nav__list {
    display: flex;
    flex-direction: column;
    padding: 20px 0;
}

.nav__item {
    border-bottom: 1px solid #f0f0f0;
}

.nav__link {
    display: block;
    padding: 15px 20px;
    color: #2d2d2d;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav__link:hover {
    background-color: #f8f8f8;
    color: #e30613;
}

/* Highlighted Nav Link (e.g., Schaden melden) */
.nav__link--highlight {
    background-color: #fff3f4;
    color: #e30613;
    font-weight: 600;
}

.nav__link--highlight:hover {
    background-color: #e30613;
    color: #ffffff;
}

/* Burger Menu */
.burger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.burger__line {
    width: 30px;
    height: 3px;
    background-color: #2d2d2d;
    transition: all 0.3s ease;
}

.burger--active .burger__line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.burger--active .burger__line:nth-child(2) {
    opacity: 0;
}

.burger--active .burger__line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* =========================================
   MEGA MENU
   ========================================= */

/* Megamenü Parent Item */
.nav__item--mega {
    position: relative;
}

.nav__item--dropdown {
    position: relative;
}

.nav__link--mega,
.nav__link--dropdown {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.nav__arrow {
    transition: transform 0.3s ease;
    stroke: currentColor;
}

.nav__item--mega.mega-menu--active .nav__arrow,
.nav__item--dropdown.dropdown--active .nav__arrow {
    transform: rotate(180deg);
}

/* Megamenü Container (Mobile First) */
.mega-menu {
    display: none;
    background-color: #f8f8f8;
    border-top: 1px solid #e0e0e0;
    padding: 15px 0;
}

.nav__item--mega.mega-menu--active > .mega-menu {
    display: block;
}

.mega-menu__container {
    width: 100%;
}

.mega-menu__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

/* Megamenü Item */
.mega-menu__item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    color: #2d2d2d;
    text-decoration: none;
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.3s ease;
}

.mega-menu__item:last-child {
    border-bottom: none;
}

.mega-menu__item:hover {
    background-color: #ffffff;
}

.mega-menu__icon {
    font-size: 32px;
    line-height: 1;
    flex-shrink: 0;
    color: #e30613;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, color 0.3s ease;
}

.mega-menu__content {
    flex: 1;
}

.mega-menu__title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #2d2d2d;
    transition: color 0.3s ease;
}

.mega-menu__item:hover .mega-menu__title {
    color: #e30613;
}

.mega-menu__item:hover .mega-menu__icon {
    transform: scale(1.1);
    color: #b30510;
}

.mega-menu__desc {
    font-size: 13px;
    line-height: 1.4;
    color: #666;
    margin: 0;
}

/* =========================================
   DROPDOWN MENU (Über uns)
   ========================================= */

/* Mobile-First */
.dropdown-menu {
    display: none;
    background-color: #f8f8f8;
    border-top: 1px solid #e0e0e0;
    padding: 0;
}

.nav__item--dropdown.dropdown--active > .dropdown-menu {
    display: block;
}

.dropdown-menu__item {
    display: block;
    padding: 12px 20px 12px 40px;
    color: #2d2d2d;
    text-decoration: none;
    font-size: 15px;
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-menu__item:last-child {
    border-bottom: none;
}

.dropdown-menu__item:hover {
    background-color: #fff5f5;
    color: #e30613;
}

/* =========================================
   BUTTONS
   ========================================= */

.btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn--primary {
    background-color: #e30613;
    color: #ffffff;
    border-color: #e30613;
}

.btn--primary:hover {
    background-color: #b30510;
    border-color: #b30510;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(227, 6, 19, 0.3);
}

.btn--secondary {
    background-color: transparent;
    color: #e30613;
    border-color: #e30613;
}

.btn--secondary:hover {
    background-color: #e30613;
    color: #ffffff;
}

/* Secondary Button auf rotem Hintergrund */
.section--cta .btn--secondary {
    background-color: #ffffff;
    color: #e30613;
    border-color: #ffffff;
}

.section--cta .btn--secondary:hover {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.btn--large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn--full {
    width: 100%;
}

/* =========================================
   SECTIONS
   ========================================= */

.section {
    padding: 60px 0;
}

.section--light {
    background-color: #f8f8f8;
}

.section--dark {
    background-color: #2d2d2d;
    color: #ffffff;
}

.section--accent {
    background-color: #fff5f5;
}

.section--cta {
    background: linear-gradient(135deg, #e30613 0%, #b30510 100%);
    color: #ffffff;
    text-align: center;
}

.section__title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    color: inherit;
}

.section__intro {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 800px;
}

.section__summary {
    font-size: 18px;
    line-height: 1.8;
    margin-top: 40px;
    max-width: 800px;
}

/* =========================================
   HERO SECTION
   ========================================= */

.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg, rgba(0, 51, 102, 0.95) 0%, rgba(0, 51, 102, 0.7) 50%, rgba(204, 0, 0, 0.8) 100%),
        url('https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?w=1920&q=80') center/cover no-repeat;
    z-index: 1;
}

.animated-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    animation: float 20s infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: rgba(204, 0, 0, 0.1);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    bottom: -50px;
    left: -50px;
    animation-delay: -5s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: rgba(0, 51, 102, 0.2);
    top: 50%;
    left: 30%;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -30px) rotate(90deg); }
    50% { transform: translate(0, -50px) rotate(180deg); }
    75% { transform: translate(-30px, -30px) rotate(270deg); }
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    color: #fff;
}

.badge {
    display: inline-block;
    background: rgba(204, 0, 0, 0.9);
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    animation: slideInLeft 0.8s ease-out;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 5.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 15px;
    color: #fff;
    animation: slideInLeft 0.8s ease-out 0.2s both;
}

.hero-title span {
    color: #CC0000;
    display: block;
    font-size: inherit;
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 30px;
    opacity: 0.9;
    animation: slideInLeft 0.8s ease-out 0.4s both;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.85;
    max-width: 500px;
    animation: slideInLeft 0.8s ease-out 0.6s both;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    animation: slideInLeft 0.8s ease-out 0.8s both;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    background: #CC0000;
    color: #fff;
    box-shadow: 0 10px 30px rgba(204, 0, 0, 0.4);
}

.btn-primary:hover {
    background: #ff1a1a;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(204, 0, 0, 0.5);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.hero-visual {
    position: relative;
    animation: slideInRight 1s ease-out 0.5s both;
}

.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.car-image {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}

.feature-icon {
    width: 45px;
    height: 45px;
    background: rgba(204, 0, 0, 0.8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.feature-text {
    font-size: 0.9rem;
    font-weight: 500;
}

.floating-badge {
    position: absolute;
    background: #fff;
    color: #003366;
    padding: 15px 25px;
    border-radius: 15px;
    font-weight: 700;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    animation: pulse 3s infinite;
}

.badge-top {
    top: -20px;
    right: 20px;
    font-size: 0.9rem;
}

.badge-bottom {
    bottom: -20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating {
    color: #FFD700;
    font-size: 1.1rem;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #fff;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 13px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: #fff;
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

@keyframes scroll {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.3; transform: translateX(-50%) translateY(6px); }
}

/* =========================================
   GRID LAYOUTS
   ========================================= */

.grid {
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr;
}

.grid--3col {
    grid-template-columns: 1fr;
}

/* =========================================
   CARDS
   ========================================= */

.card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card__image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card__content {
    padding: 24px;
}

.card__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2d2d2d;
}

.card__text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
    color: #4d4d4d;
}

.card__link {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: #e30613;
    transition: color 0.3s ease;
}

.card__link:hover {
    color: #b30510;
}

/* =========================================
   PAIN POINTS SECTION
   ========================================= */

.pain-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 30px;
}

.pain-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 24px;
    text-align: center;
    transition: background-color 0.3s ease;
}

.pain-card:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

.pain-card__icon {
    font-size: 40px;
    margin-bottom: 15px;
    text-align: center;
    display: block;
}

.pain-card__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
}

.pain-card__text {
    font-size: 16px;
    line-height: 1.6;
    color: #e0e0e0;
}

/* =========================================
   USP SECTION
   ========================================= */

.usp-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.usp-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.usp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.usp-card__icon {
    font-size: 48px;
    margin-bottom: 15px;
    text-align: center;
    display: block;
}

.usp-card__title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2d2d2d;
}

.usp-card__text {
    font-size: 16px;
    line-height: 1.7;
    color: #4d4d4d;
}

/* =========================================
   TESTIMONIALS
   ========================================= */

.testimonials {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.testimonial {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.testimonial__stars {
    color: #ffa500;
    font-size: 20px;
    margin-bottom: 15px;
}

.testimonial__quote {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
    color: #2d2d2d;
}

.testimonial__author {
    font-size: 15px;
    color: #666;
}

.trust-badges {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.trust-badge__icon {
    font-size: 40px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
}

.trust-badge__text {
    font-size: 16px;
    line-height: 1.5;
}

/* =========================================
   FAQ SECTION
   ========================================= */

.faq {
    max-width: 800px;
    margin: 0 auto;
}

.faq__item {
    background-color: #ffffff;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.faq__question {
    font-size: 18px;
    font-weight: 600;
    padding: 20px 24px;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq__question::-webkit-details-marker {
    display: none;
}

.faq__question::after {
    content: '+';
    font-size: 24px;
    font-weight: 700;
    color: #e30613;
    transition: transform 0.3s ease;
}

.faq__item[open] .faq__question::after {
    transform: rotate(45deg);
}

.faq__question:hover {
    background-color: #f8f8f8;
}

.faq__answer {
    padding: 0 24px 20px 24px;
}

.faq__answer p {
    font-size: 16px;
    line-height: 1.7;
    color: #4d4d4d;
}

/* =========================================
   CTA SECTION
   ========================================= */

.benefits-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 30px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-list__item {
    font-size: 18px;
    font-weight: 500;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

/* =========================================
   CONTACT SECTION
   ========================================= */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

/* Contact Info */
.contact-block {
    margin-bottom: 30px;
}

.contact-block__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2d2d2d;
}

.contact-block__text {
    font-size: 16px;
    line-height: 1.8;
    color: #4d4d4d;
}

.contact-block__text a {
    color: #e30613;
    text-decoration: none;
}

.contact-block__text a:hover {
    text-decoration: underline;
}

.contact-block--highlight {
    background-color: #e30613;
    color: #ffffff;
    padding: 20px;
    border-radius: 8px;
}

.contact-block--highlight .contact-block__title {
    color: #ffffff;
}

.contact-hotline {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff !important;
    text-decoration: none !important;
}

.contact-map {
    margin-top: 30px;
}

.map-placeholder {
    background-color: #e0e0e0;
    padding: 60px 20px;
    border-radius: 8px;
    text-align: center;
    color: #666;
}

/* Contact Form */
.contact-form-wrapper {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.form-message {
    padding: 16px 20px;
    margin-bottom: 25px;
    border-radius: 4px;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
}

.form-message--success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.form-message--error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2d2d2d;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 4px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: #e30613;
}

.form-input--textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group--checkbox {
    margin-top: 25px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-checkbox__text {
    font-size: 14px;
    line-height: 1.6;
    color: #4d4d4d;
}

.form-checkbox__text a {
    color: #e30613;
    text-decoration: underline;
}

/* =========================================
   FOOTER
   ========================================= */

.footer {
    background-color: #2d2d2d;
    color: #ffffff;
    padding: 50px 0 20px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer__column {
    margin-bottom: 20px;
}

.footer__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer__text {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #cccccc;
}

.footer__text a {
    color: #ffffff;
    text-decoration: none;
}

.footer__text a:hover {
    color: #e30613;
}

.footer__links {
    list-style: none;
}

.footer__links li {
    margin-bottom: 10px;
}

.footer__links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer__links a:hover {
    color: #e30613;
}

.footer__copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
    font-size: 14px;
}

/* =========================================
   RESPONSIVE DESIGN - TABLET (768px+)
   ========================================= */

@media (min-width: 768px) {
    /* Typography */
    .section__title {
        font-size: 36px;
    }

    /* Hero Responsive - Tablet */
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0 30px;
    }

    .hero-text {
        order: 1;
    }

    .hero-visual {
        order: 2;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-title {
        font-size: 4rem;
    }

    .hero-description {
        max-width: 100%;
    }

    .cta-buttons {
        justify-content: center;
    }

    .floating-badge {
        display: none;
    }

    .glass-card {
        padding: 25px;
    }

    /* Navigation */
    .burger {
        display: none;
    }

    /* Logo größer auf Tablet/Desktop */
    .header__logo-img {
        height: 50px;
    }

    .nav {
        position: static;
        height: auto;
        width: auto;
        background: transparent;
        overflow: visible;
    }

    .nav__list {
        flex-direction: row;
        padding: 0;
        overflow: visible;
    }

    .nav__item {
        border-bottom: none;
    }

    .nav__link {
        padding: 10px 15px;
    }

    .header__cta {
        display: inline-block;
        order: 0;
        width: auto;
        margin-bottom: 0;
    }

    /* Megamenü Desktop Styles */
    .nav__item--mega,
    .nav__item--dropdown {
        position: relative;
    }

    .mega-menu {
        position: absolute;
        top: 100%;
        left: 50%;
        width: 900px;
        max-width: 90vw;
        background-color: #ffffff;
        border: none;
        border-radius: 0 0 8px 8px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        padding: 0;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
        transform: translateX(-50%) translateY(-10px);
        z-index: 10000;
        pointer-events: none;
    }

    .nav__item--mega.mega-menu--active > .mega-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
        pointer-events: auto;
    }

    .mega-menu__container {
        padding: 30px;
    }

    .mega-menu__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .mega-menu__item {
        padding: 20px;
        border-radius: 8px;
        border: 1px solid #f0f0f0;
        border-bottom: 1px solid #f0f0f0;
        transition: all 0.3s ease;
    }

    .mega-menu__item:hover {
        background-color: #fff5f5;
        border-color: #e30613;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(227, 6, 19, 0.1);
    }

    .mega-menu__icon {
        font-size: 40px;
    }

    .mega-menu__title {
        font-size: 18px;
    }

    .mega-menu__desc {
        font-size: 14px;
    }

    /* Dropdown Menu - Desktop */
    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 200px;
        background-color: #ffffff;
        border: none;
        border-radius: 0 0 8px 8px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        padding: 8px 0;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
        transform: translateY(-10px);
        z-index: 10000;
        pointer-events: none;
    }

    .nav__item--dropdown.dropdown--active > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .dropdown-menu__item {
        padding: 10px 20px;
        border-bottom: none;
        font-size: 15px;
    }

    .dropdown-menu__item:hover {
        background-color: #fff5f5;
        color: #e30613;
    }

    /* Hero Section */
    .hero__container {
        flex-direction: row;
        align-items: center;
    }

    .hero__content {
        flex: 1;
        order: 1;
    }

    .hero__image {
        flex: 1;
        order: 2;
    }

    .hero__buttons {
        flex-direction: row;
    }

    /* Grid Layouts */
    .grid--3col {
        grid-template-columns: repeat(2, 1fr);
    }

    .pain-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .usp-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-badges {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }

    /* Contact Section */
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }

    /* Footer */
    .footer__grid {
        grid-template-columns: 2fr 1fr;
    }
}

/* =========================================
   RESPONSIVE DESIGN - DESKTOP (1024px+)
   ========================================= */

@media (min-width: 1024px) {
    /* Megamenü Desktop Large */
    .mega-menu {
        width: 1000px;
    }

    .mega-menu__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    /* Sections */
    .section {
        padding: 80px 0;
    }

    /* Typography */
    .section__title {
        font-size: 42px;
    }

    /* Logo noch größer auf Desktop */
    .header__logo-img {
        height: 55px;
    }

    /* Hero Responsive - Desktop */
    .hero-content {
        grid-template-columns: 1fr 1fr;
        text-align: left;
        padding: 0 50px;
    }

    .hero-text {
        order: 0;
    }

    .hero-visual {
        order: 0;
        max-width: none;
    }

    .hero-title {
        font-size: 6rem;
    }

    .hero-description {
        max-width: 500px;
    }

    .cta-buttons {
        justify-content: flex-start;
        flex-direction: row;
    }

    .floating-badge {
        display: flex;
    }

    .glass-card {
        padding: 40px;
    }

    .features {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Grid Layouts */
    .grid--3col {
        grid-template-columns: repeat(3, 1fr);
    }

    .pain-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .testimonials {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* =========================================
   SUBPAGES - BREADCRUMBS
   ========================================= */

.breadcrumbs {
    padding: 100px 0 20px;
    background-color: #f8f8f8;
    font-size: 14px;
}

.breadcrumbs a {
    color: #666;
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: #e30613;
}

.breadcrumbs span {
    color: #2d2d2d;
    font-weight: 600;
}

/* =========================================
   SUBPAGES - SERVICE HERO
   ========================================= */

.service-hero {
    padding: 40px 0 60px;
    background: linear-gradient(to bottom, #f8f8f8 0%, #ffffff 100%);
    text-align: center;
}

.service-hero__title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2d2d2d;
}

.service-hero__subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

/* =========================================
   SUBPAGES - SERVICE CONTENT
   ========================================= */

.service-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.service-main {
    order: 2;
}

.service-main h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 40px 0 20px;
    color: #2d2d2d;
}

.service-main h2:first-of-type {
    margin-top: 30px;
}

.service-main p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4d4d4d;
}

.service-main ul {
    list-style: none;
    margin: 20px 0;
}

.service-main ul li {
    padding: 8px 0 8px 30px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
}

.service-main ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #e30613;
    font-weight: 700;
}

.service-image {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Checklist Grid */
.checklist-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 30px 0;
}

.checklist-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 8px;
    border-left: 4px solid #e30613;
}

.checklist-icon {
    font-size: 24px;
    color: #e30613;
    font-weight: 700;
}

.checklist-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #2d2d2d;
}

.checklist-item p {
    font-size: 15px;
    margin: 0;
    color: #666;
}

/* Info Box */
.info-box {
    background-color: #fff5f5;
    border: 2px solid #e30613;
    border-radius: 8px;
    padding: 30px;
    margin: 30px 0;
}

.info-box h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2d2d2d;
}

.info-box ul {
    list-style: none;
    margin: 0;
}

.info-box ul li {
    padding: 10px 0;
    font-size: 16px;
    line-height: 1.6;
    border-bottom: 1px solid rgba(227, 6, 19, 0.1);
}

.info-box ul li:last-child {
    border-bottom: none;
}

.info-box ul li:before {
    display: none;
}

/* =========================================
   SUBPAGES - SIDEBAR
   ========================================= */

.service-sidebar {
    order: 1;
}

.sidebar-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.sidebar-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2d2d2d;
}

.sidebar-card p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #666;
}

.sidebar-card .btn {
    margin-bottom: 10px;
}

.sidebar-card .btn:last-child {
    margin-bottom: 0;
}

.sidebar-card--highlight {
    background: linear-gradient(135deg, #e30613 0%, #b30510 100%);
    color: #ffffff;
}

.sidebar-card--highlight h3 {
    color: #ffffff;
}

.sidebar-list {
    list-style: none;
    margin: 0;
}

.sidebar-list li {
    padding: 8px 0;
    font-size: 15px;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.sidebar-list li:last-child {
    border-bottom: none;
}

.sidebar-links {
    list-style: none;
    margin: 0;
}

.sidebar-links li {
    margin-bottom: 10px;
}

.sidebar-links a {
    display: block;
    padding: 10px 15px;
    background-color: #f8f8f8;
    color: #2d2d2d;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.sidebar-links a:hover {
    background-color: #e30613;
    color: #ffffff;
}

/* =========================================
   ANIMATIONS & TRANSITIONS
   ========================================= */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* =========================================
   LEGAL PAGES
   ========================================= */

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #2d2d2d;
}

.legal-content h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 40px 0 20px;
    color: #2d2d2d;
}

.legal-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 30px 0 15px;
    color: #2d2d2d;
}

.legal-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 25px 0 12px;
    color: #4d4d4d;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #4d4d4d;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #4d4d4d;
}

.legal-content a {
    color: #e30613;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #b30510;
}

/* =========================================
   RESPONSIVE - SUBPAGES
   ========================================= */

@media (min-width: 768px) {
    .service-hero__title {
        font-size: 42px;
    }

    .service-hero__subtitle {
        font-size: 22px;
    }

    .checklist-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .service-content {
        grid-template-columns: 1fr 350px;
        gap: 60px;
    }

    .service-main {
        order: 1;
    }

    .service-sidebar {
        order: 2;
    }

    .service-main h2 {
        font-size: 32px;
    }

    .service-hero__title {
        font-size: 48px;
    }
}

/* =========================================
   DAMAGE REPORT PAGE (SCHADEN MELDEN)
   ========================================= */

/* Damage Hero Section */
.damage-hero {
    background: linear-gradient(135deg, #e30613 0%, #b30510 100%);
    color: #ffffff;
    padding: 120px 0 60px;
    text-align: center;
    margin-top: 70px;
}

.damage-hero__title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.damage-hero__subtitle {
    font-size: 18px;
    font-weight: 300;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

/* Damage Info Grid */
.damage-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.damage-info-card {
    background-color: #f8f9fa;
    border-left: 4px solid #e30613;
    padding: 20px;
    border-radius: 6px;
}

.damage-info-card h3 {
    font-size: 18px;
    color: #1a1a1a;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.damage-info-card p,
.damage-info-card ul {
    font-size: 15px;
    color: #4d4d4d;
    line-height: 1.6;
}

.damage-info-card ul {
    margin: 10px 0 0;
    padding-left: 20px;
    list-style: disc;
}

.damage-info-card ul li {
    margin-bottom: 6px;
}

.damage-info-card--emergency {
    background-color: #fff3cd;
    border-left-color: #ffc107;
}

.damage-info-card--tips {
    background-color: #e7f3ff;
    border-left-color: #2196F3;
}

.damage-info-card--privacy {
    background-color: #f0f0f0;
    border-left-color: #666666;
}

/* Form Row (Side-by-side fields) */
.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

/* File Upload Wrapper */
.file-upload-wrapper {
    position: relative;
    margin-bottom: 10px;
}

.file-upload-input {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    border: 2px dashed #cccccc;
    border-radius: 8px;
    background-color: #f8f9fa;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.file-upload-label:hover {
    border-color: #e30613;
    background-color: #fff;
}

.file-upload-label--dragover {
    border-color: #e30613;
    background-color: #fff3f4;
    transform: scale(1.02);
}

.file-upload-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 15px;
    fill: #e30613;
}

.file-upload-label span {
    font-size: 16px;
    color: #2d2d2d;
    font-weight: 500;
}

.file-upload-label small {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    color: #666666;
}

/* Single Photo Upload Buttons */
.file-upload-input-single {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

.file-upload-label-single {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    border: 2px solid #e30613;
    border-radius: 8px;
    background-color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.file-upload-label-single:hover {
    background-color: #e30613;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(227, 6, 19, 0.3);
}

.file-upload-label-single:hover .file-upload-text {
    color: #fff;
}

.file-upload-label-single:hover i {
    color: #fff !important;
}

.file-upload-label-single .file-upload-text {
    font-size: 16px;
    color: #e30613;
    font-weight: 600;
    transition: color 0.3s ease;
}

.file-upload-label-single .file-status {
    display: block;
    min-height: 20px;
}

/* File Preview */
.file-preview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.file-preview__item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    aspect-ratio: 1;
}

.file-preview__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.file-preview__remove {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 50%;
    background-color: rgba(227, 6, 19, 0.9);
    color: #ffffff;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    padding: 0;
}

.file-preview__remove:hover {
    background-color: #b30510;
    transform: scale(1.1);
}

/* Damage Form Specific Styles */
.damage-form {
    background-color: #ffffff;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.damage-form h2 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e30613;
}

.damage-form h3 {
    font-size: 20px;
    color: #1a1a1a;
    margin: 30px 0 20px;
}

.damage-form .form-group label {
    font-weight: 500;
}

.damage-form textarea {
    min-height: 120px;
}

/* Success/Error Messages for Damage Form */
.damage-form .form-success,
.damage-form .form-error {
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.6;
}

.damage-form .form-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.damage-form .form-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* =========================================
   RESPONSIVE - DAMAGE REPORT PAGE
   ========================================= */

@media (min-width: 768px) {
    .damage-hero__title {
        font-size: 42px;
    }

    .damage-hero__subtitle {
        font-size: 20px;
    }

    .damage-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .damage-info-card--emergency {
        grid-column: 1 / -1;
    }

    .form-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .file-preview {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 20px;
    }

    .damage-form {
        padding: 40px;
    }

    .damage-form h2 {
        font-size: 28px;
    }
}

@media (min-width: 1024px) {
    .damage-hero__title {
        font-size: 48px;
    }

    .damage-hero__subtitle {
        font-size: 22px;
    }

    .file-preview {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
}

/* =========================================
   HERO RESPONSIVE - MOBILE
   ========================================= */

@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        padding: 0 20px;
        gap: 30px;
    }

    .hero-text {
        text-align: center;
    }

    .hero-visual {
        display: none;
    }

    .badge {
        font-size: 0.75rem;
        padding: 6px 16px;
        letter-spacing: 1px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 16px 28px;
        font-size: 0.95rem;
    }

    .scroll-indicator {
        display: none;
    }

    .shape-1,
    .shape-2 {
        display: none;
    }

    .shape-3 {
        width: 150px;
        height: 150px;
    }
}

/* =========================================
   HERO RESPONSIVE - SMALL MOBILE
   ========================================= */

@media (max-width: 480px) {
    /* Logo kleiner auf sehr kleinen Screens */
    .header__logo-img {
        height: 32px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-content {
        padding: 0 15px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 14px 24px;
        font-size: 0.9rem;
    }
}

/* =========================================
   HERO CATEGORY - SUBPAGES
   ========================================= */

.hero-category {
    position: relative;
    height: 45vh;
    min-height: 350px;
    max-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 120px; /* Ausgleich für fixierten Header */
}

.hero-category .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-category .animated-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    overflow: hidden;
}

.hero-category .shape {
    position: absolute;
    border-radius: 50%;
    animation: float 20s infinite;
}

.hero-category .shape-1 {
    width: 400px;
    height: 400px;
    background: rgba(204, 0, 0, 0.1);
    top: -150px;
    right: -100px;
    animation-delay: 0s;
}

.hero-category .shape-2 {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    bottom: -100px;
    left: -80px;
    animation-delay: -7s;
}

.hero-category .hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 30px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    animation: fadeInDown 0.8s ease-out;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #fff;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb .current {
    color: #CC0000;
    font-weight: 600;
}

.hero-category .badge {
    display: inline-block;
    background: rgba(204, 0, 0, 0.9);
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    animation: fadeInDown 0.8s ease-out 0.2s both;
}

.hero-category .hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    animation: fadeInDown 0.8s ease-out 0.4s both;
}

.hero-category .hero-title span {
    color: #CC0000;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Category Responsive */
@media (max-width: 768px) {
    .hero-category {
        height: 40vh;
        min-height: 280px;
        margin-top: 140px; /* Mehr Abstand auf Mobile wegen größerem Header */
    }

    .hero-category .hero-title {
        font-size: 2.5rem;
    }

    .breadcrumb {
        font-size: 0.8rem;
    }

    .hero-category .hero-content {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .hero-category .hero-title {
        font-size: 2rem;
    }

    .hero-category .badge {
        font-size: 0.7rem;
        padding: 6px 16px;
    }

    .hero-category .hero-content {
        padding: 0 15px;
    }
}

/* Hero Category Desktop */
@media (min-width: 769px) {
    .hero-category {
        margin-top: 90px; /* Kleinerer Header auf Desktop */
    }
}
