/* ===== CSS Reset & Variables ===== */
:root {
    /* Electric Blue Theme */
    --primary: #FFD700;
    --primary-dark: #E6C200;
    --primary-light: #FFE44D;
    --primary-gradient: linear-gradient(135deg, #FFD700 0%, #FFE44D 50%, #FFF176 100%);
    --secondary: #1a1a2e;
    --secondary-light: #252547;
    --secondary-dark: #0f0f1a;
    --accent: #FFD700;
    --blue-gradient: linear-gradient(135deg, #1a1a2e 0%, #252547 50%, #2d2d5a 100%);
    --text-dark: #1a1a2e;
    --text-light: #6b7280;
    --text-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border: #e5e7eb;
    --border-blue: rgba(26, 26, 46, 0.1);
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 15px 35px rgba(0, 0, 0, 0.12), 0 5px 15px rgba(0, 0, 0, 0.06);
    --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.15), 0 10px 20px rgba(0, 0, 0, 0.08);
    --shadow-glow: 0 10px 40px rgba(255, 215, 0, 0.3);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    /* Spacing System (8er Raster) */
    --space-xs: 8px;
    --space-sm: 12px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-section: 100px;
}

/* ===== Skip Link für Barrierefreiheit ===== */
.skip-link {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--text-white);
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    z-index: 9999;
    transition: top 0.3s ease;
    text-decoration: none;
}

.skip-link:focus {
    top: 10px;
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-primary {
    background: var(--primary);
    color: var(--secondary);
    border-color: var(--primary);
    position: relative;
    overflow: hidden;
    font-weight: 600;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--secondary);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--bg-white);
    color: var(--secondary);
    border-color: var(--bg-white);
}

.btn-white:hover {
    background: transparent;
    color: var(--text-white);
    border-color: var(--text-white);
}

.btn-outline-white {
    background: transparent;
    color: var(--text-white);
    border-color: var(--text-white);
}

.btn-outline-white:hover {
    background: var(--primary);
    color: var(--secondary);
    border-color: var(--primary);
}

.btn-call {
    background: var(--primary);
    color: var(--secondary);
    padding: 10px 20px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.btn-call i {
    line-height: 1;
    display: flex;
    align-items: center;
}

.btn-call:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

/* Instagram Button - Icon Only (für Navigation) */
.btn-instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: var(--text-white);
    padding: 10px 14px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
}

/* Instagram Button mit Text (für Content-Bereiche) */
.empty-state .btn-instagram,
.info-box .btn-instagram,
.referenzen-empty .btn-instagram {
    width: auto;
    height: auto;
    padding: 14px 24px;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.3);
    transition: all 0.3s ease;
}

.empty-state .btn-instagram:hover,
.info-box .btn-instagram:hover,
.referenzen-empty .btn-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(225, 48, 108, 0.4);
}

.empty-state .btn-instagram i,
.info-box .btn-instagram i,
.referenzen-empty .btn-instagram i {
    font-size: 16px;
    width: auto;
    height: auto;
    background: none;
    padding: 0;
    margin: 0;
}

.btn-instagram i {
    font-size: 18px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-instagram:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-instagram-lg {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: var(--text-white);
    padding: 16px 32px;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-instagram-lg i {
    font-size: 18px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-instagram-lg:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ===== Header & Navigation ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--secondary);
    transition: var(--transition);
    overflow: visible;
}

.header.scrolled {
    background: var(--secondary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar {
    overflow: visible;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    min-height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 24px;
    color: var(--text-white);
    transition: var(--transition);
}

.logo-text {
    display: flex;
    align-items: center;
    line-height: 1;
}

.logo-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 2px solid var(--primary);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
    transition: var(--transition);
    display: block;
    flex-shrink: 0;
}

.logo:hover .logo-img {
    transform: scale(1.08);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.6);
}

.header.scrolled .logo {
    color: var(--text-white);
}

.header.scrolled .logo-img {
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.logo-icon {
    font-size: 28px;
}

.logo-highlight {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 15px;
    color: var(--text-white);
    position: relative;
    padding: 8px 0;
}

.header.scrolled .nav-link {
    color: var(--text-white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-white);
    border-radius: 3px;
    transition: var(--transition);
}

.header.scrolled .hamburger span {
    background: var(--text-white);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 50%, #2d2d5a 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-logo-decoration {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    width: 450px;
    height: 450px;
    z-index: 1;
    pointer-events: none;
}

.hero-logo-decoration img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    opacity: 0.15;
    filter: blur(0px);
    mask-image: radial-gradient(circle, rgba(0,0,0,1) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0) 75%);
    -webkit-mask-image: radial-gradient(circle, rgba(0,0,0,1) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0) 75%);
    animation: float-logo 6s ease-in-out infinite;
}

@keyframes float-logo {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.15;
    }
    50% {
        transform: translateY(-20px) scale(1.02);
        opacity: 0.22;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 75% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 0, 0.2);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease;
}

.hero-badge i {
    color: var(--accent);
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--text-white);
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease 0.1s backwards;
}

.hero h1 .highlight {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    animation: fadeInUp 0.6s ease 0.2s backwards;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease 0.3s backwards;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    animation: fadeInUp 0.6s ease 0.4s backwards;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.feature-item i {
    color: var(--primary);
}

/* ===== Scroll-Indikator ===== */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-indicator a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 215, 0, 0.9);
    border-radius: 50%;
    color: var(--secondary);
    font-size: 20px;
    animation: bounce 2s infinite;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.scroll-indicator a:hover {
    background: var(--primary);
    transform: scale(1.1);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* ===== Section Styles ===== */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    background: rgba(255, 215, 0, 0.15);
    color: var(--secondary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* ===== Services Section ===== */
.services {
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(255, 107, 0, 0.1);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon i {
    font-size: 28px;
    color: var(--text-white);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-card > p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-dark);
}

.service-features li i {
    color: var(--primary);
    font-size: 12px;
}

/* ===== About Section ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-content .section-tag {
    margin-bottom: 16px;
}

.about-content h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 20px;
}

.about-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.about-feature {
    display: flex;
    gap: 16px;
    opacity: 0;
    transform: translateX(-20px);
}

.about-feature.animate {
    opacity: 1;
    transform: translateX(0);
}

.about-feature .feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(255, 107, 0, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-feature .feature-icon i {
    font-size: 20px;
    color: var(--primary);
}

.about-feature h4 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.about-feature p {
    font-size: 14px;
    color: var(--text-light);
}

.about-quote {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    border-radius: var(--radius-lg);
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.quote-icon {
    font-size: 40px;
    color: var(--primary);
}

.about-quote p {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    font-style: italic;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    transition: var(--transition);
    opacity: 0;
    transform: scale(0.9);
}

.stat-card.animate {
    opacity: 1;
    transform: scale(1);
}

.stat-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-stars {
    color: var(--accent);
    font-size: 18px;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

/* ===== Reviews Section ===== */
.reviews {
    background: var(--bg-light);
}

.reviews-summary {
    margin-top: 30px;
}

.reviews-rating {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: var(--bg-white);
    padding: 20px 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.rating-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
}

.rating-stars {
    color: var(--accent);
    font-size: 24px;
    margin: 8px 0;
}

.rating-count {
    font-size: 14px;
    color: var(--text-light);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.review-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.review-text {
    flex: 1;
}

.review-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-white);
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(255, 107, 0, 0.2);
}

.reviewer-info h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.review-date {
    font-size: 13px;
    color: var(--text-light);
}

.review-rating {
    margin-left: auto;
    color: var(--accent);
    font-size: 14px;
}

.review-text {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 16px;
}

.review-text strong {
    color: var(--primary);
}

.review-source {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-light);
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.review-source i {
    color: #4285f4;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    width: 32px;
    height: 32px;
    background: #f8f9fa;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

/* Reviews More Link */
.reviews-more {
    text-align: center;
    margin-top: 48px;
}

.reviews-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary);
    text-decoration: none;
    padding: 14px 28px;
    border: 2px solid var(--secondary);
    border-radius: var(--radius);
    transition: var(--transition);
}

.reviews-link:hover {
    background: var(--secondary);
    color: var(--text-white);
}

.reviews-link i {
    transition: var(--transition);
}

.reviews-link:hover i {
    transform: translateX(4px);
}

/* ===== Contact Section ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info .section-tag {
    margin-bottom: 16px;
}

.contact-info h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 16px;
}

.contact-info > p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(255, 107, 0, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    font-size: 20px;
    color: var(--primary);
}

.contact-text h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.contact-text p,
.contact-text a {
    font-size: 15px;
    color: var(--text-light);
}

.contact-text a:hover {
    color: var(--primary);
}

.response-hint {
    display: block;
    font-size: 13px;
    color: var(--primary);
    margin-top: 4px;
    font-weight: 500;
}

.contact-hours {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 30px;
}

.contact-hours h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    margin-bottom: 16px;
}

.contact-hours h4 i {
    color: var(--primary);
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table tr {
    border-bottom: 1px solid var(--border);
}

.hours-table tr:last-child {
    border-bottom: none;
}

.hours-table td {
    padding: 10px 0;
    font-size: 14px;
}

.hours-table td:first-child {
    font-weight: 500;
    color: var(--text-dark);
}

.hours-table td:last-child {
    text-align: right;
    color: var(--text-light);
}

.hours-table tr.closed td {
    color: var(--text-light);
}

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ===== Kontaktformular ===== */
.contact-form-container {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

.contact-form-container h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-form-container h3 i {
    color: var(--primary);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 40px;
}

.form-privacy {
    margin-top: 8px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: 2px;
    accent-color: var(--primary);
    cursor: pointer;
}

.checkbox-label a {
    color: var(--primary);
    font-weight: 600;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.btn-submit {
    margin-top: 10px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* Submit Button Lade-Animation */
.btn-submit.loading {
    pointer-events: none;
    color: transparent;
}

.btn-submit.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: btn-spinner 0.8s linear infinite;
}

/* Submit Button Erfolgs-Animation */
.btn-submit.success {
    background: #28a745 !important;
    pointer-events: none;
}

.btn-submit.success::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    font-size: 20px;
    color: #fff;
    animation: checkmark-pop 0.4s ease-out;
}

@keyframes btn-spinner {
    to {
        transform: rotate(360deg);
    }
}

@keyframes checkmark-pop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.form-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 12px;
    text-align: center;
}

/* Formular Statusmeldungen */
.form-status {
    padding: 16px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-weight: 500;
    text-align: center;
}

.form-status.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-status.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.contact-map {
    min-height: 500px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* ===== CTA Section ===== */
.cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--text-white);
    margin-bottom: 16px;
}

.cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

/* ===== Footer ===== */
.footer {
    background: var(--secondary);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
    color: var(--text-white);
    margin-bottom: 20px;
    overflow: visible;
}

.footer-brand .logo-img {
    width: 55px;
    height: 55px;
    min-width: 55px;
    min-height: 55px;
    object-fit: cover;
    object-position: center;
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.footer-brand .logo:hover .logo-img {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 24px;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 20px;
    transition: var(--transition);
}

.footer-social a i {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-4px);
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    color: var(--text-white);
    font-size: 1rem;
    margin-bottom: 24px;
}

.footer-links ul,
.footer-services ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a,
.footer-services a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--primary);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-contact li i {
    color: var(--primary);
    margin-top: 3px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-legal a:hover {
    color: var(--primary);
}

/* ===== Floating Action Buttons ===== */
.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 999;
}

.fab {
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    text-decoration: none;
}

.fab i {
    font-size: 24px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-align: center;
}

.fab-call {
    background: var(--secondary);
}

.fab-call:hover {
    background: var(--secondary-light);
    transform: scale(1.1);
}

.fab-instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.fab-instagram:hover {
    transform: scale(1.1);
}

.fab-whatsapp {
    background: #25D366;
}

.fab-whatsapp:hover {
    background: #128C7E;
    transform: scale(1.1);
}

/* ===== Back to Top Button ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--text-white);
    border: none;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Cookie Consent Banner ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary);
    padding: 20px;
    z-index: 2001;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-text {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex: 1;
    min-width: 280px;
}

.cookie-text i {
    font-size: 32px;
    color: var(--primary);
    flex-shrink: 0;
}

.cookie-text strong {
    display: block;
    color: var(--text-white);
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.cookie-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

/* Cookie-Banner Button-Styles für besseren Kontrast */
.cookie-banner .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    color: rgba(255, 255, 255, 0.9);
}

.cookie-banner .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
}

/* ===== Map Consent Overlay ===== */
.map-consent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    overflow: hidden;
}

/* Loading-Skeleton für Maps */
.map-consent::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        var(--bg-light) 0%,
        rgba(255, 255, 255, 0.5) 50%,
        var(--bg-light) 100%
    );
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s ease-in-out infinite;
    z-index: -1;
}

@keyframes skeleton-shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.map-consent-content {
    text-align: center;
    padding: 40px;
}

.map-consent-content i {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 16px;
}

.map-consent-content h4 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.map-consent-content p {
    color: var(--text-light);
    font-size: 14px;
    max-width: 300px;
    margin: 0 auto 20px;
    line-height: 1.6;
}

.contact-map {
    position: relative;
    min-height: 450px;
    border-radius: 16px;
    overflow: hidden;
}

/* ===== Modal Styles ===== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 20px;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    transform: translateY(-30px) scale(0.95);
    transition: var(--transition);
    box-shadow: var(--shadow-xl);
}

.modal.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--bg-light);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text-dark);
    transition: var(--transition);
    z-index: 10;
}

.modal-close:hover {
    background: var(--primary);
    color: var(--text-white);
}

.modal-content h2 {
    font-size: 1.75rem;
    color: var(--text-dark);
    padding: 30px 30px 20px;
    border-bottom: 1px solid var(--border);
    margin: 0;
}

.modal-body {
    padding: 30px;
    overflow-y: auto;
    max-height: calc(90vh - 100px);
}

.modal-body h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin: 30px 0 15px;
}

.modal-body h3:first-child {
    margin-top: 0;
}

.modal-body h4 {
    font-size: 1rem;
    color: var(--primary);
    margin: 20px 0 10px;
}

.modal-body p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.modal-body a {
    color: var(--primary);
    text-decoration: underline;
}

.modal-body a:hover {
    color: var(--primary-dark);
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .stat-card {
        flex: 1;
        min-width: 150px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-map {
        min-height: 400px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--secondary);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 30px 30px;
        gap: 20px;
        transition: var(--transition);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        color: var(--text-white) !important;
        font-size: 18px;
    }

    .nav-actions {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    .hero {
        padding-top: 120px;
        padding-bottom: 60px;
        min-height: auto;
    }

    .hero-logo-decoration {
        width: 300px;
        height: 300px;
        right: -5%;
        opacity: 0.8;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .hero-features {
        flex-direction: column;
        gap: 12px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-quote {
        flex-direction: column;
        text-align: center;
    }

    .about-stats {
        flex-direction: column;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .fab-container {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }

    .fab {
        width: 46px;
        height: 46px;
        min-width: 46px;
        min-height: 46px;
        font-size: 18px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .back-to-top {
        left: 20px;
        bottom: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    section {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-logo-decoration {
        width: 200px;
        height: 200px;
        right: -10%;
        top: 25%;
    }

    .service-card {
        padding: 30px 20px;
    }

    .review-header {
        flex-wrap: wrap;
    }

    .review-rating {
        width: 100%;
        margin-left: 62px;
        margin-top: -8px;
    }

    .contact-actions {
        gap: 10px;
    }

    .btn-lg {
        width: 100%;
        justify-content: center;
    }

    .cookie-banner {
        padding: 16px 12px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .cookie-text {
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }

    .cookie-text i {
        font-size: 24px;
    }

    .cookie-text strong {
        font-size: 1rem;
        margin-bottom: 4px;
    }

    .cookie-text p {
        font-size: 12px;
        line-height: 1.4;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: row;
        gap: 8px;
    }

    .cookie-buttons .btn {
        flex: 1;
        padding: 10px 16px;
        font-size: 13px;
    }
}

/* ===== NEUE KOMPONENTEN FÜR MULTI-PAGE ===== */

/* ===== Subpage Hero ===== */
.subpage-hero {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 50%, #2d2d5a 100%);
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.subpage-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.subpage-hero .container {
    position: relative;
    z-index: 2;
}

.subpage-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--text-white);
    margin-bottom: 16px;
}

.subpage-hero p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Breadcrumb ===== */
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 14px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb span {
    color: var(--primary);
}

.breadcrumb i {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

/* ===== Hero Badges (Meisterbetrieb, VDE) ===== */
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.hero-badge-gold {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%) !important;
    color: var(--secondary) !important;
}

.hero-badge-gold i {
    color: var(--secondary) !important;
}

.hero-badge-green {
    background: rgba(34, 197, 94, 0.2) !important;
    color: #22c55e !important;
}

.hero-badge-green i {
    color: #22c55e !important;
}

/* ===== Response Guarantee Box ===== */
.response-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: var(--radius);
    padding: 16px 24px;
    margin-bottom: 24px;
}

.response-guarantee i {
    font-size: 24px;
    color: #22c55e;
}

.response-guarantee span {
    font-size: 15px;
    color: var(--text-dark);
}

.response-guarantee strong {
    color: #22c55e;
}

/* ===== Service Modal ===== */
.service-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.service-modal.active {
    opacity: 1;
    visibility: visible;
}

.service-modal-content {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
    transform: translateY(20px);
    transition: var(--transition);
}

.service-modal.active .service-modal-content {
    transform: translateY(0);
}

.service-modal-content h2 {
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.service-modal-desc {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-modal-image {
    width: 100%;
    height: 250px;
    background: var(--bg-light);
    border-radius: var(--radius);
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.service-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-modal-image .image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-light);
}

.service-modal-image .image-placeholder i {
    font-size: 48px;
    opacity: 0.5;
}

.service-modal-image .image-placeholder span {
    font-size: 14px;
}

.service-modal-image img + .image-placeholder {
    display: none;
}

.service-modal-content h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.service-detail-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 32px;
}

.service-detail-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-dark);
}

.service-detail-list li i {
    color: var(--primary);
    margin-top: 3px;
    flex-shrink: 0;
}

.service-modal-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===== Service Card Clickable ===== */
.service-card-clickable {
    cursor: pointer;
}

.service-card-clickable:hover .service-icon {
    transform: scale(1.1);
}

/* ===== Referenz Karten ===== */
.referenzen-section {
    padding: var(--space-section) 0;
}

.referenzen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.referenz-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.referenz-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.referenz-image {
    height: 200px;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.referenz-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.referenz-card:hover .referenz-image img {
    transform: scale(1.05);
}

.referenz-image .image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-light);
    background: var(--bg-light);
}

.referenz-image .image-placeholder i {
    font-size: 40px;
    opacity: 0.4;
}

.referenz-image .image-placeholder span {
    font-size: 13px;
}

.referenz-content {
    padding: 24px;
}

.referenz-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.referenz-meta > i {
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
}

.referenz-kategorie {
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.kategorie-wohnungsbau {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.kategorie-sanierung {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.kategorie-gewerbe {
    background: rgba(255, 107, 0, 0.1);
    color: var(--primary);
}

.kategorie-industrie {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
}

.kategorie-einzelhandel {
    background: rgba(168, 85, 247, 0.1);
    color: #a855f7;
}

.referenz-content h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.referenz-details {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.referenz-details span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.referenz-content p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== Karriere Hero (nutzt jetzt .subpage-hero) ===== */
/* Legacy karriere-hero Klasse entfernt - nutze stattdessen .subpage-hero */

/* ===== Section Subtitle ===== */
.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1rem;
    margin-top: -32px;
    margin-bottom: 48px;
}

/* ===== Benefits Grid ===== */
.benefits-section {
    padding: var(--space-section) 0;
}

.benefits-section .section-title {
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 16px;
}

.benefits-section .section-subtitle {
    margin-top: 0;
    margin-bottom: 48px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    justify-content: center;
}

.benefit-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    transition: var(--transition);
}

.benefit-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.benefit-card .benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.benefit-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== Stellen Liste ===== */
.stellen-section {
    padding: var(--space-section) 0;
    background: var(--bg-light);
}

.stellen-section .section-title {
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 16px;
}

.stellen-section .section-subtitle {
    margin-top: 0;
    margin-bottom: 48px;
}

.stellen-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.stelle-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow);
}

.stelle-card h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.stelle-meta {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.stelle-meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.stelle-card > p {
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.6;
}

.stelle-requirements {
    margin-bottom: 24px;
}

.stelle-requirements li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.stelle-requirements li::before {
    content: '•';
    color: var(--primary);
    font-weight: bold;
}

/* ===== Stellen Grid ===== */
.stellen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
}

.stelle-header {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.stelle-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--bg-light);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-light);
}

.stelle-tag-new {
    background: #dcfce7;
    color: #166534;
}

.stelle-tag-highlight {
    background: #fef3c7;
    color: #92400e;
}

.stelle-aufgaben,
.stelle-anforderungen {
    margin: 16px 0;
}

.stelle-aufgaben h4,
.stelle-anforderungen h4 {
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.stelle-aufgaben ul,
.stelle-anforderungen ul {
    list-style: none;
    padding: 0;
}

.stelle-aufgaben li,
.stelle-anforderungen li {
    font-size: 14px;
    color: var(--text-light);
    padding-left: 20px;
    position: relative;
    margin-bottom: 6px;
}

.stelle-aufgaben li::before,
.stelle-anforderungen li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
}

.stelle-description {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.6;
}

/* ===== Initiativ Section Enhanced ===== */
.initiativ-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.initiativ-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    max-width: 900px;
    margin: 0 auto;
}

.initiativ-text {
    flex: 1;
}

.initiativ-text h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 16px;
    color: var(--text-dark);
}

.initiativ-text p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.initiativ-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.initiativ-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.initiativ-list li i {
    color: #22c55e;
    font-size: 14px;
}

.initiativ-action {
    text-align: center;
}

.initiativ-contact {
    margin-top: 16px;
    font-size: 14px;
    color: var(--text-light);
}

.initiativ-contact a {
    color: var(--primary);
    font-weight: 600;
}

/* ===== Referenzen Info Box ===== */
.referenzen-info {
    padding: 60px 0;
    background: var(--bg-white);
}

.info-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
}

.info-box i {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 20px;
}

.info-box h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.info-box p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 24px;
}

/* ===== Referenzen Page ===== */
.referenzen-page {
    padding: var(--space-section) 0;
    background: var(--bg-light);
}

.referenzen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.referenz-content h3 {
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.referenz-location {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.referenz-location i {
    color: var(--primary);
    margin-right: 4px;
}

.referenz-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

.referenz-details {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.referenz-details span {
    font-size: 13px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 6px;
}

.referenz-details span i {
    color: var(--primary);
    font-size: 12px;
}

/* ===== Referenzen Empty State ===== */
.referenzen-empty {
    padding: 60px 20px;
}

.empty-state {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 40px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.empty-state i {
    font-size: 64px;
    color: var(--primary);
    margin-bottom: 24px;
    opacity: 0.8;
}

.empty-state h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.empty-state p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

/* ===== Services Page ===== */
.services-page {
    padding: var(--space-section) 0;
    background: var(--bg-light);
}

/* Service-Cards auf Leistungen-Seite immer sichtbar */
.services-page .service-card {
    opacity: 1;
    transform: translateY(0);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    margin-top: 16px;
    transition: var(--transition);
}

.service-card-clickable {
    cursor: pointer;
}

.service-card-clickable:hover .service-link {
    gap: 10px;
}

/* ===== Bewerbung Modal Enhanced ===== */
.bewerbung-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 20px;
}

.bewerbung-modal.active {
    opacity: 1;
    visibility: visible;
}

.bewerbung-modal-content {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.bewerbung-stelle {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.bewerbung-stelle strong {
    color: var(--primary);
}

.file-upload {
    position: relative;
}

.file-upload input[type="file"] {
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-upload-label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border: 2px dashed var(--border);
    border-radius: var(--radius);
    background: var(--bg-light);
    transition: var(--transition);
    cursor: pointer;
}

.file-upload:hover .file-upload-label {
    border-color: var(--primary);
    background: rgba(247, 201, 72, 0.05);
}

.file-upload-label i {
    font-size: 24px;
    color: var(--primary);
}

.btn-full {
    width: 100%;
}

.form-hint {
    text-align: center;
    margin-top: 16px;
    color: var(--text-light);
}

/* ===== Initiativ Section ===== */
.initiativ-section {
    padding: 80px 0;
    text-align: center;
}

.initiativ-section h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 16px;
}

.initiativ-section p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 32px;
}

.initiativ-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--border);
    color: var(--text-dark);
    padding: 14px 28px;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* ===== Bewerbungs-Modal ===== */
.bewerbung-modal .modal-content {
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
}

.form-section {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.form-section h3 i {
    color: var(--primary);
}

/* File Input Styling */
input[type="file"] {
    width: 100%;
    padding: 12px;
    border: 2px dashed var(--border);
    border-radius: var(--radius);
    background: var(--bg-light);
    cursor: pointer;
    transition: var(--transition);
}

input[type="file"]:hover {
    border-color: var(--primary);
}

input[type="file"]::file-selector-button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    margin-right: 12px;
    cursor: pointer;
    transition: var(--transition);
}

input[type="file"]::file-selector-button:hover {
    background: var(--primary-dark);
}

.form-group small {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: var(--text-light);
}

/* ===== CTA Section für Subpages ===== */
.cta-subpage {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    padding: 80px 0;
    text-align: center;
}

.cta-subpage h2 {
    color: var(--text-white);
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 16px;
}

.cta-subpage p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 32px;
}

/* ===== Responsive für neue Komponenten ===== */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .referenzen-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .subpage-hero {
        padding: 120px 0 60px;
    }

    .service-modal-content {
        padding: 24px;
    }

    .service-detail-list {
        grid-template-columns: 1fr;
    }

    .referenzen-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .hero-badges {
        justify-content: center;
    }

    .stelle-card {
        padding: 24px;
    }

    .initiativ-buttons {
        flex-direction: column;
        align-items: center;
    }

    .initiativ-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    /* Initiativbewerbung mobile Optimierung */
    .initiativ-content {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }

    .initiativ-text {
        text-align: center;
    }

    .initiativ-list {
        display: inline-block;
        text-align: left;
    }

    .initiativ-action .btn {
        width: 100%;
        max-width: 280px;
        font-size: 14px;
        padding: 14px 20px;
        white-space: nowrap;
    }

    /* Section subtitle mobile */
    .section-subtitle {
        margin-top: -36px;
        margin-bottom: 32px;
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .hero-badges {
        flex-direction: column;
        align-items: flex-start;
    }

    .response-guarantee {
        flex-direction: column;
        text-align: center;
    }

    .service-modal-cta {
        flex-direction: column;
    }

    .service-modal-cta .btn {
        width: 100%;
    }
}
