/* ============================================================
   Location:  /assets/css/main.css
   File:      main.css
   Function:  Complete design system – tokens, logo animation,
              navbar, hero, trust strip, photo service cards,
              why-us grid, testimonials, gallery, lightbox,
              footer, utils.
   Version:   3.3.0
   History:
     1.0.0 - 2025-02-18 - Initial release.
     1.1.0 - 2025-02-18 - WhatsApp FAB, gallery, lightbox.
     2.0.0 - 2025-02-19 - Hero logo scroll animation, footer logo.
     3.0.0 - 2025-02-19 - Photo service cards, trust strip, why-us, testimonials.
     3.1.0 - 2025-02-19 - Leistungen sticky nav, about page, full-width card CSS.
     3.2.0 - 2025-02-19 - Hero raindrops: .hero > .container z-index:1 above canvas.
     3.3.0 - 2025-02-22 - Hero photo: ::before url(hero-bg.webp), ::after vignette,
                           removed raindrops layer, .hero > * z-index:1.
   ============================================================ */

/* ── TOKENS ─────────────────────────────────────────── */
:root {
    --primary:       #0B3D8C;
    --primary-hover: #0a3479;
    --primary-light: #EBF0FB;
    --primary-dark:  #072D6B;
    --accent:        #F4B604;
    --accent-dark:   #C68900;
    --accent-blue:   #57BFD8;
    --success:       #25D366;
    --text:          #1A1F2E;
    --text-muted:    #6C757D;
    --surface:       #F8F9FC;
    --surface-2:     #F1F4FB;
    --border:        #E2E8F0;
    --white:         #FFFFFF;
    --shadow-xs:     0 1px 3px rgba(11,61,140,.06);
    --shadow-sm:     0 2px 8px rgba(11,61,140,.09);
    --shadow-md:     0 6px 24px rgba(11,61,140,.13);
    --shadow-lg:     0 16px 48px rgba(11,61,140,.18);
    --shadow-xl:     0 24px 64px rgba(11,61,140,.22);
    --radius:        0.75rem;
    --radius-lg:     1.25rem;
    --radius-xl:     1.75rem;
    --font-head:     'Playfair Display', Georgia, serif;
    --font-body:     'DM Sans', system-ui, sans-serif;
    --ease:          cubic-bezier(.4,0,.2,1);
    --trans:         0.3s var(--ease);
    --logo-progress: 0;
}

/* ── BASE ────────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5 {
    font-family: var(--font-head);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
}
img { max-width: 100%; height: auto; display: block; }
a { transition: color var(--trans); }
p { margin-bottom: 0; }

.skip-link {
    position: fixed; top: .5rem; left: .5rem; z-index: 9999;
    background: var(--primary); color: #fff;
    padding: .4rem .8rem; border-radius: var(--radius); font-size: .875rem;
}

/* ── TOP BAR ─────────────────────────────────────────── */
.topbar { background: var(--primary-dark); font-size: .8125rem; }
.topbar a:hover { opacity: 1 !important; }

/* ── NAVBAR ──────────────────────────────────────────── */
#mainNav {
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    padding: .55rem 0;
    transition: box-shadow var(--trans);
    z-index: 1030;
}
#mainNav.scrolled { box-shadow: var(--shadow-md); }

.nav-logo-img {
    display: block;
    height: 38px;
    width: auto;
    flex-shrink: 0;
    opacity:   calc(0.3 + 0.7 * var(--logo-progress));
    transform: scale(calc(0.75 + 0.25 * var(--logo-progress)));
    transform-origin: left center;
    transition: opacity .2s ease, transform .2s ease;
}
body:not(.page-home) .nav-logo-img { opacity: 1; transform: scale(1); }

.nav-brand-text .logo-main {
    font-family: var(--font-head);
    font-size: 1.15rem; font-weight: 700; color: var(--primary); line-height: 1;
}
.nav-brand-text .logo-sub {
    font-size: .65rem; color: var(--text-muted);
    letter-spacing: .06em; text-transform: uppercase; line-height: 1; margin-top: 1px;
}
.nav-link {
    font-weight: 500; font-size: .9rem;
    color: var(--text) !important;
    padding: .5rem .75rem !important;
    border-radius: .5rem;
    transition: background var(--trans), color var(--trans);
}
.nav-link:hover,.nav-link.active {
    background: var(--primary-light);
    color: var(--primary) !important;
}
.navbar-brand { text-decoration: none; }

/* ── HERO ────────────────────────────────────────────── */
/* ── Version 3.3.0 – hero photo background ── */
.hero {
    background: linear-gradient(150deg, #041c52 0%, var(--primary-dark) 35%, var(--primary) 70%, #1a5ca8 100%);
    color: var(--white);
    padding: 3rem 0 5.5rem;
    position: relative;
    overflow: hidden;
}
/* Photo layer – sits on top of gradient, below all content */
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background: url('../img/hero-bg.webp') center / cover no-repeat;
    opacity: .5;
    z-index: 0;
    pointer-events: none;
}
/* Dark vignette overlay – keeps text legible over any photo */
.hero::after {
    content: '';
    position: absolute; inset: 0;
    background:
        linear-gradient(to bottom, rgba(4,28,82,.55) 0%, rgba(4,28,82,.20) 50%, rgba(4,28,82,.65) 100%),
        linear-gradient(to right,  rgba(4,28,82,.50) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}
/* Raise every direct child above both pseudo-elements */
.hero > * { position: relative; z-index: 1; }

/* Hero logo */
.hero-logo-row {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    padding-top: .5rem;
}
.hero-logo {
    width: 300px; height: auto;
    filter: drop-shadow(0 8px 32px rgba(0,0,0,.28));
    opacity: calc(1 - var(--logo-progress));
    transform: scale(calc(1 - .06 * var(--logo-progress)));
    transition: opacity .12s ease, transform .12s ease;
    will-change: opacity, transform;
}
@media (max-width:991px) { .hero-logo { width: 220px; } }
@media (max-width:575px) { .hero-logo { width: 160px; } }

/* Hero content */
.hero__badge {
    display: inline-flex; align-items: center; gap: .5rem;
    background: rgba(244,182,4,.15);
    border: 1px solid rgba(244,182,4,.3);
    color: #FFD966;
    padding: .4rem 1.1rem; border-radius: 2rem;
    font-size: .8rem; font-weight: 600; letter-spacing: .05em;
    margin-bottom: 1.4rem;
}
.hero h1 {
    font-size: clamp(2rem,5vw,3.4rem);
    color: var(--white); margin-bottom: 1.25rem;
}
.hero-accent { color: var(--accent); }
.hero .lead { color: rgba(255,255,255,.82); margin-bottom: 2rem; font-size: 1.1rem; }
.hero .lead strong { color: white; }

.btn-accent {
    background: var(--accent); color: #1a1000; border: none; font-weight: 700;
}
.btn-accent:hover { background: var(--accent-dark); color: #000; }

.hero__stats {
    display: flex; align-items: center;
    gap: 0; flex-wrap: wrap;
    margin-top: 2.5rem; padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,.12);
}
.hero__stat { text-align: center; padding: 0 1.5rem; }
.hero__stat:first-child { padding-left: 0; }
.hero__stat-value {
    font-family: var(--font-head); font-size: 1.9rem; font-weight: 700;
    color: var(--accent); line-height: 1;
}
.hero__stat-label { font-size: .76rem; color: rgba(255,255,255,.6); margin-top: .3rem; }
.hero__stat-sep {
    width: 1px; height: 40px;
    background: rgba(255,255,255,.15);
    flex-shrink: 0;
}
@media (max-width:575px) { .hero__stat-sep { display: none; } .hero__stat { padding: .5rem 1rem; } }

/* Hero card */
.hero__card {
    background: var(--white); border-radius: var(--radius-xl);
    padding: 2rem; box-shadow: var(--shadow-xl);
    position: relative; overflow: hidden;
}
.hero__card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent-blue), var(--accent));
}
.hero__card-tag {
    display: inline-flex; align-items: center; gap: .3rem;
    background: var(--primary-light); color: var(--primary);
    font-size: .75rem; font-weight: 700; letter-spacing: .05em;
    padding: .3rem .8rem; border-radius: 2rem; margin-bottom: 1rem;
}
.hero__card-title {
    font-family: var(--font-head); font-size: 1.25rem; font-weight: 700;
    color: var(--text); margin-bottom: .25rem;
}
.hero__card-sub { font-size: .82rem; color: var(--text-muted); margin-bottom: 1.25rem; }
.hero__card .form-label { font-size: .85rem; font-weight: 500; color: var(--text); margin-bottom: .35rem; }
.hero__card .input-group-text {
    background: var(--surface); border-color: var(--border); color: var(--text-muted);
}
.hero__card .form-control,
.hero__card .form-select {
    border-color: var(--border); font-size: .9rem;
}
.hero__card .form-control:focus,
.hero__card .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(11,61,140,.1);
}
.hero__card-alt {
    display: flex; gap: .5rem; margin-top: .85rem;
}
.hero__card-alt-btn {
    flex: 1; display: flex; align-items: center; justify-content: center; gap: .4rem;
    padding: .5rem; border-radius: var(--radius);
    border: 1.5px solid var(--border);
    font-size: .8rem; font-weight: 600; color: var(--text); text-decoration: none;
    transition: all var(--trans);
}
.hero__card-alt-btn:hover { border-color: var(--primary); color: var(--primary); }
.hero__card-alt-btn--wa { color: var(--success); }
.hero__card-alt-btn--wa:hover { border-color: var(--success); color: var(--success); background: #f0fff7; }
.hero__card-note {
    text-align: center; font-size: .75rem; color: var(--text-muted);
    margin-top: .75rem;
}

/* ── TRUST STRIP ─────────────────────────────────────── */
.trust-strip {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 1.1rem 0;
}
.trust-strip__inner {
    display: flex; flex-wrap: wrap;
    justify-content: center; align-items: center;
    gap: .25rem 0;
}
.trust-item {
    display: flex; align-items: center; gap: .5rem;
    padding: .5rem 1.5rem;
    font-size: .82rem; font-weight: 600; color: var(--text-muted);
    border-right: 1px solid var(--border);
    white-space: nowrap;
}
.trust-item:last-child { border-right: none; }
.trust-item .bi { color: var(--primary); font-size: 1rem; }
@media (max-width:767px) {
    .trust-item { border-right: none; padding: .4rem .8rem; font-size: .75rem; }
}

/* ── SECTIONS ────────────────────────────────────────── */
section { padding: 5.5rem 0; }
.services-section  { background: var(--surface); }
.why-section       { background: var(--white); }
.testimonials-section { background: var(--surface-2); }
.gallery-preview-section { background: var(--surface); }
.contact-strip {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 3.5rem 0;
}

.section-badge {
    display: inline-flex; align-items: center; gap: .4rem;
    background: var(--primary-light); color: var(--primary);
    padding: .35rem 1rem; border-radius: 2rem;
    font-size: .8rem; font-weight: 600; letter-spacing: .05em;
    margin-bottom: 1rem;
}
.section-title {
    font-size: clamp(1.75rem,4vw,2.5rem);
    color: var(--text); margin-bottom: 1rem;
}
.section-subtitle {
    font-size: 1.05rem; color: var(--text-muted);
    max-width: 560px; margin: 0 auto;
}

/* ── PHOTO SERVICE CARDS ─────────────────────────────── */
.svc-photo-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid var(--border);
    transition: transform var(--trans), box-shadow var(--trans);
}
.svc-photo-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* image area */
.svc-photo-card__img-wrap {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16/9;
    flex-shrink: 0;
    text-decoration: none;
}
/* wide cards get taller image */
.col-lg-8 .svc-photo-card__img-wrap { aspect-ratio: 16/7; }

.svc-photo-card__img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .55s var(--ease);
}
.svc-photo-card:hover .svc-photo-card__img { transform: scale(1.06); }

.svc-photo-card__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom,
        transparent 40%,
        rgba(7,45,107,.55) 100%);
    transition: opacity var(--trans);
}
.svc-photo-card:hover .svc-photo-card__overlay {
    background: linear-gradient(to bottom, transparent 30%, rgba(7,45,107,.7) 100%);
}

/* icon badge on image */
.svc-photo-card__icon-wrap {
    position: absolute; bottom: 1rem; left: 1.25rem;
    width: 46px; height: 46px;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255,255,255,.3);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1.3rem;
    transition: background var(--trans);
}
.svc-photo-card:hover .svc-photo-card__icon-wrap {
    background: var(--primary);
    border-color: var(--primary);
}

/* card body */
.svc-photo-card__body {
    padding: 1.5rem 1.75rem 1.75rem;
    display: flex; flex-direction: column; flex: 1;
}
.svc-photo-card__tags {
    display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: .85rem;
}
.svc-tag {
    font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
    background: var(--primary-light); color: var(--primary);
    padding: .2rem .65rem; border-radius: 2rem;
}
.svc-photo-card__title {
    font-size: 1.2rem; color: var(--text); margin-bottom: .6rem; line-height: 1.3;
}
.svc-photo-card__desc {
    font-size: .88rem; color: var(--text-muted); margin-bottom: 1.25rem; flex: 1; line-height: 1.6;
}
.svc-photo-card__cta {
    display: inline-flex; align-items: center; gap: .3rem;
    font-size: .85rem; font-weight: 700; color: var(--primary); text-decoration: none;
    padding: .55rem 0;
    border-top: 1px solid var(--border);
    transition: gap var(--trans), color var(--trans);
    margin-top: auto;
}
.svc-photo-card__cta:hover { gap: .6rem; color: var(--primary-hover); }

/* ── WHY US GRID ─────────────────────────────────────── */
.why-card {
    background: var(--why-bg, var(--surface));
    border-radius: var(--radius-lg);
    padding: 1.35rem;
    display: flex; align-items: flex-start; gap: 1rem;
    border: 1px solid transparent;
    transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
    height: 100%;
}
.why-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--why-ico-c, var(--border));
}
.why-card__icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: var(--why-ico-bg, var(--primary-light));
    color: var(--why-ico-c, var(--primary));
    border-radius: .75rem;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    transition: transform var(--trans);
}
.why-card:hover .why-card__icon { transform: scale(1.1) rotate(-4deg); }
.why-card__title { font-weight: 700; font-size: .95rem; margin-bottom: .3rem; }
.why-card__text  { font-size: .83rem; color: var(--text-muted); line-height: 1.5; }

/* ── TESTIMONIALS ────────────────────────────────────── */
.review-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    display: flex; flex-direction: column; height: 100%;
    transition: transform var(--trans), box-shadow var(--trans);
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.review-card__stars { color: var(--accent); font-size: .9rem; margin-bottom: 1rem; letter-spacing: .1em; }
.review-card__text {
    font-size: .88rem; color: var(--text-muted);
    line-height: 1.65; font-style: italic; flex: 1;
    margin-bottom: 1.25rem; border: none; padding: 0;
    position: relative;
}
.review-card__text::before {
    content: '\201C';
    font-family: var(--font-head); font-size: 3.5rem; color: var(--primary);
    opacity: .12; line-height: 1; position: absolute; top: -.5rem; left: -.25rem;
    pointer-events: none;
}
.review-card__author {
    display: flex; align-items: center; gap: .85rem;
    padding-top: 1rem; border-top: 1px solid var(--border);
}
.review-card__avatar {
    width: 40px; height: 40px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary), var(--accent-blue));
    color: white; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: .95rem;
}
.review-card__name { font-weight: 700; font-size: .9rem; }
.review-card__role { font-size: .77rem; color: var(--text-muted); }

/* ── GALLERY ─────────────────────────────────────────── */
.masonry-grid { columns: 3; column-gap: 1rem; }
@media (max-width:768px) { .masonry-grid { columns: 2; } }
@media (max-width:480px) { .masonry-grid { columns: 1; } }

.masonry-item {
    break-inside: avoid; margin-bottom: 1rem;
    border-radius: var(--radius); overflow: hidden;
    cursor: zoom-in; position: relative;
}
.masonry-img {
    width: 100%; height: auto; border-radius: var(--radius);
    transition: transform .35s ease, filter .35s ease;
}
.masonry-item:hover .masonry-img { transform: scale(1.04); }
.masonry-item::after {
    content: '\F52A'; font-family: 'bootstrap-icons';
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; color: white;
    background: rgba(11,61,140,0);
    transition: background .3s ease, opacity .3s ease;
    opacity: 0; pointer-events: none; border-radius: var(--radius);
}
.masonry-item:hover::after { background: rgba(11,61,140,.32); opacity: 1; }

/* Lightbox */
.lb-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(8,10,18,.93); z-index: 1060;
    align-items: center; justify-content: center; flex-direction: column;
    backdrop-filter: blur(8px);
}
.lb-overlay.lb-visible { display: flex; }
.lb-content { max-width: 90vw; max-height: 80vh; display: flex; align-items: center; justify-content: center; }
#lbImg {
    max-width: 90vw; max-height: 80vh; object-fit: contain;
    border-radius: var(--radius); box-shadow: 0 20px 80px rgba(0,0,0,.6);
    transition: opacity .22s ease, transform .22s ease;
}
.lb-close {
    position: fixed; top: 1rem; right: 1.25rem;
    background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
    color: white; width: 44px; height: 44px; border-radius: 50%;
    font-size: 1.1rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s; z-index: 1061;
}
.lb-close:hover { background: rgba(255,255,255,.25); }
.lb-nav {
    position: fixed; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18);
    color: white; width: 50px; height: 50px; border-radius: 50%;
    font-size: 1.3rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s; z-index: 1061;
}
.lb-nav:hover { background: rgba(255,255,255,.25); }
.lb-prev { left: 1rem; } .lb-next { right: 1rem; }
.lb-counter {
    position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
    color: rgba(255,255,255,.6); font-size: .85rem; letter-spacing: .08em;
}
.gallery-placeholder {
    border: 2px dashed var(--border); border-radius: var(--radius-lg);
    padding: 4rem 2rem; text-align: center; color: var(--text-muted);
}
.gallery-placeholder i { font-size: 3rem; color: var(--primary); opacity: .3; margin-bottom: 1rem; }

/* ── LEISTUNGEN PAGE – feature list ─────────────────── */
.service-feature-list { list-style: none; padding: 0; }
.service-feature-list li {
    display: flex; align-items: flex-start; gap: .65rem;
    padding: .45rem 0; font-size: .9rem;
    border-bottom: 1px solid var(--border);
}
.service-feature-list li:last-child { border: none; }
.service-feature-list .bi { color: var(--primary); flex-shrink: 0; margin-top: .15rem; }

/* ── LEISTUNGEN PAGE – service detail photo ──────────── */
.svc-detail-photo {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.svc-detail-photo__img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
    transition: transform .55s var(--ease);
}
.svc-detail-photo:hover .svc-detail-photo__img { transform: scale(1.04); }

/* gradient overlay bottom */
.svc-detail-photo::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 45%, rgba(7,45,107,.65) 100%);
    pointer-events: none;
}
/* title badge pinned bottom-left */
.svc-detail-photo__badge {
    position: absolute; bottom: 1.25rem; left: 1.25rem;
    z-index: 2;
    display: inline-flex; align-items: center; gap: .5rem;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1.5px solid rgba(255,255,255,.25);
    color: #fff;
    padding: .55rem 1.1rem;
    border-radius: 2rem;
    font-weight: 700; font-size: .9rem;
}
.svc-detail-photo__badge .bi { font-size: 1.05rem; }

/* ── BREADCRUMB ──────────────────────────────────────── */
.breadcrumb-bar {
    background: var(--surface); border-bottom: 1px solid var(--border); padding: .65rem 0;
}
.breadcrumb { margin: 0; font-size: .84rem; }
.breadcrumb-item a { color: var(--primary); text-decoration: none; }
.breadcrumb-item.active { color: var(--text-muted); }
.breadcrumb-item+.breadcrumb-item::before { color: var(--border); }

/* ── PAGE HERO (inner pages) ─────────────────────────── */
.page-hero {
    background: linear-gradient(145deg, var(--primary-dark), var(--primary));
    color: white; padding: 4rem 0;
}
.page-hero h1 { color: white; font-size: clamp(1.8rem,4vw,2.8rem); }
.page-hero .lead { color: rgba(255,255,255,.82); }

/* ── FOOTER ──────────────────────────────────────────── */
.site-footer { background: #0D1420; color: var(--text-muted); padding-top: 4rem; padding-bottom: 1.5rem; }
.cta-band { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); }

.footer-logo-link { display: inline-block; }
.footer-logo-img {
    width: 130px; height: auto;
    transition: filter var(--trans);
}
.footer-logo-link:hover .footer-logo-img { }
.footer-heading {
    font-family: var(--font-body); font-size: .75rem; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase; color: #fff; margin-bottom: 1rem;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a {
    color: var(--text-muted); text-decoration: none; font-size: .875rem;
    transition: color var(--trans);
}
.footer-links a:hover { color: var(--accent-blue); }
.badge-trust {
    display: inline-flex; align-items: center;
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.75); padding: .3rem .7rem; border-radius: 2rem; font-size: .75rem;
}
.opening-hours { border-top: 1px solid rgba(255,255,255,.08); padding-top: .75rem; }

/* ── WHATSAPP FAB ────────────────────────────────────── */
.wa-fab {
    position: fixed; bottom: 1.5rem; right: 1.5rem;
    width: 56px; height: 56px;
    background: #25D366; color: white; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 1.6rem;
    box-shadow: 0 4px 16px rgba(37,211,102,.45); z-index: 1040; text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
}
.wa-fab:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,.6); color: white; }

/* ── CONTACT PAGE ────────────────────────────────────── */
.contact-info-box {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 1.25rem;
}
.contact-info-box .bi { font-size: 1.4rem; color: var(--primary); width: 40px; flex-shrink: 0; }

/* ── ANIMATIONS ──────────────────────────────────────── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: none; }
}
.animate-fade-up        { animation: fadeUp .65s ease both; }
.delay-1                { animation-delay: .1s; }
.delay-2                { animation-delay: .2s; }
.delay-3                { animation-delay: .3s; }
.reveal                 { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
.reveal.revealed        { opacity: 1; transform: none; }

/* ── UTILS ───────────────────────────────────────────── */
.not-italic { font-style: normal !important; }

/* ============================================================
   ÜBER UNS PAGE  (v3.1.0 – 2025-02-19)
   about-hero, about-collage, about-timeline, value-card,
   team-photo-card, cert-card
   ============================================================ */

/* ── About hero ─────────────────────────────────── */
.about-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
.about-hero__img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 30%;
}
.about-hero__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom,
        rgba(7,45,107,.55) 0%,
        rgba(4,28,82,.75) 60%,
        rgba(4,28,82,.92) 100%);
}
.about-hero__content {
    position: relative; z-index: 2;
    width: 100%; padding: 4rem 0 3.5rem;
    color: #fff;
}
.about-hero__content h1 {
    color: #fff;
    font-size: clamp(2rem,5vw,3.2rem);
    margin-bottom: 1rem;
}
.about-hero__content .lead { color: rgba(255,255,255,.82); margin-bottom: 2rem; }
.about-hero__content .lead strong { color: #fff; }
.about-hero__badge {
    background: rgba(255,255,255,.15) !important;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,.3) !important;
}
.about-hero__stats {
    display: flex; align-items: center; gap: 0;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255,255,255,.18);
    flex-wrap: wrap;
}
.about-hero__stat { text-align: center; padding: 0 2rem; }
.about-hero__stat:first-child { padding-left: 0; }
.about-hero__stat-val {
    font-family: var(--font-head); font-size: 2rem; font-weight: 700;
    color: var(--accent); line-height: 1;
}
.about-hero__stat-lbl { font-size: .78rem; color: rgba(255,255,255,.65); margin-top: .3rem; }
.about-hero__stat-sep { width: 1px; height: 40px; background: rgba(255,255,255,.18); flex-shrink: 0; }
@media (max-width:575px) { .about-hero__stat-sep { display:none; } .about-hero__stat { padding: .5rem 1rem; } }

/* ── Story section ──────────────────────────────── */
.about-story { padding: 5.5rem 0; }

/* ── Photo collage ──────────────────────────────── */
.about-collage {
    position: relative;
    padding-bottom: 120px;
}
.about-collage__main {
    width: 100%; height: 380px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    display: block;
}
.about-collage__thumb {
    position: absolute;
    bottom: 0; right: -20px;
    width: 55%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    border: 4px solid var(--white);
    box-shadow: var(--shadow-md);
}
.about-collage__badge {
    position: absolute;
    bottom: 95px; left: 1.5rem;
    display: inline-flex; align-items: center; gap: .5rem;
    background: var(--primary);
    color: #fff;
    padding: .6rem 1.2rem;
    border-radius: 2rem;
    font-size: .85rem; font-weight: 700;
    box-shadow: var(--shadow-md);
}
@media (max-width:575px) {
    .about-collage__thumb { position: static; width: 100%; height: 180px; margin-top: 1rem; border: none; }
    .about-collage { padding-bottom: 0; }
    .about-collage__badge { bottom: auto; top: 1rem; left: 1rem; }
}

/* ── Timeline ───────────────────────────────────── */
.about-timeline {
    position: relative;
    padding-left: 1.5rem;
    border-left: 2px solid var(--border);
    margin: 1.5rem 0;
}
.about-timeline__item {
    position: relative;
    display: flex; gap: 1rem;
    padding-bottom: 1.25rem;
}
.about-timeline__item:last-child { padding-bottom: 0; }
.about-timeline__dot {
    position: absolute; left: -1.65rem; top: .25rem;
    width: 12px; height: 12px;
    background: var(--primary);
    border: 2px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 2px var(--primary);
    flex-shrink: 0;
}
.about-timeline__dot--accent {
    background: var(--accent);
    box-shadow: 0 0 0 2px var(--accent);
}
.about-timeline__year {
    font-family: var(--font-head);
    font-size: .95rem; font-weight: 700;
    color: var(--primary); line-height: 1.2;
}
.about-timeline__text { font-size: .85rem; color: var(--text-muted); margin-top: .2rem; }

/* ── Values section ─────────────────────────────── */
.about-values { background: var(--surface); padding: 5.5rem 0; }

.value-card {
    background: var(--vc-bg, var(--surface));
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    height: 100%;
    border: 1px solid transparent;
    transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
}
.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--vc-color, var(--border));
}
.value-card__icon {
    width: 52px; height: 52px;
    background: var(--vc-color, var(--primary));
    color: #fff;
    border-radius: .9rem;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.1rem;
    transition: transform var(--trans);
}
.value-card:hover .value-card__icon { transform: scale(1.08) rotate(-4deg); }
.value-card__title {
    font-size: 1.05rem; font-weight: 700;
    color: var(--text); margin-bottom: .5rem;
}
.value-card__text { font-size: .86rem; color: var(--text-muted); line-height: 1.6; }

/* ── Team section ───────────────────────────────── */
.about-team { padding: 5.5rem 0; }

.team-photo-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: transform var(--trans), box-shadow var(--trans);
    height: 100%;
}
.team-photo-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.team-photo-card__img-wrap {
    overflow: hidden;
    aspect-ratio: 1/1;
}
.team-photo-card__img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform .5s var(--ease);
}
.team-photo-card:hover .team-photo-card__img { transform: scale(1.06); }
.team-photo-card__body { padding: 1.25rem 1.35rem 1.5rem; }
.team-photo-card__name {
    font-family: var(--font-head);
    font-size: 1.05rem; font-weight: 700;
    color: var(--text); margin-bottom: .2rem;
}
.team-photo-card__role {
    font-size: .78rem; font-weight: 600;
    color: var(--primary); text-transform: uppercase;
    letter-spacing: .06em; margin-bottom: .65rem;
}
.team-photo-card__bio { font-size: .83rem; color: var(--text-muted); line-height: 1.55; }

/* ── Certs section ──────────────────────────────── */
.about-certs { background: var(--surface); padding: 5.5rem 0; }

.cert-card {
    background: var(--cc-bg, var(--surface));
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    text-align: center;
    border: 1px solid transparent;
    transition: transform var(--trans), box-shadow var(--trans);
    height: 100%;
}
.cert-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--cc-color, var(--border));
}
.cert-card__icon {
    width: 60px; height: 60px;
    background: var(--cc-color, var(--primary));
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.1rem;
}
.cert-card__title {
    font-size: 1rem; font-weight: 700;
    color: var(--text); margin-bottom: .5rem;
}
.cert-card__text { font-size: .84rem; color: var(--text-muted); line-height: 1.55; }

/* ============================================================
   LEISTUNGEN – sticky nav pills + detail article  (v3.1.0)
   ============================================================ */

/* Sticky service navigation */
.svc-nav-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 70px;          /* below navbar */
    z-index: 900;
    padding: .65rem 0;
    overflow-x: auto;
    scrollbar-width: none;
}
.svc-nav-bar::-webkit-scrollbar { display: none; }

.svc-nav-pills {
    display: flex;
    gap: .4rem;
    white-space: nowrap;
    padding: .1rem .25rem;
}
.svc-nav-pill {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .4rem .95rem;
    border-radius: 2rem;
    font-size: .8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: none;
    border: 1.5px solid var(--border);
    background: var(--white);
    transition: all var(--trans);
    white-space: nowrap;
}
.svc-nav-pill:hover,
.svc-nav-pill.active {
    background: var(--primary-light);
    color: var(--primary);
    border-color: var(--primary);
}

/* Service detail article */
.svc-detail {
    padding: 4.5rem 0;
}
.svc-detail--bordered {
    border-bottom: 1px solid var(--border);
}
.svc-detail__header {
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
    margin-bottom: 1.25rem;
}
.svc-detail__icon {
    width: 52px; height: 52px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: .85rem;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}
.svc-detail__title {
    font-size: 1.75rem;
    margin-bottom: .2rem;
    color: var(--text);
}
.svc-detail__short {
    font-size: .88rem;
    color: var(--text-muted);
    margin: 0;
}

/* ============================================================
   SERVICE CARD – full-width variant + feature pills  (v3.2.0)
   Used for Grundreinigung (col-12 full-width card on index.html)
   ============================================================ */

/* Full-width card: photo left 45%, body right 55% on desktop */
.svc-photo-card--full {
    display: flex;
    flex-direction: column;
}
@media (min-width: 992px) {
    .svc-photo-card--full {
        flex-direction: row;
        min-height: 340px;
    }
    .svc-photo-card--full .svc-photo-card__img-wrap {
        width: 45%;
        flex-shrink: 0;
        aspect-ratio: unset;
        min-height: 340px;
    }
    .svc-photo-card--full .svc-photo-card__body {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 2.5rem 2rem;
    }
}

/* Feature pills inside full card */
.svc-photo-card__features {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin: .75rem 0 1rem;
}
.svc-feature-pill {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .78rem;
    font-weight: 600;
    padding: .3rem .75rem;
    border-radius: 2rem;
    background: var(--primary-light);
    color: var(--primary);
    white-space: nowrap;
}
.svc-feature-pill .bi { font-size: .75rem; }

/* col-lg-6 card: same aspect ratio as col-lg-4 */
.col-lg-6 .svc-photo-card__img-wrap { aspect-ratio: 4/3; }

/* Ensure all non-full cards fill column height */
.svc-photo-card:not(.svc-photo-card--full) { height: 100%; }
