/*
Theme Name: LeadWolves Theme
Description: Professionelles WordPress-Theme für LeadWolves Vertriebsagentur
Version: 1.0
Author: LeadWolves Team
Text Domain: leadwolves
*/

/* Reset und Basis-Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1e293b;
    background: #ffffff;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

@media (max-width: 768px) {
    .container {
        padding: 0 0.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.25rem;
    }
}

/* Header */
.site-header {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Add top padding to body to account for fixed header */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1e293b;
    background: #ffffff;
    overflow-x: hidden;
    padding-top: 80px; /* Add space for fixed header */
}

body.menu-open {
    overflow: hidden;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem;
    gap: 1rem;
    flex-wrap: nowrap;
    position: relative;
}

.site-branding {
    flex-shrink: 0;
    z-index: 10002;
}

@media (max-width: 768px) {
    .site-header {
        padding: 0.5rem 0;
    }
    
    .header-content {
        padding: 0 1rem;
        gap: 0.5rem;
    }
    
    .site-branding {
        max-width: 60%;
    }
}

@media (max-width: 480px) {
    .header-content {
        padding: 0 0.75rem;
    }
    
    .site-branding {
        max-width: 50%;
    }
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.site-logo:hover {
    transform: translateY(-1px);
}

.custom-logo {
    height: 40px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.site-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-logo:hover .site-title {
    color: #0ea5e9;
}

/* Mobile Logo */
@media (max-width: 768px) {
    .site-logo {
        gap: 0.5rem;
    }
    
    .custom-logo {
        height: 35px;
        max-width: 100px;
    }
    
    .site-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .custom-logo {
        height: 30px;
        max-width: 80px;
    }
    
    .site-title {
        font-size: 1.1rem;
    }
    
    .menu-toggle {
        top: 0.75rem;
        right: 1rem;
        padding: 0.5rem;
    }
    
    .menu-toggle-icon {
        width: 24px;
        height: 20px;
    }
    
    .menu-toggle-icon span {
        height: 2.5px;
    }
}

/* ========================================
   DESKTOP NAVIGATION - HORIZONTALES MENU
   ======================================== */

/* Desktop Navigation - Standard */
.main-navigation {
    display: block;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.main-navigation li {
    margin: 0;
    padding: 0;
}

.main-navigation a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
    display: block;
    padding: 0.5rem 0;
}

.main-navigation a:hover {
    color: #0ea5e9;
}

/* Burger Button - nur Mobile */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    width: 30px;
    height: 30px;
    z-index: 1001;
    gap: 3px;
}

/* Desktop: Burger ausblenden, Navigation anzeigen */
@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .main-navigation {
        display: block !important;
        position: static !important;
        background: none !important;
        max-height: none !important;
        box-shadow: none !important;
    }
    
    .main-navigation ul {
        flex-direction: row !important;
        gap: 2rem !important;
        padding: 0 !important;
    }
    
    .main-navigation li {
        border-bottom: none !important;
    }
    
    .main-navigation a {
        padding: 0.5rem 0 !important;
        font-size: 1rem !important;
    }
    
    .main-navigation a:hover {
        background: none !important;
        color: #0ea5e9 !important;
    }
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #ffffff !important;
    border-radius: 2px;
    transition: all 0.3s ease;
    margin: 0;
}

.mobile-menu-toggle:hover span {
    background: #0ea5e9 !important;
}

.mobile-menu-toggle.active span {
    background: #ffffff !important;
}

/* Burger Animation - X */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* ========================================
   MOBILE NAVIGATION - BURGER MENU
   ======================================== */
@media (max-width: 768px) {
    /* Burger Button sichtbar */
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Desktop Navigation ausblenden */
    .main-navigation {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        border-top: none;
        margin-top: 0;
    }
    
    .main-navigation.active {
        max-height: 500px;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
    }
    
    .main-navigation li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .main-navigation li:last-child {
        border-bottom: none;
    }
    
    .main-navigation a {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .main-navigation a:hover {
        background: rgba(14, 165, 233, 0.1);
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 8rem 0 4rem 0;
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 80px); /* Subtract header height */
    display: flex;
    align-items: center;
    margin-top: -80px; /* Compensate for body padding */
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.7);
    pointer-events: none;
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(14, 165, 233, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #ffffff;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-main-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-cta {
    display: inline-block;
    background: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 100%);
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}

.cta-guarantee {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* Laufband Separator */
.laufband-separator {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 2rem 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.laufband-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.laufband-content {
    display: flex;
    animation: laufband 20s linear infinite;
    white-space: nowrap;
    gap: 3rem;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 60px;
}

.laufband-item {
    font-size: 1.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    flex-shrink: 0;
    position: relative;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    line-height: 1.2;
}

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

/* Floating Animation for Cards */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Pulse Animation for Numbers */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Glow Animation */
@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(14, 165, 233, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(14, 165, 233, 0.6);
    }
}

/* Slide In Animation */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Rotate Animation */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Fade In Up Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.laufband-separator:hover .laufband-content {
    animation-play-state: paused;
}

.laufband-item:hover {
    color: #0ea5e9;
    transform: scale(1.1);
    transition: all 0.3s ease;
}

/* About Section */
.about {
    padding: 3rem 0 4rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-top: -2rem;
    padding-top: 5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}


.about .section-title {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    font-weight: 800;
}

.about .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 100%);
    border-radius: 2px;
}

.about-content-compact {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
    position: relative;
    z-index: 2;
}

.about-intro-compact {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.company-facts-compact {
    margin-top: 1.5rem;
}

.fact-compact {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 1rem;
    line-height: 1.4;
}

.fact-label {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.fact-separator {
    font-size: 1.2rem;
    color: #0ea5e9;
    font-weight: bold;
    margin: 0 0.25rem;
}

/* Benefits Section - Dark Theme for consistency */
.benefits {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}


.benefits .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: #ffffff;
    font-weight: 800;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.benefits-intro {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

/* Benefits Grid Layouts - Mobile First */

/* Full Width Grid - Das Rudel - Jetzt kompakt wie andere Karten */
.benefits-grid-full {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 480px) {
    .benefits-grid-full {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
}

@media (min-width: 640px) {
    .benefits-grid-full {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

@media (min-width: 1024px) {
    .benefits-grid-full {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

/* Two Column Grid - Jagdinstinkt & Kein Verkauf */
.benefits-grid-two {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

/* Four Column Grid - Rest - Mobile 3 Spalten */
.benefits-grid-four {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 480px) {
    .benefits-grid-four {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
}

@media (min-width: 640px) {
    .benefits-grid-four {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

@media (min-width: 1024px) {
    .benefits-grid-four {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

/* Das Rudel Card - Kompakt wie andere Karten */
.benefit-card-rudel {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out backwards;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: auto;
}

@media (min-width: 768px) {
    .benefit-card-rudel {
        padding: 2.5rem;
    }
}

.benefit-card-rudel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Text Content for Das Rudel - Kompakt */
.benefit-card-rudel .benefit-content {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 1rem;
}

.benefit-card-rudel h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 2;
}

.benefit-card-rudel h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 2;
}

.benefit-card-rudel p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    position: relative;
    z-index: 2;
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .benefit-card-rudel h3 {
        font-size: 1.5rem;
    }
    
    .benefit-card-rudel p {
        font-size: 1.05rem;
    }
}

/* Image Container - Kompakt wie andere Karten */
.benefit-card-rudel .benefit-image {
    margin-top: 1.5rem;
    margin-bottom: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    position: relative;
    z-index: 1;
}

.benefit-card-rudel .benefit-image img {
    max-width: 100px;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.benefit-card-rudel:hover .benefit-image img {
    transform: scale(1.05);
}

@media (min-width: 768px) {
    .benefit-card-rudel .benefit-image img {
        max-width: 160px;
        max-height: 160px;
    }
}

/* Standard Benefit Cards - Minimalistisches Design */
.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out backwards;
}

/* Staggered animation delays for cards */
.benefit-card:nth-child(1) {
    animation-delay: 0.1s;
}

.benefit-card:nth-child(2) {
    animation-delay: 0.2s;
}

.benefit-card:nth-child(3) {
    animation-delay: 0.3s;
}

.benefit-card:nth-child(4) {
    animation-delay: 0.4s;
}

.benefit-card:nth-child(5) {
    animation-delay: 0.5s;
}

.benefit-card:nth-child(6) {
    animation-delay: 0.6s;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 2;
}

.benefit-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 2;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Small Benefit Cards - Minimalistisches Design */
.benefit-card-small {
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.benefit-card-small h3 {
    font-size: 1rem;
    margin-bottom: 0.8rem;
}

.benefit-card-small p {
    font-size: 0.9rem;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .benefit-card {
        padding: 2.5rem;
    }
    
    .benefit-card h3 {
        font-size: 1.5rem;
    }
    
    .benefit-card p {
        font-size: 1.05rem;
    }
    
    .benefit-card-small {
        padding: 1.8rem;
    }
    
    .benefit-card-small h3 {
        font-size: 1.2rem;
    }
    
    /* Larger images on desktop for 1x2 grid */
    .benefits-grid-two .benefit-image img {
        max-width: 160px;
        max-height: 160px;
    }
    
    /* Slightly larger images for small cards on desktop */
    .benefit-card-small .benefit-image img {
        max-width: 85px;
        max-height: 85px;
    }
}

@media (max-width: 767px) {
    /* Smaller images on mobile */
    .benefit-image img {
        max-width: 80px;
        max-height: 80px;
    }
    
    .benefits-grid-two .benefit-image img {
        max-width: 100px;
        max-height: 100px;
    }
    
    .benefit-card-small .benefit-image img {
        max-width: 60px;
        max-height: 60px;
    }
}

.benefit-image {
    margin-top: 1.5rem;
    margin-bottom: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
}

.benefit-image img {
    max-width: 100px;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

/* Larger images for 1x2 grid cards (Jagdinstinkt, Kein Verkauf) */
.benefits-grid-two .benefit-image img {
    max-width: 140px;
    max-height: 140px;
}

/* Smaller images for small cards (1x3 grid) */
.benefit-card-small .benefit-image img {
    max-width: 70px;
    max-height: 70px;
}

/* Better positioning for images in different card types */
.benefits-grid-two .benefit-image {
    margin-top: 2rem;
    min-height: 80px;
}

.benefit-card-small .benefit-image {
    margin-top: 1rem;
    min-height: 50px;
}

.benefit-card:hover .benefit-image img {
    transform: scale(1.05);
}

/* How It Works - Dark Theme for consistency */
.how-it-works {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    position: relative;
    margin-bottom: 0;
    overflow: hidden;
}

.how-it-works .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 800;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.how-it-works-intro {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.steps-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

@media (min-width: 640px) {
    .steps-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.2rem;
    }
}

@media (min-width: 768px) {
    .steps-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.step {
    text-align: left;
    position: relative;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    animation: slideIn 0.8s ease-out backwards;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.step:nth-child(1) {
    animation-delay: 0.2s;
}

.step:nth-child(2) {
    animation-delay: 0.4s;
}

.step:nth-child(3) {
    animation-delay: 0.6s;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.3);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
    transition: all 0.3s ease;
    animation: pulse 3s ease-in-out infinite;
    flex-shrink: 0;
}

.step:hover .step-number {
    transform: scale(1.15);
    box-shadow: 0 15px 40px rgba(14, 165, 233, 0.7);
}

.step-content {
    flex: 1;
    min-width: 0;
}

.step-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 2;
    line-height: 1.3;
}

.step-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
    margin: 0;
}

.step:hover .step-content p {
    color: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}

/* Clean design - no arrows */

/* Clean transition between sections */
.how-it-works {
    position: relative;
    z-index: 1;
}

/* Unified Section Container - Clean without overlays */
.unified-section {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

/* Process Section - D2D Workflow - Dark Theme with Icons */
.process-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    position: relative;
    margin-top: 0;
    margin-bottom: 0;
    overflow: hidden;
}

/* No transition overlays needed for unified section */

/* Background handled by unified-section */

.process-section .section-title {
    color: #ffffff;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
    position: relative;
    z-index: 2;
}

.process-intro {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.process-subtitle {
    text-align: center;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

@media (min-width: 640px) {
    .process-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.2rem;
    }
}

@media (min-width: 768px) {
    .process-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.process-step {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.15) 0%, rgba(59, 130, 246, 0.15) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-step:hover::before {
    opacity: 0.6;
}

.process-step:hover {
    transform: translateY(-12px) scale(1.03);
    border-color: rgba(14, 165, 233, 0.6);
    box-shadow: 0 25px 50px rgba(14, 165, 233, 0.3);
}

   .process-step-header {
       display: flex;
       align-items: center;
       justify-content: flex-start;
       margin-bottom: 0;
       position: relative;
       z-index: 2;
   }

   .process-number {
       width: 50px;
       height: 50px;
       background: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 100%);
       color: #ffffff;
       border-radius: 50%;
       display: flex;
       align-items: center;
       justify-content: center;
       font-size: 1.3rem;
       font-weight: 800;
       box-shadow: 0 6px 20px rgba(14, 165, 233, 0.5);
       flex-shrink: 0;
       transition: all 0.3s ease;
       animation: glow 4s ease-in-out infinite;
   }

   .process-step:hover .process-number {
       transform: scale(1.2);
       box-shadow: 0 15px 40px rgba(14, 165, 233, 0.8);
   }

.process-content {
    position: relative;
    z-index: 2;
    flex: 1;
    min-width: 0;
}

.process-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.process-content h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #0ea5e9;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.process-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    font-size: 0.85rem;
    margin: 0;
}

.process-cta {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.process-btn {
    display: inline-block;
    background: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 100%);
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.process-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
    color: #ffffff;
}

   /* Clean design - no arrows */

/* Mobile responsive for process section */
@media (max-width: 768px) {
    .process-section .section-title {
        font-size: 1.8rem;
    }
    
    .process-step {
        padding: 1rem;
        margin-bottom: 1rem;
        gap: 1rem;
    }
    
    .process-step-header {
        justify-content: flex-start;
        margin-bottom: 0;
    }
    
    .process-content h3 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }
    
    .process-content h4 {
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
    }
    
    .process-content p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .process-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

/* Partner Section - Jetzt Vertriebspartner werden */
.partner-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
    border-top: 4px solid #0ea5e9;
}

.partner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0ea5e9, #3b82f6, #8b5cf6, #0ea5e9);
    animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.partner-header {
    text-align: center;
    margin-bottom: 5rem;
    padding: 0;
    position: relative;
    z-index: 2;
}

.partner-section .section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 900;
    position: relative;
    z-index: 2;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.partner-intro {
    text-align: center;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
    font-weight: 500;
    line-height: 1.6;
}

/* Partner Process - So funktioniert's */
.partner-process {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 2rem;
    padding: 3rem;
    margin-bottom: 4rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.partner-process h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.process-step {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.3);
    border-color: rgba(14, 165, 233, 0.5);
}

.process-number {
    background: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 100%);
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.4);
}

.process-content {
    flex: 1;
    min-width: 0;
}

.process-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.8rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.process-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 1rem;
}

/* Partner Application - Bewerbungsoptionen */
.partner-application {
    margin-top: 3rem;
}

.application-box {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
    backdrop-filter: blur(25px);
    border-radius: 2rem;
    padding: 3rem;
    border: 2px solid rgba(14, 165, 233, 0.2);
    box-shadow: 0 25px 50px rgba(14, 165, 233, 0.15);
    position: relative;
    overflow: hidden;
}

.application-box h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.application-box > p {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    font-weight: 500;
}

.application-options {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.application-option {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.application-option:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(14, 165, 233, 0.2);
    border-color: rgba(14, 165, 233, 0.3);
}

.option-header {
    margin-bottom: 1.5rem;
    text-align: center;
}

.option-header h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.option-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin: 0;
}

.option-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0;
}

.option-divider span {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Option Content & Buttons */
.option-content {
    text-align: center;
    padding-top: 1rem;
}

.option-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.option-button {
    display: inline-block;
    background: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 100%);
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 1rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.3);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.option-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.option-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(14, 165, 233, 0.4);
    background: linear-gradient(135deg, #0284c7 0%, #2563eb 100%);
    border-color: rgba(255, 255, 255, 0.2);
}

.option-button:hover::before {
    left: 100%;
}

.option-button:active {
    transform: translateY(-1px);
}

.apply-option h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-align: center;
}

.apply-option p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1rem;
}

.apply-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .apply-options {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

.booking-fallback {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.booking-fallback p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Contact Form Toggle */
.contact-form-toggle {
    text-align: center;
}

.contact-form-toggle h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.contact-form-toggle p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.toggle-btn {
    background: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 100%);
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto;
}

.toggle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.4);
    background: linear-gradient(135deg, #0284c7 0%, #2563eb 100%);
}

.toggle-icon {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

.toggle-btn.active .toggle-icon {
    transform: rotate(180deg);
}

.contact-form-section {
    margin-top: 1.5rem;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer - Kompakter Design */
.site-footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    padding: 1.5rem 0 1rem 0;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-main {
    margin-bottom: 1rem;
}

.footer-logo {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 0;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 0.8rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-links a:hover {
    color: #0ea5e9;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    margin-bottom: 0;
}

/* Mobile Footer Optimierung */
@media (max-width: 768px) {
    .site-footer {
        padding: 1rem 0 0.8rem 0;
    }
    
    .footer-main {
        margin-bottom: 0.8rem;
    }
    
    .footer-logo {
        font-size: 1.1rem;
    }
    
    .footer-links {
        gap: 1.5rem;
        margin-top: 0.6rem;
        justify-content: center;
    }
    
    .footer-links a {
        font-size: 0.85rem;
    }
    
    .footer-bottom {
        font-size: 0.75rem;
        padding-top: 0.6rem;
        margin-bottom: 0;
    }
}

/* Contact Section - Part of unified section */
.contact {
    padding: 2rem 0 4rem 0;
    background: transparent;
    color: #ffffff;
    position: relative;
    margin-top: 0;
    margin-bottom: 0;
}

/* Unified Contact & Booking Section */
.unified-contact-section {
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .unified-contact-section {
        margin-bottom: 3rem;
        padding: 0;
    }
}

.unified-contact-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 768px) {
    .unified-contact-content {
        border-radius: 20px;
        padding: 2.5rem;
        gap: 2.5rem;
    }
}

.unified-contact-content h3 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.unified-contact-content > p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0;
    line-height: 1.7;
    font-size: 1.05rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Contact Info Section */
.contact-info-section {
    text-align: left;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-info-section h4 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.contact-info-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-1px);
}

.contact-item strong {
    color: #0ea5e9;
    font-weight: 700;
    min-width: 80px;
    font-size: 0.9rem;
}

/* Contact Form Section - Kompakt */
.contact-form-section {
    text-align: left;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Contact Form 7 Styling - Modern Design */
.wpcf7-form {
    font-family: 'Inter', sans-serif;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

/* Global Contact Form 7 Styles for all pages */
body .wpcf7-form {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    border: 2px solid rgba(14, 165, 233, 0.3);
    box-shadow: 0 25px 50px rgba(14, 165, 233, 0.15);
}

body .wpcf7-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0ea5e9, #3b82f6, #8b5cf6, #0ea5e9);
    animation: shimmer 4s ease-in-out infinite;
}

/* Global Input Field Styles for all pages */
body .wpcf7-form input[type="text"],
body .wpcf7-form input[type="email"],
body .wpcf7-form input[type="tel"],
body .wpcf7-form input[type="url"],
body .wpcf7-form textarea {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    color: #ffffff !important;
    backdrop-filter: blur(15px);
}

body .wpcf7-form input[type="text"]::placeholder,
body .wpcf7-form input[type="email"]::placeholder,
body .wpcf7-form input[type="tel"]::placeholder,
body .wpcf7-form input[type="url"]::placeholder,
body .wpcf7-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7) !important;
}

body .wpcf7-form input[type="text"]:focus,
body .wpcf7-form input[type="email"]:focus,
body .wpcf7-form input[type="tel"]:focus,
body .wpcf7-form input[type="url"]:focus,
body .wpcf7-form textarea:focus {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: #0ea5e9 !important;
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.2) !important;
}

body .wpcf7-form label {
    color: #ffffff !important;
    font-weight: 600;
}

/* Dark background for specific pages */
body.page-slug-bewerbung-senden,
body.page-slug-termin-buchen {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%) !important;
    min-height: 100vh;
}

body.page-slug-bewerbung-senden .site-content,
body.page-slug-termin-buchen .site-content {
    background: transparent !important;
    padding: 2rem 0;
}

body.page-slug-bewerbung-senden .container,
body.page-slug-termin-buchen .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Force dark background - stronger selectors */
body.page-slug-bewerbung-senden,
body.page-slug-termin-buchen,
body.page-slug-bewerbung-senden html,
body.page-slug-termin-buchen html,
body.page-slug-bewerbung-senden .site,
body.page-slug-termin-buchen .site {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%) !important;
    background-color: #0f172a !important;
}

/* Override any white backgrounds */
body.page-slug-bewerbung-senden *,
body.page-slug-termin-buchen * {
    background-color: transparent !important;
}

body.page-slug-bewerbung-senden .entry-content,
body.page-slug-termin-buchen .entry-content {
    background: transparent !important;
}

/* Universal dark background fix */
body.page-slug-bewerbung-senden,
body.page-slug-termin-buchen {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%) !important;
    background-color: #0f172a !important;
}

body.page-slug-bewerbung-senden *:not(.wpcf7-form),
body.page-slug-termin-buchen *:not(.wpcf7-form) {
    background: transparent !important;
    background-color: transparent !important;
}

/* Ensure the page wrapper is dark */
body.page-slug-bewerbung-senden .page,
body.page-slug-termin-buchen .page,
body.page-slug-bewerbung-senden .post,
body.page-slug-termin-buchen .post {
    background: transparent !important;
}

/* Universal dark background for any page with Contact Form 7 */
body:has(.wpcf7-form) {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%) !important;
    background-color: #0f172a !important;
    min-height: 100vh;
}

body:has(.wpcf7-form) *:not(.wpcf7-form):not(#cky-consent):not(#cky-consent *):not(.cky-preference-center):not(.cky-preference-center *):not(.cky-overlay) {
    background: transparent !important;
    background-color: transparent !important;
}

/* Dark background and white text for legal pages */
body.page-slug-agb,
body.page-slug-datenschutz,
body.page-slug-impressum {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%) !important;
    background-color: #0f172a !important;
    min-height: 100vh;
    color: #ffffff !important;
}

body.page-slug-agb .entry-content,
body.page-slug-datenschutz .entry-content,
body.page-slug-impressum .entry-content {
    color: #ffffff !important;
    background: transparent !important;
}

body.page-slug-agb .entry-content *,
body.page-slug-datenschutz .entry-content *,
body.page-slug-impressum .entry-content * {
    color: #ffffff !important;
    background: transparent !important;
}

body.page-slug-agb .entry-content h1,
body.page-slug-agb .entry-content h2,
body.page-slug-agb .entry-content h3,
body.page-slug-agb .entry-content h4,
body.page-slug-agb .entry-content h5,
body.page-slug-agb .entry-content h6,
body.page-slug-datenschutz .entry-content h1,
body.page-slug-datenschutz .entry-content h2,
body.page-slug-datenschutz .entry-content h3,
body.page-slug-datenschutz .entry-content h4,
body.page-slug-datenschutz .entry-content h5,
body.page-slug-datenschutz .entry-content h6,
body.page-slug-impressum .entry-content h1,
body.page-slug-impressum .entry-content h2,
body.page-slug-impressum .entry-content h3,
body.page-slug-impressum .entry-content h4,
body.page-slug-impressum .entry-content h5,
body.page-slug-impressum .entry-content h6 {
    color: #0ea5e9 !important;
    font-weight: 700;
}

body.page-slug-agb .entry-content p,
body.page-slug-datenschutz .entry-content p,
body.page-slug-impressum .entry-content p {
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 1.8;
}

body.page-slug-agb .entry-content a,
body.page-slug-datenschutz .entry-content a,
body.page-slug-impressum .entry-content a {
    color: #0ea5e9 !important;
    text-decoration: underline;
}

body.page-slug-agb .entry-content a:hover,
body.page-slug-datenschutz .entry-content a:hover,
body.page-slug-impressum .entry-content a:hover {
    color: #3b82f6 !important;
}

/* Alternative: Dark background for any page containing specific text */
body:has([href*="bewerbung-senden"]),
body:has([href*="termin-buchen"]) {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%) !important;
    background-color: #0f172a !important;
    min-height: 100vh;
}

/* Force dark background on all pages with Contact Form 7 */
.wpcf7-form {
    position: relative;
    z-index: 10;
}

body:has(.wpcf7-form)::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    z-index: -1;
}

/* Ultimate fallback - works on any page */
body {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%) !important;
    background-color: #0f172a !important;
}

/* Override any theme backgrounds */
body *:not(#cky-consent):not(#cky-consent *):not(.cky-preference-center):not(.cky-preference-center *):not(.cky-overlay) {
    background-color: transparent !important;
}

/* Keep form styling */
.wpcf7-form {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%) !important;
    border: 2px solid rgba(14, 165, 233, 0.3) !important;
    box-shadow: 0 25px 50px rgba(14, 165, 233, 0.15) !important;
}

/* Hide page titles on specific pages */
.page-title,
.entry-title,
h1.entry-title,
.single .entry-title,
.page .entry-title {
    display: none !important;
}

/* Alternative: Hide titles only on specific pages */
body.page-slug-bewerbung-senden .page-title,
body.page-slug-bewerbung-senden .entry-title,
body.page-slug-bewerbung-senden h1.entry-title,
body.page-slug-termin-buchen .page-title,
body.page-slug-termin-buchen .entry-title,
body.page-slug-termin-buchen h1.entry-title {
    display: none !important;
}

.wpcf7-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #0ea5e9, #3b82f6, #8b5cf6);
    animation: shimmer 3s ease-in-out infinite;
}

.wpcf7-form label {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    margin-bottom: 0.8rem;
    display: block;
    font-size: 1rem;
    letter-spacing: 0.01em;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="url"],
.wpcf7-form textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    font-size: 1rem;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    backdrop-filter: blur(15px);
    box-sizing: border-box;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.wpcf7-form input[type="text"]::placeholder,
.wpcf7-form input[type="email"]::placeholder,
.wpcf7-form input[type="tel"]::placeholder,
.wpcf7-form input[type="url"]::placeholder,
.wpcf7-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form input[type="url"]:focus,
.wpcf7-form textarea:focus {
    outline: none;
    border-color: #0ea5e9;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.15);
    transform: translateY(-2px);
}

.wpcf7-form textarea {
    min-height: 120px;
    resize: vertical;
    font-family: inherit;
}

.wpcf7-form input[type="submit"] {
    background: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 100%);
    color: #ffffff;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    width: 100%;
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.3);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
}

.wpcf7-form input[type="submit"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.wpcf7-form input[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(14, 165, 233, 0.4);
    background: linear-gradient(135deg, #0284c7 0%, #2563eb 100%);
}

.wpcf7-form input[type="submit"]:hover::before {
    left: 100%;
}

.wpcf7-form input[type="submit"]:active {
    transform: translateY(-1px);
}

.wpcf7-response-output {
    margin-top: 1.5rem;
    padding: 1.2rem;
    border-radius: 1rem;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 2px solid;
}

.wpcf7-mail-sent-ok {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.2);
}

.wpcf7-validation-errors,
.wpcf7-mail-sent-ng {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border-color: rgba(239, 68, 68, 0.4);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.2);
}

.wpcf7-spinner {
    margin-left: 0.5rem;
}

/* Contact Form 7 Mobile */
@media (max-width: 768px) {
    .wpcf7-form {
        padding: 1.5rem;
        border-radius: 1rem;
    }
    
    .wpcf7-form label {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }
    
    .wpcf7-form input[type="text"],
    .wpcf7-form input[type="email"],
    .wpcf7-form input[type="tel"],
    .wpcf7-form input[type="url"],
    .wpcf7-form textarea {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
        border-radius: 0.8rem;
    }
    
    .wpcf7-form textarea {
        min-height: 100px;
    }
    
    .wpcf7-form input[type="submit"] {
        padding: 1rem 2rem;
        font-size: 1rem;
        border-radius: 0.8rem;
    }
    
    .wpcf7-response-output {
        padding: 1rem;
        font-size: 0.9rem;
    }
}

.wpcf7-spinner {
    display: none;
}

/* Form Row für nebeneinander liegende Felder */
.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

@media (min-width: 480px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
    }
}

.contact-form-section .form-group {
    margin-bottom: 1rem;
}

.contact-form-section .form-group:last-child {
    margin-bottom: 0;
}

.contact-form-section .form-group input,
.contact-form-section .form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    backdrop-filter: blur(10px);
    box-sizing: border-box;
}

.contact-form-section .form-group input::placeholder,
.contact-form-section .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-form-section .form-group input:focus,
.contact-form-section .form-group textarea:focus {
    outline: none;
    border-color: #0ea5e9;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.contact-form-section .submit-btn {
    background: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 100%);
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.contact-form-section .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.4);
    background: linear-gradient(135deg, #0284c7 0%, #2563eb 100%);
}

/* Booking Section */
.booking-section {
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Mobile-first responsive adjustments */
@media (min-width: 768px) {
    .unified-contact-content h3 {
        font-size: 2rem;
    }
    
    .unified-contact-content > p {
        font-size: 1.1rem;
    }
    
    .contact-info-section,
    .contact-form-section,
    .booking-section {
        padding: 2rem;
    }
}

@media (min-width: 1024px) {
    .unified-contact-content h3 {
        font-size: 2.5rem;
    }
    
    .unified-contact-content > p {
        font-size: 1.2rem;
    }
    
    .unified-contact-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        text-align: left;
    }
    
    .unified-contact-content > h3,
    .unified-contact-content > p {
        grid-column: 1 / -1;
        text-align: center;
    }
    
    .booking-section {
        grid-column: 1 / -1;
        text-align: center;
    }
}

/* No transition overlays needed for unified section */

/* Background handled by unified-section */

.contact .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: #ffffff;
    font-weight: 800;
    position: relative;
    z-index: 2;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    align-items: stretch;
}

.contact-info {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
}

.contact-info h3 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: auto;
}

.contact-item {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.contact-item strong {
    color: #0ea5e9;
    font-weight: 700;
    min-width: 90px;
    font-size: 1rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    min-height: 100%;
}

.form-group {
    margin-bottom: 0;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    backdrop-filter: blur(10px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0ea5e9;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.submit-btn {
    background: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 100%);
    color: #ffffff;
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.4);
    background: linear-gradient(135deg, #0284c7 0%, #2563eb 100%);
}

/* Booking divider removed - no longer needed */

/* Blog Posts */
.blog-posts {
    padding: 4rem 0;
    background: #ffffff;
}

.posts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

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

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

.post-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.post-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.post-content {
    padding: 1.5rem;
}

.post-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.post-title a {
    color: #1e293b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-title a:hover {
    color: #0ea5e9;
}

.post-meta {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.post-excerpt {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.read-more {
    color: #0ea5e9;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #3b82f6;
}

/* Single Post */
.single-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.entry-header {
    text-align: center;
    margin-bottom: 2rem;
}

.entry-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
}

.entry-meta {
    color: #64748b;
    font-size: 1rem;
}

.entry-thumbnail {
    margin-bottom: 2rem;
}

.entry-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.entry-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #374151;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    color: #1e293b;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.entry-content p {
    margin-bottom: 1.5rem;
}

.entry-content ul,
.entry-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.entry-content li {
    margin-bottom: 0.5rem;
}

/* 404 Page */
.error-404 {
    text-align: center;
    padding: 4rem 0;
}

.error-title {
    font-size: 8rem;
    font-weight: 800;
    color: #0ea5e9;
    margin-bottom: 1rem;
}

.error-subtitle {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.error-description {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 100%);
    color: #ffffff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}

.btn-secondary {
    background: #ffffff;
    color: #1e293b;
    border: 2px solid #e2e8f0;
}

.btn-secondary:hover {
    background: #f8fafc;
    border-color: #0ea5e9;
}

.error-search {
    margin-bottom: 2rem;
}

.error-search h3 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.search-form {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
}

.search-field {
    flex: 1;
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px 0 0 10px;
    border-right: none;
}

.search-submit {
    padding: 0.75rem 1.5rem;
    background: #0ea5e9;
    color: #ffffff;
    border: none;
    border-radius: 0 10px 10px 0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-submit:hover {
    background: #3b82f6;
}

.error-suggestions h3 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.error-suggestions ul {
    list-style: none;
    padding: 0;
}

.error-suggestions li {
    margin-bottom: 0.5rem;
}

.error-suggestions a {
    color: #0ea5e9;
    text-decoration: none;
    transition: color 0.3s ease;
}

.error-suggestions a:hover {
    color: #3b82f6;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: #0ea5e9;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: none;
    z-index: 1000;
    transition: all 0.3s ease;
}

.scroll-to-top:hover {
    background: #3b82f6;
    transform: translateY(-2px);
}

/* Scroll-basierte Hervorhebungen */
.scroll-highlight {
    transition: all 0.6s ease;
    opacity: 0.7;
    transform: scale(0.98);
}

.scroll-highlight.visible {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 8px 32px rgba(14, 165, 233, 0.3);
    border-color: rgba(14, 165, 233, 0.5);
}

/* Spezielle Hervorhebungen für verschiedene Elemente */
.benefit-card.scroll-highlight.visible {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border: 1px solid rgba(14, 165, 233, 0.6);
    box-shadow: 0 12px 40px rgba(14, 165, 233, 0.4);
}

.step.scroll-highlight.visible {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(14, 165, 233, 0.6);
    box-shadow: 0 16px 50px rgba(14, 165, 233, 0.3);
}

.process-step.scroll-highlight.visible {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(14, 165, 233, 0.6);
    box-shadow: 0 25px 50px rgba(14, 165, 233, 0.4);
}

/* Mobile-spezifische Scroll-Hervorhebungen */
@media (max-width: 768px) {
    .scroll-highlight.visible {
        transform: scale(1.02);
        box-shadow: 0 4px 20px rgba(14, 165, 233, 0.4);
    }
}

/* Form Validation */
.error {
    border-color: #ef4444 !important;
}

.success-message,
.error-message {
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    text-align: center;
}

.success-message {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.error-message {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* Mobile-First Responsive Design - Kompakter */
@media (max-width: 768px) {
    body {
        padding-top: 70px; /* Smaller padding for mobile */
    }
    
    .hero-section {
        margin-top: -70px; /* Compensate for smaller header */
        min-height: calc(100vh - 70px);
        padding: 3rem 0 1.5rem 0;
    }
    
    .hero-title {
        font-size: 1.6rem;
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-main-text {
        font-size: 0.85rem;
        margin-bottom: 1.2rem;
        line-height: 1.4;
    }
    
    .hero-cta {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .cta-guarantee {
        font-size: 0.8rem;
        margin-top: 1rem;
    }
    
    .main-navigation ul {
        gap: 1rem;
    }
    
    .laufband-item {
        font-size: 0.9rem;
        letter-spacing: 0.03em;
        padding: 0.5rem 0.8rem;
    }
    
    .laufband-content {
        gap: 1.2rem;
        min-height: 35px;
    }
    
    .about {
        padding: 2rem 0 2.5rem 0;
    }
    
    .about .section-title {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }
    
    .about-intro-compact {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
        line-height: 1.4;
    }
    
    .fact-compact {
        font-size: 0.85rem;
        gap: 0.3rem;
    }
    
    .benefits {
        padding: 2.5rem 0;
    }
    
    .benefits .section-title {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }
    
    .benefits-intro {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }
    
    .benefit-card {
        padding: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .benefit-card h3 {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }
    
    .benefit-card h4 {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }
    
    .benefit-card p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .benefit-card-small {
        padding: 0.8rem;
    }
    
    .benefit-card-small h3 {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .benefit-card-small p {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .step {
        padding: 1rem;
        margin-bottom: 0.8rem;
        gap: 1rem;
    }
    
    .step-content h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .step-content p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .unified-contact-section {
        padding: 0 0.3rem;
    }
    
    .unified-contact-content {
        padding: 0.8rem;
        gap: 1rem;
    }
    
    .unified-contact-content h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .unified-contact-content > p {
        font-size: 0.9rem;
        margin-bottom: 0;
    }
    
    .contact-info-section,
    .contact-form-section,
    .booking-section {
        padding: 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .contact-info-section h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .contact-info-section p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        line-height: 1.4;
    }
    
    .contact-item {
        padding: 0.6rem;
        font-size: 0.85rem;
        gap: 0.6rem;
    }
    
    .contact-item strong {
        font-size: 0.8rem;
        min-width: 60px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .submit-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .search-form {
        flex-direction: column;
    }
    
    .search-field {
        border-radius: 10px;
        border-right: 2px solid #e2e8f0;
        margin-bottom: 0.5rem;
    }
    
    .search-submit {
        border-radius: 10px;
    }
    
    /* Partner Section Mobile */
    .partner-section {
        padding: 4rem 0;
    }
    
    .partner-section .section-title {
        font-size: 2.2rem;
        background: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 50%, #8b5cf6 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-shadow: none;
        font-weight: 900;
        letter-spacing: -0.02em;
        line-height: 1.1;
    }
    
    .partner-intro {
        font-size: 1.1rem;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.95);
        letter-spacing: 0.01em;
    }
    
    .partner-header {
        padding: 0;
        margin-bottom: 3rem;
    }
    
    .partner-process {
        padding: 1.5rem 1rem;
        margin-bottom: 2rem;
    }
    
    .partner-process h3 {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
        background: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight: 800;
        letter-spacing: -0.01em;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .process-step {
        padding: 1rem;
        flex-direction: row;
        text-align: left;
        gap: 0.8rem;
        align-items: flex-start;
    }
    
    .process-number {
        width: 32px;
        height: 32px;
        font-size: 1rem;
        margin: 0;
        flex-shrink: 0;
    }
    
    .process-content h4 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }
    
    .process-content p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .application-box {
        padding: 2rem 1.5rem;
    }
    
    .application-box h3 {
        font-size: 1.8rem;
        background: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight: 800;
        letter-spacing: -0.01em;
        text-shadow: none;
    }
    
    .application-box > p {
        font-size: 1rem;
        margin-bottom: 2rem;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.9);
        letter-spacing: 0.01em;
    }
    
    .application-options {
        gap: 1.5rem;
    }
    
    .application-option {
        padding: 1.5rem;
    }
    
    .option-header h4 {
        font-size: 1.2rem;
        font-weight: 700;
        color: #ffffff;
        letter-spacing: -0.005em;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    }
    
    .option-header p {
        font-size: 0.9rem;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.8);
        letter-spacing: 0.01em;
    }
    
    .option-content p {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }
    
    .option-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        border-radius: 0.8rem;
    }
    
    .booking-fallback {
        padding: 1.2rem;
    }
    
    .booking-fallback p {
        font-size: 0.85rem;
        margin-bottom: 1.2rem;
    }
    
    /* Contact Form Toggle Mobile */
    .contact-form-toggle h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .contact-form-toggle p {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }
    
    .toggle-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .laufband-item {
        font-size: 1rem;
        letter-spacing: 0.05em;
        padding: 0.6rem 1rem;
    }
    
    .laufband-content {
        gap: 1.5rem;
        min-height: 40px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .error-title {
        font-size: 6rem;
    }
    
    .error-subtitle {
        font-size: 1.5rem;
    }
    
    .scroll-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

