/**
 * Main Stylesheet
 * Handwerker Service Peleschka
 * Mobile-First, Responsive Design
 */

/* ===== LOCAL FONTS (DSGVO-konform) ===== */
@font-face {
    font-family: 'Open Sans';
    src: url('/assets/fonts/opensans-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('/assets/fonts/opensans-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('/assets/fonts/opensans-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/assets/fonts/montserrat-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/assets/fonts/montserrat-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ===== CSS VARIABLES ===== */
/* Farbpalette Handwerker Service Peleschka */
:root {
    /* Primärfarben */
    --primary: #0D2B52;           /* Dunkelblau - Header, Footer, Navigation */
    --primary-light: #1E4F8A;     /* Mittelblau - Buttons, Icons, Akzente */
    --primary-dark: #091d38;      /* Noch dunkler für Hover */
    --accent: #F28C1B;            /* Orange - CTA, Hervorhebungen */
    --accent-hover: #d97a0f;      /* Orange Hover */

    /* Sekundärfarben */
    --white: #FFFFFF;
    --gray-50: #F2F2F2;           /* Hellgrau - Hintergrundbereiche */
    --gray-100: #e8e8e8;
    --gray-200: #d4d4d4;
    --gray-300: #b0b0b0;
    --gray-400: #8c8c8c;
    --gray-500: #6b6b6b;
    --gray-600: #525252;
    --gray-700: #3A3A3A;          /* Dunkelgrau - Fließtext */
    --gray-800: #2a2a2a;
    --gray-900: #1a1a1a;

    /* Akzentfarben */
    --gold: #F5C542;              /* Bewertungssterne */
    --success: #22c55e;
    --danger: #ef4444;
    --warning: #f59e0b;

    /* Typography */
    --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Effects */
    --transition: 0.2s ease;
    --shadow-sm: 0 1px 2px rgba(13, 43, 82, 0.05);
    --shadow: 0 4px 6px -1px rgba(13, 43, 82, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(13, 43, 82, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(13, 43, 82, 0.2);
    --radius: 8px;
    --radius-lg: 12px;
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--gray-700);
    line-height: 1.6;
    background: var(--white);
}

/* Headings use Montserrat */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
}

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

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
}

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

/* Skip Link (Accessibility) */
.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    background: var(--primary);
    color: var(--white);
    padding: 12px 24px;
    z-index: 1000;
}

.skip-link:focus {
    top: 0;
}

/* Container - automatisch anpassend */
.container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
}

@media (min-width: 1200px) {
    .container {
        padding: 0 60px;
    }
}

.container-narrow {
    max-width: 1200px;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    z-index: 100;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.header.scrolled {
    box-shadow: var(--shadow-lg);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 55px;
    width: auto;
    object-fit: contain;
}

/* Kleineres Logo bei gescrolltem Header */
.header.scrolled .logo-img {
    height: 45px;
}

/* Navigation */
.nav {
    display: none;
}

.nav.open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 20px;
}

.nav-list {
    list-style: none;
}

.nav-list > li {
    border-bottom: 1px solid var(--gray-200);
}

.nav-list > li:last-child {
    border-bottom: none;
}

.nav-list a {
    display: block;
    padding: 12px 0;
    color: var(--gray-700);
    font-weight: 500;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--accent);
}

/* Desktop Nav - White text for dark header */
@media (min-width: 768px) {
    .header .nav-list a {
        color: rgba(255, 255, 255, 0.9);
    }

    .header .nav-list a:hover,
    .header .nav-list a.active {
        color: var(--accent);
    }
}

/* Dropdown */
.has-dropdown .dropdown {
    display: none;
    list-style: none;
    padding-left: 20px;
}

.has-dropdown:hover .dropdown {
    display: block;
}

.dropdown a {
    font-size: 14px;
    padding: 8px 0;
}

/* Header Phone */
.header-phone {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--accent);
    color: var(--white);
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
}

.header-phone:hover {
    background: var(--accent-hover);
    color: var(--white);
}

/* Nav Toggle (Hamburger) */
.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

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

/* ===== MAIN CONTENT ===== */
main {
    padding-top: 70px;
}

/* Landing Page - kein Header, also kein padding-top */
.landing-page main {
    padding-top: 0;
}

/* Sections */
.section {
    padding: 60px 0;
}

.section-dark {
    background: var(--gray-50);
}

.section-primary {
    background: var(--primary);
    color: var(--white);
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--gray-900);
}

.section-primary .section-title {
    color: var(--white);
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-600);
    margin-bottom: 40px;
}

.section-primary .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 80px 0;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

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

.hero p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 500px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--accent-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
}

.btn-secondary:hover {
    background: var(--gray-100);
    color: var(--primary);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

/* Services Grid */
.services-grid {
    display: grid;
    gap: 24px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--white);
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--gray-900);
}

.service-card p {
    color: var(--gray-600);
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent);
    font-weight: 600;
}

.service-link:hover {
    gap: 10px;
}

/* Gallery */
.gallery-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, 1fr);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--white);
    font-weight: 500;
}

/* Contact Form */
.contact-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--gray-700);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

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

/* Info Box */
.info-box {
    background: var(--gray-50);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 24px;
}

.info-box h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--gray-900);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item svg {
    flex-shrink: 0;
    color: var(--accent);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    gap: 40px;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 16px;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--accent);
}

.footer-col p {
    opacity: 0.8;
    line-height: 1.7;
}

.footer-col address {
    font-style: normal;
    opacity: 0.8;
    line-height: 1.7;
}

.footer-col a {
    color: var(--white);
    opacity: 0.8;
}

.footer-col a:hover {
    opacity: 1;
    color: var(--accent);
}

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

.footer-col li {
    margin-bottom: 10px;
}

.footer-bottom {
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 14px;
    opacity: 0.7;
}

.footer-credit {
    margin-top: 10px;
    font-size: 13px;
    opacity: 0.8;
}

.footer-credit a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.footer-credit a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* Footer Social Icons */
.mt-social {
    margin-top: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

/* ===== FORM SUCCESS / ERROR MESSAGES ===== */
.form-success-message {
    text-align: center;
    padding: 40px 30px;
    animation: fadeInUp 0.5s ease;
}

.form-success-message svg {
    color: var(--success);
    margin-bottom: 20px;
}

.form-success-message h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--success);
    margin-bottom: 12px;
}

.form-success-message p {
    color: var(--gray-600);
    font-size: 16px;
    line-height: 1.6;
}

.form-error-message {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    border: 1px solid #fecaca;
    color: #dc2626;
    padding: 16px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
    animation: shake 0.4s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-5px); }
    40%, 80% { transform: translateX(5px); }
}

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.mt-4 { margin-top: 24px; }
.mb-4 { margin-bottom: 24px; }

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }

    .nav {
        display: block;
        position: static;
        background: none;
        box-shadow: none;
        padding: 0;
    }

    .nav-list {
        display: flex;
        gap: 8px;
    }

    .nav-list > li {
        border-bottom: none;
    }

    .nav-list a {
        padding: 8px 16px;
        border-radius: var(--radius);
        color: rgba(255, 255, 255, 0.9);
    }

    .nav-list a:hover,
    .nav-list a.active {
        background: rgba(255, 255, 255, 0.1);
        color: var(--white);
    }

    .has-dropdown {
        position: relative;
    }

    .has-dropdown .dropdown {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 200px;
        background: var(--white);
        border-radius: var(--radius);
        box-shadow: var(--shadow-lg);
        padding: 8px 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: var(--transition);
    }

    .has-dropdown:hover .dropdown {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .dropdown a {
        padding: 10px 20px;
        font-size: 15px;
    }

    .dropdown a:hover {
        background: var(--gray-50);
    }

    .header-phone {
        display: flex;
    }

    .nav-toggle {
        display: none;
    }

    .hero h1 {
        font-size: 48px;
    }

    .section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 36px;
    }

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

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

/* Desktop */
@media (min-width: 1024px) {
    .hero {
        min-height: 600px;
    }

    .hero h1 {
        font-size: 56px;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

/* Large Desktop */
@media (min-width: 1280px) {
    .container {
        padding: 0 40px;
    }
}

/* Extra Large Desktop */
@media (min-width: 1700px) {
    .container {
        padding: 0 60px;
    }
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--gray-500);
}

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

.breadcrumb span {
    color: var(--gray-400);
}

.breadcrumb span:last-child {
    color: var(--gray-700);
    font-weight: 500;
}

/* ===== SERVICE DETAIL PAGE ===== */
.service-detail {
    padding: 40px 0 80px;
}

.service-header {
    text-align: center;
    margin-bottom: 48px;
}

.service-icon-large {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--primary-light);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-large svg {
    width: 40px;
    height: 40px;
    stroke: var(--white);
}

.service-detail h1 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--gray-900);
}

.service-lead {
    font-size: 18px;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.service-content {
    max-width: 800px;
    margin: 0 auto;
}

.service-description {
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 48px;
}

.service-description h2 {
    font-size: 24px;
    margin: 32px 0 16px;
    color: var(--gray-900);
}

.service-description ul,
.service-description ol {
    margin: 16px 0;
    padding-left: 24px;
}

.service-description li {
    margin-bottom: 8px;
}

.service-gallery {
    margin-bottom: 48px;
}

.service-gallery h2 {
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--gray-900);
}

.service-cta {
    background: var(--gray-50);
    padding: 40px;
    border-radius: var(--radius-lg);
    text-align: center;
}

.service-cta h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--gray-900);
}

.service-cta p {
    color: var(--gray-600);
    margin-bottom: 24px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== GALLERY PAGE ===== */
.gallery-page {
    padding: 40px 0 80px;
}

.gallery-page h1 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--gray-900);
}

.page-lead {
    font-size: 18px;
    color: var(--gray-600);
    margin-bottom: 32px;
}

.gallery-filter {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--gray-600);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.gallery-grid-large {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    color: var(--white);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
}

.gallery-caption strong {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
}

.gallery-caption span {
    font-size: 12px;
    opacity: 0.8;
}

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox[hidden] {
    display: none;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: calc(90vh - 60px);
    object-fit: contain;
}

.lightbox-caption {
    color: var(--white);
    text-align: center;
    padding: 16px;
    font-size: 14px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* Responsive Gallery */
@media (min-width: 768px) {
    .gallery-grid-large {
        grid-template-columns: repeat(3, 1fr);
    }

    .service-detail h1 {
        font-size: 40px;
    }
}

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

    .service-detail h1 {
        font-size: 48px;
    }
}

/* ===== ABOUT PAGE ===== */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0 80px;
}

.about-content h1 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--gray-900);
}

.about-content .lead {
    font-size: 20px;
    color: var(--gray-600);
    margin-bottom: 40px;
    line-height: 1.7;
}

.about-content h2 {
    font-size: 24px;
    margin: 40px 0 16px;
    color: var(--gray-900);
}

.about-content p {
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-content ul {
    margin: 16px 0;
    padding-left: 24px;
}

.about-content li {
    margin-bottom: 8px;
    color: var(--gray-700);
}

.cta-box {
    background: var(--gray-50);
    padding: 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    margin-top: 48px;
}

.cta-box h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--gray-900);
}

.cta-box p {
    margin-bottom: 24px;
}

/* Services Overview Page */
.services-page .services-grid {
    margin-top: 40px;
}

.services-page .service-card {
    display: flex;
    flex-direction: column;
}

.services-page .service-card .service-link {
    margin-top: auto;
}

/* ===== BEWERTUNGEN / STARS ===== */
.stars {
    display: inline-flex;
    gap: 2px;
    color: var(--gold);
}

.stars svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.stars-empty svg {
    color: var(--gray-300);
}

.rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating-value {
    font-weight: 600;
    color: var(--gray-900);
}

.rating-count {
    color: var(--gray-500);
    font-size: 14px;
}

/* ===== UTILITY CLASSES ===== */
.text-gold { color: var(--gold); }
.text-primary { color: var(--primary); }
.text-primary-light { color: var(--primary-light); }
.bg-primary { background-color: var(--primary); }
.bg-primary-light { background-color: var(--primary-light); }

/* ===== LANDING PAGE HERO ===== */
.landing-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 40px 20px;
    position: relative;
}

.landing-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.landing-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.landing-logo {
    width: 200px;
    height: auto;
    margin: 0 auto 24px;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
    animation: logoFadeIn 1s ease-out;
}

@keyframes logoFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.landing-hero h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}

.landing-hero .tagline {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.hero-buttons .btn {
    min-width: 220px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    cursor: pointer;
}

.scroll-indicator svg {
    width: 32px;
    height: 32px;
    stroke: var(--white);
    opacity: 0.7;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ===== ÜBER MICH SEKTION ===== */
.about-section {
    padding: 60px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    gap: 40px;
    align-items: center;
}

.about-image {
    text-align: center;
}

.about-image img {
    max-width: 300px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.about-placeholder {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-placeholder svg {
    width: 80px;
    height: 80px;
    stroke: var(--white);
}

.about-text h2 {
    font-size: 28px;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.about-text .lead {
    font-size: 18px;
    color: var(--primary-light);
    font-weight: 600;
    margin-bottom: 16px;
}

.about-text p {
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--gray-50);
    padding: 10px 16px;
    border-radius: var(--radius);
    font-weight: 500;
    color: var(--gray-700);
}

.about-feature svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent);
}

/* ===== PROZESS TIMELINE ===== */
.process-section {
    padding: 60px 0;
    background: var(--gray-50);
}

.process-section h2 {
    text-align: center;
    font-size: 28px;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.process-section .section-subtitle {
    text-align: center;
    margin-bottom: 48px;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 600px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.process-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    box-shadow: var(--shadow);
}

.process-content {
    flex: 1;
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.process-content h3 {
    font-size: 18px;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.process-content p {
    color: var(--gray-600);
    font-size: 15px;
}

.whatsapp-hint {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: #25D366;
    color: var(--white);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.whatsapp-hint svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

/* ===== EINZUGSGEBIET ===== */
.area-section {
    padding: 60px 0;
    background: var(--white);
}

.area-section h2 {
    text-align: center;
    font-size: 28px;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.area-section .section-subtitle {
    text-align: center;
    margin-bottom: 40px;
}

.area-grid {
    display: grid;
    gap: 40px;
}

.area-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.area-map iframe {
    width: 100%;
    height: 300px;
    border: none;
    display: block;
}

.area-list h3 {
    font-size: 20px;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.area-tag {
    background: var(--gray-100);
    color: var(--gray-700);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.area-tag:hover {
    background: var(--primary);
    color: var(--white);
}

/* ===== FAQ ACCORDION ===== */
.faq-section {
    padding: 60px 0;
    background: var(--gray-50);
}

.faq-section h2 {
    text-align: center;
    font-size: 28px;
    color: var(--gray-900);
    margin-bottom: 40px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    margin-bottom: 16px;
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 2px solid transparent;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
}

.faq-item.active {
    border-color: var(--accent);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    text-align: left;
    font-size: 17px;
    font-weight: 600;
    color: var(--gray-900);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: var(--transition);
    font-family: inherit;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-item.active .faq-question {
    color: var(--primary);
    background: var(--gray-50);
}

.faq-question svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    stroke: var(--gray-400);
    transition: transform 0.3s ease, stroke 0.3s ease;
}

.faq-question:hover svg {
    stroke: var(--primary);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
    stroke: var(--accent);
}

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

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

.faq-answer p {
    padding: 0 24px 20px;
    margin: 0;
    color: var(--gray-600);
    line-height: 1.7;
}

.faq-answer-content {
    padding: 0 24px 20px;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ===== KONTAKT SEKTION ===== */
.contact-section {
    padding: 60px 0;
    background: var(--white);
}

.contact-section h2 {
    text-align: center;
    font-size: 28px;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.contact-section .section-subtitle {
    text-align: center;
    margin-bottom: 40px;
}

.contact-grid {
    display: grid;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info-cards {
    display: grid;
    gap: 16px;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--gray-50);
    padding: 20px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.contact-info-card:hover {
    box-shadow: var(--shadow);
}

.contact-info-card svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    stroke: var(--accent);
}

.contact-info-card h4 {
    font-size: 14px;
    color: var(--gray-500);
    font-weight: 500;
    margin-bottom: 4px;
}

.contact-info-card p,
.contact-info-card a {
    font-size: 16px;
    color: var(--gray-900);
    font-weight: 600;
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 99;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: var(--white);
}

/* ===== ADDITIONAL LANDING PAGE CLASSES ===== */

/* Hero Content Wrapper */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}

.hero-subtitle {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    cursor: pointer;
}

.hero-scroll svg {
    width: 32px;
    height: 32px;
    stroke: var(--white);
    opacity: 0.7;
}

/* About Section Extended */
.about-section .about-content {
    display: grid;
    gap: 60px;
    align-items: center;
    max-width: none;
    padding: 0;
}

@media (min-width: 768px) {
    .about-section .about-content {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

@media (min-width: 1200px) {
    .about-section .about-content {
        grid-template-columns: 1.2fr 1fr;
        gap: 100px;
    }
}

.about-lead {
    font-size: 18px;
    color: var(--primary-light);
    font-weight: 600;
    margin-bottom: 16px;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--gray-700);
}

.about-list li svg {
    flex-shrink: 0;
    stroke: var(--accent);
    margin-top: 2px;
}

.about-cta-text {
    font-size: 17px;
    font-weight: 600;
    color: var(--gray-900);
    margin: 24px 0 16px;
}

/* Handwerker Bild */
.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.handwerker-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: var(--radius-lg);
    filter: drop-shadow(0 10px 30px rgba(13, 43, 82, 0.2));
    animation: floatIcon 3s ease-in-out infinite;
}

@media (min-width: 768px) {
    .handwerker-img {
        max-width: 450px;
    }
}

@media (min-width: 1024px) {
    .handwerker-img {
        max-width: 500px;
    }
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Process Section Extended */
.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    box-shadow: var(--shadow);
}

.step-content {
    flex: 1;
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.step-content h3 {
    font-size: 18px;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.step-content p {
    color: var(--gray-600);
    font-size: 15px;
    margin: 0;
}

.process-whatsapp-hint {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: #25D366;
    color: var(--white);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.process-whatsapp-hint svg {
    flex-shrink: 0;
}

.process-whatsapp-hint p {
    margin: 0;
    text-align: left;
}

/* Area Section Extended */
.area-content {
    display: grid;
    gap: 40px;
}

.area-map small {
    display: block;
    text-align: center;
    margin-top: 8px;
}

.area-map small a {
    color: var(--primary);
    font-size: 14px;
}

.area-list h3 {
    font-size: 20px;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.area-list ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.area-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-700);
    font-size: 15px;
}

.area-list li svg {
    stroke: var(--accent);
    flex-shrink: 0;
}

.area-note {
    margin-top: 20px;
    padding: 12px;
    background: var(--gray-50);
    border-radius: var(--radius);
    font-size: 14px;
    color: var(--gray-600);
    text-align: center;
}

/* Contact Section Extended */
.contact-content {
    display: grid;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 20px;
    color: var(--gray-900);
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.contact-item svg {
    flex-shrink: 0;
    stroke: var(--primary);
}

.contact-item strong {
    display: block;
    font-size: 14px;
    color: var(--gray-500);
    font-weight: 500;
    margin-bottom: 4px;
}

.contact-item a,
.contact-item address {
    font-style: normal;
    font-size: 16px;
    color: var(--gray-900);
    font-weight: 600;
}

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

.contact-whatsapp svg {
    fill: #25D366;
    stroke: none;
}

/* Contact Form Styling */
.contact-form-wrapper {
    background: var(--gray-50);
    padding: 32px;
    border-radius: var(--radius-lg);
}

.contact-form .form-row {
    display: grid;
    gap: 16px;
}

.contact-form .form-group {
    margin-bottom: 16px;
}

.contact-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30, 79, 138, 0.1);
}

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

.contact-form .form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-form .form-checkbox input {
    width: auto;
    margin-top: 3px;
}

.contact-form .form-checkbox label {
    font-size: 14px;
    font-weight: 400;
    color: var(--gray-600);
    margin-bottom: 0;
}

.contact-form .form-checkbox a {
    color: var(--primary);
    text-decoration: underline;
}

.contact-form .honeypot {
    position: absolute;
    left: -9999px;
}

/* Services Section for Landing */
.services-section {
    padding: 60px 0;
    background: var(--white);
}

.services-section .section-title,
.about-section .section-title,
.process-section .section-title,
.area-section .section-title,
.faq-section .section-title,
.contact-section .section-title {
    text-align: center;
    font-size: 28px;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.services-section .section-subtitle,
.about-section .section-subtitle,
.process-section .section-subtitle,
.area-section .section-subtitle,
.faq-section .section-subtitle,
.contact-section .section-subtitle {
    text-align: center;
    color: var(--gray-600);
    margin-bottom: 40px;
}

.services-section .services-grid {
    display: grid;
    gap: 24px;
}

.services-section .service-card {
    background: var(--gray-50);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
}

.services-section .service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    background: var(--white);
}

.services-section .service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-section .service-icon svg {
    stroke: var(--white);
}

.services-section .service-card h3 {
    font-size: 20px;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.services-section .service-card p {
    color: var(--gray-600);
    font-size: 15px;
    line-height: 1.6;
}

/* Button Styles Extended */
.btn-lg {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

.btn svg {
    margin-right: 8px;
    vertical-align: middle;
}

/* ===== LEFT SIDEBAR ===== */
.left-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 220px;
    background: var(--primary-dark);
    z-index: 100;
    display: none;
    flex-direction: column;
    padding: 20px 15px;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s ease;
    opacity: 1;
}

/* Sidebar verstecken beim Scrollen - smooth */
.left-sidebar.hidden {
    transform: translateX(-100%);
    opacity: 0;
}

.sidebar-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-logo a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-logo img {
    width: 160px;
    height: auto;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
}

.sidebar-nav {
    flex: 1;
}

.sidebar-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-nav li {
    margin-bottom: 8px;
}

.sidebar-nav a {
    display: block;
    padding: 12px 16px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-radius: var(--radius);
    transition: var(--transition);
}

.sidebar-nav a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.sidebar-nav a.active {
    background: var(--accent);
    color: var(--white);
}

.sidebar-contact {
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
}

.sidebar-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--accent);
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius);
    transition: var(--transition);
}

.sidebar-phone:hover {
    background: var(--accent-dark);
    transform: scale(1.02);
}

.sidebar-phone svg {
    stroke: var(--white);
}

/* Sidebar nur auf Desktop anzeigen - überlagert Content */
@media (min-width: 1024px) {
    .left-sidebar {
        display: flex;
    }
}

/* ===== MOBILE MENU BUTTON ===== */
.mobile-menu-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 101;
    width: 50px;
    height: 50px;
    background: var(--primary-dark);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    transform: scale(1.05);
    background: var(--primary);
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

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

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

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

/* Hide mobile menu button on desktop */
@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* ===== MOBILE NAV OVERLAY ===== */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: var(--primary-dark);
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 60px 20px 40px;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-logo {
    margin-bottom: 40px;
}

.mobile-nav-logo img {
    width: 180px;
    height: auto;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
}

.mobile-nav {
    text-align: center;
    width: 100%;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.mobile-nav-list li {
    margin-bottom: 16px;
}

.mobile-nav-list a {
    display: inline-block;
    color: var(--white);
    font-size: 24px;
    font-weight: 600;
    text-decoration: none;
    padding: 12px 32px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.mobile-nav-list a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent);
}

.mobile-nav-phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    padding: 16px 32px;
    background: var(--accent);
    border-radius: var(--radius);
    transition: var(--transition);
}

.mobile-nav-phone:hover {
    transform: scale(1.05);
    background: var(--accent-dark);
}

.mobile-nav-phone svg {
    stroke: var(--white);
}

/* Legal Page Styling */
/* Legal Page Hero Header */
.legal-page {
    padding: 0;
}

.legal-page h1 {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 90px 0 40px;
    margin: 0 -9999px;
    padding-left: 9999px;
    padding-right: 9999px;
    font-size: 28px;
    text-align: center;
    margin-bottom: 40px;
}

.legal-page .page-content {
    color: var(--gray-700);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px 60px;
}

.legal-page .page-content h2 {
    font-size: 24px;
    color: var(--primary);
    margin: 40px 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent);
}

.legal-page .page-content h3 {
    font-size: 20px;
    color: var(--gray-900);
    margin: 28px 0 12px;
}

.legal-page .page-content h4 {
    font-size: 18px;
    color: var(--gray-800);
    margin: 20px 0 10px;
}

.legal-page .page-content p {
    margin-bottom: 16px;
}

.legal-page .page-content ul,
.legal-page .page-content ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-page .page-content li {
    margin-bottom: 8px;
}

.legal-page .page-content a {
    color: var(--primary-light);
    text-decoration: underline;
}

.legal-page .page-content a:hover {
    color: var(--accent);
}

/* Footer Logo */
.footer-logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--gray-400);
    font-size: 14px;
}

/* Additional Responsive for New Sections */
@media (min-width: 576px) {
    .hero-title {
        font-size: 32px;
    }

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

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

    .phone-text {
        display: inline;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

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

    .area-content {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }

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

    .services-section .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-section .section-title,
    .about-section .section-title,
    .process-section .section-title,
    .area-section .section-title,
    .faq-section .section-title,
    .contact-section .section-title {
        font-size: 36px;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 48px;
    }

    .process-timeline {
        flex-direction: row;
        max-width: 100%;
        gap: 16px;
    }

    .process-step {
        flex-direction: column;
        text-align: center;
        flex: 1;
    }

    .step-number {
        margin: 0 auto 16px;
    }

    .step-content {
        text-align: center;
    }
}

@media (min-width: 1280px) {
    .hero-title {
        font-size: 56px;
    }
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gray-900);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius);
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* ===== LANDING NAV ===== */
.landing-nav .nav-list a {
    color: var(--gray-700);
}

.landing-nav .nav-list a:hover {
    color: var(--accent);
}

/* ===== RESPONSIVE LANDING PAGE ===== */

/* Mobile Landscape */
@media (min-width: 576px) {
    .landing-logo {
        width: 240px;
    }

    .landing-hero h1 {
        font-size: 32px;
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .area-map iframe {
        height: 350px;
    }
}

/* Tablet */
@media (min-width: 768px) {
    .landing-hero {
        padding: 60px 40px;
    }

    .landing-logo {
        width: 280px;
    }

    .landing-hero h1 {
        font-size: 40px;
    }

    .landing-hero .tagline {
        font-size: 20px;
    }

    .about-section,
    .process-section,
    .area-section,
    .faq-section,
    .contact-section {
        padding: 80px 0;
    }

    .about-section h2,
    .process-section h2,
    .area-section h2,
    .faq-section h2,
    .contact-section h2 {
        font-size: 36px;
    }

    .about-grid {
        grid-template-columns: 1fr 2fr;
    }

    .area-grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }

    .area-map iframe {
        height: 400px;
    }

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

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

/* Desktop */
@media (min-width: 1024px) {
    .landing-logo {
        width: 350px;
    }

    .landing-hero h1 {
        font-size: 48px;
    }

    .process-timeline {
        flex-direction: row;
        max-width: 100%;
        gap: 16px;
    }

    .process-step {
        flex-direction: column;
        text-align: center;
        flex: 1;
    }

    .process-number {
        margin: 0 auto;
    }

    .process-content {
        text-align: center;
    }

    .whatsapp-float a {
        width: 60px;
        height: 60px;
    }

    .whatsapp-float svg {
        width: 36px;
        height: 36px;
    }
}

/* Large Desktop */
@media (min-width: 1280px) {
    .landing-hero h1 {
        font-size: 56px;
    }
}

/* ===== MOBILE SPECIFIC FIXES ===== */
@media (max-width: 575px) {
    /* Kompakterer Header auf Mobile */
    .header .container {
        height: 60px;
    }

    .logo-img {
        height: 45px;
    }

    /* Legal Page Hero kleiner auf Mobile */
    .legal-page h1 {
        padding: 80px 0 30px;
        font-size: 24px;
    }

    /* Mobile Menu Button kleiner */
    .mobile-menu-btn {
        top: 15px;
        right: 15px;
        width: 44px;
        height: 44px;
    }

    .mobile-menu-btn span {
        width: 20px;
    }

    /* Mobile Nav kompakter */
    .mobile-nav-list a {
        font-size: 20px;
        padding: 10px 24px;
    }

    .mobile-nav-list li {
        margin-bottom: 12px;
    }

    .mobile-nav-logo img {
        width: 150px;
    }

    /* Hero auf Mobile - mehr Sichtbarkeit */
    .landing-hero {
        min-height: calc(100vh - 20px);
        min-height: calc(100dvh - 20px);
        padding: 30px 15px;
    }

    .landing-logo {
        width: 160px;
        margin-bottom: 20px;
    }

    .hero-title {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .hero-buttons .btn {
        min-width: 180px;
        padding: 12px 20px;
        font-size: 15px;
    }

    .hero-scroll {
        bottom: 20px;
    }

    /* WhatsApp Button kleiner */
    .whatsapp-float {
        bottom: 16px;
        right: 16px;
    }

    .whatsapp-float a {
        width: 50px;
        height: 50px;
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}
