/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
    --green-dark: #2C5F2E;
    --green-mid: #4A8F3F;
    --green-light: #8DC63F;
    --green-pale: #c8e6a0;
    --cream: #F5F0E8;
    --cream-dark: #EDE6D8;
    --text-dark: #1a2e1a;
    --text-body: #3a3a3a;
    --shadow: 0 4px 20px rgba(44, 95, 46, 0.15);
    --shadow-hover: 0 8px 32px rgba(44, 95, 46, 0.25);
    --radius: 12px;
    --transition: all 0.3s ease;
}

/* ===== GLOBAL ===== */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', 'Segoe UI', system-ui, sans-serif;
    color: var(--text-body);
    background-color: #fff;
    padding-top: 70px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--green-dark);
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--green-mid), var(--green-light));
    border-radius: 2px;
    margin: 1rem auto 1.5rem;
}

/* ===== NAVBAR ===== */
.navbar {
    background-color: var(--green-dark) !important;
    height: 70px;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar-brand .navbar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 1.5rem;
}

.navbar-brand .navbar-item:hover {
    background-color: transparent !important;
}

.logo-svg {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
}

.brand-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.3px;
}

.brand-name .brand-accent {
    color: var(--green-pale);
}

.navbar-item {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.navbar-item:hover {
    color: #fff !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
    border-radius: 6px;
}

.navbar-burger {
    color: #fff !important;
    height: 70px;
}

.navbar-burger span {
    background-color: #fff;
    height: 2px;
}

.navbar-menu {
    background-color: var(--green-dark);
}

.btn-nav {
    background-color: var(--green-light) !important;
    color: var(--green-dark) !important;
    font-weight: 700 !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 0.5rem 1.25rem !important;
    transition: var(--transition) !important;
}

.btn-nav:hover {
    background-color: #a0d94a !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(141, 198, 63, 0.4) !important;
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(135deg, var(--green-dark) 0%, #1a3d1c 40%, #2d5a30 100%);
    min-height: 92vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 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='%238DC63F' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-leaf-bg {
    position: absolute;
    right: -80px;
    top: -80px;
    opacity: 0.06;
    width: 600px;
    height: 600px;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 4rem 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(141, 198, 63, 0.15);
    border: 1px solid rgba(141, 198, 63, 0.3);
    color: var(--green-pale);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3.8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.hero-title .accent {
    color: var(--green-light);
}

.hero-slogan {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    font-family: 'Playfair Display', Georgia, serif;
    margin-bottom: 2rem;
    border-left: 4px solid var(--green-light);
    padding-left: 1rem;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.btn-primary-hero {
    background-color: var(--green-light);
    color: var(--green-dark);
    font-weight: 700;
    font-size: 1rem;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(141, 198, 63, 0.35);
}

.btn-primary-hero:hover {
    background-color: #a0d94a;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(141, 198, 63, 0.5);
    color: var(--green-dark);
}

.btn-secondary-hero {
    background-color: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.4);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: var(--transition);
}

.btn-secondary-hero:hover {
    border-color: #fff;
    background-color: rgba(255,255,255,0.1);
    color: #fff;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--green-light);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.3rem;
}

.hero-image-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-wrapper {
    width: 320px;
    height: 320px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(141, 198, 63, 0.2);
    box-shadow: 0 0 80px rgba(141, 198, 63, 0.15);
    animation: pulse-glow 4s ease-in-out infinite;
}

.hero-logo-svg {
    width: 220px;
    height: 220px;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 60px rgba(141, 198, 63, 0.1); }
    50% { box-shadow: 0 0 100px rgba(141, 198, 63, 0.25); }
}

/* ===== LEISTUNGEN SECTION ===== */
.leistungen-section {
    background-color: var(--cream);
    padding: 6rem 0;
}

.service-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(44, 95, 46, 0.08);
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green-mid), var(--green-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

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

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--green-mid), var(--green-light));
}

.service-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 0.75rem;
}

.service-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
    text-align: left;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #555;
    padding: 0.3rem 0;
}

.service-features li::before {
    content: '✓';
    color: var(--green-mid);
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* ===== ÜBER MICH SECTION ===== */
.ueber-section {
    background: #fff;
    padding: 6rem 0;
}

.ueber-image-wrap {
    position: relative;
}

.ueber-logo-circle {
    width: 100%;
    max-width: 360px;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: var(--shadow-hover);
}

.ueber-logo-circle svg {
    width: 65%;
    height: 65%;
}

.ueber-badge {
    position: absolute;
    bottom: 10%;
    right: 5%;
    background: var(--green-light);
    color: var(--green-dark);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
    text-align: center;
    box-shadow: 0 4px 16px rgba(141, 198, 63, 0.4);
    line-height: 1.2;
}

.ueber-badge .badge-num {
    font-size: 1.5rem;
    font-family: 'Playfair Display', Georgia, serif;
}

.ueber-text {
    padding: 1rem 0;
}

.ueber-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-size: 1.02rem;
}

.value-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.value-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 0.6rem 0;
    font-size: 0.98rem;
    color: #444;
}

.value-list li strong {
    color: var(--green-dark);
}

.ueber-text p strong {
    color: var(--green-dark);
}

.value-icon {
    width: 32px;
    height: 32px;
    background: var(--cream);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ===== KONTAKT SECTION ===== */
.kontakt-section {
    background: linear-gradient(135deg, var(--green-dark) 0%, #1e4520 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.kontakt-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%238DC63F' fill-opacity='0.04'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.kontakt-section .section-title {
    color: #fff;
}

.kontakt-section .section-subtitle {
    color: rgba(255,255,255,0.65);
}

.kontakt-section .section-divider {
    background: linear-gradient(90deg, var(--green-light), var(--green-pale));
}

.contact-info-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 2.5rem;
    height: 100%;
}

.contact-info-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 2rem;
    font-weight: 700;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item:hover .contact-item-text {
    color: var(--green-light);
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    background: rgba(141, 198, 63, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--green-light);
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-item:hover .contact-item-icon {
    background: rgba(141, 198, 63, 0.25);
}

.contact-item-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
}

.contact-item-text {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 600;
    display: block;
    transition: var(--transition);
}

/* ===== CONTACT FORM ===== */
.contact-form-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: 0 8px 40px rgba(0,0,0,0.2);
}

.contact-form-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.4rem;
    color: var(--green-dark);
    margin-bottom: 1.75rem;
    font-weight: 700;
}

.field label.label {
    color: var(--green-dark);
    font-weight: 600;
    font-size: 0.9rem;
}

.input, .textarea {
    border-color: #ddd !important;
    border-radius: 8px !important;
    transition: var(--transition) !important;
    color: var(--text-dark) !important;
    font-size: 0.95rem !important;
}

.input:focus, .textarea:focus {
    border-color: var(--green-mid) !important;
    box-shadow: 0 0 0 3px rgba(74, 143, 63, 0.15) !important;
}

.input::placeholder, .textarea::placeholder {
    color: #aaa !important;
}

.btn-submit {
    background: linear-gradient(135deg, var(--green-mid), var(--green-light)) !important;
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    padding: 0.85rem 2.5rem !important;
    border-radius: 50px !important;
    border: none !important;
    cursor: pointer !important;
    width: 100% !important;
    transition: var(--transition) !important;
    letter-spacing: 0.3px;
}

.btn-submit:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--green-dark), var(--green-mid)) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 143, 63, 0.4) !important;
}

.btn-submit.is-loading {
    pointer-events: none;
    opacity: 0.8;
}

/* ===== FOOTER ===== */
.site-footer {
    background: #111f12;
    padding: 3rem 0 2rem;
}

.footer-brand {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.4rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-slogan {
    color: var(--green-pale);
    font-style: italic;
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.footer-links a {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--green-light);
}

.footer-divider {
    border-color: rgba(255,255,255,0.08);
    margin: 1.75rem 0;
}

.footer-bottom {
    color: rgba(255,255,255,0.35);
    font-size: 0.85rem;
}

/* ===== SCROLL ANIMATIONS ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== VORHER / NACHHER PORTFOLIO ===== */
.portfolio-section {
    background: var(--cream);
    padding: 6rem 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.portfolio-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(44, 95, 46, 0.08);
    transition: var(--transition);
}

.portfolio-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

/* ===== BEFORE / AFTER SLIDER ===== */
.ba-slider {
    position: relative;
    height: 220px;
    overflow: hidden;
    cursor: ew-resize;
    user-select: none;
    touch-action: pan-y;
}

.ba-layer {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ba-layer--before {
    clip-path: inset(0 50% 0 0);
    z-index: 2;
}

.ba-placeholder {
    width: 100%;
    height: 100%;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #bbb;
}

.ba-placeholder--after {
    background: rgba(44, 95, 46, 0.12);
    color: var(--green-mid);
}

/* When real photos are added, use: <img class="ba-photo"> */
.ba-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.ba-handle-bar {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: #fff;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.ba-handle-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.25);
    color: var(--green-dark);
    font-size: 0.7rem;
    flex-shrink: 0;
}

.ba-tag {
    position: absolute;
    top: 10px;
    z-index: 5;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 8px;
    border-radius: 4px;
    pointer-events: none;
}

.ba-tag--before {
    left: 10px;
    background: rgba(0,0,0,0.5);
    color: #fff;
}

.ba-tag--after {
    right: 10px;
    background: rgba(44, 95, 46, 0.75);
    color: #fff;
}

.ba-caption {
    padding: 0.85rem 1rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--green-dark);
    display: flex;
    align-items: center;
    gap: 6px;
    border-top: 1px solid rgba(44, 95, 46, 0.08);
}

.portfolio-note {
    text-align: center;
    color: #888;
    font-size: 0.9rem;
    padding: 1rem;
    background: #fff;
    border-radius: var(--radius);
    border: 1px dashed rgba(44, 95, 46, 0.2);
}

/* ===== GOOGLE MAPS ===== */
.map-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(44, 95, 46, 0.12);
    position: relative;
}

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

.map-link {
    display: block;
    text-align: right;
    padding: 0.4rem 0.75rem;
    background: rgba(44, 95, 46, 0.04);
    font-size: 0.78rem;
    color: var(--green-mid);
    text-decoration: none;
    border-top: 1px solid rgba(44, 95, 46, 0.08);
    gap: 4px;
}

.map-link:hover { color: var(--green-dark); }

.map-note {
    margin-top: 0.85rem;
    font-size: 0.88rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ===== EINSATZGEBIET ===== */
.einsatz-section {
    background-color: var(--cream);
    padding: 6rem 0;
}

.city-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.city-card {
    background: #fff;
    border: 1px solid rgba(44, 95, 46, 0.12);
    border-radius: 10px;
    padding: 0.85rem 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: 0 2px 8px rgba(44, 95, 46, 0.06);
    transition: var(--transition);
}

.city-card i {
    color: var(--green-mid);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.city-card:hover {
    border-color: var(--green-mid);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(44, 95, 46, 0.12);
}

.city-card.city-primary {
    background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
    color: #fff;
    border-color: transparent;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.city-card.city-primary i { color: var(--green-pale); }
.city-card.city-primary small {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.65);
    font-weight: 400;
}

.city-card.city-more {
    border-style: dashed;
    color: var(--green-mid);
    justify-content: center;
}

.city-card.city-more i { color: var(--green-light); }

.einsatz-info-box {
    background: #fff;
    border-radius: var(--radius);
    padding: 2rem;
    border: 1px solid rgba(44, 95, 46, 0.1);
    box-shadow: var(--shadow);
    text-align: center;
}

.einsatz-info-icon {
    width: 56px;
    height: 56px;
    background: var(--cream);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--green-mid);
    margin: 0 auto 1rem;
}

.einsatz-info-box h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.2rem;
    color: var(--green-dark);
    margin-bottom: 0.75rem;
}

.einsatz-info-box p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.65;
}

.einsatz-section .section-subtitle strong {
    color: var(--green-dark);
}

/* ===== FAQ ===== */
.faq-section {
    background: #fff;
    padding: 6rem 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    border: 1px solid rgba(44, 95, 46, 0.12);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(44, 95, 46, 0.25);
    box-shadow: 0 2px 12px rgba(44, 95, 46, 0.08);
}

.faq-item.is-open {
    border-color: var(--green-mid);
    box-shadow: 0 4px 20px rgba(44, 95, 46, 0.12);
}

.faq-question {
    width: 100%;
    background: #fff;
    border: none;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--green-dark);
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(44, 95, 46, 0.03);
}

.faq-item.is-open .faq-question {
    background: rgba(44, 95, 46, 0.04);
}

.faq-icon {
    color: var(--green-mid);
    font-size: 0.85rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.is-open .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 1.5rem 1.25rem;
    border-top: 1px solid rgba(44, 95, 46, 0.08);
}

.faq-item.is-open .faq-answer {
    display: block;
}

.faq-answer p {
    color: #555;
    font-size: 0.97rem;
    line-height: 1.7;
    margin-top: 1rem;
}

.faq-answer a {
    color: var(--green-mid);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.faq-answer strong {
    color: var(--green-dark);
}

.section-subtitle strong {
    color: var(--green-dark);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    /* Section padding */
    .leistungen-section,
    .ueber-section,
    .faq-section { padding: 3.5rem 0; }
    .einsatz-section { padding: 3.5rem 0; }
    .kontakt-section { padding: 3.5rem 0; }

    /* Section typography */
    .section-title { font-size: 1.75rem; }
    .section-subtitle { margin-bottom: 2rem; }
    .section-header { margin-bottom: 2rem; }

    /* Hero */
    .hero-section { min-height: auto; }
    .hero-content { padding: 2.5rem 0 1.5rem; }
    .hero-title { font-size: 2.2rem; }
    .hero-slogan { font-size: 1.1rem; }
    .hero-image-col { display: none; }
    .hero-stats {
        gap: 1.5rem;
        margin-top: 2rem;
        padding-top: 1.5rem;
        justify-content: flex-start;
    }
    .stat-number { font-size: 1.6rem; }
    .hero-badge { font-size: 0.78rem; }

    /* City grid: 2 columns on tablet/mobile */
    .city-grid { grid-template-columns: repeat(2, 1fr); }

    /* Über mich */
    .ueber-text { padding-left: 0 !important; padding-top: 1.5rem; }
    .ueber-badge { width: 80px; height: 80px; }
    .ueber-badge .badge-num { font-size: 1.2rem; }

    /* Contact */
    .contact-form-card { padding: 1.75rem 1.25rem; }
    .contact-info-card { padding: 1.75rem 1.25rem; margin-bottom: 1.5rem; }

    /* Prevent iOS auto-zoom on form inputs */
    .input, .textarea { font-size: 16px !important; }

    /* Portfolio */
    .portfolio-grid { grid-template-columns: 1fr; }
    .ba-pair { height: 160px; }
    .portfolio-section { padding: 3.5rem 0; }

    /* Map */
    .map-wrapper iframe { height: 220px; }

    /* ROOT CAUSE FIX: Bulma .columns has margin:-0.75rem which gets clipped
       by overflow:hidden on hero-section. Remove side margins on mobile
       since columns are stacked anyway and the gap serves no purpose. */
    .columns {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    /* Footer */
    .column.has-text-right-tablet { text-align: left !important; margin-top: 1.5rem; }
}

@media (max-width: 480px) {
    body { padding-top: 70px; }

    /* Hero */
    .hero-title { font-size: 1.9rem; line-height: 1.2; }
    .hero-cta-group { flex-direction: column; }
    .btn-primary-hero, .btn-secondary-hero { justify-content: center; width: 100%; }
    .hero-stats { gap: 1rem; flex-wrap: wrap; }
    .stat-number { font-size: 1.5rem; }

    /* Section padding */
    .leistungen-section,
    .ueber-section,
    .faq-section,
    .einsatz-section,
    .kontakt-section { padding: 2.5rem 0; }

    .section-title { font-size: 1.5rem; }

    /* City grid: keep 2 cols but tighter */
    .city-grid { gap: 0.5rem; }
    .city-card { font-size: 0.82rem; padding: 0.7rem 0.75rem; }

    /* Cards & forms */
    .contact-form-card,
    .contact-info-card { padding: 1.25rem 1rem; }

    /* Navbar brand smaller on tiny screens */
    .brand-name { font-size: 1.1rem; }

    /* FAQ question text */
    .faq-question { font-size: 0.92rem; padding: 1rem 1.1rem; }

    /* Footer stacked */
    .site-footer .columns { flex-direction: column; }
}
